/* ─────────────────────────────────────────────────────────
   COOKIE CONSENT BANNER — Le Mas de Louise
───────────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 780px;
    background: #1B2744;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 28px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 240px;
}

.cookie-banner-title {
    font-family: "Jost", sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FDFAF5;
    margin: 0 0 6px;
}

.cookie-banner-desc {
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(253, 250, 245, 0.55);
    margin: 0;
}

.cookie-link {
    color: #C5B49A;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.cookie-link:hover {
    color: #FDFAF5;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    padding: 11px 24px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.cookie-btn--decline {
    background: transparent;
    color: rgba(253, 250, 245, 0.5);
    border: 1px solid rgba(253, 250, 245, 0.2);
}

.cookie-btn--decline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(253, 250, 245, 0.8);
}

.cookie-btn--accept {
    background: #C5B49A;
    color: #1B2744;
}

.cookie-btn--accept:hover {
    background: #FDFAF5;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .cookie-banner {
        bottom: 16px;
        width: calc(100% - 32px);
        border-radius: 12px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        gap: 20px;
        padding: 20px 20px;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
