.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-cookie, 960);
    background: rgba(15, 10, 22, 0.97);
    border-top: 1px solid rgba(188, 19, 254, 0.25);
    padding: 14px 16px;
    padding-bottom: max(14px, env(safe-area-inset-bottom, 0px));
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}
.cookie-consent__text { margin: 0; color: #ddd; font-size: 14px; line-height: 1.5; flex: 1 1 280px; }
.cookie-consent__text a { color: var(--color-link, #bc13fe); }
.cookie-consent__text a:hover { color: #d44aff; }
.cookie-consent__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-consent__btn {
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.cookie-consent__btn--primary { background: var(--accent, #bc13fe); color: #fff; }
.cookie-consent__btn--primary:hover { filter: brightness(1.08); }
.cookie-consent__btn--ghost { background: transparent; color: #ccc; border: 1px solid #555; }
.cookie-consent__btn--ghost:hover { border-color: #888; color: #fff; }
.cookie-consent__btn:focus-visible { outline: 2px solid var(--accent, #bc13fe); outline-offset: 2px; }

/* Misma media query que .bottom-nav: el banner va encima del menú fijo */
@media (max-width: 1199px) {
    .cookie-consent {
        bottom: calc(var(--bottom-nav-h, 62px) + var(--safe-bottom, env(safe-area-inset-bottom, 0px)));
        padding-bottom: 14px;
    }
}
