/* Класс для основных кнопок */

/* Кнопка назад */
.back-button {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    margin-bottom: 0;
}

.back-button img {
    object-fit: contain;
    width: 90%;
    height: 90%;
}

.back-button:hover {
    transform: translateX(-2px) scale(1.05);
}

.step-button {
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    flex: 1;
    height: 35px;
    touch-action: manipulation;
}

.step-button img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.step-button:hover {
    transform: scale(0.96)
}

.button-icon {
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    will-change: transform;
    flex-shrink: 0
}

.button-icon:hover {
    transform: scale(1.1);
}

.button-icon img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* Кнопки модального подтверждения */
.btn-confirm-cancel,
.btn-confirm-submit {
    flex: 1;
    height: 35px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-weight: 600;
    font-size: 14px;
}

.btn-confirm-cancel {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.btn-confirm-submit {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

.btn-confirm-cancel:hover,
.btn-confirm-submit:hover {
    transform: scale(0.96);
}
/* -------------------------------------------- */

.size-40 {
    width: 40px;
    height: 40px;
}

.size-32 {
    width: 32px;
    height: 32px;
}

.size-28 {
    width: 28px;
    height: 28px;
}

.size-24 {
    width: 24px;
    height: 24px;
}

.size-14 {
    width: 14px;
    height: 14px;
}