/**
 * Wizard Navigation Styles
 * Навігація та прогрес-бар wizard
 */

/* Прогрес бар - строго по верхній рамці */
.wizard-progress {
    height: 8px; /* Висота тільки кольорової частини */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: #26272B;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--wizard-primary);
    border-top-left-radius: 20px;
    width: 16.66%; /* 1/6 від загальної ширини */
    transition: width 0.3s ease;
}

/* Навігація wizard - зменшуємо зсув */
.wizard-nav {
    padding: 32px;
    padding-top: 40px; /* Зменшено з 56px до 40px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 112px;
}

/* Оновлені стилі кнопки "Назад" */
.wizard-back-btn {
    height: 48px;
    display: flex;
    padding: 8px 16px 8px 4px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: var(--tp-36);
    border: none;
    color: #E4E4E7;
    text-align: center;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 140%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-back-btn:hover {
    background: rgba(250, 250, 250, 0.1);
}

.wizard-back-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.wizard-step-title {
    color: var(--wizard-text-primary);
    text-align: center;
    font-family: 'Dela Gothic One', cursive;
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.72px;
    margin: 0;
    flex: 1;
}

.wizard-counter {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: var(--wizard-border);
    border-radius: 8px;
    min-width: 64px;
    justify-content: center;
}

/* Стиль для цифри кроку з градієнтом */
.current-step {
    text-align: center;
    font-family: 'Geologica', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    background: linear-gradient(135deg, #F4D887 27.2%, #B28F57 60.81%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.total-steps {
    color: var(--wizard-text-muted);
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
}