/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #E5E7EB;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept {
    background-color: #4F46E5;
    color: white;
}

.cookie-accept:hover {
    background-color: #3730A3;
}

.cookie-decline {
    background-color: transparent;
    color: #9CA3AF;
    border: 1px solid #4B5563;
}

.cookie-decline:hover {
    background-color: #374151;
    color: white;
}

.cookie-reject {
    background-color: #DC2626;
    color: white;
    border: 1px solid #DC2626;
}

.cookie-reject:hover {
    background-color: #B91C1C;
}

.cookie-customize {
    background-color: #6B7280;
    color: white;
    border: 1px solid #6B7280;
}

.cookie-customize:hover {
    background-color: #4B5563;
}

/* Cookie Customization Panel */
.cookie-customization {
    margin-top: 20px;
    padding: 20px;
    background-color: #374151;
    border-radius: 8px;
}

.cookie-customization h3 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.cookie-option:hover {
    background-color: #4B5563;
}

.cookie-option input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-option-text {
    color: #E5E7EB;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-option-text strong {
    color: white;
}

.cookie-customization-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 12px;
    border-radius: 6px;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-text {
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-customization-actions {
        flex-direction: column;
    }
    
    .cookie-customization-actions .cookie-btn {
        width: 100%;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
}