/* GDPR Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid #f97316;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    animation: slideUp 0.3s ease-out;
}

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

.cookie-banner-hiding {
    animation: slideDown 0.3s ease-in forwards;
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.cookie-banner-text p {
    color: #a1a1aa;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
}

.cookie-privacy-link {
    color: #f97316;
    font-size: 0.875rem;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-privacy-link:hover {
    color: #fb923c;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: 'Roboto', sans-serif;
}

.cookie-btn-accept {
    background: #f97316;
    color: #ffffff;
}

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

.cookie-btn-reject {
    background: transparent;
    color: #a1a1aa;
    border: 1px solid #52525b;
}

.cookie-btn-reject:hover {
    background: #27272a;
    color: #ffffff;
    border-color: #71717a;
}

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