:root {
  --brand: #d6a62b;
  --brand-dark: #9a6e08;
  --brand-soft: #fff7d9;
  --whatsapp: #168b54;
  --whatsapp-dark: #0f7042;
  --ink: #211a17;
  --muted: #756b66;
  --line: #eae3df;
  --surface: #ffffff;
  --surface-soft: #faf8f6;
  --page: #f7f5f3;
  --danger: #c1322f;
  --success: #16834a;
  --shadow-sm: 0 5px 18px rgba(53, 35, 25, .07);
  --shadow-lg: 0 22px 60px rgba(53, 35, 25, .15);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.cart-open, body.menu-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.hidden { display: none !important; }

.notice-strip {
  min-height: 38px;
  padding: 8px 16px;
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  background: #221a17;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .01em;
  text-align: center;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #53d486; box-shadow: 0 0 0 5px rgba(83, 212, 134, .14); flex: 0 0 auto; }

.store-hero {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  isolation: isolate;
  background-image: var(--hero-image);
  background-position: center 45%;
  background-size: cover;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(19, 12, 10, .92) 0%, rgba(25, 14, 9, .72) 46%, rgba(20, 12, 9, .36) 75%, rgba(20, 12, 9, .5) 100%),
    linear-gradient(0deg, rgba(14, 9, 8, .45), transparent 65%);
}
.hero-inner { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 53px 0 30px; }
.brand-row { display: grid; grid-template-columns: minmax(250px, 340px) minmax(0, 1fr) auto; gap: 26px; align-items: center; }
.brand-logo { width: min(340px, 100%); aspect-ratio: 1280 / 551; border: 1px solid rgba(255, 215, 91, .25); border-radius: 18px; object-fit: contain; background: #050505; box-shadow: 0 15px 38px rgba(0, 0, 0, .32); }
.brand-copy .eyebrow { margin: 0 0 5px; font-size: 12px; letter-spacing: .24em; font-weight: 850; color: #ffe18b; }
.brand-copy h1 { margin: 0; font-size: clamp(39px, 6vw, 65px); line-height: .98; letter-spacing: -.045em; }
.brand-copy > p:last-child { margin: 12px 0 0; max-width: 590px; color: rgba(255, 255, 255, .88); font-size: 17px; line-height: 1.5; }
.install-button {
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  padding: 11px 17px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  transition: .2s ease;
}
.install-button:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 0; }
.hero-action {
  min-width: 102px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 17px;
  padding: 11px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(255,255,255,.94);
  color: #2b211d;
  text-decoration: none;
  font-weight: 760;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
  transition: .2s ease;
}
.hero-action:hover { transform: translateY(-2px); background: #fff; }
.action-icon { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-dark); font-size: 17px; }

.store-tabs {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(226,218,213,.9);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(15px);
}
.tabs-inner { width: min(1180px, calc(100% - 32px)); height: 62px; margin: 0 auto; display: flex; align-items: center; gap: 6px; }
.store-tab {
  position: relative;
  height: 100%;
  border: 0;
  padding: 0 23px;
  background: transparent;
  color: var(--muted);
  font-weight: 780;
  cursor: pointer;
}
.store-tab::after { content: ""; position: absolute; left: 21px; right: 21px; bottom: -1px; height: 3px; border-radius: 3px 3px 0 0; background: transparent; }
.store-tab.active { color: var(--ink); }
.store-tab.active::after { background: var(--brand); }
.nav-search { margin-left: auto; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-soft); cursor: pointer; font-size: 23px; }

.page-shell {
  width: min(1480px, calc(100% - 32px));
  margin: 22px auto 90px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}
.page-shell.menu-collapsed {
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 24px;
}
.catalog-column { min-width: 0; }
.menu-sidebar {
  position: sticky;
  top: 84px;
  min-width: 0;
  max-height: calc(100vh - 106px);
}
.menu-sidebar-inner {
  max-height: calc(100vh - 106px);
  padding: 16px 12px 12px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.menu-sidebar-header {
  padding: 2px 5px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.menu-sidebar-header h2 { margin: 0; font-size: 24px; letter-spacing: -.025em; }
.menu-close { display: none; }
.menu-all-button {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 7px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  background: var(--surface-soft);
  text-align: left;
  cursor: pointer;
}
.menu-all-button.active {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: inset 3px 0 0 var(--brand);
}
.menu-all-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--brand-dark);
  font-size: 19px;
  box-shadow: 0 3px 12px rgba(53,35,25,.08);
}
.menu-all-button strong, .menu-all-button small { display: block; }
.menu-all-button strong { font-size: 13px; }
.menu-all-button small { margin-top: 3px; color: var(--muted); font-size: 10.5px; }
.mobile-menu-button { display: none; }
.search-trigger {
  width: 100%;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  color: #8a817d;
  cursor: text;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.search-trigger > span:first-child { font-size: 25px; color: #564d48; }
.search-trigger > span:nth-child(2) { flex: 1; }
kbd { border: 1px solid #ddd4cf; border-bottom-width: 2px; border-radius: 7px; padding: 3px 8px; background: #fbfaf9; color: #9b918c; font-size: 12px; }

.more-panel { margin-top: 24px; }
.section-title-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.section-title-row.compact { margin-bottom: 8px; align-items: center; }
.section-title-row h2, .section-title-row h3 { margin: 0; font-size: 25px; letter-spacing: -.025em; }
.section-kicker { margin: 0 0 5px; color: var(--brand-dark); font-size: 11px; letter-spacing: .17em; font-weight: 850; }
.text-button, .clear-filter { border: 0; padding: 6px 0; background: transparent; color: var(--brand-dark); font-weight: 780; cursor: pointer; }
.category-rail {
  min-height: 0;
  margin-top: 8px;
  padding: 2px 3px 3px 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}
.category-card {
  width: 100%;
  min-height: 62px;
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 6px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  overflow: hidden;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.category-card:hover { transform: translateX(2px); border-color: #ead7cf; background: #fffaf7; }
.category-card.active {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: inset 3px 0 0 var(--brand);
}
.category-card img { width: 50px; height: 50px; border-radius: 11px; object-fit: cover; }
.category-card-copy { min-width: 0; padding: 0 3px 0 0; }
.category-card strong { display: block; font-size: 12.5px; line-height: 1.25; }
.category-card small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }

.filter-toolbar { position: sticky; top: 62px; z-index: 20; margin: 18px -4px 0; padding: 10px 4px; display: flex; align-items: center; gap: 10px; background: linear-gradient(var(--page) 82%, rgba(247,245,243,0)); }
.filter-scroller { display: flex; gap: 8px; min-width: 0; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.filter-scroller::-webkit-scrollbar { display: none; }
.filter-chip {
  flex: 0 0 auto;
  border: 1px solid #dfd7d2;
  border-radius: 999px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  color: #4e4541;
  font-size: 13px;
  font-weight: 740;
  cursor: pointer;
}
.filter-chip.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.veg-symbol, .nonveg-symbol { width: 13px; height: 13px; display: inline-block; border: 1.5px solid #16834a; border-radius: 2px; position: relative; }
.veg-symbol::after, .nonveg-symbol::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: #16834a; }
.nonveg-symbol { border-color: #bb2525; }
.nonveg-symbol::after { background: #bb2525; }
.sort-control { flex: 0 0 auto; }
.sort-control select { height: 38px; border: 1px solid #dfd7d2; border-radius: 999px; padding: 0 31px 0 13px; background: var(--surface); color: #4e4541; font-size: 12.5px; font-weight: 700; outline: none; }
.active-result-row { min-height: 38px; margin: 7px 0 9px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.active-result-row strong { font-size: 17px; }
.active-result-row span { margin-left: 7px; color: var(--muted); font-size: 13px; }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.product-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  min-height: 191px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(61,39,27,.11); }
.product-info { min-width: 0; padding: 16px 12px 15px 16px; display: flex; flex-direction: column; }
.food-type-row { display: flex; align-items: center; gap: 7px; min-height: 18px; }
.food-type-row .veg-symbol, .food-type-row .nonveg-symbol { width: 14px; height: 14px; }
.mini-badge { border-radius: 5px; padding: 3px 6px; background: #fff0e8; color: #b94721; font-size: 9.5px; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.mini-badge.featured { background: #fff7d9; color: #8a6500; }
.product-info h3 { margin: 7px 0 5px; font-size: 16.5px; line-height: 1.25; letter-spacing: -.014em; }
.product-description { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.price-line { margin-top: auto; padding-top: 10px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; }
.current-price { font-size: 17px; font-weight: 850; }
.old-price { color: #a59b96; font-size: 12px; text-decoration: line-through; }
.save-label { color: var(--success); font-size: 10.5px; font-weight: 750; }
.stock-line { margin-top: 4px; color: var(--success); font-size: 10.5px; font-weight: 720; }
.stock-line.low { color: #bc6b00; }
.stock-line.out { color: var(--danger); }
.product-visual { position: relative; min-width: 0; padding: 12px 12px 45px 0; }
.product-visual img { width: 100%; height: 119px; border-radius: 15px; object-fit: cover; background: #eee7e2; cursor: pointer; }
.add-control { position: absolute; right: 20px; bottom: 12px; min-width: 104px; height: 38px; }
.add-button {
  width: 100%; height: 100%; border: 1.5px solid var(--brand); border-radius: 10px; background: #fff; color: var(--brand-dark); font-size: 13px; font-weight: 850; text-transform: uppercase; cursor: pointer; box-shadow: 0 4px 10px rgba(178,65,29,.09);
}
.add-button:hover { background: var(--brand-soft); }
.add-button:disabled { border-color: #d9d1cc; color: #a59c98; background: #f7f5f3; cursor: not-allowed; box-shadow: none; }
.inline-quantity { width: 100%; height: 100%; border-radius: 10px; display: grid; grid-template-columns: 35px 1fr 35px; align-items: center; overflow: hidden; background: var(--brand); color: #fff; box-shadow: 0 4px 12px rgba(195,64,26,.25); }
.inline-quantity button { height: 100%; border: 0; background: transparent; color: #fff; font-size: 20px; cursor: pointer; }
.inline-quantity strong { text-align: center; font-size: 13px; }

.empty-state { margin-top: 16px; border: 1px dashed #d7cec8; border-radius: 22px; padding: 50px 20px; background: var(--surface); text-align: center; }
.empty-icon { width: 55px; height: 55px; margin: 0 auto 12px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-dark); font-size: 29px; }
.empty-state h2 { margin: 0; }
.empty-state p { color: var(--muted); }
.secondary-button { border: 1px solid #d8cec8; border-radius: 12px; padding: 10px 16px; background: #fff; font-weight: 750; cursor: pointer; }

.cart-panel {
  position: sticky;
  top: 84px;
  max-height: calc(100vh - 104px);
  border: 1px solid var(--line);
  border-radius: 23px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.cart-handle { display: none; }
.cart-header { height: 79px; padding: 17px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.cart-header h2 { margin: 0; font-size: 22px; letter-spacing: -.025em; }
.round-button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 19px; }
.cart-close { display: none; }
.cart-scroll { max-height: calc(100vh - 183px); overflow-y: auto; overscroll-behavior: contain; }
.cart-empty { padding: 36px 20px; text-align: center; }
.empty-bag { width: 54px; height: 54px; margin: 0 auto 11px; border-radius: 17px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-dark); font-size: 29px; transform: rotate(180deg); }
.cart-empty h3 { margin: 0; font-size: 17px; }
.cart-empty p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.cart-lines { padding: 4px 16px 3px; }
.cart-line { padding: 13px 0; display: grid; grid-template-columns: 52px minmax(0, 1fr) auto; gap: 10px; align-items: center; border-bottom: 1px solid #f0ebe8; }
.cart-line img { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; background: #eee; }
.cart-line-copy { min-width: 0; }
.cart-line-copy strong { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 13px; }
.cart-line-copy small { display: block; margin-top: 3px; color: var(--muted); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 10.5px; }
.cart-line-copy b { display: block; margin-top: 5px; font-size: 12px; }
.cart-quantity { height: 31px; border: 1px solid #efd1c4; border-radius: 9px; display: grid; grid-template-columns: 27px 25px 27px; align-items: center; overflow: hidden; color: var(--brand-dark); }
.cart-quantity button { height: 100%; border: 0; background: var(--brand-soft); color: inherit; cursor: pointer; }
.cart-quantity b { text-align: center; font-size: 11px; }
.bill-card { margin: 12px 16px 5px; border: 1px solid var(--line); border-radius: 16px; padding: 13px; background: #fcfbfa; }
.bill-line { padding: 5px 0; display: flex; justify-content: space-between; gap: 12px; color: #5f5651; font-size: 12px; }
.bill-line strong { color: var(--ink); }
.saving-line strong { color: var(--success); }
.grand-line { margin-top: 7px; padding-top: 11px; border-top: 1px dashed #d9d0ca; font-size: 15px; font-weight: 850; }
.delivery-progress { height: 5px; margin-top: 11px; border-radius: 999px; overflow: hidden; background: #eadfd9; }
.delivery-progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--success); transition: width .3s ease; }
.free-delivery-message { margin: 7px 0 0; color: var(--success); font-size: 10.5px; font-weight: 720; }
.pricing-note { margin: 9px 0 0; color: #9a908a; font-size: 9.5px; line-height: 1.4; }
.checkout-form { padding: 11px 16px 22px; }
.order-type-fieldset { border: 0; margin: 0 0 13px; padding: 0; }
.order-type-fieldset legend, .field label { display: block; margin-bottom: 6px; color: #514944; font-size: 11.5px; font-weight: 740; }
.field label span { color: #948a84; font-weight: 500; }
.segmented-control { border: 1px solid #ddd4cf; border-radius: 12px; padding: 3px; display: grid; grid-template-columns: repeat(3, 1fr); background: #f4f1ef; }
.segmented-control input { position: absolute; opacity: 0; pointer-events: none; }
.segmented-control span { height: 35px; border-radius: 9px; display: grid; place-items: center; color: #786e68; font-size: 11.5px; font-weight: 750; cursor: pointer; }
.segmented-control input:checked + span { background: #fff; color: var(--ink); box-shadow: 0 3px 9px rgba(50,35,28,.09); }
.field { margin-bottom: 12px; }
.field input, .field textarea, .field select, .checkout-form > .field select {
  width: 100%; min-height: 43px; border: 1px solid #ded6d1; border-radius: 11px; padding: 10px 11px; background: #fff; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(239,91,42,.1); }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--danger); }
.two-fields { display: grid; grid-template-columns: 1fr 1.35fr; gap: 9px; }
.location-button { width: 100%; margin-bottom: 12px; border: 1px solid #d7e8dc; border-radius: 12px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; background: #f4fbf6; color: #1e613d; text-align: left; cursor: pointer; }
.location-button > span:first-child { width: 31px; height: 31px; border-radius: 50%; display: grid; place-items: center; background: #dff3e6; font-size: 19px; }
.location-button strong, .location-button small { display: block; }
.location-button strong { font-size: 11.5px; }
.location-button small { margin-top: 2px; color: #609174; font-size: 9.5px; }
.upi-card { margin: 15px 0; border: 1px solid #d8e8de; border-radius: 14px; padding: 12px; background: #f6fbf8; }
.upi-card > div { display: flex; align-items: center; gap: 9px; }
.upi-icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: #dff1e5; color: #16643c; font-size: 18px; font-weight: 900; }
.upi-card strong, .upi-card p { display: block; margin: 0; }
.upi-card p { margin-top: 2px; color: #698476; font-size: 9px; }
.upi-card button { margin: 9px 0 7px; border: 1px solid #bdd8c7; border-radius: 8px; padding: 6px 9px; background: #fff; color: #226440; font-size: 10px; font-weight: 750; cursor: pointer; }
.upi-card > small { display: block; color: #748079; font-size: 9px; line-height: 1.4; }
.form-error { margin-bottom: 11px; border: 1px solid #e9b3b1; border-radius: 10px; padding: 9px 10px; background: #fff2f2; color: #9a2624; font-size: 10.5px; line-height: 1.5; }
.whatsapp-button { width: 100%; min-height: 50px; border: 0; border-radius: 13px; display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--whatsapp); color: #fff; font-weight: 850; cursor: pointer; box-shadow: 0 10px 22px rgba(20,139,82,.22); }
.whatsapp-button:hover { background: var(--whatsapp-dark); }
.whatsapp-button:disabled { opacity: .65; cursor: wait; }
.whatsapp-mark { width: 23px; height: 23px; border: 2px solid #fff; border-radius: 50%; display: grid; place-items: center; font-size: 10px; }
.add-more-button { width: 100%; margin-top: 7px; border: 0; padding: 9px; background: transparent; color: var(--brand-dark); font-size: 11.5px; font-weight: 750; cursor: pointer; }

.more-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.more-photo-grid img { width: 100%; height: 260px; border-radius: 20px; object-fit: cover; box-shadow: var(--shadow-sm); }
.faq-card, .contact-card { margin-top: 15px; border: 1px solid var(--line); border-radius: 20px; padding: 19px; background: var(--surface); box-shadow: var(--shadow-sm); }
.faq-card h2, .contact-card h3 { margin: 0 0 10px; }
.faq-card details { border-top: 1px solid #eee8e4; }
.faq-card details:first-of-type { border-top: 0; }
.faq-card summary { padding: 14px 0; font-weight: 750; cursor: pointer; }
.faq-card details p { margin: -3px 0 14px; color: var(--muted); line-height: 1.55; }
.contact-card > p { color: var(--muted); line-height: 1.55; }
.contact-links { display: flex; flex-wrap: wrap; gap: 9px; }
.contact-links a { border: 1px solid var(--line); border-radius: 11px; padding: 9px 13px; color: var(--brand-dark); text-decoration: none; font-weight: 750; }
.payment-line, .gst-line { font-size: 12px; }

.floating-cart { display: none; }
.cart-backdrop, .menu-backdrop { display: none; }

.search-dialog, .product-dialog {
  border: 0;
  padding: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 30px 90px rgba(29,18,13,.28);
}
.search-dialog::backdrop, .product-dialog::backdrop { background: rgba(31,22,18,.58); backdrop-filter: blur(3px); }
.search-dialog { width: min(680px, calc(100% - 26px)); max-height: min(740px, calc(100vh - 36px)); border-radius: 23px; overflow: hidden; }
.dialog-topbar { padding: 13px; display: flex; gap: 10px; border-bottom: 1px solid var(--line); }
.dialog-search-box { flex: 1; min-width: 0; height: 43px; border: 1px solid #ded6d1; border-radius: 12px; display: flex; align-items: center; gap: 8px; padding: 0 10px; }
.dialog-search-box > span { color: #777; font-size: 22px; }
.dialog-search-box input { min-width: 0; flex: 1; border: 0; outline: 0; }
.dialog-search-box button { border: 0; background: transparent; color: #7e746f; font-size: 20px; cursor: pointer; }
.search-dialog-body { padding: 18px; max-height: calc(100vh - 125px); overflow-y: auto; }
.popular-category-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.popular-category-list button { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; background: #fff; font-size: 12px; font-weight: 700; cursor: pointer; }
.search-result-heading { display: flex; justify-content: space-between; align-items: center; }
.search-result-heading h3 { margin: 0; }
.search-result-heading span { color: var(--muted); font-size: 12px; }
.search-results { margin-top: 10px; }
.search-result { width: 100%; border: 0; border-top: 1px solid #eee8e4; padding: 10px 0; display: grid; grid-template-columns: 55px minmax(0,1fr) auto; gap: 11px; align-items: center; background: #fff; text-align: left; cursor: pointer; }
.search-result:first-child { border-top: 0; }
.search-result img { width: 55px; height: 55px; border-radius: 11px; object-fit: cover; }
.search-result strong { display: block; font-size: 13px; }
.search-result small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.search-result b { font-size: 13px; }

.product-dialog { width: min(520px, calc(100% - 24px)); max-height: calc(100vh - 30px); border-radius: 24px; overflow: auto; }
.dialog-dismiss { position: sticky; top: 12px; z-index: 2; float: right; margin: 12px 12px -50px 0; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(21,17,15,.72); color: #fff; font-size: 24px; cursor: pointer; backdrop-filter: blur(7px); }
.product-dialog-image { width: 100%; height: 285px; object-fit: cover; background: #eee; }
.product-dialog-copy { padding: 19px; }
.product-dialog-copy h2 { margin: 7px 0 8px; font-size: 25px; line-height: 1.2; letter-spacing: -.025em; }
.product-dialog-copy > p { color: var(--muted); line-height: 1.55; }
.dialog-price { display: flex; align-items: center; gap: 9px; margin: 13px 0; }
.dialog-price .current-price { font-size: 23px; }
.secure-points { margin: 15px 0; padding: 13px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border-radius: 14px; background: #f8f5f2; color: #635954; font-size: 11px; }
.dialog-field { margin-top: 13px; }
.dialog-field label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 750; }
.dialog-field select, .dialog-field textarea { width: 100%; border: 1px solid #ddd4cf; border-radius: 11px; padding: 10px; outline: none; }
.dialog-add-row { margin-top: 17px; display: grid; grid-template-columns: 116px 1fr; gap: 10px; }
.dialog-quantity { height: 48px; border: 1px solid #e4b8a6; border-radius: 12px; display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; overflow: hidden; color: var(--brand-dark); }
.dialog-quantity button { height: 100%; border: 0; background: var(--brand-soft); color: inherit; font-size: 20px; cursor: pointer; }
.dialog-quantity strong { text-align: center; }
.dialog-add-button { border: 0; border-radius: 12px; background: var(--brand); color: #fff; font-weight: 850; cursor: pointer; }
.dialog-add-button:disabled { background: #c9c1bd; cursor: not-allowed; }

.toast-region { position: fixed; right: 17px; bottom: 18px; z-index: 100; display: grid; gap: 8px; pointer-events: none; }
.toast { min-width: 220px; max-width: 350px; border-radius: 12px; padding: 11px 13px; background: #211a17; color: #fff; box-shadow: 0 12px 35px rgba(0,0,0,.25); font-size: 12px; animation: toast-in .25s ease; }
.toast.error { background: #9b2623; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }

.site-footer { border-top: 1px solid var(--line); padding: 25px 16px 35px; background: #fff; color: var(--muted); text-align: center; font-size: 11px; line-height: 1.5; }
.site-footer p { margin: 4px 0; }
.site-footer a { color: var(--brand-dark); }

@media (max-width: 1300px) {
  .page-shell { grid-template-columns: 190px minmax(0, 1fr) 330px; gap: 14px; }
  .page-shell.menu-collapsed { grid-template-columns: minmax(0, 1fr) 342px; gap: 16px; }
  .menu-sidebar-inner { padding-left: 9px; padding-right: 9px; }
  .category-card { grid-template-columns: 46px minmax(0, 1fr); gap: 7px; padding: 5px; }
  .category-card img { width: 46px; height: 46px; }
  .category-card strong { font-size: 11.5px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 178px; }
  .product-visual img { height: 108px; }
}

@media (max-width: 900px) {
  body { padding-bottom: calc(84px + var(--safe-bottom)); }
  .notice-strip { font-size: 11px; }
  .store-hero { min-height: 390px; }
  .hero-inner { width: calc(100% - 28px); padding-top: 58px; }
  .brand-row { grid-template-columns: 1fr; gap: 13px; }
  .brand-logo { width: min(235px, 76vw); border-radius: 14px; }
  .brand-copy h1 { font-size: 37px; }
  .brand-copy > p:last-child { font-size: 13px; margin-top: 8px; }
  .install-button { position: absolute; right: 14px; top: 12px; padding: 8px 11px; font-size: 10px; }
  .hero-actions { margin: 25px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .hero-action { min-width: 0; padding: 9px 5px; border-radius: 14px; flex-direction: column; gap: 4px; font-size: 10px; }
  .action-icon { width: 27px; height: 27px; }
  .tabs-inner { width: 100%; padding: 0 10px; height: 56px; }
  .store-tab { flex: 1; padding: 0 8px; }
  .store-tab::after { left: 22px; right: 22px; }
  .nav-search { flex: 0 0 38px; }
  .page-shell, .page-shell.menu-collapsed { width: calc(100% - 24px); margin: 15px auto 30px; display: block; }
  .menu-sidebar {
    position: fixed;
    z-index: 85;
    inset: 0 auto 0 0;
    width: min(86vw, 330px);
    max-height: none;
    transform: translateX(-105%);
    transition: transform .28s cubic-bezier(.22,.75,.23,1);
  }
  .menu-sidebar.open { transform: translateX(0); }
  .menu-sidebar-inner {
    width: 100%;
    height: 100%;
    max-height: none;
    padding: calc(18px + env(safe-area-inset-top)) 13px calc(14px + var(--safe-bottom));
    border: 0;
    border-radius: 0 24px 24px 0;
    box-shadow: 22px 0 60px rgba(38,23,16,.25);
  }
  .menu-close { display: grid; place-items: center; }
  .menu-all-button { min-height: 62px; }
  .category-rail { margin-top: 10px; padding-right: 5px; }
  .category-card { min-height: 66px; grid-template-columns: 52px minmax(0, 1fr); gap: 10px; padding: 6px; }
  .category-card img { width: 52px; height: 52px; }
  .category-card strong { font-size: 13px; }
  .category-card small { font-size: 10.5px; }
  .mobile-menu-button {
    width: 100%;
    min-height: 58px;
    border: 1px solid #e8cfc4;
    border-radius: var(--radius);
    padding: 8px 13px;
    display: grid;
    grid-template-columns: 37px minmax(0, 1fr) 18px;
    gap: 10px;
    align-items: center;
    background: var(--brand-soft);
    color: var(--brand-dark);
    text-align: left;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
  }
  .mobile-menu-button > span:first-child { width: 37px; height: 37px; border-radius: 11px; display: grid; place-items: center; background: #fff; font-size: 18px; }
  .mobile-menu-button strong, .mobile-menu-button small { display: block; }
  .mobile-menu-button strong { font-size: 13px; }
  .mobile-menu-button small { margin-top: 2px; color: var(--muted); font-size: 10px; }
  .mobile-menu-button > span:last-child { font-size: 24px; }
  .search-trigger { height: 52px; margin-top: 10px; }
  .section-title-row h2 { font-size: 21px; }
  .text-button { font-size: 11px; }
  .filter-toolbar { top: 56px; margin-top: 13px; }
  .sort-control { display: none; }
  .product-grid { gap: 11px; }
  .product-card { grid-template-columns: minmax(0, 1fr) 132px; min-height: 166px; border-radius: 17px; }
  .product-info { padding: 13px 8px 12px 13px; }
  .product-info h3 { font-size: 14.5px; }
  .product-description { font-size: 11px; -webkit-line-clamp: 2; }
  .current-price { font-size: 15px; }
  .product-visual { padding: 10px 10px 42px 0; }
  .product-visual img { height: 98px; border-radius: 13px; }
  .add-control { right: 16px; bottom: 9px; min-width: 92px; height: 35px; }
  .mini-badge { display: none; }
  .cart-panel {
    position: fixed;
    z-index: 70;
    inset: auto 0 0;
    top: max(32px, env(safe-area-inset-top));
    max-height: none;
    border: 0;
    border-radius: 24px 24px 0 0;
    transform: translateY(105%);
    transition: transform .3s cubic-bezier(.22,.75,.23,1);
    box-shadow: 0 -20px 60px rgba(38,23,16,.23);
  }
  .cart-panel.open { transform: translateY(0); }
  .cart-handle { display: block; width: 38px; height: 4px; border-radius: 3px; margin: 8px auto -3px; background: #d7cfcb; }
  .cart-header { height: 70px; padding: 12px 17px; }
  .cart-close { display: grid; place-items: center; }
  .cart-scroll { max-height: calc(100dvh - 108px - env(safe-area-inset-top)); padding-bottom: var(--safe-bottom); }
  .cart-backdrop, .menu-backdrop { position: fixed; inset: 0; display: block; visibility: hidden; opacity: 0; background: rgba(28,20,16,.52); transition: .25s ease; }
  .cart-backdrop { z-index: 65; }
  .menu-backdrop { z-index: 80; }
  .cart-backdrop.visible, .menu-backdrop.visible { visibility: visible; opacity: 1; }
  .floating-cart {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + var(--safe-bottom));
    z-index: 60;
    min-height: 61px;
    border: 0;
    border-radius: 16px;
    padding: 9px 13px;
    display: grid;
    grid-template-columns: 35px 1fr 20px;
    gap: 10px;
    align-items: center;
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 14px 34px rgba(15,112,66,.35);
    text-align: left;
    cursor: pointer;
  }
  .floating-cart.hidden { display: none !important; }
  .floating-count { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.17); font-weight: 850; }
  .floating-cart small, .floating-cart strong { display: block; }
  .floating-cart small { opacity: .86; font-size: 9.5px; }
  .floating-cart strong { margin-top: 2px; font-size: 14px; }
  .more-photo-grid img { height: 180px; }
  .search-dialog { width: 100%; max-width: none; max-height: none; height: 100dvh; margin: 0; border-radius: 0; }
  .search-dialog-body { max-height: calc(100dvh - 70px); }
  .product-dialog { width: 100%; max-width: none; max-height: calc(100dvh - 18px); margin: auto 0 0; border-radius: 24px 24px 0 0; }
  .product-dialog-image { height: 260px; }
  .toast-region { left: 12px; right: 12px; bottom: calc(82px + var(--safe-bottom)); }
  .toast { max-width: none; }
}

@media (max-width: 410px) {
  .brand-copy h1 { font-size: 32px; }
  .brand-copy > p:last-child { font-size: 11.5px; }
  .product-card { grid-template-columns: minmax(0, 1fr) 120px; }
  .product-visual img { height: 90px; }
  .old-price, .save-label { display: none; }
  .more-photo-grid { grid-template-columns: 1fr; }
  .more-photo-grid img { height: 210px; }
  .dialog-add-row { grid-template-columns: 105px 1fr; }
}

.checkout-account-note {
  margin-bottom: 15px;
  border: 1px solid #eadba9;
  border-radius: 14px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  background: #fff9e7;
}
.checkout-account-note > span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d6a62b;
  color: #1c1506;
  font-weight: 900;
}
.checkout-account-note strong,
.checkout-account-note small { display: block; }
.checkout-account-note strong { font-size: 12.5px; }
.checkout-account-note small { margin-top: 2px; color: var(--muted); font-size: 10.5px; line-height: 1.35; }
.checkout-account-note a { color: var(--brand-dark); font-size: 12px; font-weight: 850; text-decoration: none; }

/* -------------------------------------------------------------------------
   SwaadBhoomi business-suite additions: offers, variants, booking and maps
   ------------------------------------------------------------------------- */
.notice-ticker {
  position: relative;
  z-index: 45;
  width: 100%;
  min-height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #17110e;
  color: #fff3c2;
  border-bottom: 1px solid rgba(255, 218, 112, .18);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .045em;
  white-space: nowrap;
}
.ticker-track {
  width: max-content;
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 54px;
  padding: 9px 0;
  will-change: transform;
  animation: swaad-ticker var(--ticker-duration, 24s) linear infinite;
}
.ticker-track span { display: inline-block; padding-left: 22px; }
.notice-ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes swaad-ticker { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; width: 100%; justify-content: center; } .ticker-track span:not(:first-child) { display: none; } }

.store-hero { background-color: #17100d; }
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* The supplied logo remains clearly visible without dominating the hero. */
.brand-row { grid-template-columns: minmax(175px, 245px) minmax(0, 1fr) auto; }
.brand-logo { width: min(245px, 100%); }

.offer-tab { display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.offer-tab > span {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 900;
}
.blink-offer { color: #8a5c00; }
.blink-offer > span { animation: offer-pulse 1.1s ease-in-out infinite; }
@keyframes offer-pulse { 0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(214,166,43,.45); } 50% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(214,166,43,0); } }

.offers-panel { min-height: 520px; }
.promotion-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.promotion-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid #e8d9b4;
  border-radius: 21px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  background: linear-gradient(135deg, #2a1d16 0%, #6c4817 100%);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.promotion-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .48; }
.promotion-card > div { position: relative; z-index: 1; padding: 24px; background: linear-gradient(0deg, rgba(17,10,7,.9), rgba(17,10,7,.08)); }
.promotion-card span { color: #ffe59a; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.promotion-card h3 { margin: 6px 0; font-size: 23px; letter-spacing: -.03em; }
.promotion-card p { margin: 0 0 13px; max-width: 520px; color: rgba(255,255,255,.84); font-size: 12px; line-height: 1.5; }
.promotion-card a, .promotion-card button { min-height: 36px; border: 0; border-radius: 10px; padding: 0 13px; display: inline-flex; align-items: center; background: var(--brand); color: #241a08; text-decoration: none; font-size: 11px; font-weight: 850; cursor: pointer; }
.default-promotion { grid-column: 1 / -1; }
.blinking-card { animation: promotion-glow 1.7s ease-in-out infinite; }
@keyframes promotion-glow { 50% { box-shadow: 0 0 0 4px rgba(214,166,43,.21), 0 18px 45px rgba(96,60,9,.18); } }

.coupon-showcase { margin-top: 19px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.coupon-ticket {
  position: relative;
  overflow: hidden;
  border: 1px dashed #cda436;
  border-radius: 17px;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  background: #fffaf0;
}
.coupon-ticket::before, .coupon-ticket::after { content: ""; position: absolute; top: 50%; width: 18px; height: 18px; border-radius: 50%; background: var(--page); transform: translateY(-50%); }
.coupon-ticket::before { left: -10px; } .coupon-ticket::after { right: -10px; }
.coupon-ticket span { display: inline-block; border-radius: 7px; padding: 4px 7px; background: #281e14; color: #ffe39a; font: 850 11px/1 ui-monospace, monospace; letter-spacing: .08em; }
.coupon-ticket h3 { margin: 8px 0 3px; font-size: 15px; }
.coupon-ticket p, .coupon-ticket small { display: block; margin: 0; color: var(--muted); font-size: 10.5px; line-height: 1.45; }
.coupon-ticket small { margin-top: 7px; }
.coupon-ticket > button { min-height: 36px; border: 0; border-radius: 10px; padding: 0 13px; background: var(--brand); color: #231a08; font-size: 11px; font-weight: 850; cursor: pointer; }

.segmented-control.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.booking-fields { margin-bottom: 12px; border: 1px solid #e8d9b4; border-radius: 15px; padding: 12px; background: #fffaf0; }
.field-help { display: block; margin: 5px 0 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.checkout-map {
  height: 230px;
  margin: 9px 0 13px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f2efec;
}
.map-placeholder { width: 100%; height: 100%; padding: 24px; display: grid; place-items: center; align-content: center; gap: 8px; color: var(--muted); text-align: center; }
.map-placeholder span { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: #fff; color: var(--brand-dark); font-size: 24px; box-shadow: var(--shadow-sm); }
.map-placeholder p { margin: 0; max-width: 260px; font-size: 11px; line-height: 1.5; }

.coupon-box { margin: 14px 0; border: 1px solid #ead38f; border-radius: 15px; padding: 12px; background: #fff9e6; }
.coupon-box > div:first-child { display: flex; gap: 9px; align-items: center; }
.coupon-box > div:first-child > span { width: 29px; height: 29px; flex: 0 0 auto; border-radius: 9px; display: grid; place-items: center; background: #2a2118; color: #ffe28b; }
.coupon-box strong, .coupon-box small { display: block; }
.coupon-box strong { font-size: 12px; }
.coupon-box small { margin-top: 2px; color: var(--muted); font-size: 9.5px; }
.coupon-input-row { margin-top: 10px; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 7px; }
.coupon-input-row input { min-width: 0; height: 39px; border: 1px solid #ded3bc; border-radius: 10px; padding: 0 10px; background: #fff; text-transform: uppercase; outline: none; }
.coupon-input-row button { min-height: 39px; border: 1px solid #d6c392; border-radius: 10px; padding: 0 11px; background: #fff; color: #6c4a00; font-size: 10.5px; font-weight: 850; cursor: pointer; }
.coupon-input-row button:first-of-type { border-color: var(--brand); background: var(--brand); color: #211807; }
.coupon-error { color: var(--danger) !important; }
.coupon-success { color: var(--success) !important; }
.coupon-saving { color: var(--success); }

/* Product portion, variant and combo customisation dialog. */
.product-dialog-hero { position: relative; }
.option-group { margin: 15px 0 0; border: 1px solid var(--line); border-radius: 14px; padding: 11px; }
.option-group legend { padding: 0 5px; font-size: 11px; font-weight: 850; }
.option-group > p, .variant-hint { margin: 0 0 8px; color: var(--muted); font-size: 9.5px; }
.option-group label { min-height: 42px; border-top: 1px solid #eee8e4; display: grid; grid-template-columns: 21px minmax(0, 1fr) auto; gap: 8px; align-items: center; cursor: pointer; }
.option-group label:first-of-type { border-top: 0; }
.option-group input { accent-color: var(--brand-dark); }
.option-group label span { font-size: 11.5px; font-weight: 650; }
.option-group label b { color: var(--brand-dark); font-size: 10.5px; }
.add-dialog-button { min-height: 48px; border: 0; border-radius: 12px; background: var(--brand); color: #211807; font-weight: 900; cursor: pointer; }

.coupon-dialog, .order-success-dialog {
  width: min(540px, calc(100% - 24px));
  max-height: min(780px, calc(100dvh - 30px));
  overflow: auto;
  border: 0;
  border-radius: 21px;
  padding: 0;
  box-shadow: var(--shadow-lg);
}
.coupon-dialog::backdrop, .order-success-dialog::backdrop { background: rgba(28,20,16,.58); backdrop-filter: blur(3px); }
.coupon-dialog-head { position: sticky; top: 0; z-index: 2; padding: 17px 18px; display: flex; align-items: center; justify-content: space-between; background: #fff; border-bottom: 1px solid var(--line); }
.coupon-dialog-head h2 { margin: 0; font-size: 20px; }
.coupon-dialog-head button { width: 35px; height: 35px; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; font-size: 20px; }
.coupon-dialog-list { padding: 14px; display: grid; gap: 10px; }
.coupon-choice { border: 1px dashed #d1aa3f; border-radius: 15px; padding: 13px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 11px; align-items: center; background: #fffaf0; }
.coupon-choice h3 { margin: 6px 0 4px; font-size: 14px; }
.coupon-choice p, .coupon-choice small { display: block; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.coupon-choice code { border-radius: 6px; padding: 4px 6px; background: #231a15; color: #ffe69a; }
.coupon-choice button { min-height: 36px; border: 0; border-radius: 10px; padding: 0 12px; background: var(--brand); font-size: 10.5px; font-weight: 850; cursor: pointer; }
.order-success-dialog { padding: 28px 24px; text-align: center; }
.success-check { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; background: #e8f7ee; color: var(--success); font-size: 32px; font-weight: 900; }
.order-success-dialog h2 { margin: 0; font-size: 24px; }
.order-success-dialog > p { margin: 8px auto 18px; max-width: 390px; color: var(--muted); line-height: 1.55; }
.success-actions { display: grid; gap: 9px; }
.success-actions .whatsapp-button, .success-actions .secondary-button, .success-actions .text-button { width: 100%; min-height: 44px; text-decoration: none; }

/* Public rider tracking screen. */
.tracking-body { min-height: 100vh; background: #f5f3f0; }
.tracking-header { min-height: 72px; padding: 10px 20px; display: flex; align-items: center; background: #1d1612; color: #fff; }
.tracking-header a { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.tracking-header img { width: 84px; height: 42px; border-radius: 8px; object-fit: contain; background: #050505; }
.tracking-header strong, .tracking-header small { display: block; }
.tracking-header strong { font-size: 15px; }
.tracking-header small { margin-top: 2px; color: #e8c660; font-size: 8.5px; letter-spacing: .14em; }
.tracking-shell { width: min(980px, calc(100% - 28px)); margin: 25px auto 50px; display: grid; gap: 15px; }
.tracking-summary, .tracking-map-card, .tracking-help { border: 1px solid var(--line); border-radius: 19px; padding: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.tracking-summary h1 { margin: 0; font-size: clamp(28px, 5vw, 46px); letter-spacing: -.04em; }
.tracking-summary > p:not(.section-kicker) { margin: 8px 0 0; color: var(--muted); }
.tracking-meta { margin-top: 20px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.tracking-meta > span { border-radius: 13px; padding: 12px; background: #f8f6f4; }
.tracking-meta small, .tracking-meta strong { display: block; }
.tracking-meta small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.tracking-meta strong { margin-top: 5px; font-size: 12px; }
.tracking-map-card { padding: 0; overflow: hidden; }
.tracking-map { width: 100%; height: min(52vh, 470px); min-height: 320px; }
.tracking-no-map { padding: 28px; text-align: center; }
.tracking-no-map p { color: var(--muted); font-size: 12px; }
.tracking-help { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; }
.tracking-help p { margin: 0 auto 0 0; font-weight: 750; }
.tracking-help a { min-height: 38px; border: 1px solid var(--line); border-radius: 10px; padding: 0 12px; display: inline-flex; align-items: center; text-decoration: none; font-size: 11px; font-weight: 800; }

@media (max-width: 900px) {
  .notice-ticker { min-height: 35px; font-size: 10.5px; }
  .brand-row { grid-template-columns: 1fr; }
  .brand-logo { width: min(185px, 58vw); }
  /* Keep the video area open and pin all five quick actions to its lower edge. */
  .store-hero { min-height: 380px; }
  .hero-inner { padding-bottom: 70px; }
  .hero-actions {
    position: absolute;
    z-index: 4;
    left: 14px;
    right: 14px;
    bottom: 6px;
    width: auto;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
  }
  .hero-action {
    min-width: 0;
    min-height: 43px;
    padding: 4px 2px;
    border-radius: 11px;
    flex-direction: column;
    gap: 1px;
    overflow: hidden;
    font-size: 8.8px;
    line-height: 1.05;
    white-space: nowrap;
  }
  .hero-action > span:last-child {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .action-icon { width: 19px; height: 19px; font-size: 12px; }
  .promotion-grid, .coupon-showcase { grid-template-columns: 1fr; }
  .tracking-meta { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .store-hero { min-height: 365px; }
  .hero-inner { padding-top: 50px; padding-bottom: 65px; }
  .hero-actions {
    left: 6px;
    right: 6px;
    bottom: 3px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3px;
    margin: 0;
  }
  .hero-action {
    min-height: 40px;
    padding: 3px 1px;
    border-radius: 9px;
    font-size: 8px;
  }
  .action-icon { width: 17px; height: 17px; font-size: 11px; }
  .coupon-input-row { grid-template-columns: minmax(0, 1fr) auto; }
  .coupon-input-row button:last-child { grid-column: 1 / -1; }
  .coupon-ticket, .coupon-choice { grid-template-columns: 1fr; }
  .tracking-help { align-items: stretch; }
  .tracking-help p, .tracking-help a { width: 100%; }
  .tracking-help a { justify-content: center; }
}

/* Interactive checkout map guidance and configuration errors. */
.map-selection-hint { margin: -4px 2px 13px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.map-placeholder.map-error { color: var(--danger); }
.map-placeholder.map-error span { background: #fff1f0; color: var(--danger); }

/* Checkout delivery-location feedback and Kolkata defaults. */
.location-button small.location-ok { color: #14733f; font-weight: 750; }
.location-button small.location-error { color: var(--danger); font-weight: 750; }
.location-button small.location-loading { color: #8a6500; font-weight: 700; }
.delivery-zone-help { margin: -2px 0 13px; border-left: 3px solid #d8b452; border-radius: 0 9px 9px 0; padding: 8px 10px; background: #fffaf0; color: #6a5a31; }

/* Live rider tracking v3.4: distinct map symbols and arrival feedback. */
.tracking-map-card { position: relative; }
.tracking-map-status {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  max-width: min(430px, calc(100% - 28px));
  border: 1px solid rgba(23, 105, 224, .22);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, .94);
  color: #173a70;
  box-shadow: 0 7px 22px rgba(22, 32, 45, .14);
  backdrop-filter: blur(7px);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}
.tracking-map-status.arrived {
  border-color: rgba(29, 139, 77, .35);
  background: rgba(237, 251, 243, .96);
  color: #12673a;
}
.tracking-map-status.stale {
  border-color: rgba(190, 118, 0, .34);
  background: rgba(255, 248, 229, .96);
  color: #765100;
}
.tracking-map-legend {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid rgba(30, 24, 20, .10);
  border-radius: 12px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 7px 22px rgba(22, 32, 45, .12);
  backdrop-filter: blur(7px);
}
.tracking-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4d4641;
  font-size: 9px;
  font-weight: 750;
  white-space: nowrap;
}
.tracking-map-legend i {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}
.tracking-rider-dot {
  border: 2px solid #fff;
  background: #1769e0;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(23, 105, 224, .25);
}
.tracking-customer-dot {
  border: 4px solid #1d8b4d;
  background: rgba(39, 168, 95, .10);
}
.tracking-store-dot {
  border: 2px solid #fff;
  background: #d49b00;
  color: #24170b;
  box-shadow: 0 0 0 1px rgba(212, 155, 0, .3);
}
.tracking-summary.tracking-arrived {
  border-color: rgba(29, 139, 77, .34);
  box-shadow: 0 10px 28px rgba(29, 139, 77, .10);
}
.tracking-summary.tracking-arrived #trackMessage {
  color: #12673a;
  font-weight: 750;
}
.tracking-summary.tracking-gps-stale #trackUpdated { color: #8a6500; }


/* v5.1.7: customer tracking rider marker/legend uses the SwaadBhoomi rider scooter logo. */
.tracking-rider-icon {
  width: 34px;
  height: 29px;
  display: inline-block;
  object-fit: contain;
  flex: 0 0 34px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  filter: drop-shadow(0 1px 2px rgba(36, 23, 11, .30));
}

@media (max-width: 640px) {
  .tracking-map-status {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    border-radius: 12px;
    font-size: 10px;
  }
  .tracking-map-legend {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: center;
  }
}

/* Registered checkout, payment policy and WhatsApp OTP — v4.0 */
.store-availability-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 18px;
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
}
.store-availability-banner.closed { background: #7b1e1e; color: #fff; }
.store-availability-banner.rush { background: #fff0c8; color: #5d3d00; border-bottom: 1px solid #e5c26b; }
.store-availability-banner strong { font-weight: 900; }

.checkout-account-note.account-required { align-items: flex-start; flex-wrap: wrap; }
.checkout-account-note.account-required button,
.checkout-account-note.account-required a {
  border: 0;
  padding: 5px 7px;
  background: transparent;
  color: var(--brand-dark);
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.checkout-account-note.account-required button { margin-left: auto; }
.checkout-account-note.account-required a { margin-left: 38px; margin-top: -6px; }

.payment-choice-card {
  margin: 15px 0;
  border: 1px solid #e4d5ca;
  border-radius: 16px;
  padding: 13px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(55, 41, 31, .05);
}
.payment-choice-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.payment-choice-heading strong, .payment-choice-heading small { display: block; }
.payment-choice-heading strong { font-size: 13px; }
.payment-choice-heading small { margin-top: 2px; color: var(--muted); font-size: 9.5px; line-height: 1.4; }
.payment-choice-heading > span { border-radius: 999px; padding: 4px 7px; background: #f1f8f4; color: #197044; font-size: 8px; font-weight: 850; white-space: nowrap; }
.payment-options { display: grid; gap: 7px; }
.payment-option {
  display: grid;
  grid-template-columns: 18px 36px 1fr;
  align-items: center;
  gap: 9px;
  border: 1px solid #e5ded9;
  border-radius: 12px;
  padding: 9px;
  background: #fff;
  cursor: pointer;
  transition: .16s ease;
}
.payment-option:hover { border-color: #cfad55; }
.payment-option.selected { border-color: #c99614; background: #fffaf0; box-shadow: 0 0 0 2px rgba(214,166,43,.13); }
.payment-option.disabled { opacity: .58; cursor: not-allowed; background: #f8f6f5; }
.payment-option input { width: 16px; height: 16px; accent-color: #b98200; }
.payment-option-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: #f7ead0; color: #865900; font-size: 10px; font-weight: 950; }
.payment-option-copy strong, .payment-option-copy small { display: block; }
.payment-option-copy strong { font-size: 11.5px; }
.payment-option-copy small { margin-top: 2px; color: var(--muted); font-size: 9px; line-height: 1.35; }
.payment-loading { border: 1px dashed #dfd2c9; border-radius: 11px; padding: 11px; color: var(--muted); font-size: 10px; text-align: center; }
.payment-login-prompt { width: 100%; border: 1px dashed #d5b151; border-radius: 12px; padding: 11px; background: #fffaf0; color: #5e450a; text-align: left; cursor: pointer; }
.payment-login-prompt strong, .payment-login-prompt span { display: block; }
.payment-login-prompt strong { font-size: 11px; }
.payment-login-prompt span { margin-top: 2px; font-size: 9px; }
.payment-mode { display: grid; gap: 7px; margin-top: 11px; border-top: 1px solid #eee4dc; padding-top: 10px; }
.payment-mode > strong { font-size: 10.5px; }
.payment-mode label { display: flex; align-items: flex-start; gap: 8px; border-radius: 10px; padding: 8px; background: #f8f6f4; cursor: pointer; }
.payment-mode input { margin-top: 3px; accent-color: #b98200; }
.payment-mode b, .payment-mode small { display: block; }
.payment-mode b { font-size: 10.5px; }
.payment-mode small { margin-top: 2px; color: var(--muted); font-size: 9px; }
.payment-help { margin: 8px 2px 0; color: #665b53; font-size: 9.5px; line-height: 1.45; }

.order-now-button {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #c99211, #e1b83f);
  color: #21160a;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(183, 129, 5, .22);
}
.order-now-button:hover { filter: brightness(.98); transform: translateY(-1px); }
.order-now-button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.order-now-mark { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.65); }

.order-success-dialog .success-actions .order-now-button,
.order-success-dialog .success-actions .secondary-button,
.order-success-dialog .success-actions .text-button { width: 100%; min-height: 44px; }
.success-payment-summary { margin: -8px 0 15px; border-radius: 10px; padding: 9px; background: #f8f4eb; color: #5d4c28; font-size: 11px; font-weight: 750; }

.otp-dialog {
  width: min(460px, calc(100% - 24px));
  max-height: calc(100vh - 30px);
  border: 0;
  border-radius: 22px;
  padding: 25px;
  box-shadow: 0 25px 70px rgba(28,20,16,.26);
}
.otp-dialog::backdrop { background: rgba(28,20,16,.62); backdrop-filter: blur(4px); }
.otp-dialog-copy { padding-right: 35px; }
.otp-dialog-copy h2 { margin: 3px 0 7px; font-size: 24px; }
.otp-dialog-copy > p:last-child { margin: 0 0 18px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.otp-form .field > span { display: block; margin-bottom: 6px; color: #514944; font-size: 11.5px; font-weight: 740; }
.otp-form .field > span small { color: var(--muted); font-weight: 500; }
.otp-sent-message { margin: 0 0 12px; border: 1px solid #cce5d5; border-radius: 11px; padding: 10px; background: #f2fbf5; color: #17643b; font-size: 11px; line-height: 1.45; }
.otp-password-link { margin: 14px 0 0; color: var(--muted); font-size: 10.5px; text-align: center; }
.otp-password-link a { color: var(--brand-dark); font-weight: 800; }

@media (max-width: 560px) {
  .store-availability-banner { align-items: flex-start; flex-direction: column; gap: 1px; padding: 7px 12px; text-align: left; font-size: 10px; }
  .payment-option { grid-template-columns: 16px 32px 1fr; padding: 8px; }
  .payment-option-icon { width: 30px; height: 30px; }
  .otp-dialog { padding: 20px 16px; }
  .checkout-account-note.account-required a { margin-left: 0; width: 100%; }
}

/* v4.1 shared PWA installer state */
.install-button.install-ready { box-shadow: 0 0 0 3px rgba(255,255,255,.22), 0 10px 28px rgba(0,0,0,.18); }
.install-button.is-installed { opacity: .7; cursor: default; transform: none; }

/* v4.7 customer delivery location picker, saved addresses and home/office pins */
.location-choice-card {
  margin: 0 0 10px;
  border: 1px solid #e5d9bf;
  border-radius: 14px;
  padding: 11px;
  background: #fffaf0;
}
.location-choice-copy { margin-bottom: 9px; }
.location-choice-copy strong { display: block; color: var(--ink); font-size: 12px; }
.location-choice-copy small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.location-choice-copy small.location-ok, #locationPickerStatus.location-ok { color: #14733f; font-weight: 750; }
.location-choice-copy small.location-error, #locationPickerStatus.location-error { color: var(--danger); font-weight: 750; }
.location-choice-copy small.location-loading, #locationPickerStatus.location-loading { color: #8a6500; font-weight: 750; }
.location-action-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.location-button.compact { margin: 0; min-height: 42px; justify-content: center; padding: 8px 9px; font-size: 11px; font-weight: 850; }
.location-button.compact > span:first-child { width: 24px; height: 24px; font-size: 15px; }
.location-button.compact.secondary { border-color: #d8e8dc; background: #f6fbf7; color: #1f6a43; }
.saved-address-list { margin: 6px 0 10px; display: grid; gap: 7px; }
.saved-address-empty { margin: 0; border: 1px dashed #dfd1b8; border-radius: 11px; padding: 9px; color: var(--muted); font-size: 10px; line-height: 1.45; background: #fffdfa; }
.saved-address-chip { width: 100%; border: 1px solid #e0d5cb; border-radius: 12px; padding: 9px; display: grid; gap: 3px; background: #fff; color: var(--ink); text-align: left; cursor: pointer; }
.saved-address-chip.active { border-color: #d6a62b; background: #fff8df; box-shadow: 0 0 0 2px rgba(214,166,43,.12); }
.saved-address-chip strong { font-size: 11.5px; }
.saved-address-chip span { color: #7e6132; font-size: 10px; font-weight: 800; }
.saved-address-chip small { max-height: 30px; overflow: hidden; color: var(--muted); font-size: 9.5px; line-height: 1.35; }
.checkout-map.mini { height: 155px; }
.location-dialog {
  width: min(680px, calc(100% - 24px));
  max-height: min(820px, calc(100dvh - 24px));
  border: 0;
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.location-dialog::backdrop { background: rgba(28,20,16,.62); backdrop-filter: blur(4px); }
.location-dialog-head { padding: 16px 17px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); background: #fff; }
.location-dialog-head h2 { margin: 0; font-size: 19px; line-height: 1.2; }
.location-search-row { padding: 13px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; border-bottom: 1px solid #f0e8e2; }
.location-search-row input { min-width: 0; height: 42px; border: 1px solid #ded6d1; border-radius: 11px; padding: 0 12px; outline: none; }
.location-search-row button, .save-address-panel button { border: 0; border-radius: 11px; padding: 0 13px; background: var(--brand); color: #211807; font-size: 11px; font-weight: 900; cursor: pointer; }
.location-dialog-actions { padding: 10px 13px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #f0e8e2; }
.location-dialog-actions .secondary-button { flex: 0 0 auto; width: auto; min-height: 36px; padding: 0 12px; }
#locationPickerStatus { color: var(--muted); font-size: 10.5px; line-height: 1.4; }
.location-picker-map { height: min(430px, 48dvh); background: #f2efec; }
.save-address-panel { padding: 12px 13px; display: grid; grid-template-columns: minmax(0, 1fr) 120px auto; gap: 8px; align-items: center; border-top: 1px solid #f0e8e2; background: #fffaf0; }
.save-address-panel label { display: flex; align-items: center; gap: 8px; color: #5b4d2a; font-size: 11px; font-weight: 800; }
.save-address-panel input { accent-color: #b78305; }
.save-address-panel select { height: 38px; border: 1px solid #ded6d1; border-radius: 10px; background: #fff; padding: 0 9px; }
.location-dialog-foot { padding: 13px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 8px; border-top: 1px solid var(--line); }
.location-dialog-foot .order-now-button { min-height: 44px; }

@media (max-width: 560px) {
  .location-action-row { grid-template-columns: 1fr; }
  .checkout-map.mini { height: 135px; }
  .location-dialog { width: 100%; max-width: none; height: 100dvh; max-height: none; margin: 0; border-radius: 0; }
  .location-picker-map { height: calc(100dvh - 290px); min-height: 260px; }
  .location-search-row { grid-template-columns: 1fr; }
  .location-search-row button { min-height: 40px; }
  .location-dialog-actions { align-items: stretch; flex-direction: column; }
  .location-dialog-actions .secondary-button { width: 100%; }
  .save-address-panel { grid-template-columns: 1fr 105px; }
  .save-address-panel button { grid-column: 1 / -1; min-height: 38px; }
}


/* v5.0.4 customer portal category slider: no Browse menu button on main page. */
.page-shell.no-side-menu {
  grid-template-columns: minmax(0, 1fr) 360px;
}
.page-shell.no-side-menu > .menu-sidebar {
  display: none;
}
.home-category-strip {
  width: 100%;
  margin: 0 0 12px;
  padding: 2px 2px 9px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 4);
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.home-category-strip::-webkit-scrollbar { display: none; }
.home-category-card {
  min-width: 0;
  min-height: 104px;
  border: 1px solid #eadbd3;
  border-radius: 18px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
  color: var(--ink);
  text-align: center;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  cursor: pointer;
}
.home-category-card img,
.home-category-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
}
.home-category-card strong {
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.12;
  font-weight: 900;
}
.home-category-card small {
  color: var(--muted);
  font-size: 9.4px;
  line-height: 1;
}
.home-category-card.active {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-dark);
  box-shadow: inset 0 -3px 0 var(--brand), var(--shadow-sm);
}
.home-category-card.all {
  background: var(--brand-soft);
  color: var(--brand-dark);
}
@media (max-width: 700px) {
  .page-shell.no-side-menu { grid-template-columns: 1fr; }
  .home-category-strip { grid-auto-columns: calc((100% - 24px) / 4); gap: 8px; padding-bottom: 8px; }
  .home-category-card { min-height: 92px; border-radius: 15px; padding: 7px 4px; }
  .home-category-card img, .home-category-icon { width: 40px; height: 40px; border-radius: 12px; }
  .home-category-card strong { font-size: 10.5px; }
  .home-category-card small { font-size: 8.5px; }
}

/* v5.0.5 menu badges, spice marker and out-of-stock polish */
.spice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  color: #d8241f;
  font-size: 13px;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(120, 0, 0, .12));
}
.spice-icon.extra { min-width: 28px; letter-spacing: -6px; padding-right: 4px; }
.product-popularity {
  margin: -1px 0 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7b7672;
  font-size: 11px;
  font-weight: 760;
}
.product-popularity span {
  width: 45px;
  height: 8px;
  border-radius: 99px;
  display: inline-block;
  background: linear-gradient(90deg, #15944f 0 76%, #e4ede7 76% 100%);
}
.mini-badge.popular { background: #eef9f1; color: #14733f; }
.product-card.out-of-stock .product-visual img,
.product-dialog-hero.out-of-stock .product-dialog-image {
  filter: grayscale(.2) blur(.4px);
  opacity: .48;
}
.product-card.out-of-stock .product-info h3,
.product-card.out-of-stock .product-description,
.product-card.out-of-stock .price-line {
  opacity: .68;
}
.out-of-stock-ribbon {
  position: absolute;
  left: 8px;
  top: 18px;
  right: 20px;
  border-radius: 999px;
  padding: 6px 7px;
  background: rgba(32, 25, 21, .82);
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  backdrop-filter: blur(4px);
}
.stock-line:empty { display: none; }
.dialog-badges { margin-bottom: 6px; }
.dialog-stock-out {
  display: inline-flex;
  margin-top: 8px;
  border-radius: 999px;
  padding: 5px 9px;
  background: #fff1f0;
  color: #b42318;
  font-style: normal;
  font-size: 11px;
  font-weight: 850;
}
@media (max-width: 700px) {
  .product-popularity { font-size: 10px; gap: 6px; }
  .product-popularity span { width: 36px; height: 7px; }
  .out-of-stock-ribbon { left: 5px; top: 15px; right: 14px; font-size: 9px; padding: 5px; }
}
.spice-icon img { width: 15px; height: 15px; object-fit: contain; display: block; }
.spice-icon.extra { gap: 0; letter-spacing: normal; padding-right: 0; }
.spice-icon.extra img + img { margin-left: -7px; }



/* v5.1.7 customer homepage banner carousel and cleaner hero branding */
.store-hero.hero-carousel {
  min-height: 392px;
  background-image: none;
  background-color: #17100d;
}
.hero-carousel .hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.hero-carousel .hero-slides::-webkit-scrollbar { display: none; }
.hero-carousel .hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  scroll-snap-align: start;
  color: inherit;
  text-decoration: none;
}
.hero-carousel .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-carousel .hero-overlay {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(19, 12, 10, .82) 0%, rgba(25, 14, 9, .54) 46%, rgba(20, 12, 9, .24) 76%, rgba(20, 12, 9, .38) 100%),
    linear-gradient(0deg, rgba(14, 9, 8, .62), transparent 62%);
}
.hero-carousel .hero-inner {
  position: relative;
  z-index: 2;
  min-height: 392px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.hero-carousel .brand-row,
.hero-carousel .hero-actions,
.hero-carousel .hero-dots { pointer-events: auto; }
.hero-carousel .brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  grid-template-columns: none;
}
.hero-carousel .brand-copy { display: none !important; }
.hero-carousel .brand-logo {
  width: min(196px, 50vw);
  border-radius: 15px;
}
.hero-carousel .install-button {
  flex: 0 0 auto;
  margin-top: 8px;
  background: rgba(255,255,255,.24);
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.hero-dots {
  align-self: center;
  margin: auto 0 18px;
  display: inline-flex;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 9px;
  background: rgba(0, 0, 0, .18);
  backdrop-filter: blur(8px);
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,.58);
  cursor: pointer;
}
.hero-dots button.active {
  width: 22px;
  background: #fff;
}
.hero-carousel .hero-actions { margin: 0 0 2px; }
@media (max-width: 700px) {
  .store-hero.hero-carousel { min-height: 440px; }
  .hero-carousel .hero-inner { min-height: 440px; padding-top: 22px; }
  .hero-carousel .brand-logo { width: min(196px, 54vw); border-radius: 14px; }
  .hero-carousel .install-button { padding: 10px 14px; font-size: 12px; }
  .hero-carousel .hero-actions { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; }
  .hero-carousel .hero-action { min-width: 0; padding: 8px 4px; border-radius: 14px; flex-direction: column; gap: 4px; font-size: 10.5px; }
  .hero-dots { margin-bottom: 15px; }
}
@media (max-width: 390px) {
  .hero-carousel .brand-logo { width: min(178px, 55vw); }
  .hero-carousel .install-button { padding: 9px 11px; }
}

/* v5.1.7 larger product customisation dialog: no truncated names/options */
.product-dialog {
  width: min(660px, calc(100% - 24px));
  overflow: hidden;
}
#productDialogBody {
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 18px;
}
.product-dialog-image {
  height: min(360px, 43vh);
}
.product-dialog-copy {
  padding: 17px 19px 0;
  overflow-wrap: anywhere;
}
.product-dialog-copy > span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}
.product-dialog-copy h2 {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
}
.product-dialog-copy > p {
  margin: 0 0 10px;
  display: block;
  color: var(--muted);
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: anywhere;
}
#productDialogBody > .option-group,
#productDialogBody > .dialog-field,
#productDialogBody > .form-error,
#productDialogBody > .dialog-add-row {
  margin-left: 18px;
  margin-right: 18px;
}
.option-group label {
  grid-template-columns: 24px minmax(0, 1fr) max-content;
  gap: 10px;
}
.option-group label span {
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.3;
}
.dialog-field > span {
  display: block;
  margin-bottom: 6px;
  color: #574d48;
  font-size: 12px;
  font-weight: 800;
}
@media (max-width: 700px) {
  .product-dialog { width: 100%; max-width: none; max-height: calc(100dvh - 10px); }
  #productDialogBody { max-height: calc(100dvh - 10px); }
  .product-dialog-image { height: min(320px, 38vh); }
  .product-dialog-copy { padding: 15px 16px 0; }
  #productDialogBody > .option-group,
  #productDialogBody > .dialog-field,
  #productDialogBody > .form-error,
  #productDialogBody > .dialog-add-row { margin-left: 14px; margin-right: 14px; }
}

/* v5.1.9: manual hero slider, clear photos, and semi-transparent logo backing */
.hero-carousel .hero-overlay {
  background: none !important;
}
.hero-carousel .brand-logo {
  background: transparent !important;
  border-color: rgba(255, 215, 91, .18);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}
.hero-carousel .hero-slides {
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
}
.bill-line.gst-included {
  color: var(--muted);
  font-size: 13px;
}


/* v5.1.9: pin customer hero logo to the real top-left corner */
.hero-carousel .hero-inner {
  width: 100%;
  min-height: 392px;
  padding: 8px 10px 8px;
  box-sizing: border-box;
}
.hero-carousel .brand-row {
  width: 100%;
  align-items: flex-start;
}
.hero-carousel .brand-logo {
  margin: 0;
  align-self: flex-start;
  transform: none;
}
.hero-carousel .install-button { margin-top: 7px; }
@media (max-width: 700px) {
  .hero-carousel .hero-inner {
    min-height: 440px;
    padding: 7px 8px 8px;
  }
  .hero-carousel .brand-logo {
    width: min(176px, 48vw);
    border-radius: 12px;
  }
  .hero-carousel .install-button {
    margin-top: 6px;
    padding: 9px 12px;
  }
}
@media (max-width: 390px) {
  .hero-carousel .brand-logo { width: min(158px, 47vw); }
}


/* v5.2.4: home page banner uses customer-designed images only; no logo overlay */
.hero-carousel .brand-row.brand-row-no-logo {
  justify-content: flex-end;
}
.hero-carousel .brand-row.brand-row-no-logo .install-button {
  margin-left: auto;
}
.hero-carousel .brand-row.brand-row-no-logo .brand-logo {
  display: none !important;
}
@media (max-width: 700px) {
  .hero-carousel .brand-row.brand-row-no-logo {
    justify-content: flex-end;
  }
}


/* v5.2.5: home slider uses full rectangular designed banners without cropping.
   Recommended upload size: 1600x900 or 800x450 (16:9). */
.store-hero.hero-carousel {
  width: min(1180px, 100%);
  max-width: 100%;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto;
  overflow: visible;
  background: #ffffff !important;
  color: var(--ink);
  isolation: isolate;
}
.hero-carousel .hero-slides {
  position: relative !important;
  inset: auto !important;
  z-index: 1;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  background: #fff8ec;
  border-radius: 0;
  overflow-x: auto;
  overflow-y: hidden;
}
.hero-carousel .hero-slide {
  height: 100% !important;
  min-height: 0 !important;
  background: #fff8ec;
  display: grid;
  place-items: center;
}
.hero-carousel .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff8ec;
}
.hero-carousel .hero-overlay,
.hero-carousel .hero-video {
  display: none !important;
}
.hero-carousel .hero-inner {
  position: static !important;
  z-index: 2;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0;
  padding: 0 12px 12px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
  color: var(--ink);
  pointer-events: auto;
}
.hero-carousel .brand-row.brand-row-no-logo {
  position: absolute !important;
  top: 12px;
  right: 12px;
  left: auto;
  z-index: 5;
  width: auto !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  pointer-events: none;
}
.hero-carousel .brand-row.brand-row-no-logo .install-button {
  position: static !important;
  margin: 0 !important;
  pointer-events: auto;
  background: rgba(111, 77, 25, .78);
  color: #fff;
  border-color: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.hero-carousel .hero-dots {
  position: relative !important;
  z-index: 4;
  align-self: center;
  margin: -30px auto 8px !important;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
  pointer-events: auto;
}
.hero-carousel .hero-dots button {
  background: rgba(43, 30, 21, .36);
}
.hero-carousel .hero-dots button.active {
  background: var(--brand);
}
.hero-carousel .hero-actions {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  margin: 8px 0 0 !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 8px !important;
  pointer-events: auto;
}
.hero-carousel .hero-action {
  min-width: 0;
  min-height: 58px;
  padding: 8px 6px;
  border: 1px solid rgba(226, 218, 213, .95);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(50, 32, 22, .10);
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  line-height: 1.1;
}
.hero-carousel .hero-action > span:last-child {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 1181px) {
  .store-hero.hero-carousel {
    border-left: 1px solid rgba(226,218,213,.65);
    border-right: 1px solid rgba(226,218,213,.65);
  }
}
@media (max-width: 700px) {
  .store-hero.hero-carousel {
    width: 100%;
  }
  .hero-carousel .hero-inner {
    padding: 0 8px 10px !important;
  }
  .hero-carousel .brand-row.brand-row-no-logo {
    top: 8px;
    right: 8px;
  }
  .hero-carousel .brand-row.brand-row-no-logo .install-button {
    padding: 8px 11px;
    font-size: 11px;
    border-radius: 999px;
  }
  .hero-carousel .hero-dots {
    margin-top: -27px !important;
    margin-bottom: 7px !important;
    gap: 6px;
    padding: 5px 7px;
  }
  .hero-carousel .hero-actions {
    gap: 6px !important;
    margin-top: 7px !important;
  }
  .hero-carousel .hero-action {
    min-height: 52px;
    padding: 6px 3px;
    border-radius: 13px;
    font-size: 10px;
  }
  .hero-carousel .action-icon {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }
}
@media (max-width: 390px) {
  .hero-carousel .brand-row.brand-row-no-logo .install-button {
    padding: 7px 9px;
    font-size: 10px;
  }
  .hero-carousel .hero-action {
    min-height: 48px;
    font-size: 9px;
  }
}

/* v5.2.6: compact rectangular homepage banner.
   Keeps the full uploaded landscape artwork visible without a tall square/blank hero area. */
.store-hero.hero-carousel {
  --banner-max-width: 900px;
  width: min(var(--banner-max-width), 100%) !important;
  max-width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ink) !important;
  box-shadow: none !important;
  isolation: isolate;
}
.store-hero.hero-carousel .hero-slides {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 800 / 418 !important;
  display: flex !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  background: #f7efe5 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.store-hero.hero-carousel .hero-slides::-webkit-scrollbar { display: none; }
.store-hero.hero-carousel .hero-slide {
  position: relative !important;
  flex: 0 0 100% !important;
  min-width: 100% !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: grid !important;
  place-items: center !important;
  scroll-snap-align: start;
  background: #f7efe5 !important;
}
.store-hero.hero-carousel .hero-slide img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #f7efe5 !important;
}
.store-hero.hero-carousel .hero-overlay,
.store-hero.hero-carousel .hero-video { display: none !important; }
.store-hero.hero-carousel .hero-inner {
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: transparent !important;
  pointer-events: none !important;
}
.store-hero.hero-carousel .brand-row.brand-row-no-logo,
.store-hero.hero-carousel .brand-row.banner-install-row {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  left: auto !important;
  width: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  transform: none !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  pointer-events: none !important;
}
.store-hero.hero-carousel .brand-row.brand-row-no-logo .brand-logo { display: none !important; }
.store-hero.hero-carousel .brand-row.brand-row-no-logo .install-button,
.store-hero.hero-carousel .brand-row.banner-install-row .install-button {
  position: static !important;
  margin: 0 !important;
  pointer-events: auto !important;
  color: #4a3428 !important;
  background: rgba(255, 255, 255, .86) !important;
  border-color: rgba(255, 255, 255, .95) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.14) !important;
}
.store-hero.hero-carousel .hero-dots {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  bottom: 10px !important;
  z-index: 5 !important;
  transform: translateX(-50%) !important;
  width: max-content !important;
  max-width: calc(100% - 24px) !important;
  margin: 0 !important;
  padding: 6px 9px !important;
  display: inline-flex !important;
  gap: 7px !important;
  background: rgba(31, 24, 20, .25) !important;
  border-radius: 999px !important;
  pointer-events: auto !important;
}
.store-hero.hero-carousel .hero-dots button { width: 8px; height: 8px; }
.store-hero.hero-carousel .hero-dots button.active { width: 22px; }
/* Keep action buttons in normal document flow so they cannot hide menu/category content. */
.hero-actions.hero-actions-below {
  position: relative !important;
  inset: auto !important;
  width: min(900px, calc(100% - 24px)) !important;
  margin: 10px auto 8px !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 8px !important;
  z-index: 2 !important;
  pointer-events: auto !important;
}
.hero-actions.hero-actions-below .hero-action {
  min-width: 0 !important;
  min-height: 54px !important;
  padding: 7px 5px !important;
  border-radius: 15px !important;
  flex-direction: column !important;
  gap: 4px !important;
  background: rgba(255,255,255,.97) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(226,218,213,.95) !important;
  box-shadow: 0 8px 18px rgba(53,35,25,.09) !important;
  font-size: 11px !important;
  line-height: 1.05 !important;
}
.hero-actions.hero-actions-below .action-icon { width: 22px; height: 22px; font-size: 13px; }
.store-tabs { margin-top: 0 !important; }
.page-shell.no-side-menu,
.page-shell {
  margin-top: 16px !important;
}
@media (min-width: 1181px) {
  .store-hero.hero-carousel { --banner-max-width: 900px; }
}
@media (min-width: 701px) and (max-width: 1180px) {
  .store-hero.hero-carousel { --banner-max-width: 860px; width: min(860px, calc(100% - 32px)) !important; }
  .hero-actions.hero-actions-below { width: min(860px, calc(100% - 32px)) !important; }
}
@media (max-width: 700px) {
  .store-hero.hero-carousel {
    --banner-max-width: 100vw;
    width: 100% !important;
  }
  .store-hero.hero-carousel .hero-slides { aspect-ratio: 800 / 418 !important; }
  .store-hero.hero-carousel .brand-row.brand-row-no-logo,
  .store-hero.hero-carousel .brand-row.banner-install-row {
    top: 8px !important;
    right: 8px !important;
  }
  .store-hero.hero-carousel .brand-row.brand-row-no-logo .install-button,
  .store-hero.hero-carousel .brand-row.banner-install-row .install-button {
    padding: 7px 10px !important;
    font-size: 11px !important;
  }
  .store-hero.hero-carousel .hero-dots {
    bottom: 7px !important;
    padding: 5px 8px !important;
    gap: 6px !important;
  }
  .store-hero.hero-carousel .hero-dots button { width: 7px; height: 7px; }
  .store-hero.hero-carousel .hero-dots button.active { width: 18px; }
  .hero-actions.hero-actions-below {
    width: calc(100% - 16px) !important;
    margin-top: 8px !important;
    margin-bottom: 6px !important;
    gap: 5px !important;
  }
  .hero-actions.hero-actions-below .hero-action {
    min-height: 48px !important;
    padding: 6px 2px !important;
    border-radius: 13px !important;
    font-size: 9.5px !important;
  }
  .hero-actions.hero-actions-below .action-icon { width: 20px; height: 20px; font-size: 12px; }
  .tabs-inner { height: 56px; }
  .page-shell.no-side-menu,
  .page-shell { margin-top: 12px !important; }
}

/* v5.2.6: compact rectangular home banner.
   The storefront banner is designed for 800x418 artwork (about 1.91:1).
   It no longer stretches to a square/tall desktop block, and it keeps the menu closer. */
.store-hero.hero-carousel {
  width: min(100%, 860px) !important;
  max-width: 860px !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  overflow: visible !important;
  background: #fff !important;
  box-shadow: none !important;
}
.hero-carousel .hero-slides {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 800 / 418 !important;
  background: #fff8ec !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}
.hero-carousel .hero-slide {
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  background: #fff8ec !important;
}
.hero-carousel .hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff8ec !important;
}
.hero-carousel .hero-inner {
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 0 8px 8px !important;
  background: #fff !important;
}
.hero-carousel .brand-row.brand-row-no-logo {
  top: 10px !important;
  right: 10px !important;
}
.hero-carousel .brand-row.brand-row-no-logo .install-button {
  padding: 9px 14px !important;
  font-size: 13px !important;
  background: rgba(111, 77, 25, .76) !important;
}
.hero-carousel .hero-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 10px !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  z-index: 6 !important;
}
.hero-carousel .hero-actions {
  margin: 8px 0 0 !important;
  gap: 7px !important;
}
.hero-carousel .hero-action {
  min-height: 48px !important;
  padding: 6px 5px !important;
  border-radius: 14px !important;
}
.store-tabs {
  margin-top: 0 !important;
}
.page-shell.no-side-menu {
  margin-top: 14px !important;
}
@media (min-width: 1181px) {
  .store-hero.hero-carousel {
    border-left: 0 !important;
    border-right: 0 !important;
  }
}
@media (max-width: 900px) {
  .store-hero.hero-carousel {
    width: min(100%, 720px) !important;
    max-width: 720px !important;
  }
  .hero-carousel .hero-inner {
    padding: 0 7px 7px !important;
  }
  .hero-carousel .hero-actions {
    margin-top: 7px !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .page-shell.no-side-menu {
    margin-top: 12px !important;
  }
}
@media (max-width: 700px) {
  .store-hero.hero-carousel {
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-carousel .brand-row.brand-row-no-logo {
    top: 8px !important;
    right: 8px !important;
  }
  .hero-carousel .brand-row.brand-row-no-logo .install-button {
    padding: 7px 10px !important;
    font-size: 11px !important;
  }
  .hero-carousel .hero-dots {
    bottom: 7px !important;
    padding: 5px 7px !important;
    gap: 6px !important;
  }
  .hero-carousel .hero-actions {
    gap: 5px !important;
  }
  .hero-carousel .hero-action {
    min-height: 44px !important;
    padding: 5px 2px !important;
    font-size: 9px !important;
    border-radius: 12px !important;
  }
  .hero-carousel .action-icon {
    width: 20px !important;
    height: 20px !important;
    font-size: 12px !important;
  }
}
@media (max-width: 390px) {
  .hero-carousel .hero-action {
    min-height: 40px !important;
    font-size: 8px !important;
  }
}

/* v5.2.6: compact rectangular homepage banner fix.
   Shows uploaded 800x418-style artwork fully, without keeping a square/tall hero box. */
.store-hero.hero-carousel {
  --swaad-banner-max-width: 900px;
  position: relative !important;
  width: min(var(--swaad-banner-max-width), 100%) !important;
  max-width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 0 0 18px 18px;
  background: #fbf4ea !important;
  color: var(--ink) !important;
  border-bottom: 1px solid rgba(226, 218, 213, .9);
}
.hero-carousel .hero-slides {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 800 / 418 !important;
  margin: 0 !important;
  display: flex !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth;
  background: #fbf4ea !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  scrollbar-width: none;
}
.hero-carousel .hero-slides::-webkit-scrollbar { display: none; }
.hero-carousel .hero-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  scroll-snap-align: start !important;
  background: #fbf4ea !important;
}
.hero-carousel .hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fbf4ea !important;
}
.hero-carousel .hero-overlay,
.hero-carousel .hero-video { display: none !important; }
.hero-carousel .hero-inner {
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
  width: 100% !important;
  min-height: 0 !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: transparent !important;
  color: var(--ink) !important;
  pointer-events: none !important;
}
.hero-carousel .brand-row.brand-row-no-logo,
.hero-carousel .brand-row.banner-install-row {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  left: auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  pointer-events: none !important;
}
.hero-carousel .brand-row.brand-row-no-logo .install-button,
.hero-carousel .brand-row.banner-install-row .install-button,
.hero-carousel .install-button {
  position: static !important;
  margin: 0 !important;
  pointer-events: auto !important;
  color: #4a3327 !important;
  background: rgba(255, 255, 255, .88) !important;
  border: 1px solid rgba(255, 255, 255, .95) !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.18) !important;
  backdrop-filter: blur(8px);
}
.hero-carousel .hero-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 10px !important;
  z-index: 5 !important;
  width: auto !important;
  max-width: calc(100% - 28px) !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  align-self: auto !important;
  background: rgba(32, 24, 20, .30) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,.12) !important;
  pointer-events: auto !important;
}
/* Keep the artwork and menu close together.  The banner image now contains branding/design. */
.hero-actions-below { display: none !important; }
.store-tabs { margin-top: 0 !important; }
.page-shell.no-side-menu,
.page-shell { margin-top: 16px !important; }
@media (min-width: 1200px) {
  .store-hero.hero-carousel { --swaad-banner-max-width: 920px; }
}
@media (max-width: 700px) {
  .store-hero.hero-carousel {
    width: 100% !important;
    border-radius: 0 0 14px 14px;
  }
  .hero-carousel .hero-slides { aspect-ratio: 800 / 418 !important; }
  .hero-carousel .brand-row.brand-row-no-logo,
  .hero-carousel .brand-row.banner-install-row {
    top: 8px !important;
    right: 8px !important;
  }
  .hero-carousel .install-button {
    padding: 8px 11px !important;
    font-size: 11px !important;
    border-radius: 999px !important;
  }
  .hero-carousel .hero-dots {
    bottom: 7px !important;
    padding: 5px 8px !important;
    gap: 6px !important;
  }
  .hero-dots button { width: 7px !important; height: 7px !important; }
  .hero-dots button.active { width: 18px !important; }
  .page-shell.no-side-menu,
  .page-shell { margin-top: 12px !important; }
}


/* v5.2.6: compact rectangular banner layout fix.
   Shows uploaded 800x418-style artwork in full without making the desktop hero too tall. */
.store-hero.hero-carousel {
  --swaad-banner-width: 900px;
  width: min(var(--swaad-banner-width), 100%) !important;
  max-width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  overflow: visible !important;
  background: #fff !important;
  color: var(--ink) !important;
  border: 0 !important;
  box-shadow: none !important;
}
.hero-carousel .hero-slides {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 800 / 418 !important;
  margin: 0 !important;
  display: flex !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  background: #fbf4ea !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.hero-carousel .hero-slides::-webkit-scrollbar { display: none !important; }
.hero-carousel .hero-slide {
  position: relative !important;
  flex: 0 0 100% !important;
  min-width: 100% !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  scroll-snap-align: start !important;
  background: #fbf4ea !important;
}
.hero-carousel .hero-slide img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fbf4ea !important;
}
.hero-carousel .hero-overlay,
.hero-carousel .hero-video { display: none !important; }
.hero-carousel .hero-inner {
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  width: 100% !important;
  min-height: 0 !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 9px 11px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  background: transparent !important;
  pointer-events: none !important;
  box-sizing: border-box !important;
}
.hero-carousel .brand-row.brand-row-no-logo,
.hero-carousel .brand-row.banner-install-row {
  position: static !important;
  width: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  transform: none !important;
  pointer-events: none !important;
}
.hero-carousel .brand-row.brand-row-no-logo .install-button,
.hero-carousel .brand-row.banner-install-row .install-button {
  pointer-events: auto !important;
  position: static !important;
  margin: 0 !important;
  padding: 9px 13px !important;
  border-radius: 999px !important;
  color: #4a3327 !important;
  background: rgba(255, 255, 255, .86) !important;
  border-color: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16) !important;
  backdrop-filter: blur(10px) !important;
}
.hero-carousel .hero-dots {
  position: static !important;
  align-self: center !important;
  width: max-content !important;
  max-width: calc(100% - 28px) !important;
  margin: 0 auto 5px !important;
  padding: 5px 8px !important;
  gap: 6px !important;
  background: rgba(32, 24, 20, .25) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.12) !important;
  pointer-events: auto !important;
}
.hero-carousel .hero-dots button { width: 7px !important; height: 7px !important; }
.hero-carousel .hero-dots button.active { width: 18px !important; }
.hero-actions-below {
  width: min(var(--swaad-banner-width, 900px), calc(100% - 24px)) !important;
  margin: 10px auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 8px !important;
}
.hero-actions-below .hero-action {
  min-width: 0 !important;
  min-height: 54px !important;
  padding: 7px 5px !important;
  border-radius: 15px !important;
  flex-direction: column !important;
  gap: 3px !important;
  font-size: 11px !important;
  line-height: 1.05 !important;
  border-color: rgba(226, 218, 213, .95) !important;
  background: rgba(255,255,255,.97) !important;
  box-shadow: 0 8px 18px rgba(53, 35, 25, .09) !important;
}
.hero-actions-below .action-icon {
  width: 22px !important;
  height: 22px !important;
  font-size: 13px !important;
}
.store-tabs { margin-top: 10px !important; }
@media (min-width: 1200px) {
  .store-hero.hero-carousel { --swaad-banner-width: 920px; }
}
@media (max-width: 700px) {
  .store-hero.hero-carousel {
    width: 100% !important;
    --swaad-banner-width: 100%;
  }
  .hero-carousel .hero-inner { padding: 7px 8px !important; }
  .hero-carousel .brand-row.brand-row-no-logo .install-button,
  .hero-carousel .brand-row.banner-install-row .install-button {
    padding: 7px 10px !important;
    font-size: 11px !important;
  }
  .hero-carousel .hero-dots {
    margin-bottom: 4px !important;
    padding: 4px 7px !important;
  }
  .hero-actions-below {
    width: calc(100% - 18px) !important;
    margin-top: 8px !important;
    gap: 5px !important;
  }
  .hero-actions-below .hero-action {
    min-height: 48px !important;
    padding: 6px 3px !important;
    border-radius: 13px !important;
    font-size: 9.5px !important;
  }
  .hero-actions-below .action-icon {
    width: 20px !important;
    height: 20px !important;
    font-size: 12px !important;
  }
  .store-tabs { margin-top: 8px !important; }
}
@media (max-width: 390px) {
  .hero-actions-below { width: calc(100% - 14px) !important; gap: 4px !important; }
  .hero-actions-below .hero-action { min-height: 46px !important; font-size: 8.8px !important; }
}

/* v5.2.6 FINAL OVERRIDE: keep banner compact and remove the old extra action space. */
.store-hero.hero-carousel {
  --swaad-banner-width: 900px !important;
  position: relative !important;
  width: min(var(--swaad-banner-width), 100%) !important;
  max-width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  background: #fbf4ea !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 0 16px 16px !important;
}
.hero-carousel .hero-slides {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 800 / 418 !important;
  margin: 0 !important;
  display: flex !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  background: #fbf4ea !important;
}
.hero-carousel .hero-slide,
.hero-carousel .hero-slide img {
  height: 100% !important;
  min-height: 0 !important;
}
.hero-carousel .hero-slide img {
  width: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fbf4ea !important;
}
.hero-carousel .hero-inner {
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: transparent !important;
  pointer-events: none !important;
}
.hero-carousel .brand-row.brand-row-no-logo,
.hero-carousel .brand-row.banner-install-row {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  left: auto !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  pointer-events: none !important;
  transform: none !important;
}
.hero-carousel .install-button {
  pointer-events: auto !important;
  margin: 0 !important;
  padding: 9px 13px !important;
  border-radius: 999px !important;
  color: #4a3327 !important;
  background: rgba(255, 255, 255, .88) !important;
  border: 1px solid rgba(255, 255, 255, .95) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18) !important;
}
.hero-carousel .hero-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 8px !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  max-width: calc(100% - 28px) !important;
  margin: 0 !important;
  align-self: auto !important;
  z-index: 6 !important;
  pointer-events: auto !important;
  background: rgba(32, 24, 20, .30) !important;
}
.hero-actions-below { display: none !important; height: 0 !important; margin: 0 !important; padding: 0 !important; overflow: hidden !important; }
.store-tabs { margin-top: 0 !important; }
.page-shell.no-side-menu,
.page-shell { margin-top: 14px !important; }
@media (min-width: 1200px) {
  .store-hero.hero-carousel { --swaad-banner-width: 920px !important; }
}
@media (max-width: 700px) {
  .store-hero.hero-carousel {
    --swaad-banner-width: 100% !important;
    width: 100% !important;
    border-radius: 0 0 12px 12px !important;
  }
  .hero-carousel .brand-row.brand-row-no-logo,
  .hero-carousel .brand-row.banner-install-row { top: 8px !important; right: 8px !important; }
  .hero-carousel .install-button { padding: 7px 10px !important; font-size: 11px !important; }
  .hero-carousel .hero-dots { bottom: 6px !important; padding: 4px 7px !important; gap: 5px !important; }
  .page-shell.no-side-menu,
  .page-shell { margin-top: 10px !important; }
}

/* v5.2.6 final: compact rectangular home banner repair.
   Shows 800x418-style artwork fully without desktop square/tall blank space. */
.store-hero.hero-carousel {
  --swaad-banner-width: 800px;
  position: relative !important;
  width: min(100%, var(--swaad-banner-width)) !important;
  max-width: var(--swaad-banner-width) !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ink) !important;
  box-shadow: none !important;
}
.store-hero.hero-carousel .hero-slides {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  display: flex !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 800 / 418 !important;
  margin: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  background: #fbf4ea !important;
  border-radius: 0 !important;
}
.store-hero.hero-carousel .hero-slides::-webkit-scrollbar { display: none !important; }
.store-hero.hero-carousel .hero-slide {
  position: relative !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  scroll-snap-align: start !important;
  background: #fbf4ea !important;
}
.store-hero.hero-carousel .hero-slide img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fbf4ea !important;
}
.store-hero.hero-carousel .hero-overlay,
.store-hero.hero-carousel .hero-video { display: none !important; }
.store-hero.hero-carousel .hero-inner {
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 9px 11px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  background: transparent !important;
  pointer-events: none !important;
  box-sizing: border-box !important;
}
.store-hero.hero-carousel .brand-row.brand-row-no-logo,
.store-hero.hero-carousel .brand-row.banner-install-row {
  position: static !important;
  width: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  transform: none !important;
  pointer-events: none !important;
}
.store-hero.hero-carousel .brand-row.brand-row-no-logo .install-button,
.store-hero.hero-carousel .brand-row.banner-install-row .install-button {
  pointer-events: auto !important;
  position: static !important;
  margin: 0 !important;
  padding: 9px 13px !important;
  border-radius: 999px !important;
  color: #4a3327 !important;
  background: rgba(255, 255, 255, .88) !important;
  border-color: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16) !important;
  backdrop-filter: blur(10px) !important;
}
.store-hero.hero-carousel .hero-dots {
  position: static !important;
  align-self: center !important;
  width: max-content !important;
  max-width: calc(100% - 28px) !important;
  margin: 0 auto 5px !important;
  padding: 5px 8px !important;
  gap: 6px !important;
  background: rgba(32, 24, 20, .25) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.12) !important;
  pointer-events: auto !important;
}
.store-hero.hero-carousel .hero-dots button { width: 7px !important; height: 7px !important; }
.store-hero.hero-carousel .hero-dots button.active { width: 18px !important; }
.hero-actions.hero-actions-below {
  width: min(var(--swaad-banner-width, 800px), calc(100% - 24px)) !important;
  margin: 10px auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 8px !important;
}
.hero-actions.hero-actions-below .hero-action {
  min-width: 0 !important;
  min-height: 52px !important;
  padding: 7px 5px !important;
  border-radius: 15px !important;
  flex-direction: column !important;
  gap: 3px !important;
  font-size: 11px !important;
  line-height: 1.05 !important;
  color: #211a17 !important;
  border: 1px solid rgba(226, 218, 213, .95) !important;
  background: rgba(255,255,255,.97) !important;
  box-shadow: 0 8px 18px rgba(53, 35, 25, .09) !important;
}
.hero-actions.hero-actions-below .action-icon {
  width: 22px !important;
  height: 22px !important;
  font-size: 13px !important;
}
.store-tabs { margin-top: 10px !important; }
.page-shell.no-side-menu,
.page-shell { margin-top: 14px !important; }
@media (min-width: 1200px) {
  .store-hero.hero-carousel { --swaad-banner-width: 820px; }
}
@media (max-width: 700px) {
  .store-hero.hero-carousel {
    --swaad-banner-width: 100%;
    width: 100% !important;
    max-width: 100% !important;
  }
  .store-hero.hero-carousel .hero-inner { padding: 7px 8px !important; }
  .store-hero.hero-carousel .brand-row.brand-row-no-logo .install-button,
  .store-hero.hero-carousel .brand-row.banner-install-row .install-button {
    padding: 7px 10px !important;
    font-size: 11px !important;
  }
  .store-hero.hero-carousel .hero-dots {
    margin-bottom: 4px !important;
    padding: 4px 7px !important;
  }
  .hero-actions.hero-actions-below {
    width: calc(100% - 18px) !important;
    margin-top: 8px !important;
    gap: 5px !important;
  }
  .hero-actions.hero-actions-below .hero-action {
    min-height: 48px !important;
    padding: 6px 3px !important;
    border-radius: 13px !important;
    font-size: 9.5px !important;
  }
  .hero-actions.hero-actions-below .action-icon {
    width: 20px !important;
    height: 20px !important;
    font-size: 12px !important;
  }
  .store-tabs { margin-top: 8px !important; }
  .page-shell.no-side-menu,
  .page-shell { margin-top: 12px !important; }
}
@media (max-width: 390px) {
  .hero-actions.hero-actions-below { width: calc(100% - 14px) !important; gap: 4px !important; }
  .hero-actions.hero-actions-below .hero-action { min-height: 45px !important; font-size: 8.8px !important; }
}


/* v5.2.7: final compact storefront banner stack.
   The quick action buttons are real page content below the banner, never an overlay. */
.store-hero.hero-carousel {
  --swaad-banner-width: 800px !important;
  position: relative !important;
  width: min(100%, var(--swaad-banner-width)) !important;
  max-width: var(--swaad-banner-width) !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fbf4ea !important;
  box-shadow: none !important;
}
.store-hero.hero-carousel .hero-slides {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  display: flex !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 800 / 418 !important;
  margin: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  background: #fbf4ea !important;
  scrollbar-width: none !important;
}
.store-hero.hero-carousel .hero-slides::-webkit-scrollbar { display: none !important; }
.store-hero.hero-carousel .hero-slide {
  position: relative !important;
  flex: 0 0 100% !important;
  min-width: 100% !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  scroll-snap-align: start !important;
  background: #fbf4ea !important;
}
.store-hero.hero-carousel .hero-slide img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fbf4ea !important;
}
.store-hero.hero-carousel .hero-overlay,
.store-hero.hero-carousel .hero-video { display: none !important; }
.store-hero.hero-carousel .hero-inner {
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: transparent !important;
  pointer-events: none !important;
}
.store-hero.hero-carousel .brand-row.brand-row-no-logo,
.store-hero.hero-carousel .brand-row.banner-install-row {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  left: auto !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  pointer-events: none !important;
  transform: none !important;
}
.store-hero.hero-carousel .install-button {
  position: static !important;
  margin: 0 !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  color: #4a3327 !important;
  background: rgba(255,255,255,.90) !important;
  border: 1px solid rgba(255,255,255,.96) !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.16) !important;
  pointer-events: auto !important;
}
.store-hero.hero-carousel .hero-dots {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  bottom: 8px !important;
  z-index: 6 !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  max-width: calc(100% - 28px) !important;
  margin: 0 !important;
  padding: 5px 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(32,24,20,.28) !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.12) !important;
  pointer-events: auto !important;
}
.store-hero.hero-carousel .hero-dots button { width: 7px !important; height: 7px !important; }
.store-hero.hero-carousel .hero-dots button.active { width: 18px !important; }
/* Hide only any legacy action row that accidentally remains inside the banner. */
.store-hero.hero-carousel .hero-actions { display: none !important; }
/* The real quick actions live immediately below the banner. */
.hero-actions.hero-actions-below {
  --swaad-banner-width: 800px !important;
  position: relative !important;
  inset: auto !important;
  z-index: 2 !important;
  width: min(100%, var(--swaad-banner-width)) !important;
  max-width: var(--swaad-banner-width) !important;
  height: auto !important;
  margin: 6px auto 0 !important;
  padding: 0 6px !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 6px !important;
  overflow: visible !important;
  pointer-events: auto !important;
  box-sizing: border-box !important;
}
.hero-actions.hero-actions-below .hero-action {
  min-width: 0 !important;
  min-height: 48px !important;
  padding: 6px 3px !important;
  border-radius: 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px !important;
  background: rgba(255,255,255,.98) !important;
  color: #211a17 !important;
  border: 1px solid rgba(226,218,213,.96) !important;
  box-shadow: 0 6px 15px rgba(53,35,25,.08) !important;
  font-size: 10px !important;
  line-height: 1.05 !important;
  text-decoration: none !important;
}
.hero-actions.hero-actions-below .action-icon {
  width: 20px !important;
  height: 20px !important;
  font-size: 12px !important;
}
.store-tabs { margin-top: 6px !important; }
.store-tabs .tabs-inner { height: 52px !important; }
.page-shell.no-side-menu,
.page-shell { margin-top: 8px !important; }
.home-category-strip {
  margin: 0 0 8px !important;
  padding: 0 2px 6px !important;
  gap: 8px !important;
}
.home-category-card { min-height: 88px !important; border-radius: 15px !important; padding: 6px 4px !important; }
.home-category-card img,
.home-category-icon { width: 42px !important; height: 42px !important; border-radius: 12px !important; }
.home-category-card strong { font-size: 11px !important; line-height: 1.08 !important; }
.home-category-card small { margin-top: 1px !important; font-size: 8.6px !important; }
.search-trigger { height: 48px !important; margin-top: 4px !important; border-radius: 18px !important; }
.filter-toolbar {
  top: 52px !important;
  margin: 6px -2px 0 !important;
  padding: 5px 2px !important;
  gap: 8px !important;
}
.filter-chip { padding: 8px 12px !important; }
.active-result-row { min-height: 30px !important; margin: 5px 0 7px !important; }
.active-result-row strong { font-size: 18px !important; }
.product-grid { gap: 10px !important; }
@media (min-width: 1200px) {
  .store-hero.hero-carousel,
  .hero-actions.hero-actions-below { --swaad-banner-width: 820px !important; }
}
@media (min-width: 901px) {
  .hero-actions.hero-actions-below { margin-top: 8px !important; }
  .store-tabs { margin-top: 8px !important; }
}
@media (max-width: 700px) {
  .store-hero.hero-carousel,
  .hero-actions.hero-actions-below {
    --swaad-banner-width: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .store-hero.hero-carousel .brand-row.brand-row-no-logo,
  .store-hero.hero-carousel .brand-row.banner-install-row { top: 8px !important; right: 8px !important; }
  .store-hero.hero-carousel .install-button { padding: 7px 10px !important; font-size: 11px !important; }
  .store-hero.hero-carousel .hero-dots { bottom: 6px !important; padding: 4px 7px !important; gap: 5px !important; }
  .hero-actions.hero-actions-below {
    margin-top: 5px !important;
    padding: 0 5px !important;
    gap: 4px !important;
  }
  .hero-actions.hero-actions-below .hero-action {
    min-height: 43px !important;
    padding: 5px 2px !important;
    border-radius: 12px !important;
    font-size: 8.8px !important;
  }
  .hero-actions.hero-actions-below .action-icon { width: 18px !important; height: 18px !important; font-size: 11px !important; }
  .store-tabs { margin-top: 5px !important; }
  .store-tabs .tabs-inner { height: 50px !important; }
  .page-shell.no-side-menu,
  .page-shell { width: calc(100% - 16px) !important; margin-top: 7px !important; }
  .home-category-strip {
    grid-auto-columns: calc((100% - 18px) / 4) !important;
    margin-bottom: 7px !important;
    gap: 6px !important;
    padding-bottom: 5px !important;
  }
  .home-category-card { min-height: 78px !important; border-radius: 13px !important; padding: 5px 3px !important; }
  .home-category-card img,
  .home-category-icon { width: 36px !important; height: 36px !important; border-radius: 10px !important; }
  .home-category-card strong { font-size: 10px !important; }
  .home-category-card small { font-size: 8px !important; }
  .search-trigger { height: 45px !important; margin-top: 3px !important; padding: 0 13px !important; }
  .filter-toolbar { margin-top: 5px !important; padding: 4px 0 !important; top: 50px !important; }
  .filter-chip { padding: 7px 10px !important; font-size: 12px !important; }
  .active-result-row { margin: 4px 0 6px !important; }
}
@media (max-width: 390px) {
  .hero-actions.hero-actions-below { gap: 3px !important; }
  .hero-actions.hero-actions-below .hero-action { min-height: 40px !important; font-size: 8px !important; }
  .hero-actions.hero-actions-below .action-icon { width: 17px !important; height: 17px !important; }
}

/* v5.2.8: desktop alignment repair.
   The banner/actions now sit inside the same left catalogue column as products,
   so they no longer look shifted toward the checkout panel on desktop. */
.storefront-top-shell {
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}
.storefront-top-main {
  min-width: 0;
  display: block;
}
.storefront-top-main .store-hero.hero-carousel,
.storefront-top-main .hero-actions.hero-actions-below {
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 1300px) and (min-width: 901px) {
  .storefront-top-shell {
    width: min(1480px, calc(100% - 32px));
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 14px;
  }
  .storefront-top-main .store-hero.hero-carousel,
  .storefront-top-main .hero-actions.hero-actions-below {
    --swaad-banner-width: min(820px, 100%) !important;
  }
}
@media (max-width: 900px) {
  .storefront-top-shell {
    width: 100%;
    margin: 0;
    display: block;
  }
  .storefront-top-main {
    width: 100%;
  }
}
