/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: hsl(var(--dark));
    color: hsl(var(--white));
    padding: 1.5rem;
    z-index: 1001;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

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

.cookie-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-settings-panel {
    background-color: hsl(var(--white));
    color: hsl(var(--dark));
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
}

.cookie-settings-panel h4 {
    margin-bottom: 1rem;
    color: hsl(var(--primary));
}

.cookie-option {
    padding: 0.75rem 0;
    border-bottom: 1px solid hsl(var(--light));
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option label {
    font-weight: 600;
    margin-left: 0.5rem;
}

.cookie-option p {
    font-size: 0.85rem;
    margin-top: 0.25rem;
    margin-left: 1.75rem;
    color: hsl(var(--medium));
}

.cookie-settings-buttons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

/* Responsive styles for cookie consent */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}
