:root{
  --maxw: 980px;
  --pad: 14px;

  --text: rgba(15,23,42,0.92);
  --muted: rgba(15,23,42,0.62);
  --line: rgba(15,23,42,0.10);
  --border: rgba(15,23,42,0.12);

  --bg: #f6f7fb;
  --card: #ffffff;

  --brand: #f36b21;
  --brand-deep: #e85f16;
  --brand-soft: rgba(243,107,33,0.16);

  --shadow: 0 18px 40px rgba(15,23,42,0.10);
  --shadow-soft: 0 8px 18px rgba(15,23,42,0.08);

  --r-md: 14px;
  --r-lg: 18px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);

  /* hide main page scrollbar (still scrolls) */
  -ms-overflow-style: none;   /* IE/Edge legacy */
  scrollbar-width: none;      /* Firefox */
  -webkit-overflow-scrolling: touch;
}
body::-webkit-scrollbar{ width:0; height:0; } /* Chrome/Safari */


/* helpers */
.is-hidden{ display:none !important; }

/* ===================== TOP BAR ===================== */
.listTopBar{
  height: 46px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 0 var(--pad);
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
}

.circleBack{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color: rgba(15,23,42,0.70);
}
.circleBack i{ font-size: small; }


/* ===================== TRADE ASSURED STRIP (PROMINENT) ===================== */
.taStrip{
  position: sticky;
  top: 54px;
  z-index: 55;

  border-bottom: 1px solid rgba(15,23,42,0.10);

  padding: 12px var(--pad);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;

  /* Premium gold-ish gradient */
  background:
    radial-gradient(1200px 180px at 20% 0%, rgba(240, 199, 88, 0.55), rgba(255,214,102,0) 60%),
    linear-gradient(135deg, rgba(221, 97, 31, 0.92), rgba(221, 167, 6, 0.86));
}

/* Left content */
.taMain{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

/* Icon block */
.taIcon{
  width: 42px;
  height: 42px;
  border-radius: 14px;

  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  flex: 0 0 auto;
}
.taIcon i{
  font-size: medium;
  color: #ffffff;
}

/* Copy */
.taCopy{
  min-width: 0;
  flex: 1;
}

.taHeadlineRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

/* Big white title */
.taHeadline{
  font-size: large;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #ffffff;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Subtitle under headline */
.taSub{
  margin-top: 8px;
  font-size: small;
  font-weight: 600;
  line-height: 1.25;
  color: #e9e0e0;

  /* allow nice wrapping on tiny screens */
  word-break: break-word;
}

/* Brand highlight inside subtitle */
.taBrand{
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.70);
}

/* (?) help button */
.taHelp{
  width: 15px;
  height: 34px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.14);
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  color: #f1eaea;
  flex: 0 0 auto;
}
.taHelp i{
  font-size: medium;
}

/* X close button top-right */
.taClose{
  width: 15px;
  height: 15px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.14);
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  color: #f1eaea;
  flex: 0 0 auto;
}

/* Make it extra clean on very small screens */
@media (max-width: 380px){
  .taStrip{ padding: 10px var(--pad); }
  .taIcon{ width: 38px; height: 38px; border-radius: 13px; }
  .taIcon i{ font-size: 18px; }
  .taHeadline{ font-size: 14.8px; }
  .taSub{ font-size: 12.3px; }
  .taHelp, .taClose{ width: 32px; height: 32px; }
}

/* If hidden by close, JS will add .taHidden */
.taHidden{
  display:none !important;
}

/* ===================== PAGE WRAP ===================== */
.listPage{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--pad);
}

