/* Основной контейнер квиза */
.custom-quiz {
    display: none;
    max-width: 1000px;
    width: 95%;
    background: #fff;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    font-family: 'AkzidenzGroteskPro', sans-serif;
}

.quiz-header-info {
    padding: 20px 30px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    font-weight: 500;
}

.quiz-container {
    display: flex;
    min-height: 550px;
}

/* Левая часть: Вопросы */
.quiz-main {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.quiz-step { display: none; flex: 1; }
.quiz-step.active { display: block; animation: fadeIn 0.3s ease; }

.quiz-question {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}
.quiz-sub-question {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
}

/* Варианты с картинками */
.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 10px;
}

.quiz-card {
    cursor: pointer;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s;
    text-align: center;
}
.quiz-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background: #eee;
}
.quiz-card-text {
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
}
.quiz-card:hover { border-color: #2DAE70; }
.quiz-card.selected { border-color: #2DAE70; background: rgba(45, 174, 112, 0.05); position: relative; }
.quiz-card.selected::after {
    content: '✓';
    position: absolute;
    top: 5px;
    right: 5px;
    background: #2DAE70;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    line-height: 20px;
}

/* Слайдеры */
.slider-container { margin: 40px 0; }
.range-val { font-size: 24px; font-weight: 700; color: #2DAE70; margin-bottom: 10px; display: block; }
input[type=range] { width: 100%; cursor: pointer; accent-color: #2DAE70; }

/* Правая часть: Сайдбар */
.quiz-sidebar {
    width: 320px;
    background: #f4f6f7;
    padding: 30px;
    border-left: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.discount-badge {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    margin-bottom: 30px;
}
.discount-badge span { display: block; color: #888; font-size: 12px; }
.discount-badge strong { font-size: 28px; color: #2DAE70; }

.manager-block {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.manager-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ddd;
    margin-right: 15px;
    position: relative;
}
.manager-photo::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #2DAE70;
    border: 2px solid #fff;
    border-radius: 50%;
}
.manager-info b { display: block; font-size: 16px; }
.manager-info span { font-size: 12px; color: #888; }

.manager-message {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}
.manager-message::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px 30px;
    background: #fff;
}
.quiz-btn {
    padding: 15px 40px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.btn-prev { background: #f0f0f0; color: #666; }
.btn-next { background: #2DAE70; color: #fff; }
.btn-next:disabled { opacity: 0.5; cursor: not-allowed; }

/* Финал */
.final-screen { display: none; padding: 40px; text-align: left; }
.final-layout { display: flex; gap: 40px; }
.final-form-side { flex: 1; }
.final-info-side { width: 350px; background: #f9f9f9; padding: 30px; border-radius: 12px; }

@media (max-width: 900px) {
    .quiz-container { flex-direction: column; }
    .quiz-sidebar { width: 100%; border-left: none; border-top: 1px solid #eee; }
    .quiz-options-grid { grid-template-columns: 1fr 1fr; }
}