/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 1.5rem;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-header h3 {
    margin-bottom: 0;
}

#cookie-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

#cookie-close:hover {
    color: var(--text-color);
}

.cookie-settings {
    margin: 1.5rem 0;
}

.cookie-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.75rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cookie-buttons button {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--background-light);
}

@media (max-width: 768px) {
    .cookie-buttons {
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .cookie-buttons {
        flex-direction: column;
    }
    .cookie-buttons button {
        width: 100%;
    }
}
