:root {
  --pine: #173c33;
  --pine-2: #245448;
  --tomato: #d84b35;
  --harvest: #f2c34d;
  --mist: #edf3f0;
  --paper: #fffefa;
  --ink: #18231f;
  --muted: #6d7a75;
  --line: #dbe4df;
  --white: #fff;
  --shadow: 0 14px 40px rgba(23, 60, 51, 0.12);
  --radius: 20px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #dfe9e5;
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
[hidden] { display: none !important; }

.app-shell {
  width: min(100%, 720px);
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: calc(92px + var(--safe-bottom));
  background:
    radial-gradient(circle at 86% 11%, rgba(242, 195, 77, .17), transparent 18rem),
    var(--paper);
  box-shadow: 0 0 60px rgba(23, 60, 51, .08);
}

.store-header {
  position: relative;
  padding: 18px 18px 0;
  color: var(--white);
  background: var(--pine);
}
.store-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -18px;
  height: 20px;
  background: var(--pine);
  border-radius: 0 0 50% 50% / 0 0 60% 60%;
}
.store-header__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; }
.brand__mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--pine);
  background: var(--harvest);
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 13px 13px 13px 3px;
  font-family: "Songti SC", serif;
  font-size: 23px;
  font-weight: 900;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: "Songti SC", serif; font-size: 20px; letter-spacing: .04em; }
