/* ============================================
   🍪 COOKIE CONSENT BANNER
   GDPR/ePrivacy compliant — blocks trackers
   until user gives explicit consent
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(20, 20, 30, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-family: 'Barlow', sans-serif;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #c69c5d;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: 'Barlow', sans-serif;
}

.cookie-btn-accept {
    background: #c69c5d;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #d4aa6b;
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 1rem;
    }
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-btn {
        flex: 1;
    }
}
