/** Shopify CDN: Minification failed

Line 881:0 All "@import" rules must come first

**/
/* ============================================================
   THE BALLOONWALA — Mobile App Shell
   Activates on mobile (< 750px). Desktop uses standard Dawn.
   ============================================================ */

/* ---------- DESIGN TOKENS ----------
   Must be applied to EVERY app root, not just #tbw-shell.
   #tbw-ps (product sheet) and #tbw-cs (city sheet) are DOM siblings
   OUTSIDE #tbw-shell, so they do NOT inherit its custom properties.
   If the tokens live only on #tbw-shell, var(--bg) is undefined inside
   the sheets → the panel background renders transparent and the screen
   behind it bleeds through. Define the tokens on all app roots. */
#tbw-shell, #tbw-ps, #tbw-cs, #tbw-toast {
  --bg:   #faf6f0; --bg2: #f4ede2; --bg3: #ede3d5;
  --card: #fff;    --ink: #1c1208; --ink2: #3d2c18;
  --muted: #8a7060; --light: #c4b0a0;
  --border:  rgba(28,18,8,.08); --border2: rgba(28,18,8,.14);
  --coral:   #e84830; --coral-d: #c83a22;
  --coral-l: rgba(232,72,48,.09); --coral-m: rgba(232,72,48,.16);
  --gold: #c8880a; --green: #1a7a45;
  --gl: rgba(26,122,69,.1); --gb: rgba(26,122,69,.2);
  --F: 'DM Sans', system-ui, sans-serif;
  --r: 14px; --rsm: 10px; --rlg: 20px;
  --sh:  0 2px 12px rgba(28,18,8,.07);
  --shm: 0 4px 20px rgba(28,18,8,.1);
  --tab: 64px;
}

/* ---------- SHOW/HIDE LOGIC ---------- */

/* ── MOBILE: show app shell, hide Dawn chrome ── */
@media screen and (max-width: 749px) {
  #tbw-shell { display: flex; }

  #shopify-section-header,
  .shopify-section-group-header-group,
  #shopify-section-footer,
  .shopify-section-group-footer-group,
  #cart-notification-button,
  .cart-notification-wrapper { display: none !important; }

  #MainContent { padding-bottom: calc(var(--tab, 64px) + 16px) !important; }
}

/* ── DESKTOP: hide app shell entirely, Dawn renders normally ── */
@media screen and (min-width: 750px) {
  #tbw-shell  { display: none !important; }
  #tbw-ps     { display: none !important; }
  #tbw-cs     { display: none !important; }
  #tbw-toast  { display: none !important; }

  /* Restore Dawn header/footer (currently hidden globally) */
  #shopify-section-header,
  .shopify-section-group-header-group,
  #shopify-section-footer,
  .shopify-section-group-footer-group,
  #cart-notification-button,
  .cart-notification-wrapper { display: revert !important; }

  /* Remove extra bottom padding added for tab bar */
  #MainContent { padding-bottom: 0 !important; }
}

/* ---------- SHELL ---------- */
#tbw-shell {
  position: fixed;
  inset: 0;
  z-index: 99999;
  flex-direction: column;
  background: #e0d8cc;
  font-family: var(--F);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  /* Centre the 430px app card on desktop */
  align-items: center;
  justify-content: center;
  transition: filter .3s ease;
}

/* Inner app card — capped at 430px like the prototype */
#tbw-shell > * {
  width: 100%;
  max-width: 430px;
}
#tbw-sw {
  flex: 1;
  width: 100%;
  max-width: 430px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
#tbw-sb {
  max-width: 430px;
  background: var(--bg);
  box-shadow: 0 0 80px rgba(0,0,0,.15);
}
#tbw-tabs {
  max-width: 430px;
  box-shadow: 0 0 80px rgba(0,0,0,.1);
}

/* status bar removed */

/* ---------- SCREENS ---------- */
#tbw-sw { flex: 1; overflow: hidden; position: relative; }

.tbw-scr {
  position: absolute; inset: 0;
  overflow-y: auto; overflow-x: hidden;
  display: none;
  padding-bottom: calc(var(--tab) + 16px);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
  background: var(--bg);
}
.tbw-scr::-webkit-scrollbar { display: none; }
.tbw-scr.on { display: block; }