.brand small { margin-top: 2px; color: #bdd0c9; font-size: 11px; }
.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.phone-link svg { width: 16px; }

.delivery-ticket {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr 11px;
  align-items: stretch;
  min-height: 76px;
  margin-top: 18px;
  color: var(--ink);
  background: var(--harvest);
  border-radius: 16px 0 0 16px;
  box-shadow: 0 8px 24px rgba(6, 24, 19, .22);
  overflow: hidden;
}
.delivery-ticket__stamp {
  display: grid;
  width: 70px;
  place-items: center;
  padding: 8px;
  color: var(--white);
  background: var(--tomato);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  writing-mode: vertical-rl;
}
.delivery-ticket__body { display: flex; flex-direction: column; justify-content: center; padding: 12px 18px; }
.delivery-ticket__body span { color: #6b5320; font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.delivery-ticket__body strong { margin-top: 3px; font-family: "DIN Alternate", "Arial Narrow", sans-serif; font-size: clamp(22px, 7vw, 30px); letter-spacing: .02em; }
.delivery-ticket__edge {
  background: radial-gradient(circle at 100% 6px, transparent 6px, var(--harvest) 6.5px) 0 0 / 11px 12px repeat-y;
}

main { padding: 44px 18px 18px; }
.view { display: none; }
.view--active { display: block; animation: view-in .28s ease both; }
@keyframes view-in { from { opacity: 0; transform: translateY(5px); } }

.intro-row, .section-heading, .page-heading, .sheet-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.intro-row { position: relative; display: block; }
.intro-row > div { width: 100%; }
.intro-row .service-badge { position: absolute; top: 0; right: 0; }
.eyebrow { margin: 0 0 5px; color: var(--tomato); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Songti SC", "STSong", serif; }
h1 { margin-bottom: 0; font-size: clamp(28px, 8vw, 38px); line-height: 1.1; }
h2 { margin-bottom: 0; font-size: 25px; }
.service-badge { padding: 8px 10px; color: var(--pine); background: var(--mist); border-radius: 8px 8px 8px 2px; font-size: 12px; font-weight: 800; white-space: nowrap; }

.search-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 0 15px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 7px 22px rgba(23, 60, 51, .06);
}
.search-box:focus-within { border-color: var(--pine-2); box-shadow: 0 0 0 3px rgba(36, 84, 72, .12); }
.search-box svg { width: 20px; color: var(--pine-2); }
.search-box input { min-width: 0; padding: 15px 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 15px; }
.search-box button { display: none; width: 30px; height: 30px; border: 0; border-radius: 50%; color: var(--muted); background: var(--mist); font-size: 19px; }
.search-box button.is-visible { display: grid; place-items: center; }

.announcement { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding: 10px 12px; color: var(--pine); background: #f7f0da; border-left: 3px solid var(--harvest); border-radius: 5px 12px 12px 5px; }
.announcement span { display: grid; min-width: 28px; height: 28px; place-items: center; border: 1px solid rgba(23,60,51,.22); border-radius: 50%; font-family: "Songti SC", serif; font-weight: 800; }
.announcement p { margin: 0; font-size: 12px; line-height: 1.5; }

.category-strip { display: flex; gap: 9px; margin: 22px -18px 0; padding: 0 18px 5px; overflow-x: auto; scrollbar-width: none; }
.category-strip::-webkit-scrollbar { display: none; }
.category-button { display: flex; align-items: center; gap: 7px; flex: 0 0 auto; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: 13px; font-weight: 700; }
.category-button span { display: grid; width: 24px; height: 24px; place-items: center; color: var(--pine); background: var(--mist); border-radius: 8px 8px 8px 2px; font-family: "Songti SC", serif; font-size: 12px; font-weight: 900; }
.category-button.is-active { color: var(--white); background: var(--pine); border-color: var(--pine); }
.category-button.is-active span { color: var(--pine); background: var(--harvest); }

.products-section { margin-top: 25px; }
.section-heading { margin-bottom: 15px; }
.section-heading > span { color: var(--muted); font-size: 12px; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.product-card { position: relative; min-width: 0; background: var(--white); border: 1px solid var(--line); border-radius: 18px 18px 18px 7px; overflow: hidden; box-shadow: 0 8px 20px rgba(23,60,51,.055); }
.product-card__visual { position: relative; display: grid; aspect-ratio: 1.22; place-items: center; overflow: hidden; background: var(--product-bg, var(--mist)); }
.product-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.product-card__letter { display: grid; width: 58px; height: 58px; place-items: center; color: var(--pine); border: 1px solid rgba(23,60,51,.16); border-radius: 50% 50% 50% 14px; background: rgba(255,255,255,.66); font-family: "Songti SC", serif; font-size: 28px; font-weight: 900; }
.product-card__tag { position: absolute; top: 9px; left: 9px; padding: 5px 7px; color: var(--white); background: var(--tomato); border-radius: 6px 6px 6px 2px; font-size: 10px; font-weight: 800; }
.product-card__body { padding: 12px; }
.product-card h3 { min-height: 40px; margin-bottom: 3px; font-family: inherit; font-size: 15px; line-height: 1.35; }
.product-card__desc { min-height: 18px; margin-bottom: 10px; color: var(--muted); font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-card__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.price { color: var(--tomato); font-family: "DIN Alternate", "Arial Narrow", sans-serif; font-weight: 900; }
.price em { font-style: normal; font-size: 12px; }
.price strong { font-size: 22px; }
.price small { margin-left: 3px; color: var(--muted); font-family: inherit; font-size: 10px; font-weight: 500; }
.original-price { display: block; color: #9aa39f; font-size: 10px; text-decoration: line-through; }
.add-button, .quantity-control button { display: grid; place-items: center; border: 0; font-weight: 800; }
.add-button { width: 36px; height: 36px; flex: 0 0 auto; color: var(--white); background: var(--pine); border-radius: 12px 12px 12px 3px; font-size: 24px; }
.add-button:active { transform: scale(.94); }
.add-button:disabled { background: #b6c0bc; }
.sold-out { color: var(--muted); font-size: 11px; font-weight: 700; }

.bottom-nav {
  position: fixed;
  z-index: 20;
  bottom: 0;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 720px);
  min-height: calc(72px + var(--safe-bottom));
  padding: 8px 10px var(--safe-bottom);
  transform: translateX(-50%);
  background: rgba(255, 254, 250, .94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.bottom-nav__item { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border: 0; background: transparent; color: var(--muted); font-size: 11px; }
.bottom-nav__item svg { width: 22px; height: 22px; }
.bottom-nav__item.is-active { color: var(--pine); font-weight: 800; }
.bottom-nav__item.is-active::after { content: ""; position: absolute; top: 0; width: 24px; height: 3px; background: var(--tomato); border-radius: 999px; }
.cart-count { position: absolute; top: 2px; left: 52%; display: grid; min-width: 20px; height: 20px; padding: 0 5px; place-items: center; color: var(--white); background: var(--tomato); border: 2px solid var(--paper); border-radius: 999px; font-size: 10px; font-weight: 900; }

.sheet-backdrop { position: fixed; z-index: 40; inset: 0; background: rgba(12, 29, 24, .52); backdrop-filter: blur(2px); }
.cart-sheet { position: fixed; z-index: 41; bottom: 0; left: 50%; display: flex; flex-direction: column; width: min(100%, 720px); max-height: 82vh; padding: 9px 18px calc(16px + var(--safe-bottom)); transform: translate(-50%, 110%); background: var(--paper); border-radius: 24px 24px 0 0; box-shadow: var(--shadow); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.cart-sheet.is-open { transform: translate(-50%, 0); }
.sheet-handle { width: 42px; height: 5px; margin: 0 auto 13px; background: var(--line); border-radius: 999px; }
.sheet-header { align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.text-button { padding: 8px; border: 0; color: var(--tomato); background: transparent; font-size: 13px; font-weight: 800; }
.cart-items { flex: 1; padding: 6px 0; overflow: auto; }
.cart-item { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 11px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.cart-item__visual { display: grid; width: 52px; height: 52px; place-items: center; background: var(--mist); border-radius: 14px 14px 14px 4px; font-family: "Songti SC", serif; font-size: 21px; font-weight: 900; overflow: hidden; }
.cart-item__visual img { width: 100%; height: 100%; object-fit: cover; }
.cart-item h3 { margin-bottom: 4px; font-family: inherit; font-size: 14px; }
.cart-item p { margin: 0; color: var(--tomato); font-size: 13px; font-weight: 800; }
.quantity-control { display: flex; align-items: center; gap: 8px; }
.quantity-control button { width: 28px; height: 28px; color: var(--pine); background: var(--mist); border-radius: 9px; font-size: 18px; }
.quantity-control span { min-width: 18px; text-align: center; font-size: 13px; font-weight: 800; }
.cart-empty { display: grid; flex: 1; min-height: 160px; place-content: center; justify-items: center; color: var(--muted); }
.cart-empty span, .empty-state > span { display: grid; width: 62px; height: 62px; place-items: center; color: var(--pine); background: var(--mist); border-radius: 50% 50% 50% 14px; font-family: "Songti SC", serif; font-size: 26px; font-weight: 900; }
.cart-empty p { margin: 10px 0; }
.cart-footer { padding-top: 10px; border-top: 1px solid var(--line); }
.cart-progress { margin-bottom: 12px; }
.cart-progress p { margin-bottom: 6px; color: var(--muted); font-size: 11px; }
.cart-progress > div { height: 5px; overflow: hidden; background: var(--mist); border-radius: 999px; }
.cart-progress span { display: block; width: 0; height: 100%; background: var(--harvest); border-radius: inherit; transition: width .25s ease; }
.checkout-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.checkout-row > div span, .checkout-row > div strong { display: block; }
.checkout-row > div span { color: var(--muted); font-size: 11px; }
.checkout-row > div strong { color: var(--tomato); font-family: "DIN Alternate", sans-serif; font-size: 24px; }

.button { min-height: 48px; padding: 12px 20px; border: 0; border-radius: 14px 14px 14px 4px; font-size: 15px; font-weight: 800; }
.button--primary { color: var(--white); background: var(--pine); box-shadow: 0 8px 20px rgba(23,60,51,.2); }
.button--primary:disabled { color: #eef2f0; background: #9caaa5; box-shadow: none; }
.button--secondary { color: var(--pine); background: var(--mist); }
.button--block { width: 100%; }
.icon-button { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 14px 14px 14px 4px; background: var(--white); font-size: 23px; }

.checkout-modal { position: fixed; z-index: 50; inset: 0; left: 50%; width: min(100%, 720px); padding: 18px 18px calc(30px + var(--safe-bottom)); transform: translate(-50%, 100%); background: var(--paper); overflow-y: auto; transition: transform .34s cubic-bezier(.2,.8,.2,1); }
.checkout-modal.is-open { transform: translate(-50%, 0); }
.checkout-modal__header { display: flex; align-items: center; gap: 13px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.checkout-form { padding-top: 18px; }
.checkout-form fieldset { margin: 0 0 20px; padding: 16px; border: 1px solid var(--line); border-radius: 18px 18px 18px 7px; background: var(--white); }
.checkout-form legend { padding: 0 7px; color: var(--pine); font-family: "Songti SC", serif; font-size: 17px; font-weight: 900; }
.checkout-form label { display: block; margin-top: 13px; }
.checkout-form label:first-of-type { margin-top: 0; }
.checkout-form label > span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 12px; font-weight: 700; }
.checkout-form input, .checkout-form textarea, .checkout-form select { width: 100%; padding: 12px; color: var(--ink); background: #f8faf9; border: 1px solid var(--line); border-radius: 11px; outline: 0; }
.checkout-form textarea { resize: vertical; }
.checkout-form input:focus, .checkout-form textarea:focus, .checkout-form select:focus { border-color: var(--pine-2); box-shadow: 0 0 0 3px rgba(36,84,72,.1); }
.location-assist { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.location-button { display: inline-flex; min-height: 40px; align-items: center; gap: 7px; padding: 8px 11px; color: var(--pine); background: var(--mist); border: 1px solid #cbd9d2; border-radius: 11px 11px 11px 4px; font-size: 12px; font-weight: 800; }
.location-button svg { width: 17px; }
.location-button.is-locating { color: var(--muted); }
.location-button.is-located { color: #28623f; background: #dff0e5; border-color: #b9d9c4; }
.location-assist > span { color: var(--muted); font-size: 10px; line-height: 1.4; }
.form-row--two { display: grid; grid-template-columns: 1fr 1.35fr; gap: 10px; }
.form-row--two label { margin-top: 0; }
.delivery-options { display: grid; gap: 8px; }
.delivery-option { position: relative; display: block !important; margin: 0 !important; }
.delivery-option input { position: absolute; opacity: 0; pointer-events: none; }
.delivery-option span { display: flex !important; align-items: center; justify-content: space-between; margin: 0 !important; padding: 12px 13px; color: var(--ink) !important; background: #f8faf9; border: 1px solid var(--line); border-radius: 11px; font-size: 13px !important; }
.delivery-option span::after { content: ""; width: 16px; height: 16px; border: 2px solid #a6b1ad; border-radius: 50%; }
.delivery-option input:checked + span { color: var(--pine) !important; background: #edf5f1; border-color: var(--pine-2); }
.delivery-option input:checked + span::after { border: 5px solid var(--pine); }
.delivery-unavailable { margin: 0; padding: 12px; color: #7f3830; background: #f5dfdc; border-radius: 11px; font-size: 12px; line-height: 1.5; }
.order-summary { margin-bottom: 18px; padding: 15px; background: var(--mist); border-radius: 16px 16px 16px 5px; }
.order-summary > div { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; color: var(--muted); font-size: 13px; }
.order-summary > div:last-child { margin-bottom: 0; }
.order-summary__total { padding-top: 10px; color: var(--ink) !important; border-top: 1px dashed #becdc6; }
.order-summary__total strong { color: var(--tomato); font-size: 21px; }
.checkout-payment-tip { display: flex; align-items: center; gap: 10px; margin: -4px 0 14px; padding: 12px 13px; color: #6d5318; background: #fff1c9; border-left: 4px solid var(--harvest); border-radius: 5px 12px 12px 5px; }
.checkout-payment-tip strong { flex: 0 0 auto; font-size: 12px; }
.checkout-payment-tip span { font-size: 10px; line-height: 1.45; }
.privacy-note { margin: 11px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; text-align: center; }

.success-modal { position: fixed; z-index: 60; top: 50%; left: 50%; width: min(calc(100% - 36px), 430px); padding: 28px 24px 22px; transform: translate(-50%, -45%) scale(.96); opacity: 0; pointer-events: none; text-align: center; background: var(--paper); border-radius: 26px 26px 26px 9px; box-shadow: 0 28px 80px rgba(7,31,24,.3); transition: .25s ease; }
.success-modal.is-open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.success-seal { display: grid; width: 68px; height: 68px; margin: 0 auto 18px; place-items: center; color: var(--white); background: var(--tomato); border: 5px double var(--paper); outline: 2px solid var(--tomato); border-radius: 50%; font-family: "Songti SC", serif; font-size: 28px; font-weight: 900; transform: rotate(-7deg); }
.success-modal h2 { margin-bottom: 8px; font-size: 30px; }
.success-modal > p { color: var(--muted); }
.success-modal > p strong { color: var(--ink); }
.success-route { display: flex; align-items: center; justify-content: space-between; margin: 19px 0; padding: 14px; background: #f7f0da; border-left: 4px solid var(--harvest); border-radius: 5px 13px 13px 5px; }
.success-route span { color: #7c672e; font-size: 12px; }
.success-tip { font-size: 12px; line-height: 1.6; }
.payment-contact { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3px 10px; margin: 0 0 13px; padding: 13px 14px; text-align: left; background: var(--mist); border-radius: 14px 14px 14px 5px; }
.payment-contact span { grid-column: 1; color: var(--muted); font-size: 10px; }
.payment-contact strong { grid-column: 1; font-size: 16px; word-break: break-all; }
.payment-contact button { grid-column: 2; grid-row: 1 / span 2; padding: 8px 10px; color: var(--pine); background: var(--white); border: 1px solid var(--line); border-radius: 8px; font-size: 11px; font-weight: 800; }
.success-modal .text-button { margin-top: 8px; }

.page-heading { justify-content: flex-start; align-items: center; margin-bottom: 22px; }
.order-lookup { margin-bottom: 17px; padding: 15px; background: var(--white); border: 1px solid var(--line); border-radius: 17px 17px 17px 6px; box-shadow: 0 7px 20px rgba(23,60,51,.05); }
.order-lookup > label { display: block; margin-bottom: 8px; color: var(--pine); font-size: 12px; font-weight: 800; }
.order-lookup > div { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.order-lookup input { min-width: 0; padding: 12px; color: var(--ink); background: #f8faf9; border: 1px solid var(--line); border-radius: 11px; outline: 0; }
.order-lookup input:focus { border-color: var(--pine-2); box-shadow: 0 0 0 3px rgba(36,84,72,.1); }
.order-lookup .button { min-height: 44px; padding: 10px 14px; }
.order-lookup p { margin: 8px 0 0; color: var(--muted); font-size: 10px; }
.order-list { display: grid; gap: 13px; }
.customer-order { padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 18px 18px 18px 7px; box-shadow: 0 7px 20px rgba(23,60,51,.055); }
.customer-order__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 11px; border-bottom: 1px dashed var(--line); }
.customer-order__head strong { font-family: "DIN Alternate", sans-serif; }
.status-chip { padding: 6px 8px; color: var(--pine); background: var(--mist); border-radius: 7px; font-size: 11px; font-weight: 800; }
.status-chip[data-status="pending"] { color: #7a5b0e; background: #fff1c9; }
.status-chip[data-status="delivering"] { color: #184f75; background: #dceefa; }
.status-chip[data-status="completed"] { color: #28623f; background: #dff0e5; }
.status-chip[data-status="cancelled"] { color: #7f3830; background: #f5dfdc; }
.status-chip[data-status="rejected"] { color: #7f3830; background: #f5dfdc; }
.customer-order__items { padding: 11px 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.customer-order__payment { margin: 11px 0 0; padding: 10px 11px; color: #6d5318; background: #fff1c9; border-radius: 9px; font-size: 11px; line-height: 1.5; }
.customer-order__rejected { margin: 11px 0 0; padding: 10px 11px; color: #7f3830; background: #f5dfdc; border-left: 4px solid var(--tomato); border-radius: 5px 9px 9px 5px; font-size: 11px; line-height: 1.5; }
.customer-order__route { display: flex; justify-content: space-between; gap: 14px; color: var(--muted); font-size: 12px; }
.customer-order__route strong { color: var(--ink); text-align: right; }
.customer-order__total { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 13px; padding-top: 11px; border-top: 1px solid var(--line); }
.customer-order__total span { color: var(--muted); font-size: 11px; }
.customer-order__total strong { color: var(--tomato); font-size: 20px; }

.empty-state { display: grid; min-height: 300px; place-content: center; justify-items: center; padding: 35px 15px; text-align: center; }
.empty-state h3 { margin: 15px 0 6px; font-size: 21px; }
.empty-state p { max-width: 250px; margin-bottom: 18px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.toast { position: fixed; z-index: 100; bottom: calc(88px + var(--safe-bottom)); left: 50%; max-width: calc(100% - 36px); padding: 11px 16px; transform: translate(-50%, 20px); opacity: 0; pointer-events: none; color: var(--white); background: rgba(19,36,31,.94); border-radius: 10px; box-shadow: var(--shadow); font-size: 13px; transition: .2s ease; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

@media (min-width: 640px) {
  .store-header, main { padding-left: 30px; padding-right: 30px; }
  .category-strip { margin-left: -30px; margin-right: -30px; padding-left: 30px; padding-right: 30px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 370px) {
  .product-grid { gap: 8px; }
  .product-card__body { padding: 10px; }
  .form-row--two { grid-template-columns: 1fr; }
  .form-row--two label + label { margin-top: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
:focus-visible { outline: 3px solid rgba(216,75,53,.45); outline-offset: 2px; }
