/**
 * Cookie consent banner styles
 */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding: 1rem 0;
    animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

.cookie-notice__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-notice__text {
    flex: 1;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.cookie-notice__link {
    color: var(--color-accent, #c9a96e);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-notice__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-notice__accept,
.cookie-notice__decline {
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
    border: none;
}

.cookie-notice__accept {
    background: var(--color-accent, #c9a96e);
    color: var(--color-bg-dark, #1a1a2e);
}
.cookie-notice__accept:hover {
    opacity: 0.9;
}

.cookie-notice__decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-notice__decline:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
    .cookie-notice {
        bottom: 64px; /* above bottom nav */
    }
    .cookie-notice__inner {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }
    .cookie-notice__text {
        font-size: 0.82rem;
    }
    .cookie-notice__actions {
        width: 100%;
    }
    .cookie-notice__accept,
    .cookie-notice__decline {
        flex: 1;
    }
}
