.cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 9999;
    background: rgba(28, 24, 48, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-consent.is-visible { transform: translateY(0); }
.cookie-consent__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-consent__text { color: rgba(255, 246, 238, 0.8); font-size: 0.85rem; font-weight: 300; margin: 0; }
.cookie-consent__text a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent__actions { display: flex; gap: 0.6rem; }
.cookie-consent__btn {
    font: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.6rem 1.3rem;
    border: 1px solid #f38120;
    border-radius: 100px;
    background: #f38120;
    color: #333;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.cookie-consent__btn:hover { background: #db751d; transform: translateY(-2px); }
.cookie-consent__btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.cookie-consent__btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }
@media (max-width: 640px) {
    .cookie-consent__inner { flex-direction: column; align-items: flex-start; }
    .cookie-consent__actions { width: 100%; }
    .cookie-consent__btn { flex: 1; }
}
