/* =========================
   CHECKOUT – MOBILE FIX (FINAL v2)
   Stepper 1-2-3 mobile only
   ========================= */

@media (max-width: 768px) {

  /* container ของ stepper */
  .container.stepper {
    max-width: 100%;
    padding: 0 6px;
    overflow: hidden;
  }

  /* override stepper desktop */
  .container.stepper.stepper {
    display: flex !important;
    justify-content: center !important; /* 🔹 รวมเข้าหากัน */
    gap: 10px !important;               /* 🔹 ระยะห่างใหม่ */
    margin: 10px 0 !important;
  }

  /* step แต่ละอัน */
  .container.stepper .step {
    flex: 0 0 auto;                     /* ❌ ไม่ให้ถูกบีบ */
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px !important;
    font-size: 12px !important;
    font-weight: 600;

    padding: 4px 6px;
    white-space: nowrap;
  }

  /* วงกลมตัวเลข */
  .container.stepper .step::before {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;                    /* 🔹 กันเลขถูกบีบ */
    min-height: 24px;

    font-size: 12px !important;
    line-height: 24px;
    text-align: center;

    flex-shrink: 0;
  }

}
