/* Cookie Consent Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 15px 0;
    font-family: var(--font-primary);
}

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

.cookie-content h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cookie-content p {
    margin-bottom: 0;
    max-width: 600px;
}

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

.cookie-btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.cookie-btn.primary {
    background-color: var(--primary-color);
    color: #fff;
}

.cookie-btn.primary:hover {
    background-color: #3d6949;
}

.cookie-btn.secondary {
    background-color: #f0f0f0;
    color: var(--text-color);
}

.cookie-btn.secondary:hover {
    background-color: #e0e0e0;
}

.cookie-preferences {
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    padding: 20px;
    max-width: 1200px;
    margin: 15px auto 0;
}

.cookie-preferences h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cookie-option {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.cookie-option label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    cursor: pointer;
}

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

.cookie-option span {
    font-weight: 500;
}

.cookie-option p {
    margin-left: 25px;
    font-size: 0.9rem;
    color: #666;
}

.hidden {
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cookie-content {
        text-align: center;
        justify-content: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}