/* ---------- BOTTOM TABS ---------- */
#tbw-tabs {
  height: var(--tab);
  background: var(--card);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  padding: 4px 4px max(6px, env(safe-area-inset-bottom));
  gap: 2px;
  flex-shrink: 0;
}
.tbw-tb {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px; cursor: pointer;
  border-radius: 10px;
  transition: background .15s;
  padding: 6px 2px 4px;
  position: relative;
  text-decoration: none;
}
.tbw-tb:active { background: var(--bg2); }
.tbw-tb.on      { background: var(--coral-l); }
.tbw-tb-ic { font-size: 21px; line-height: 1; transition: transform .2s; }
.tbw-tb.on .tbw-tb-ic { transform: scale(1.12); }
.tbw-tb-lb { font-size: 10px; font-weight: 500; color: var(--muted); }
.tbw-tb.on .tbw-tb-lb { color: var(--coral); font-weight: 700; }
.tbw-tb-badge {
  position: absolute; top: 5px; right: calc(50% - 18px);
  background: var(--coral); color: #fff;
  font-size: 9px; font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid var(--card);
}

/* ---------- COMMON HEADER ---------- */
.tbw-hdr {
  padding: 14px 18px 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.tbw-hdr-g { font-size: 12px; color: var(--muted); margin-bottom: 1px; font-weight: 300; }
.tbw-hdr-t { font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -.3px; }
.tbw-hdr-r { display: flex; gap: 8px; align-items: center; }
.tbw-logo { height: 30px; width: auto; display: block; margin-bottom: 3px; }

/* Home category-section grid (2 products per row) */
.tbw-home-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; padding: 0 18px; margin-bottom: 10px;
}
.tbw-viewall {
  display: block; width: calc(100% - 36px); margin: 2px 18px 6px;
  background: var(--card); border: 1px solid var(--coral-m);
  border-radius: 10px; padding: 11px;
  font-size: 13px; font-weight: 700; color: var(--coral);
  cursor: pointer; font-family: var(--F); transition: background .15s;
}
.tbw-viewall:active { background: var(--coral-l); }

/* Required-field asterisk in product sheet */
.tbw-req { color: var(--coral); font-weight: 700; }

/* Cart icon blink after Add to Cart */
@keyframes tbwBlink {
  0%, 100% { transform: scale(1); }
  25%      { transform: scale(1.45); }
  50%      { transform: scale(.85); }
  75%      { transform: scale(1.2); }
}
.tbw-cart-blink .tbw-tb-ic { animation: tbwBlink .55s ease 2; color: var(--coral); }

/* City chip gentle bounce on landing */
@keyframes tbwCityBounce {
  0%, 100% { transform: translateY(0); }
  20%      { transform: translateY(-5px); }
  40%      { transform: translateY(0); }
  60%      { transform: translateY(-3px); }
  80%      { transform: translateY(0); }
}
.tbw-city-bounce { animation: tbwCityBounce .9s ease 1; }

.tbw-ic-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; cursor: pointer;
  box-shadow: var(--sh); position: relative; flex-shrink: 0;
  transition: background .15s;
}
.tbw-ic-btn:active { background: var(--bg2); }
.tbw-ic-btn .tbw-bdg {
  position: absolute; top: 2px; right: 2px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--coral); border: 2px solid var(--card);
}

/* ---------- CITY PILL ---------- */
.tbw-city-p {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 7px 14px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  cursor: pointer; box-shadow: var(--sh);
  transition: all .15s; white-space: nowrap;
}
.tbw-city-p:active { border-color: var(--coral); }
.tbw-cdot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ---------- SEARCH ---------- */
.tbw-srch {
  margin: 0 18px 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 11px 15px;
  display: flex; align-items: center; gap: 9px;
  box-shadow: var(--sh);
}
.tbw-srch-ic { font-size: 15px; color: var(--light); flex-shrink: 0; }
.tbw-srch input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 14px; color: var(--ink); font-family: var(--F); min-width: 0;
}
.tbw-srch input::placeholder { color: var(--light); }

