/* Cookie Consent Banner Styles */

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    font-family: 'Inter', sans-serif;
}

.cookie-banner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cookie-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #ffffff;
}

.cookie-content p {
    margin: 0 0 20px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cookie Preferences Modal */
.cookie-preferences {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-preferences.hidden {
    display: none;
}

.preferences-content {
    background: white;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

.preferences-content h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.3rem;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.cookie-category label {
    display: block;
    cursor: pointer;
    font-size: 0.9rem;
}

.cookie-category input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.cookie-category strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.cookie-category .description {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
}

.preferences-buttons {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Manage Cookies Footer Link */
.manage-cookies-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

.manage-cookies-link:hover {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .preferences-content {
        margin: 10px;
        padding: 20px;
    }
    
    .preferences-buttons {
        flex-direction: column;
    }
}