/* ===================== EMPTY ===================== */
.emptyCard{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.emptyIcon{
  font-size: 28px;
}
.emptyTitle{
  margin-top: 10px;
  font-weight: 950;
  letter-spacing: -0.2px;
}
.emptyDesc{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
}
.emptyActions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.emptyBtn{
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 0;
  background: var(--brand-deep);
  color: #fff;
  font-weight: 900;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.emptyBtn--ghost{
  background:#fff;
  border: 1px solid var(--line);
  color: var(--text);
}

/* sections */
.section{ margin-top: 14px; }
.simpleHead{ margin: 6px 2px 10px; }
.sectionTitle{
  margin:0;
  font-size: 13.5px;
  font-weight: 950;
  letter-spacing: -0.2px;
}

/* suggested scroll */
.hScroll{
  display:flex;
  gap: 10px;
  overflow:auto;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hScroll::-webkit-scrollbar{ width:0; height:0; }

.miniCard{
  width: 140px;
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: 10px;
}
.miniImg{
  height: 86px;
  border-radius: 12px;
  background: rgba(15,23,42,0.06);
  border: 1px solid rgba(15,23,42,0.08);
}
.miniName{
  margin-top: 10px;
  font-size: 12.6px;
  font-weight: 900;
  letter-spacing:-0.2px;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}
.miniMeta{
  margin-top: 6px;
  font-size: 12.2px;
  color: var(--muted);
  font-weight: 750;
}

/* explore grid (NO add button) */
.exploreGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.exploreCard{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: 10px;
}
.exploreImg{
  height: 108px;
  border-radius: 12px;
  background: rgba(15,23,42,0.06);
  border: 1px solid rgba(15,23,42,0.08);
}
.exploreName{
  margin-top: 10px;
  font-size: 12.8px;
  font-weight: 950;
  letter-spacing:-0.2px;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}
.exploreMeta{
  margin-top: 6px;
  font-size: 12.2px;
  color: var(--muted);
  font-weight: 750;
}

/* skeleton */
.sk{ height: 12px; background: rgba(15,23,42,0.08); border-radius: 8px; }
.skBox{ height: 120px; background: rgba(15,23,42,0.06); border-radius: var(--r-md); border: 1px solid rgba(15,23,42,0.08); }
.miniCard--skeleton, .exploreCard--skeleton{ opacity: .6; }
.miniCard--skeleton::before, .exploreCard--skeleton::before{
  content:"";
  display:block;
  height: 86px;
  border-radius: 12px;
  background: rgba(15,23,42,0.06);
  border: 1px solid rgba(15,23,42,0.08);
}

/* ===================== SUPPLIER GROUPS ===================== */
.supplierGroup{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  padding: 12px;
  margin-bottom: 10px;
}
.supplierHead{
  padding: 4px 2px 10px;
}
.supplierName{
  font-weight: 700;
  letter-spacing: -0.2px;
}
.supplierLead{
  margin-top: 6px;
  font-size: 12.6px;
  font-weight: 750;
  color: var(--muted);
}
.supplierDropoff{
  margin-top: 6px;
  font-size: 12.4px;
  font-weight: 800;
  color: rgba(15,23,42,0.62);
  display:flex;
  align-items:center;
  gap: 8px;
}
/* line item */
.lineItem{
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--r-md);
  background: var(--bg);
  padding: 12px;
  margin-top: 10px;
}

.lineTop{
  display:grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  align-items:start;
}
.lineImg{
  width: 78px;
  height: 78px;
  border-radius: 12px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(15,23,42,0.06);
}
.lineImg img{ width:100%; height:100%; object-fit:cover; display:block; }

.lineName{
  font-size: small;
  font-weight: 800;
  letter-spacing:-0.2px;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
  text-overflow: ellipsis; 
  white-space: nowrap;
}

.lineTop > div:last-child { min-width: 0; }

.lineMeta{
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 750;
}
.lineMeta b{ color: rgba(15,23,42,0.86); }

.lineMid{
  margin-top: 10px;
}
.linePriceRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.lineUnit{
  font-size: small;
  color: var(--muted);
  font-weight: 500;
}
.lineUnit b{ color: rgba(15,23,42,0.86); font-weight: 950; }

.qtyWrap { flex: 0 0 auto; }
@media (max-width: 360px){
  .qtyWrap { width: 100%; }
  .qty { justify-content: flex-start; }
}

.qty{
  display:flex;
  align-items:center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 999px;
  padding: 6px 10px;
}
.qtyBtn{
  width: 32px;
  height: 32px;
  border: 0;
  background: rgba(15,23,42,0.06);
  border-radius: 999px;
  cursor:pointer;
  color: var(--text);
}
.qtyVal{
  min-width: 26px;
  text-align:center;
  font-weight: 950;
  font-size: large;
}

.lineTotal{
  margin-top: 8px;
  font-size: large;
  color: var(--muted);
  font-weight: 300;
}
.lineTotal b{ color: rgba(15,23,42,0.88); font-weight: 800; font-size: medium;}

.lineActions{
  margin-top: 8px;
  display:flex;
  justify-content:flex-end;
  gap: 14px;
  align-items:center;
}
.iconAction{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 950;
  color: rgba(15,23,42,0.62);
}
.iconAction i{ font-size: large; }
.iconAction--danger{ color: rgba(220,38,38,0.92); }

.textAction{
  border: 0;
  background: transparent;
  padding: 0;
  font-size: large;
  font-weight: 950;
  color: rgba(15,23,42,0.60);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap: 8px;
}
.textAction--danger{ color: rgba(220,38,38,0.92); }



.variantRow{
  margin: 10px 0 6px;
  padding: 10px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.variantRowTitle{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(15,23,42,0.75);
  margin-bottom: 8px;
}
.variantChips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.vChip{
  display:inline-flex;
  align-items:center;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 800;
  font-size: 12px;
  color: rgba(15,23,42,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* supplier subtotal */
.supplierSubtotalRow{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(15,23,42,0.10);
  display:flex;
  justify-content:space-between;
  gap: 10px;
  font-size: 12.8px;
  color: var(--muted);
  font-weight: 850;
}
.supplierSubtotalRow b{ color: rgba(15,23,42,0.88); font-weight: 800; font-size: medium;}

/* shipping teaser (header + thin border + content box) */
.shipSection{
  margin-top: 12px;
  border-top: 1px solid rgba(15,23,42,0.10);
  padding-top: 12px;
}
.shipHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15,23,42,0.10);
}
.shipHeadTitle{
  font-weight: 800;
  font-size: medium;
  letter-spacing:-0.2px;
}
.shipHeadBtn{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.12);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color: rgba(15,23,42,0.70);
}
.shipHeadBtn i{ font-size: 14px; }

.shipTeaser{
  margin-top: 10px;
  background: rgba(15,23,42,0.05);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--r-md);
  padding: 12px;
  cursor:pointer;
}
.shipTeaserTitle{
  font-weight: 950;
  font-size: medium;
  letter-spacing: -0.2px;
}
.shipTeaserMeta{
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(15,23,42,0.72);
  font-weight: 750;
}

.sheetSectionTitle{
  font-size: medium;
  font-weight: 600;
  padding-bottom: 20px;
}

.rowRight{
  font-size: small;            /* slightly bigger than left */
  font-weight: 600;
  color: rgba(0, 0, 0, 0.92);
  line-height: 1.7;

  display: inline-flex;
  align-items: center;
  gap: 3px;

  min-width: 0;               /* prevents overflow issues */
}

.rowRight > span{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rowChevron{
  font-size: 14px;
  color: rgba(15,23,42,0.55);
  flex: 0 0 auto;
}

.rowExpand{
  overflow: visible; /* prevent nested scrolling */
}
.expandCard{
  overflow: visible;
}

/* ===== Sheet icons (subtle, consistent) ===== */
.rowIcon,
.sectionIcon,
.expandIcon,
.radioIcon,
.fIcon,
.rowSubIcon,
.carrierIcon,
.dsIcon,
.dsSumIcon{
  width: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  color: rgba(15,23,42,0.55);
  flex: 0 0 auto;
}

/* tighter spacing for some contexts */
.sectionIcon{ margin-right: 10px; }
.carrierIcon{ margin-right: 8px; margin-left: 8px; }
.rowSubIcon{ margin-right: 8px; }

/* make left labels align nicely with icon */
.rowLeft{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

/* radio rows: icon + text */
.radioText{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: rgba(15,23,42,0.84);
}

/* form labels with icons */
.fLabel{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Drop-ship intro icon spacing */
.dsIntro{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.dsIcon{
  margin: 0;
  margin-top: 2px;
}

/* Drop-ship summary icons inline */
.dsSumRow{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.dsSumIcon{
  margin: 0;
}

/* ===================== CHECKOUT BAR ===================== */
.checkoutBar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 25px rgba(15, 23, 42, 0.10);
}
.checkoutNote{
  margin-top: -4px;
  font-size: 12px;
  font-weight: 750;
  color: rgba(15,23,42,0.55);
  line-height: 1.2;
  text-align: center;
}
.checkoutInner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--pad);
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.checkoutRow{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size: 12.8px;
}
.checkoutLabel{
  color: rgba(15,23,42,0.62);
  font-weight: 900;
  display:inline-flex;
  align-items:center;
  gap: 8px;
}
.checkoutValue{
  color: rgba(15,23,42,0.90);
  font-weight: 900;
  font-size: larger;
}
.checkoutRow--muted .checkoutValue{
  color: rgba(15,23,42,0.62);
  font-weight: 600;
}

.inlineQ{
  border:0;
  background: transparent;
  cursor:pointer;
  padding: 0;
  color: rgba(15,23,42,0.52);
}
.inlineQ i{ font-size: 16px; transform: translateY(1px); }

.checkoutBtn{
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-deep);
  color: #fff;
  font-weight: 790;
  font-size: medium;
  letter-spacing: -0.1px;
  cursor: pointer;
  box-shadow: 0 12px 20px rgba(0,0,0,0.14);
}
.checkoutBtnInner{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.checkoutLinks{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
}
.checkoutLink{
  font-size: 12.5px;
  color: rgba(15,23,42,0.60);
  font-weight: 700;
  text-decoration:none;
}
.checkoutLinkBtn{
  border:0;
  background: transparent;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap: 8px;
}

.payRow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  flex-wrap:wrap;
  padding-top: 2px;
}
.payIcon{
  font-size: 24px;
}
.payVerve{
  height: 22px;
  padding: 0 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(15,23,42,0.04);
  font-weight: 950;
  font-size: 11px;
  letter-spacing: .4px;
}

/* make icons look colorful (no muted) */
.visa{ color: #1a1f71; }
.mc{ color: #eb001b; }
.bank{ color: #0f172a; }
.pp{ color: #003087; }

.listBottomSpace{
  height: 190px;
}

/* ===================== MODAL (CENTERED) ===================== */
.modal{
  position: fixed;
  inset: 0;
  z-index: 120;
  display:grid;
  place-items:center;
  padding: 14px;
}
.modalOverlay{
  position:absolute;
  inset:0;
  background: rgba(15,23,42,0.46);
}
.modalCard{
  position: relative;
  width: min(520px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modalHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(15,23,42,0.10);
}
.modalHeadLeft{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width:0;
}
.modalShield{
  color: rgba(15,23,42,0.70);
}
.modalTitle{
  font-weight: 950;
  letter-spacing:-0.2px;
}
.modalClose{
  border:0;
  background: transparent;
  cursor:pointer;
  color: rgba(15,23,42,0.60);
  width: 34px;
  height: 34px;
  border-radius: 999px;
}
.modalBody{
  padding: 14px 14px 10px;
  color: rgba(15,23,42,0.76);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}
.modalBody b{ color: rgba(15,23,42,0.92); }

.modalActions{
  padding: 12px 14px 14px;
  display:flex;
  justify-content:space-between;
  gap: 10px;
}
.mBtn{
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 950;
  cursor:pointer;
  border:0;
  flex: 1;
}
.mBtn--brand{
  background: var(--brand-deep);
  color:#fff;
}
.mBtn--white{
  background:#fff;
  border: 1px solid rgba(15,23,42,0.14);
  color: rgba(15,23,42,0.90);
}

/* ===================== SHEETS (SLIDE-UP) ===================== */
.sheet{
  position: fixed;
  inset: 0;
  z-index: 200; /* highest priority on page */
  display:grid;
  align-items:end;
}
.sheetOverlay{
  position:absolute;
  inset:0;
  background: rgba(15,23,42,0.46);
}
.sheetPanel{
  position: relative;
  width: min(720px, 100%);
  margin: 0 auto;
  background:#fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: var(--shadow);
  max-height: 82vh;

  overflow: hidden; /* keeps rounded corners clean */
  display: flex;
  flex-direction: column;
}
.sheetPanel--top{
  max-height: 92vh;
}
.sheet--hidden{ display:none; }

.sheetHead{
  position: sticky;
  top: 0;
  z-index: 5;
  background:#fff;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(15,23,42,0.10);
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.sheetTitle{
  font-weight: 950;
  letter-spacing:-0.2px;
}
.sheetClose{
  border:0;
  background: transparent;
  cursor:pointer;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: rgba(15,23,42,0.62);
}
.sheetBody{
  padding: 12px 12px 18px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.sheetBody::-webkit-scrollbar{ width: 0; height: 0; }


.sheetDivider{
  height: 1px;
  background: rgba(15,23,42,0.10);
  margin: 12px 0;
}
.sheetSectionTitle{
  font-weight: 950;
  letter-spacing:-0.2px;
  margin-bottom: 10px;
}

/* rows */
.rows{
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--r-lg);
  overflow:hidden;
  background:#fff;
}
.row{
  width: 100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border:0;
  background:#fff;
  cursor:pointer;
  text-align:left;
}
.row + .row{ border-top: 1px solid rgba(15,23,42,0.08); }

.row--static{ cursor: default; }
.rowLeft{
  font-weight: 900;
  color: rgba(15,23,42,0.78);
}
.rowRight{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: rgba(15,23,42,0.90);
  font-weight: 900;
}
.rowChevron{
  font-size: 14px;
  color: rgba(15,23,42,0.55);
}

.rowSub{
  padding: 10px 12px 12px;
  color: rgba(15,23,42,0.58);
  font-size: 12.5px;
  font-weight: 700;
  border-top: 1px solid rgba(15,23,42,0.08);
  background: rgba(15,23,42,0.02);
}

.rowExpand{
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(15,23,42,0.08);
  background: rgba(15,23,42,0.02);
}
.expandCard{
  background:#fff;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--r-md);
  padding: 12px;
}
.expandTitle{
  font-weight: 950;
  letter-spacing:-0.2px;
  margin-bottom: 10px;
}
.expandDesc{
  color: rgba(15,23,42,0.62);
  font-weight: 750;
  font-size: 12.6px;
  line-height: 1.3;
  margin-top: -6px;
  margin-bottom: 10px;
}
.radioRow{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 12px;
  background: rgba(15,23,42,0.03);
  border: 1px solid rgba(15,23,42,0.08);
  margin-top: 10px;
  font-weight: 100;
  font-size: small;
}
.radioRow input{ transform: scale(1.1); }

.ghostBtn{
  width: 100%;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.14);
  background:#fff;
  font-weight: 950;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}

/* form */
.formGrid{
  display:grid;
  gap: 10px;
}
.fRow{ display:grid; gap: 6px; }
.fRow--full{ grid-column: 1 / -1; }

.fLabel{
  font-size: 12.5px;
  color: rgba(15,23,42,0.70);
  font-weight: 900;
}
.fStatic{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.10);
  font-weight: 900;
}
.fSelect, .fInput, .fTextarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.14);
  background: #fff;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  outline: none;
}
.fTextarea{ min-height: 88px; resize: vertical; }
.fSelect:disabled{ background: rgba(15,23,42,0.03); color: rgba(15,23,42,0.55); }
.fHint{
  margin-top: -4px;
  text-align:right;
  font-size: 12px;
  color: rgba(15,23,42,0.55);
  font-weight: 750;
}

/* carriers */
.carrierList{ display:flex; flex-direction:column; gap: 10px; }
.carrierCard{
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid rgba(15,23,42,0.10);
  background:#fff;
  padding: 12px;
  text-align:left;
}
.carrierCard--active{
  border-color: rgba(243,107,33,0.30);
  box-shadow: 0 0 0 4px rgba(243,107,33,0.12);
}
.carrierCard--disabled{
  opacity: .55;
  background: rgba(15,23,42,0.02);
}
.carrierTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}
.carrierName{
  font-weight: 950;
  letter-spacing:-0.2px;
}
.carrierRec{
  color: var(--brand);
  font-weight: 950;
}
.carrierSoon{
  margin-left: 8px;
  font-size: 12.5px;
  color: rgba(15,23,42,0.60);
  font-weight: 850;
}

.cornerTick{
  width: 28px;
  height: 28px;
  border-top-right-radius: 14px;
  border-bottom-left-radius: 14px;
  border: 1px solid rgba(15,23,42,0.12);
  background: var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  flex: 0 0 auto;
}
.carrierCols{
  margin-top: 10px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.carrierCol{ display:flex; flex-direction:column; gap: 2px; }
.carrierCol--right{ align-items:flex-end; text-align:right; }
.carrierMain{ font-weight: 950; }
.carrierSub{ font-size: 12.2px; color: rgba(15,23,42,0.62); font-weight: 800; }

.carrierNote{
  margin-top: 10px;
  font-size: 12.4px;
  color: rgba(15,23,42,0.62);
  font-weight: 750;
  line-height: 1.3;
}

/* ===================== DROP-SHIP PLAN ===================== */
.dsIntro{
  color: rgba(15,23,42,0.66);
  font-weight: 750;
  font-size: 12.8px;
  line-height: 1.35;
  margin-bottom: 10px;
}
.dsAdd{
  width: 100%;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.14);
  background:#fff;
  font-weight: 950;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.recipientList{ margin-top: 12px; display:flex; flex-direction:column; gap: 12px; }

.dsSummary{
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--r-md);
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(15,23,42,0.03);
}
.dsSumRow{
  font-size: 12.8px;
  color: rgba(15,23,42,0.72);
  font-weight: 800;
}
.dsDot{ margin: 0 6px; color: rgba(15,23,42,0.40); }

.dsSave{
  margin-top: 12px;
  width: 100%;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: var(--brand-deep);
  color:#fff;
  font-weight: 950;
  cursor:pointer;
}

/* responsive */
@media (min-width: 720px){
  .exploreGrid{ grid-template-columns: 1fr 1fr 1fr; }
}



/* Hide scrollbars everywhere (still scrolls) */
html, body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* If your list page uses an inner scroll container, kill its scrollbar too */
[data-section="list"],
[data-section="empty"],
main,
.app,
.page,
.content {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
[data-section="list"]::-webkit-scrollbar,
[data-section="empty"]::-webkit-scrollbar,
main::-webkit-scrollbar,
.app::-webkit-scrollbar,
.page::-webkit-scrollbar,
.content::-webkit-scrollbar {
  width: 0;
  height: 0;
}