/* ---------- COD BANNER ---------- */
.tbw-cod-b {
  margin: 0 18px 14px;
  background: var(--gl); border: 1px solid var(--gb);
  border-radius: var(--r); padding: 11px 14px;
  display: flex; align-items: center; gap: 10px;
}
.tbw-cod-ic { font-size: 20px; flex-shrink: 0; }
.tbw-cod-tt strong { display: block; font-size: 13px; font-weight: 600; color: var(--green); }
.tbw-cod-tt span   { font-size: 11.5px; color: var(--muted); font-weight: 300; }

/* ---------- HERO ---------- */
.tbw-hero-c {
  margin: 0 18px 14px;
  border-radius: var(--rlg); overflow: hidden;
  background: linear-gradient(135deg,#1c1208 0%,#2a1a08 100%);
  padding: 22px 20px; position: relative;
  min-height: 150px; display: flex; flex-direction: column;
  justify-content: flex-end; box-shadow: var(--shm);
}
.tbw-hero-bg { position: absolute; top: -8px; right: -8px; font-size: 88px; opacity: .08; pointer-events: none; }
.tbw-hero-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--coral-m); border: 1px solid rgba(232,72,48,.25);
  border-radius: 4px; padding: 3px 9px;
  font-size: 10px; font-weight: 700; color: var(--coral);
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 8px; width: fit-content;
}
.tbw-hero-h { font-size: 18px; font-weight: 600; color: #fff; line-height: 1.3; margin-bottom: 5px; }
.tbw-hero-h em { font-style: italic; color: var(--coral); }
.tbw-hero-sub { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 12px; font-weight: 300; }
.tbw-hero-btns { display: flex; gap: 8px; }
.tbw-hbp {
  background: var(--coral); color: #fff; border: none;
  border-radius: 8px; padding: 9px 16px;
  font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--F);
}
.tbw-hbs {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: 9px 14px;
  font-size: 13px; font-weight: 500; cursor: pointer; font-family: var(--F);
}

/* ---------- OCCASION PILLS ---------- */
.tbw-cat-row {
  display: flex; gap: 10px; overflow-x: auto;
  padding: 0 18px 4px; margin-bottom: 16px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.tbw-cat-row::-webkit-scrollbar { display: none; }
.tbw-cp {
  flex-shrink: 0; display: flex; flex-direction: column;
  align-items: center; gap: 6px; cursor: pointer;
  transition: transform .15s;
}
.tbw-cp:active { transform: scale(.95); }
.tbw-cp-ic {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; border: 2px solid transparent;
  box-shadow: var(--sh); transition: all .15s; background: var(--card);
}
.tbw-cp.on .tbw-cp-ic, .tbw-cp:active .tbw-cp-ic { border-color: var(--coral); background: var(--coral-l); }
.tbw-cp-nm { font-size: 10.5px; font-weight: 500; color: var(--muted); white-space: nowrap; }
.tbw-cp.on .tbw-cp-nm { color: var(--coral); font-weight: 700; }

/* ---------- SECTION HEADER ---------- */
.tbw-sh {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px; margin-bottom: 10px; margin-top: 4px;
}
.tbw-sh-t { font-size: 15px; font-weight: 700; color: var(--ink); }
.tbw-sh-l { font-size: 12.5px; font-weight: 600; color: var(--coral); cursor: pointer; }

/* Category section headers on Home — icon chip + hairline divider so each
   category reads as its own block instead of one continuous scroll. */
.tbw-sh--cat {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.tbw-sh-head { display: flex; align-items: center; gap: 9px; }
.tbw-sh-ic {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  box-shadow: 0 2px 6px rgba(28,18,8,.12), inset 0 1px 0 rgba(255,255,255,.65);
}
.tbw-sh--cat .tbw-sh-t { font-size: 16.5px; letter-spacing: -.2px; }

/* ---------- STATS ---------- */
.tbw-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding: 0 18px; margin-bottom: 14px;
}
.tbw-sc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--rsm); padding: 11px 6px;
  text-align: center; box-shadow: var(--sh);
}
.tbw-sn { font-size: 14px; font-weight: 700; color: var(--ink); }
.tbw-sl { font-size: 9.5px; color: var(--muted); margin-top: 2px; font-weight: 300; }

