#cookie-overlay {
    position: fixed;
    z-index: 9998;
    inset: 0;
    background: rgba(35, 35, 44, 0.38);
    display: none;
    animation: fadein .25s;
}
#cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 9999;
    background: #fff;
    color: #222;
    border-radius: 16px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.20);
    padding: 1.6rem 2.2rem 1.3rem 2.2rem;
    max-width: 100%;
    width: 96vw;
    text-align: center;
    font-size: 1rem;
    display: none;
    animation: dropup .33s;
}
@keyframes fadein { from { opacity: 0;} to { opacity: 1;} }
@keyframes dropup { from { opacity: 0; transform: translateY(60px) translateX(-50%);} to { opacity: 1; transform: translateY(0) translateX(-50%);} }
#cookie-banner.show,
#cookie-overlay.show { display: block; }
#cookie-banner .cookie-btn {
    background: #edb100;
    border: none;
    color: #212529;
    font-weight: 700;
    border-radius: 8px;
    padding: 8px 22px;
    margin: 7px 10px 0 10px;
    transition: background 0.2s;
}
#cookie-banner .cookie-btn.reject {
    background: #f5f5f7;
    color: #555;
    border: 1px solid #ccc;
}
#cookie-banner a { color: #1565c0; text-decoration: underline; font-weight: 500;}
#cookie-banner p { margin-bottom: 0.8rem;}
.cookie-btn.reject {
    background: #e5e7eb !important;  /* gris muy claro */
    color: #626c72 !important;        /* gris oscuro */
    border: none;
    font-weight: 700;
    transition: all 0.2s;
}
.cookie-btn.reject:hover {
    background: #ccd0d5 !important;   /* un gris un poquito más oscuro */
    color: #232d2d !important;        /* casi negro, pero aún elegante */
}
