  .checkout-wrapper .card {
      background: #fff;
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 18px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      transition: 0.3s;
  }

  .checkout-wrapper .card:hover {
      transform: translateY(-2px);
  }



  .checkout-wrapper .muted {
      color: #777;
      font-size: 13px;
  }



  /* BILLING SECTION */
  .checkout-wrapper .booking-row {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #fff;
      padding: 14px;
      border-radius: 12px;
      margin-bottom: 12px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  }

  .checkout-wrapper .booking-row .icon {
      background: #ff66001f;
      color: #ff6600;
      padding: 10px;
      border-radius: 10px;
  }

  .checkout-wrapper .booking-row .title {
      font-size: 14px;
  }

  .checkout-wrapper .booking-row .sub {
      font-size: 13px;
      color: #666;
  }

  .checkout-wrapper .booking-row.disabled {
      opacity: 0.5;
  }

  /* BUTTON */
  .checkout-wrapper .btn-primary {
      background: #ff6600;
      border: none;
      color: #fff;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 13px;
      cursor: pointer;
  }

  /* QTY */
  .checkout-wrapper .qty-box {
      display: flex;
      align-items: center;
      /* border: 1px solid #eee; */
      border-radius: 8px;
      overflow: hidden;
  }

  .checkout-wrapper .title {
      color: #000;
      font-size: 20px;
  }

  .checkout-wrapper .qty-box button {
      border: 1px solid #b3b3b3;
      background: #ffffff;
      padding: 6px 12px;
      cursor: pointer;
      /* font-weight: bold; */
      color: #5b5b5b;
      font-size: 18px;
  }

  .checkout-wrapper .flex-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 8px 0;
  }

  .date-bar {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
  }

  .date-item {
      padding: 8px 12px;
      border: 1px solid #ccc;
      cursor: pointer;
      border-radius: 6px;
      font-size: 12px;
  }

  .date-item.active {
      background: #000;
      color: #fff;
  }

  .checkout-wrapper .qty-box span {
      padding: 0 12px;
  }

  .checkout-wrapper .flex-row span {
      color: #000;
  }

  /* OFFER */
  .checkout-wrapper .offer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #ff6600;
      font-weight: 500;
      cursor: pointer;
      width: 100%;
  }

  .checkout-wrapper .offer span {
      white-space: nowrap;
  }

  /* SUMMARY */
  .checkout-wrapper .summary .row {
      font-size: 14px;
  }

  .checkout-wrapper .summary .total {
      font-weight: 600;
      font-size: 15px;
      border-top: 1px dashed #eee;
      padding-top: 10px;
  }

  /* TIPS */
  .checkout-wrapper .tips {
      display: flex;
      gap: 10px;
      margin-top: 10px;
  }

  .checkout-wrapper .tip-btn {
      border: 1px solid #ddd;
      padding: 8px 14px;
      border-radius: 20px;
      cursor: pointer;
      font-size: 13px;
      transition: 0.2s;
  }

  .checkout-wrapper .tip-btn:hover {
      border-color: #ff6600;
  }

  .checkout-wrapper .tip-btn.active {
      border-color: #ff6600;
      background: #ff66001f;
      color: #ff6600;
  }

  /* STICKY BAR */
  .checkout-wrapper .bottom-bar {
      position: sticky;
      bottom: 0;
      background: #fff;
      padding: 15px;
      border-top: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      border-radius: 12px 12px 0 0;
      box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
  }

  .checkout-wrapper .pay-btn {
      background: #ff6600;
      color: #fff;
      border: none;
      padding: 10px 18px;
      border-radius: 10px;
      cursor: pointer;
      width: 39%;
  }

  .address-modal {
      position: fixed;
      bottom: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      transition: 0.4s;
      display: none;
      justify-content: center;
      align-items: flex-end;
      z-index: 999;
  }

  .address-modal.active {
      bottom: 0;
      display: flex;
  }

  .address-modal-content {
      background: #fff;
      width: 100%;
      max-width: 500px;
      border-radius: 20px 20px 0 0;
      padding: 40px;
      animation: slideUp 0.3s ease;
  }

  @keyframes slideUp {
      from {
          transform: translateY(100%);
      }

      to {
          transform: translateY(0);
      }
  }

  .close-btn {
      position: absolute;
      right: 20px;
      top: 15px;
      cursor: pointer;
      font-size: 18px;
  }

  .search-box {
      position: relative;
      margin-bottom: 15px;
  }

  .search-box input {
      width: 100%;
      padding: 10px 40px 10px 12px;
      border: 1px solid #ddd;
      border-radius: 10px;
  }

  .search-box i {
      position: absolute;
      right: 12px;
      top: 25px;
      color: #888;
  }

  .current-location {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px;
      border: 1px dashed #ff6600;
      border-radius: 10px;
      cursor: pointer;
      color: #ff6600;
      margin-bottom: 15px;
  }

  .extra-fields {
      display: none;
  }

  .extra-fields input {
      width: 100%;
      margin-bottom: 10px;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 8px;
  }

  .submit-btn {
      width: 100%;
      background: #ff6600;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 10px;
  }

  /* BACKDROP */
  .time-slot-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      justify-content: center;
      align-items: flex-end;
      /* 👈 bottom se open */
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
  }

  /* ACTIVE */
  .time-slot-modal.active {
      opacity: 1;
      pointer-events: auto;
  }

  /* BOTTOM SHEET */
  .time-slot-content {
      background: #fff;
      width: 100%;
      max-width: 500px;
      border-radius: 20px 20px 0 0;
      padding: 20px;
      transform: translateY(100%);
      transition: transform 0.35s ease;
  }

  /* SLIDE UP */
  .time-slot-modal.active .time-slot-content {
      transform: translateY(0);
  }

  /* DRAG HANDLE (top line) */
  .time-slot-content::before {
      content: "";
      width: 50px;
      height: 5px;
      background: #ccc;
      border-radius: 10px;
      display: block;
      margin: 0 auto 10px;
  }

  /* CLOSE BUTTON */
  .time-slot-close {
      position: absolute;
      right: 15px;
      top: 10px;
      cursor: pointer;
      font-size: 18px;
  }

  /* HEADING */
  .time-slot-heading {
      text-align: center;
      font-weight: 600;
      margin-bottom: 15px;
  }

  /* GRID */
  .time-slot-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
  }

  /* SLOT */
  .time-slot-item {
      padding: 10px;
      text-align: center;
      border-radius: 10px;
      border: 1px solid #ddd;
      cursor: pointer;
      font-size: 12px;
      transition: all 0.25s ease;
  }

  /* HOVER */
  .time-slot-item:hover {
      background: #ff66001f;
      border-color: #ff6600;
  }

  /* ACTIVE */
  .time-slot-item.active {
      background: #ff6600;
      color: #fff;
      border-color: #ff6600;
      transform: scale(1.05);
  }

  /* BACKDROP */
  .coupon-offers-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      justify-content: center;
      align-items: flex-end;
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
  }

  .coupon-offers-modal.active {
      opacity: 1;
      pointer-events: auto;
  }

  /* SHEET */
  .coupon-offers-content {
      background: #fff;
      width: 100%;
      max-width: 500px;
      border-radius: 20px 20px 0 0;
      padding: 20px;
      transform: translateY(100%);
      transition: transform 0.35s ease;
      position: relative;
  }

  /* SLIDE UP */
  .coupon-offers-modal.active .coupon-offers-content {
      transform: translateY(0);
  }

  /* HANDLE */
  .coupon-offers-content::before {
      content: "";
      width: 50px;
      height: 5px;
      background: #ccc;
      border-radius: 10px;
      display: block;
      margin: 0 auto 10px;
  }

  /* CLOSE */
  .coupon-offers-close {
      position: absolute;
      right: 15px;
      top: 10px;
      cursor: pointer;
  }

  /* HEADING */
  .coupon-offers-heading {
      text-align: center;
      margin-bottom: 15px;
  }

  /* LIST */
  .coupon-offers-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  /* ITEM */
  .coupon-offers-item {
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 12px;
      transition: 0.2s;
      cursor: pointer;
  }

  .coupon-offers-item:hover {
      background: #f3f0ff;
      border-color: #6c5ce7;
  }