/* ---------- CITY SPECIAL ---------- */
.tbw-city-sp {
  margin: 0 18px 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 13px 14px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--sh);
}
.tbw-csp-ic { font-size: 24px; flex-shrink: 0; }
.tbw-csp-t { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.tbw-csp-s { font-size: 11.5px; color: var(--muted); font-weight: 300; }
.tbw-csp-pr {
  background: var(--coral); color: #fff;
  border-radius: 6px; padding: 5px 11px;
  font-size: 12.5px; font-weight: 700;
  white-space: nowrap; margin-left: auto; flex-shrink: 0;
}

/* ---------- HORIZONTAL SCROLL ---------- */
.tbw-hs {
  display: flex; gap: 10px; overflow-x: auto;
  padding: 0 18px 6px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.tbw-hs::-webkit-scrollbar { display: none; }

/* ---------- PRODUCT CARD VERTICAL ---------- */
.tbw-pcv {
  flex-shrink: 0; width: 152px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  cursor: pointer; box-shadow: var(--sh); transition: transform .2s;
  text-decoration: none; display: block;
}
.tbw-pcv:active { transform: scale(.97); }
.tbw-pcv-iw {
  position: relative; aspect-ratio: 4/5; height: auto; overflow: hidden;
  background: var(--bg2);
}
.tbw-pcv-iw img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
/* Hover/press image swap: 2nd image fades in on mouse hover (hover-capable
   devices only, so it never sticks on touch) or while the card is pressed. */
.tbw-pcv-img2 { opacity: 0; transition: opacity .25s ease; }
@media (hover: hover) {
  .tbw-pcv:hover .tbw-pcv-img2 { opacity: 1; }
}
.tbw-pcv.tbw-show2 .tbw-pcv-img2 { opacity: 1; }
.tbw-pcv-tag {
  position: absolute; top: 8px; left: 8px;
  font-size: 9px; font-weight: 700; padding: 3px 7px;
  border-radius: 4px; letter-spacing: .4px;
}
.tbw-t-p { background: var(--coral); color: #fff; }
.tbw-t-n { background: var(--ink); color: #fff; }
.tbw-t-b { background: var(--gold); color: #fff; }
/* body/name/enquire hidden — price now lives as overlay inside .tbw-pcv-iw */
.tbw-pcv-body { display: none; }
.tbw-pcv-pr {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(to bottom, transparent 0%, rgba(20,10,2,.68) 100%);
  color: #fff; font-size: 13px; font-weight: 800;
  padding: 28px 10px 9px; letter-spacing: .01em;
}

/* ---------- PRODUCT CARD HORIZONTAL ---------- */
.tbw-pch {
  margin: 0 18px 10px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  cursor: pointer; display: grid; grid-template-columns: 94px 1fr;
  box-shadow: var(--sh); transition: transform .15s;
  text-decoration: none;
}
.tbw-pch:active { transform: scale(.98); }
.tbw-pch-img { width: 94px; height: 94px; object-fit: cover; display: block; background: var(--bg2); }
.tbw-pch-body { padding: 12px 14px; display: flex; flex-direction: column; justify-content: space-between; }
.tbw-pch-nm {
  font-size: 13px; font-weight: 600; color: var(--ink);
  line-height: 1.35; margin-bottom: 3px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.tbw-pch-pr { font-size: 14px; font-weight: 700; color: var(--coral); margin-bottom: 8px; }
.tbw-pch-wa {
  background: var(--gl); border: 1px solid var(--gb);
  border-radius: 6px; padding: 6px 12px;
  font-size: 12px; font-weight: 600; color: var(--green);
  cursor: pointer; font-family: var(--F); width: fit-content;
}

/* ---------- EXPLORE GRID ---------- */
.tbw-exp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; padding: 0 18px; margin-bottom: 14px;
}
.tbw-eg {
  border-radius: var(--r); overflow: hidden; cursor: pointer;
  position: relative; box-shadow: var(--sh); transition: transform .2s;
  text-decoration: none; display: block;
}
.tbw-eg:active { transform: scale(.97); }
.tbw-eg-img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: var(--bg2); }
.tbw-eg-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,18,8,.8) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 12px;
}
.tbw-eg-nm { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.3; }
.tbw-eg-pr { font-size: 11.5px; color: rgba(255,255,255,.7); }

/* Filter pills */
.tbw-fp-row {
  display: flex; gap: 7px; padding: 0 18px 12px; overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.tbw-fp-row::-webkit-scrollbar { display: none; }
.tbw-fp {
  flex-shrink: 0; background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 7px 14px;
  font-size: 12.5px; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: all .15s; white-space: nowrap;
  box-shadow: var(--sh);
}
.tbw-fp.on, .tbw-fp:active { background: var(--coral); color: #fff; border-color: var(--coral); }

/* ---------- REVIEWS ---------- */
.tbw-rv {
  flex-shrink: 0; width: 240px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px; box-shadow: var(--sh);
}
.tbw-rv-stars { color: #e8a030; font-size: 12px; letter-spacing: 1px; margin-bottom: 7px; }
.tbw-rv-txt {
  font-size: 12px; color: var(--ink2); line-height: 1.65;
  margin-bottom: 10px; font-style: italic; font-weight: 300;
}
.tbw-rv-auth { display: flex; align-items: center; gap: 8px; }
.tbw-rv-av {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.tbw-rv-nm { font-size: 12px; font-weight: 600; color: var(--ink); }
.tbw-rv-lc { font-size: 10px; color: var(--muted); font-weight: 300; margin-top: 1px; }

/* Verified badges under every review */
.tbw-rv-badges {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 10px; padding-top: 9px; border-top: 1px solid var(--border);
}
.tbw-rv-bdg {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9.5px; font-weight: 600; line-height: 1;
  padding: 4px 7px; border-radius: 20px; white-space: nowrap;
}
.tbw-rv-bdg svg { display: block; }
.tbw-rv-bdg--g { background: #f1f5ff; color: #2b5fd1; border: 1px solid #d6e2ff; }
.tbw-rv-bdg--v { background: #e9f8ef; color: #1a7a45; border: 1px solid #c5ecd4; }

/* ---------- IN-SHELL CONTENT SHEET (pages / vendor / blog) ---------- */
.tbw-doc { font-size: 13px; line-height: 1.7; color: var(--ink2); font-weight: 300; padding-bottom: 8px; }
.tbw-doc h2, .tbw-doc h3, .tbw-doc h4 {
  font-size: 14px; font-weight: 700; color: var(--ink); margin: 16px 0 6px;
}
.tbw-doc p { margin: 0 0 11px; }
.tbw-doc ul { margin: 0 0 11px; padding-left: 18px; }
.tbw-doc li { margin-bottom: 5px; }
.tbw-doc a { color: var(--coral); text-decoration: underline; }
.tbw-doc img { max-width: 100%; height: auto; border-radius: 10px; margin: 8px 0; }
.tbw-doc-lead { font-size: 13px; line-height: 1.6; color: var(--ink2); font-weight: 300; margin: 0 0 14px; }
.tbw-vf .tbw-flb { margin-top: 12px; }
.tbw-vf .tbw-flb:first-child { margin-top: 0; }

/* Blog list cards */
.tbw-blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 13px 14px; margin-bottom: 10px;
  box-shadow: var(--sh); cursor: pointer; transition: transform .12s ease, border-color .12s ease;
}
.tbw-blog-card:active { transform: scale(.99); border-color: var(--coral); }
.tbw-blog-tt { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 4px; }
.tbw-blog-sm { font-size: 11.5px; color: var(--muted); font-weight: 300; line-height: 1.55; margin-bottom: 7px; }
.tbw-blog-rd { font-size: 11.5px; font-weight: 600; color: var(--coral); }

/* ---------- HOW TO BOOK ---------- */
.tbw-bk { padding: 0 18px; }
.tbw-bk-hero {
  background: linear-gradient(135deg,#1c1208,#2a1a08);
  border-radius: var(--rlg); padding: 22px; margin-bottom: 16px; box-shadow: var(--shm);
}
.tbw-bk-hero h2 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.tbw-bk-hero p { font-size: 12.5px; color: rgba(255,255,255,.4); font-weight: 300; line-height: 1.6; }
.tbw-bk-step {
  display: flex; gap: 13px; margin-bottom: 10px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px; box-shadow: var(--sh);
}
.tbw-bk-n {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--coral); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.tbw-bk-tt { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.tbw-bk-ds { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.6; }
.tbw-wa-cta {
  width: 100%; background: #25D366; color: #fff; border: none;
  border-radius: 12px; padding: 15px;
  font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--F);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 20px 0 10px; box-shadow: 0 4px 18px rgba(37,211,102,.25);
}
.tbw-bk-note { text-align: center; font-size: 11.5px; color: var(--muted); font-weight: 300; }

/* ---------- PROFILE ---------- */
.tbw-pr-top {
  padding: 20px 18px; text-align: center; border-bottom: 1px solid var(--border);
}
.tbw-pr-av {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg,var(--coral),var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 10px; box-shadow: var(--shm);
}
.tbw-pr-nm { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.2px; }
.tbw-pr-sb { font-size: 12.5px; color: var(--muted); font-weight: 300; margin-top: 3px; }
.tbw-pr-menu { padding: 8px 18px; }
.tbw-pm-i {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: all .15s;
}
.tbw-pm-i:last-child { border-bottom: none; }
.tbw-pm-i:active .tbw-pm-lb { color: var(--coral); }
.tbw-pm-ic {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.tbw-pm-lb { font-size: 14px; font-weight: 500; color: var(--ink); flex: 1; }
.tbw-pm-bg {
  background: var(--coral-l); color: var(--coral);
  border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 600;
}
.tbw-pm-ar { color: var(--light); font-size: 16px; }

/* ---------- CART ---------- */
#tbw-cart-body { padding: 0 18px; }
.tbw-flb {
  font-size: 10px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 5px;
}

/* ---------- SKELETON ---------- */
.tbw-sk {
  background: linear-gradient(90deg, var(--bg2) 25%, var(--bg3) 50%, var(--bg2) 75%);
  background-size: 200% 100%;
  animation: tbw-sk 1.4s infinite;
  border-radius: var(--r); flex-shrink: 0;
}
@keyframes tbw-sk {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- HOW IT WORKS (home screen) ---------- */
.tbw-hiw-step {
  display: flex; gap: 13px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.tbw-hiw-n {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: var(--coral); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
}
.tbw-hiw-t { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.tbw-hiw-d { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.65; }
.tbw-wa-cta {
  width: 100%; background: #25D366; color: #fff; border: none;
  border-radius: 12px; padding: 15px;
  font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--F);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 18px rgba(37,211,102,.25);
}

/* ============================================================
   PRODUCT SHEET (slide-up drawer)
   ============================================================ */
#tbw-ps {
  position: fixed; inset: 0; z-index: 100001; pointer-events: none;
}
#tbw-ps-ov {
  position: absolute; inset: 0;
  background: rgba(28,18,8,.55); opacity: 0;
  transition: opacity .3s; cursor: pointer;
}
#tbw-ps-pan {
  position: absolute; bottom: 0;
  left: 50%; transform: translateX(-50%) translateY(100%);
  width: 100%; max-width: 430px;
  background: var(--bg); border-radius: 22px 22px 0 0;
  border-top: 1px solid var(--border);
  transition: transform .38s cubic-bezier(.32,1,.32,1);
  max-height: 92%; display: flex; flex-direction: column;
  overflow: hidden; box-shadow: 0 -8px 40px rgba(28,18,8,.15);
}
#tbw-ps.open { pointer-events: auto; }
#tbw-ps.open #tbw-ps-ov { opacity: 1; }
#tbw-ps.open #tbw-ps-pan { transform: translateX(-50%) translateY(0); }

.tbw-ps-handle {
  width: 36px; height: 4px; background: var(--border2);
  border-radius: 2px; margin: 10px auto 0; flex-shrink: 0;
  cursor: grab; position: relative;
}
.tbw-ps-handle::before {
  content: ''; position: absolute;
  top: -12px; left: -40px; right: -40px; bottom: -12px;
}
#tbw-ps-body {
  overflow-y: auto; padding: 14px 18px; flex: 1;
  -webkit-overflow-scrolling: touch;
  /* Stop the browser's pull-to-refresh from firing when the sheet is
     swiped/scrolled down past the top. */
  overscroll-behavior: contain;
}
#tbw-ps-body::-webkit-scrollbar { display: none; }

/* Product sheet — swipeable scroll-snap image gallery */
.tbw-ps-gallery {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  border-radius: var(--r);
  margin-bottom: 10px;
  background: var(--bg2);
}
.tbw-ps-gallery::-webkit-scrollbar { display: none; }
.tbw-ps-gal-img {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  scroll-snap-align: start;
  border-radius: var(--r);
  display: block;
}
.tbw-ps-thumbs {
  display: flex; gap: 8px; margin-bottom: 14px;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.tbw-ps-thumbs::-webkit-scrollbar { display: none; }
.tbw-ps-thumb {
  width: 60px; height: 60px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; flex-shrink: 0;
  background: var(--bg2); transition: border-color .15s;
}
.tbw-ps-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tbw-ps-thumb.on { border-color: var(--coral); }
.tbw-ps-bdg {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; padding: 3px 8px;
  border-radius: 4px; letter-spacing: .4px;
}
.tbw-ps-nm {
  font-size: 18px; font-weight: 700; color: var(--ink);
  margin-bottom: 5px; line-height: 1.25; letter-spacing: -.2px;
}
.tbw-ps-pr-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.tbw-ps-pr { font-size: 1.4rem; font-weight: 700; color: var(--coral); }
.tbw-ps-pr-note { font-size: 11px; color: var(--muted); font-weight: 300; }
.tbw-ps-rat {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.tbw-ps-stars { color: #e8a030; font-size: 12px; letter-spacing: 1px; }
.tbw-ps-rat span { font-size: 12px; color: var(--muted); font-weight: 300; }
.tbw-ps-desc {
  font-size: 13px; color: var(--ink2); line-height: 1.75;
  margin-bottom: 14px; font-weight: 300;
}
.tbw-ps-inc {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--rsm); padding: 13px; margin-bottom: 14px;
}
.tbw-ps-inc-t {
  font-size: 10px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 9px;
}
.tbw-ps-inc-i {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--ink2); margin-bottom: 6px; font-weight: 300;
}
.tbw-ps-inc-d { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }

/* Customise */
.tbw-cust { margin-bottom: 14px; }
.tbw-cust h3 { font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.tbw-cust p { font-size: 12px; color: var(--muted); margin-bottom: 10px; font-weight: 300; line-height: 1.6; }
.tbw-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tbw-chip {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 4px; padding: 5px 10px;
  font-size: 11.5px; color: var(--muted);
  cursor: pointer; transition: all .15s; font-weight: 400;
}
.tbw-chip:active, .tbw-chip.on { background: var(--coral); color: #fff; border-color: var(--coral); }
.tbw-ps-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.tbw-ps-inp {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 12px;
  font-size: 14px; color: var(--ink); font-family: var(--F);
  outline: none; transition: border .15s; font-weight: 300; -webkit-appearance: none;
}
.tbw-ps-inp:focus { border-color: rgba(232,72,48,.35); }
.tbw-ps-inp::placeholder { color: var(--light); }
select.tbw-ps-inp, .tbw-sel {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a7060' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
  padding-right: 32px;
  cursor: pointer;
}
.tbw-ps-ta {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 12px;
  font-size: 14px; color: var(--ink); font-family: var(--F);
  outline: none; resize: none; min-height: 76px; line-height: 1.6;
  transition: border .15s; font-weight: 300;
}
.tbw-ps-ta:focus { border-color: rgba(232,72,48,.35); }
.tbw-ps-ta::placeholder { color: var(--light); }
.tbw-ps-hint { font-size: 11px; color: var(--muted); margin-top: 5px; margin-bottom: 12px; font-weight: 300; line-height: 1.6; }
.tbw-ps-hint em { color: var(--coral); font-style: normal; font-weight: 500; }
.tbw-cod-pill {
  background: var(--gl); border: 1px solid var(--gb);
  border-radius: 8px; padding: 11px 13px;
  display: flex; align-items: center; gap: 9px; margin-bottom: 14px;
}
.tbw-cod-pill strong { display: block; font-size: 12.5px; font-weight: 600; color: var(--green); }
.tbw-cod-pill span { font-size: 11px; color: var(--muted); font-weight: 300; }

/* Sheet CTAs */
#tbw-ps-ctas {
  padding: 0 18px; display: flex; flex-direction: column; gap: 8px;
  flex-shrink: 0; padding-bottom: max(16px, env(safe-area-inset-bottom));
  background: var(--bg);
}
.tbw-btn-book {
  background: var(--coral); color: #fff; border: none;
  border-radius: 10px; padding: 15px;
  font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--F);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: .1px;
}
.tbw-btn-book:active { background: var(--coral-d); transform: scale(.98); }
.tbw-cta-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tbw-btn-cart {
  background: var(--ink); color: #fff; border: none;
  border-radius: 10px; padding: 11px 8px;
  font-size: 12.5px; font-weight: 600; cursor: pointer; font-family: var(--F);
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.tbw-btn-wa-s {
  background: var(--gl); color: var(--green);
  border: 1.5px solid var(--gb); border-radius: 10px; padding: 11px 8px;
  font-size: 12.5px; font-weight: 600; cursor: pointer; font-family: var(--F);
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.tbw-ps-cta-note { text-align: center; font-size: 11px; color: var(--muted); font-weight: 300; padding-bottom: 4px; }

/* ============================================================
   CITY SHEET
   ============================================================ */
#tbw-cs {
  position: fixed; inset: 0; z-index: 100002; pointer-events: none;
}
#tbw-cs-ov {
  position: absolute; inset: 0;
  background: rgba(28,18,8,.4); opacity: 0;
  transition: opacity .3s; cursor: pointer; backdrop-filter: blur(3px);
}
#tbw-cs-pan {
  position: absolute; bottom: 0;
  left: 50%; transform: translateX(-50%) translateY(100%);
  width: 100%; max-width: 430px;
  background: var(--bg); border-radius: 20px 20px 0 0;
  border-top: 1px solid var(--border);
  padding: 10px 18px max(24px, env(safe-area-inset-bottom));
  transition: transform .35s cubic-bezier(.32,1,.32,1);
}
#tbw-cs.open { pointer-events: auto; }
#tbw-cs.open #tbw-cs-ov { opacity: 1; }
#tbw-cs.open #tbw-cs-pan { transform: translateX(-50%) translateY(0); }
.tbw-cs-title { font-size: 15px; font-weight: 700; color: var(--ink); text-align: center; margin-bottom: 14px; }
.tbw-cs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.tbw-cs-opt {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 8px;
  text-align: center; cursor: pointer; transition: all .15s; box-shadow: var(--sh);
}
.tbw-cs-opt.on, .tbw-cs-opt:active { background: var(--coral-l); border-color: var(--coral); }
.tbw-cs-nm { font-size: 13px; font-weight: 600; color: var(--ink); }
.tbw-cs-tg { font-size: 10px; color: var(--coral); font-weight: 600; margin-top: 2px; }

/* ============================================================
   TOAST
   ============================================================ */
#tbw-toast {
  position: fixed; top: 56px; left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--ink); color: #fff;
  padding: 10px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 500;
  opacity: 0; transition: all .3s;
  z-index: 900; white-space: nowrap;
  pointer-events: none; box-shadow: var(--shm);
}
#tbw-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   DM SANS FONT (mobile only)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');
/* Share button — product sheet */
.tbw-btn-share{width:100%;padding:11px;border:1.5px solid #e0e0e0;border-radius:10px;background:#fff;color:#333;font-size:13.5px;font-weight:600;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:7px;margin-bottom:8px;font-family:inherit}
.tbw-btn-share:active{background:#f5f5f5}
/* Share icon — grid card overlay (top-right of image) */
.tbw-pcv-share{position:absolute;top:7px;right:7px;width:28px;height:28px;border-radius:50%;border:none;background:rgba(255,255,255,0.92);backdrop-filter:blur(4px);cursor:pointer;display:flex;align-items:center;justify-content:center;padding:0;box-shadow:0 1px 4px rgba(0,0,0,0.18);z-index:3;color:#444;line-height:1}
.tbw-pcv-share:active{background:#f0f0f0}
