/* Стили для Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1.5rem;
    display: none; /* По умолчанию скрыт, отображается через JavaScript */
}

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

.cookie-content h3 {
    margin-bottom: 1rem;
}

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

.cookie-settings-panel {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.cookie-settings-panel.hidden {
    display: none;
}

.cookie-settings-panel h4 {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.cookie-option label {
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-option input {
    margin-right: 0.5rem;
}

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

.cookie-settings-buttons {
    margin-top: 1.5rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}