/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 25, 32, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-consent-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: #D4AF37;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cookie-consent-text a:hover {
    border-bottom-color: #D4AF37;
}

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

.cookie-consent-btn {
    padding: 0.75rem 1.25rem;
    border: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    white-space: nowrap;
}

.cookie-consent-btn-accept {
    background: #D4AF37;
    color: #1A1A1A;
}

.cookie-consent-btn-accept:hover {
    background: #E5C76B;
    transform: translateY(-2px);
}

.cookie-consent-btn-essential {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent-btn-essential:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-consent-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

    .cookie-consent-content {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .cookie-consent-btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1rem;
    }

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