/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(40, 40, 46, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem;
    z-index: 9998; /* Below footer but above content */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text p {
    margin: 0;
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #93c5fd;
    text-decoration: none;
    border-bottom: 1px solid rgba(147, 197, 253, 0.3);
    transition: all 0.2s ease;
}

.cookie-consent-text a:hover {
    color: #bfdbfe;
    border-bottom-color: rgba(191, 219, 254, 0.6);
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.cookie-consent-banner .btn {
    white-space: nowrap;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.cookie-consent-settings {
    background: rgba(55, 55, 63, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
}

.cookie-consent-settings:hover {
    background: rgba(65, 65, 73, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.cookie-consent-accept {
    background: rgba(34, 197, 94, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #ffffff;
}

.cookie-consent-accept:hover {
    background: rgba(34, 197, 94, 0.9);
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .cookie-consent-banner .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hide banner when user has made a choice */
.cookie-consent-banner.hidden {
    display: none;
}
