/* Cookie Consent Banner - GDPR Compliant */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border-top: 3px solid var(--primary-gold, #D4AF37);
    padding: 1.5rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.cookie-consent-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-consent-content {
    flex: 1;
}

.cookie-consent-title {
    color: #D4AF37;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-consent-title i {
    font-size: 1.5rem;
}

.cookie-consent-text {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-consent-text a {
    color: #D4AF37;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #FFD700;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #D4AF37, #b8941e);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.cookie-btn-decline {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.cookie-btn-decline:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}

.cookie-btn-settings {
    background: transparent;
    color: #D4AF37;
    border: 2px solid rgba(212, 175, 55, 0.3);
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}

.cookie-btn-settings:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1.5rem 1rem;
    }

    .cookie-consent-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-consent-title {
        font-size: 1.1rem;
    }

    .cookie-consent-text {
        font-size: 0.9rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-consent-title {
        font-size: 1rem;
    }

    .cookie-consent-text {
        font-size: 0.85rem;
    }

    .cookie-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}
