/**
 * Wizard Options Styles
 * Стилі кнопок-опцій wizard
 */

/* Опції для вибору з правильними відступами 16px */
.step-options {
    display: flex;
    flex-wrap: wrap;
    gap: 16px; /* Точно 16px по всіх напрямках */
    height: 100%;
    align-content: flex-start;
    justify-content: center; /* Центруємо кнопки в контейнері */
    padding-top: 20px;
}

/* Стиль кнопок-опцій згідно з вимогами */
.option-btn {
    width: 224px;
    height: 148px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 2px solid var(--wizard-border-light);
    background: var(--wizard-bg-option);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
}

/* Для кнопок без зображення - центруємо по вертикалі */
.option-btn:not(:has(img)) {
    justify-content: center;
}

.option-btn:hover {
    border-color: var(--wizard-primary);
    background: rgba(250, 250, 250, 0.06);
}

.option-btn.selected {
    border-color: var(--wizard-primary);
    background: rgba(244, 216, 135, 0.08);
}

/* Зображення в кнопках */
.option-btn img {
    max-width: 80px;
    max-height: 60px;
    object-fit: contain;
}

/* Текст в кнопках згідно з вимогами */
.option-btn span,
.option-btn .option-label {
    color: var(--wizard-text-option);
    text-align: center;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
}


/* Фінальний екран */
.final-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    height: 100%;
    text-align: center;
    padding: 40px;
}

.final-image {
    max-width: 200px;
    height: auto;
}

.final-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.final-title {
    color: #FAFAFA;
    font-size: 24px;
    font-family: 'Dela Gothic One', cursive;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.72px;
    margin: 0;
}

.final-description {
    color: rgba(250, 250, 250, 0.72);
    font-size: 16px;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    line-height: 140%;
    margin: 0;
}