/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: bottom 0.5s ease;
}

.cookie-consent.active {
    bottom: 0;
}

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

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

.cookie-header h3 {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

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

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

.cookie-options {
    margin-top: 20px;
    margin-bottom: 20px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: var(--border-radius);
    background-color: var(--color-light-bg);
}

.cookie-option input[type="checkbox"] {
    margin-right: 15px;
    margin-top: 5px;
}

.option-title {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--color-secondary);
}

.option-description {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.cookie-footer {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.cookie-footer a {
    text-decoration: underline;
}

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