
.mf-step-nav__divider {
    border-top: 1px dashed #eadfce;
}

/* El cuerpo de extras-step no es un grid con gap, así que el step-nav
   queda pegado al último elemento. Le damos espacio explícito. */
.mf-product-option-card__body .mf-step-nav {
    margin-top: 16px;
}

.mf-step-nav__actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

.mf-step-nav__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 10px 16px;
    border: 0;
    border-radius: 12px;
    background: #241e1b;
    box-shadow: 0 10px 20px rgba(36, 30, 27, 0.16);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal);
}

.mf-step-nav__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(36, 30, 27, 0.2);
}

.mf-step-nav__button:disabled,
.mf-step-nav__button.is-disabled {
    background: #cfc6bb;
    box-shadow: none;
    color: #ffffff;
    cursor: not-allowed;
    transform: none;
    opacity: 0.9;
}

.mf-step-nav__button:disabled .mf-step-nav__icon,
.mf-step-nav__button.is-disabled .mf-step-nav__icon {
    color: #f4ede6;
}

.mf-step-nav__label {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.mf-step-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    color: var(--color-primary);
    flex-shrink: 0;
}

.mf-step-nav__icon svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .mf-step-nav__actions {
        justify-content: flex-end;
    }

    .mf-step-nav__button {
        width: 50%;
        justify-content: space-between;
        min-height: 42px;
        padding: 10px 16px;
    }
}
