/* ============================================================
   DECI PASTRY — reference-led storefront draft
   Palette: warm ivory, blush, soft copper and pastry brown.
   ============================================================ */

:root {
  --paper: #fbf7f3;
  --paper-2: #f7eee8;
  --paper-3: #f1e4dc;
  --white: #fffdfb;
  --blush: #f4d7ca;
  --blush-2: #eec8ba;
  --copper: #a76549;
  --copper-2: #bc7b61;
  --brown: #7b4b3c;
  --brown-dark: #3c2923;
  --muted: #a88a7b;
  --line: #e7d3c8;
  --shadow-soft: 0 22px 70px -35px rgba(105, 61, 43, 0.38);
  --serif: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  --sans: "Jost", "Noto Sans TC", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--brown-dark);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(1354px, calc(100% - 96px));
  margin-inline: auto;
}

/* ========================= header ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 251, 0.96);
  border-bottom: 1px solid rgba(154, 100, 78, 0.15);
  /* No backdrop-filter here on purpose. The background is 96% opaque, so a
     blur would be operating on the 4% showing through — invisible in practice,
     while promoting a full-width sticky layer across the top of every page.
     That layer is a known trigger in Safari for neighbouring elements painting
     from a stale tile until something forces a repaint. */
}

.nav-shell {
  width: min(1390px, calc(100% - 56px));
  min-height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}
.brand-mark { width: 47px; height: 47px; flex: none; border-radius: 50%; object-fit: cover; }
.brand-copy {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .105em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}
.brand-copy small {
  display: block;
  margin-top: 7px;
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-align: center;
  color: var(--copper);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 42px);
}
.nav-links a {
  position: relative;
  padding: 31px 0 27px;
  color: #8a563f;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a span { margin-left: 4px; font-weight: 400; letter-spacing: .04em; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: inline-flex; align-items: center; justify-content: flex-end; gap: 14px; }
.nav-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: var(--copper);
  opacity: .96;
  transition: color .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-icon:hover { color: var(--brown); opacity: 1; transform: translateY(-1px); }
.nav-icon-user::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1.65px solid currentColor;
  border-radius: 50%;
  transform: translateY(-5px);
}
.nav-icon-user::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 5px;
  height: 10px;
  border: 1.65px solid currentColor;
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
}
.nav-icon-bag::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 5px;
  height: 15px;
  border: 1.65px solid currentColor;
  border-radius: 3px;
}
.nav-icon-bag::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 11px;
  width: 8px;
  height: 7px;
  border: 1.65px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}
.order-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 39px;
  padding: 10px 24px;
  border-radius: 999px;
  background: #f2cdbc;
  color: #955c44;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.order-pill:hover { transform: translateY(-1px); background: #ecc0ac; }
.nav-burger {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  place-items: center;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; margin: 4px auto; background: var(--brown); transition: transform .25s var(--ease), opacity .25s; }
.nav-backdrop { display: none; }

/* ========================= shared type/buttons ========================= */
.section { padding: 26px 0 44px; }
.section-title-block { text-align: center; color: var(--brown); }
.section-title-block h1,
.section-title-block h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.1;
}
.section-title-block p { color: var(--muted); letter-spacing: .16em; font-size: .86rem; margin-top: 4px; }
.section-title-block.compact { margin-bottom: 20px; }
.eyebrow, .product-kicker {
  display: block;
  color: var(--copper);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  min-height: 40px;
  padding: 11px 30px;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), background-color .26s var(--ease), color .26s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: linear-gradient(180deg, #a76b4f, #905236); color: #fff; box-shadow: 0 15px 28px -18px rgba(104, 51, 30, .65); }
.btn-outline { background: rgba(255, 255, 255, .54); color: var(--brown); border-color: rgba(151, 85, 62, .55); }
.btn-outline:hover { background: var(--brown); color: #fff; }
.btn.wide { width: 100%; min-height: 46px; }
.text-link {
  justify-self: end;
  align-self: center;
  color: var(--brown);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-link:hover { color: var(--copper); }
.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;
}

/* ========================= home ========================= */
.home-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #fff8f3;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 248, 243, .85) 0%, rgba(255, 248, 243, 0) 16%, rgba(255, 248, 243, 0) 76%, rgba(255, 248, 243, 1) 100%);
  pointer-events: none;
}
.hero-ambient {
  display: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, .58), transparent 24%),
    linear-gradient(90deg, rgba(255, 251, 247, .55), rgba(255, 251, 247, 0) 44%);
  opacity: .18;
}
.hero-layout {
  position: relative;
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(38px, 4.4vw, 74px);
  align-items: center;
  padding: 72px 0 78px;
}
.hero-copy { position: relative; z-index: 3; width: auto; max-width: 560px; margin: 0; padding: 0; }
.hero-chinese.hero-statement {
  max-width: 580px;
  min-height: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.42rem, 1.72vw, 1.72rem);
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.72;
  margin-bottom: 26px;
}
.hero-statement .hit { color: var(--copper); }
.hero-chinese { max-width: 470px; min-height: 3.3em; color: #91614d; font-size: 1.02rem; font-weight: 600; letter-spacing: .14em; line-height: 1.65; margin-bottom: 18px; }
.hero-chinese .mobile-line { display: block; }
.hero-chinese .mobile-dot { display: none; }
.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 82px; }
.hero-buttons .btn { min-width: 155px; }
.hero-promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; width: 100%; max-width: 560px; color: #8b6556; }
.hero-promises div { text-align: center; display: grid; grid-template-rows: 32px minmax(1.7rem, auto); justify-items: center; align-items: start; gap: 5px; }
.hero-promises b { min-height: 1.7rem; display: inline-flex; align-items: center; justify-content: center; font-size: .67rem; font-weight: 500; line-height: 1.25; letter-spacing: .08em; text-transform: uppercase; }
.hero-promises em { color: #9d7c6c; font-style: normal; font-size: .72rem; letter-spacing: .16em; }
.mini-icon {
  width: 32px;
  height: 32px;
  color: var(--copper);
  display: block;
  background: currentColor;
  -webkit-mask: var(--mini-icon-mask) center / contain no-repeat;
  mask: var(--mini-icon-mask) center / contain no-repeat;
}
.mini-icon.leaf { --mini-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 20c10 2 18-4 18-14C16 7 8 12 8 20z'/%3E%3Cpath d='M9 21c4-5 9-9 16-13'/%3E%3C/svg%3E"); }
.mini-icon.chef { --mini-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 26s-9-5.2-9-12a5 5 0 0 1 9-3 5 5 0 0 1 9 3c0 6.8-9 12-9 12z'/%3E%3C/svg%3E"); }
.mini-icon.truck { --mini-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h15v10H5z'/%3E%3Cpath d='M20 16h5l3 4v2h-8z'/%3E%3Cpath d='M5 22h23'/%3E%3Ccircle cx='11' cy='24' r='2'/%3E%3Ccircle cx='24' cy='24' r='2'/%3E%3Cpath d='M9 15h6'/%3E%3C/svg%3E"); }
.hero-photo-card {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  right: calc(50% - 50vw);
  width: min(64vw, 1080px);
  overflow: hidden;
}
/* The photo's left edge fades into the page. This used to be a mask-image,
   which forces the card onto its own compositing layer — and with a filtered
   <img> inside it, that left the hero CTA painting from a stale tile until a
   zoom forced a repaint. An overlay in the hero's own background colour is
   visually identical (.home-hero is flat #fff8f3) and needs no layer. */
.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff8f3 0%, rgba(255, 248, 243, 0) 38%);
  pointer-events: none;
}
.hero-photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }

.collections-section { background: rgba(255,255,255,.7); padding-top: 22px; }
.collection-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.collection-card {
  min-height: 145px;
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  background: linear-gradient(105deg, #fbf4ef 0%, #f3dfd6 100%);
  box-shadow: 0 1px 0 rgba(145, 92, 68, .04);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.collection-card > span { position: relative; z-index: 2; display: grid; gap: 7px; padding: 34px 18px; width: 55%; color: var(--brown); }
.collection-card b { font-size: 1rem; font-weight: 500; letter-spacing: .08em; line-height: 1.22; text-transform: uppercase; }
.collection-card em { color: #9a7464; font-size: .9rem; font-style: normal; letter-spacing: .1em; line-height: 1.35; }
.collection-card small { margin-top: 10px; color: var(--copper); font-size: .86rem; letter-spacing: .12em; line-height: 1.25; text-transform: uppercase; }
.collection-card img { position: absolute; right: -10px; bottom: 0; width: 58%; height: 100%; object-fit: cover; object-position: center; }
.whole-cake-section { padding-top: 18px; }
.title-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; margin-bottom: 12px; }
.carousel-dots { display: flex; justify-content: center; gap: 14px; margin: 22px 0 6px; }
.carousel-dots span { width: 7px; height: 7px; border-radius: 50%; background: #d9c8c0; }
.carousel-dots .active { width: 8px; height: 8px; background: var(--copper); }
.about-band { padding: 46px 0 64px; }
.about-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.66);
  padding: 40px clamp(28px, 5vw, 70px);
}
.about-card h2 { font-family: var(--serif); color: var(--brown); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.1; margin-top: 10px; }
.about-card p { color: #8f7164; font-size: .98rem; max-width: 680px; }

.fee-block { width: 100%; }
.fee-list { list-style: none; }
.fee-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.fee-list li:last-child { border-bottom: 0; }
.fee-area { display: grid; gap: 2px; }
.fee-area b { color: var(--brown); font-size: .95rem; font-weight: 500; }
.fee-area > span { color: var(--muted); font-size: .78rem; line-height: 1.45; }
.fee-price {
  flex: 0 0 auto;
  color: var(--copper);
  font-size: 1.02rem;
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}
.fee-price small { display: block; color: var(--muted); font-size: .66rem; font-weight: 300; letter-spacing: .04em; }
.fee-notes { list-style: none; margin-top: 22px; display: grid; gap: 7px; }
.fee-notes li { position: relative; padding-left: 15px; color: #8f7164; font-size: .8rem; line-height: 1.5; }
.fee-notes li::before { content: ""; position: absolute; left: 0; top: .6em; width: 5px; height: 5px; border-radius: 50%; background: var(--blush-2); }

/* ========================= contact block ========================= */
.contact-block { width: 100%; }
.contact-notice {
  border: 1px solid var(--blush-2);
  background: rgba(244, 215, 202, .28);
  border-radius: 14px;
  padding: 16px 18px;
  color: #8a6b5d;
  font-size: .86rem;
  line-height: 1.65;
}
.contact-notice b {
  display: block;
  color: var(--copper);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .01em;
  margin-bottom: 5px;
}
.contact-list { margin-top: 20px; display: grid; gap: 0; }
.contact-list > div {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 8px 18px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list > div:last-child { border-bottom: 0; }
.contact-list dt {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-list dd { color: var(--brown); font-size: .92rem; line-height: 1.6; }
.contact-list dd small { display: block; color: var(--muted); font-size: .75rem; line-height: 1.5; margin-top: 3px; }
.contact-link {
  display: inline-block;
  margin-top: 3px;
  color: var(--copper);
  border-bottom: 1px solid rgba(167, 101, 73, .34);
  padding-bottom: 1px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.contact-link:hover { color: var(--brown); border-color: var(--brown); }
@media (max-width: 640px) {
  .contact-list > div { grid-template-columns: minmax(0, 1fr); gap: 3px; }
}

/* ========================= product cards ========================= */
.product-grid { display: grid; gap: 24px; }
.home-grid { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; padding: 4px 2px 10px; scrollbar-width: none; cursor: grab; }
.home-grid::-webkit-scrollbar { display: none; }
.home-grid.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.home-grid .product-card { flex: 0 0 auto; width: clamp(198px, 60vw, 236px); scroll-snap-align: start; }
.home-grid.dragging .product-card { pointer-events: none; }
.product-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 7px;
  background: #f7efeb;
  color: var(--brown-dark);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.product-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1.265 / 1;
  overflow: hidden;
  background: #f3e8e2;
}
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover img { transform: scale(1.035); }
.product-info { display: grid; justify-items: start; text-align: left; padding: 12px 6px 4px; }
.catalogue-grid .product-info { text-align: center; justify-items: center; min-height: 119px; padding: 13px 12px 15px; }
.product-info strong {
  font-family: var(--serif);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #7d4c3d;
}
.product-zh { color: #8f6454; font-size: .74rem; letter-spacing: .08em; margin-top: 3px; }
.product-tagline { color: #8d776e; font-size: .78rem; line-height: 1.28; margin-top: 8px; max-width: 180px; min-height: 2.45em; }
.product-price { margin-top: 6px; font-weight: 600; letter-spacing: .06em; color: #6b3f33; }
.home-grid .product-card { background: transparent; border-radius: 3px; }
.home-grid .product-image-wrap { border-radius: 3px; }
.home-grid .product-info { padding-left: 4px; }
.home-grid .product-tagline { display: none; }

/* ========================= catalogue page ========================= */
.catalogue-hero { background: linear-gradient(90deg, #fffaf6 0%, #fff5ef 100%); overflow: hidden; border-bottom: 1px solid rgba(154,100,78,.1); }
.catalogue-hero-inner { min-height: 198px; position: relative; display: grid; align-items: center; }
.catalogue-hero-copy { position: relative; z-index: 2; padding-left: 2px; }
.catalogue-hero h1 {
  font-family: var(--serif);
  color: var(--brown);
  font-size: clamp(3.4rem, 5.2vw, 5.15rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.catalogue-hero p { color: #9a6a58; letter-spacing: 0; font-size: .96rem; }
.catalogue-hero p .heart { color: #d3a18b; margin-left: 12px; }
.catalogue-hero img { position: absolute; right: -8px; top: 0; height: 200px; width: min(55%, 798px); object-fit: cover; object-position: right center; mask-image: linear-gradient(90deg, transparent 0%, #000 23%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 23%); }
.catalogue-section { padding: 27px 0 28px; }
.catalogue-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 25px; }
.filters { display: flex; align-items: center; gap: 17px; flex-wrap: wrap; }
.filter-chip {
  min-width: 130px;
  min-height: 35px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid #d7a994;
  background: rgba(255,255,255,.64);
  color: #9a6450;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: background .24s var(--ease), color .24s var(--ease), transform .24s var(--ease);
}
.filter-chip span { margin-left: 4px; letter-spacing: .04em; }
.filter-chip:hover { transform: translateY(-1px); background: #fff; }
.filter-chip.active { color: #fff; background: linear-gradient(180deg, #ac6b50, #915238); border-color: transparent; }
.sort-wrap { display: flex; align-items: center; gap: 13px; color: #a47a69; font-size: .78rem; }
.sort-wrap select {
  min-width: 147px;
  height: 35px;
  padding: 0 36px 0 15px;
  border: 1px solid #d6aa97;
  border-radius: 4px;
  background: rgba(255,255,255,.7);
  color: #a0715f;
}
.catalogue-count-row { margin: -14px auto 14px; color: #b39689; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.catalogue-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 22px; }
.catalogue-grid .product-card { box-shadow: 0 1px 0 rgba(101,59,41,.03); background: #f7efeb; }
.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 3px;
  margin-bottom: 28px;
  min-height: 68px;
  border-radius: 10px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(226, 202, 191, .65);
  padding: 15px 28px;
}
.service-item { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--copper); }
.service-item svg { width: 34px; height: 34px; flex: none; }
.service-item b { display: block; color: #9a6753; font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.service-item span { display: block; color: #9d7f72; font-size: .72rem; letter-spacing: .08em; }

/* ========================= product detail page ========================= */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #af8f81;
  font-size: .72rem;
  padding: 20px 0 17px;
}
.breadcrumbs a:hover { color: var(--brown); }
.breadcrumbs b { color: var(--brown); font-weight: 500; }
.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.39fr) minmax(420px, .86fr);
  gap: 45px;
  align-items: start;
}
.main-product-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #f3e7df;
  box-shadow: 0 1px 0 rgba(101,59,41,.04);
}
/* height:auto is load-bearing — the width/height attributes on these images are
   presentational hints that map to CSS height, which would otherwise beat
   aspect-ratio and stretch the image to its intrinsic pixel height. */
.main-product-image img { width: 100%; height: auto; aspect-ratio: 758 / 519; object-fit: cover; }
.zoom-button {
  position: absolute;
  right: 22px;
  bottom: 16px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(158,100,76,.28);
  background: rgba(255,255,255,.9);
  color: var(--copper);
  font-size: 1.45rem;
}
.gallery-row { display: grid; grid-template-columns: 46px 1fr 46px; align-items: center; gap: 12px; margin-top: 8px; }
.gallery-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(174, 116, 92, .35);
  color: var(--copper);
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
}
.thumbnail-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
/* Galleries with more than four images scroll sideways instead of wrapping onto extra rows. */
.thumbnail-track.is-scroll { display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none; }
.thumbnail-track.is-scroll::-webkit-scrollbar { display: none; }
.thumbnail-track.is-scroll .thumb-button { flex: 0 0 clamp(84px, 19%, 132px); }
.thumb-button { overflow: hidden; border: 1px solid transparent; border-radius: 7px; background: #fff; padding: 0; opacity: .86; }
.thumb-button.active { border-color: #b77a61; opacity: 1; box-shadow: 0 0 0 2px rgba(183, 122, 97, .14); }
.thumb-button img { width: 100%; height: auto; aspect-ratio: 126 / 79; object-fit: cover; }
.product-summary { padding-top: 8px; }
.product-summary h1 {
  margin-top: 11px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  font-weight: 500;
  letter-spacing: .09em;
  line-height: 1.05;
  text-transform: uppercase;
}
.product-zh-large { color: var(--brown); font-family: "Noto Serif TC", serif; font-size: 1.28rem; letter-spacing: .18em; margin-top: 12px; }
.product-price-large { color: #5a4037; font-family: var(--serif); font-size: 1.72rem; letter-spacing: .09em; margin-top: 12px; }
.product-description { color: #94786d; font-size: .92rem; max-width: 512px; margin-top: 12px; }
.flavor-section, .option-block, .quantity-block { margin-top: 26px; }
.flavor-section h2, .option-block h2, .quantity-block h2 {
  color: var(--copper);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.flavor-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; max-width: 450px; }
.flavor-note { display: grid; justify-items: center; text-align: center; gap: 2px; color: var(--copper); }
.flavor-note svg { width: 38px; height: 38px; margin-bottom: 2px; }
.flavor-note b { color: #745044; font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.flavor-note span { color: #8f7368; font-size: .7rem; letter-spacing: .08em; }
.size-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: 455px; }
.size-options button {
  min-height: 36px;
  border: 1px solid #dfc8be;
  border-radius: 6px;
  background: rgba(255,255,255,.72);
  color: #a07869;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
}
.size-options button span { color: #b6998e; }
.size-options button.active { color: #fff; border-color: transparent; background: linear-gradient(180deg, #a96a4e, #8f5238); }
.size-options button.active span { color: #f4ddd3; }
.quantity-block { display: flex; align-items: center; gap: 23px; }
.quantity-block h2 { margin-bottom: 0; }
.quantity-control { display: inline-flex; align-items: center; gap: 8px; }
.quantity-control button {
  min-width: 48px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #dfc8be;
  border-radius: 6px;
  background: rgba(255,255,255,.68);
  color: #9b6b58;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.quantity-control button:hover { background: rgba(255,255,255,.98); border-color: #c99d8b; }
.quantity-control input { width: 58px; height: 38px; border: 1px solid #dfc8be; border-radius: 6px; background: rgba(255,255,255,.7); color: #5a4037; font: inherit; font-size: .86rem; text-align: center; padding: 0; }
.quantity-control input:focus { outline: none; background: #fff; border-color: #c99d8b; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 26px; }
.product-actions.single { grid-template-columns: 1fr; }
.preorder-note { margin-top: 18px; padding: 10px 16px; border: 1px solid #ecd9d0; border-radius: 6px; color: #c39a8c; background: rgba(255,255,255,.5); font-size: .76rem; letter-spacing: .07em; }
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(45, 29, 23, .72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s var(--ease), visibility .24s;
}
.image-lightbox.open { opacity: 1; visibility: visible; pointer-events: auto; }
.image-lightbox img {
  max-width: min(1040px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 80px -36px rgba(20, 10, 6, .8);
}
.image-lightbox-close {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--brown);
  font-size: 1.65rem;
  line-height: 1;
}

/* Mix & Match flavour picker */
.pick-options { display: grid; gap: 8px; max-width: 520px; }
.pick-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 8px 12px; border: 1px solid #e4d1c7; border-radius: 8px; background: rgba(255,255,255,.72); }
.pick-lead { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1 1 auto; }
.pick-thumb { width: 44px; height: 44px; flex: none; border-radius: 7px; object-fit: cover; background: var(--paper-2); }
/* The thumbnail is a button so it is keyboard-reachable; on wide screens it
   selects that flavour's photo in the main gallery, so it carries a selected
   state driven by whichever image the gallery is currently showing. */
.pick-thumb-btn {
  flex: none;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 7px;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(183, 122, 97, 0);
  transition: box-shadow .22s var(--ease);
}
.pick-thumb-btn:hover { box-shadow: 0 0 0 2px rgba(183, 122, 97, .3); }
.pick-thumb-btn.active { box-shadow: 0 0 0 2px #b77a61; }
.pick-thumb-btn:focus-visible { outline: 2px solid var(--copper); outline-offset: 2px; }
.pick-thumb-empty { display: block; }
.pick-name { font-size: .82rem; color: #7a5443; min-width: 0; }
.pick-info {
  flex: none;
  margin-left: auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid #e4d1c7;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  color: var(--copper);
  font-family: var(--serif);
  font-size: .84rem;
  font-style: italic;
  line-height: 1;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.pick-info:hover { background: var(--paper-2); border-color: #c99d8b; }

/* flavour detail sheet */
.flavour-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(60, 41, 35, .42);
  backdrop-filter: blur(2px);
}
.flavour-sheet.open { display: grid; }
.flavour-card {
  position: relative;
  width: min(420px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 30px 80px -30px rgba(90, 55, 35, .55);
}
.flavour-card:focus { outline: none; }
.flavour-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  color: #7a5443;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.flavour-photo { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px 16px 0 0; }
.flavour-body { padding: 18px 20px 22px; }
.flavour-body h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--brown); line-height: 1.2; }
.flavour-tagline { color: var(--copper); font-size: .8rem; margin-top: 4px; }
.flavour-body > p:not(.flavour-tagline) { margin-top: 11px; color: #8a6b5d; font-size: .85rem; line-height: 1.65; }
.flavour-facts { margin-top: 16px; border-top: 1px solid var(--line); }
.flavour-facts dt {
  color: var(--muted);
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 13px;
}
.flavour-facts dd { color: #7a5443; font-size: .82rem; line-height: 1.55; margin-top: 3px; }
.pick-step { display: inline-flex; align-items: center; gap: 6px; flex: none; }
.pick-step .pick-btn, .pick-step .pick-qty { width: 42px; height: 32px; display: grid; place-items: center; border: 1px solid #dfc8be; border-radius: 7px; background: rgba(255,255,255,.8); color: #9b6b58; font-size: .78rem; font-weight: 500; padding: 0; }
.pick-step .pick-btn { cursor: pointer; }
.pick-step .pick-btn:hover { background: var(--paper-2); border-color: #c99d8b; }
.pick-step .pick-qty { width: 46px; font-size: .82rem; color: #5a4037; text-align: center; }
.pick-step .pick-qty:focus { outline: none; background: #fff; color: var(--brown); }

/* Must come after the base .pick-* rules above: same specificity, so source
   order decides. This block previously sat earlier in the file and was
   silently overridden, which is why the stepper kept its fixed 42px controls
   on phones and ran past the edge of the card.
   Five 42px controls plus padding need ~258px; below that the row stacks and
   the stepper becomes a full-width five-column grid. 560px rather than 460px
   because the overflow starts as soon as the thumbnail, name and stepper stop
   fitting on one line, not 100px later. */
@media (max-width: 560px) {
  .pick-row { align-items: flex-start; flex-direction: column; gap: 9px; }
  .pick-lead { width: 100%; }
  .pick-step { width: 100%; display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .pick-step .pick-btn, .pick-step .pick-qty { width: 100%; }
  .pick-info { width: 32px; height: 32px; }
}
.pick-total { margin-top: 12px; font-size: .82rem; letter-spacing: .06em; color: #b08b7d; }
.pick-total.complete { color: #4e8a54; font-weight: 500; }
.cake-message-label { display: grid; max-width: 455px; }
.cake-message-label textarea { width: 100%; font: inherit; font-size: .86rem; color: #5a4037; padding: 10px 11px; border: 1px solid #dfc8be; border-radius: 8px; background: rgba(255,255,255,.72); resize: vertical; }
.cake-message-label textarea:focus { outline: none; background: #fff; border-color: #c99d8b; }
.message-help { margin-top: 8px; color: var(--muted); font-size: .74rem; line-height: 1.45; }

/* Ordering rules / offers */
.product-notes { margin-top: 26px; padding: 16px 18px; border: 1px solid #ecd9d0; border-radius: 10px; background: rgba(255,255,255,.55); }
.product-notes h2 { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #9a7464; margin: 0 0 10px; }
.notes-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.notes-list li { position: relative; padding-left: 20px; font-size: .82rem; line-height: 1.45; color: #7a5443; }
.notes-list li::before { content: "✦"; position: absolute; left: 0; top: 0; color: var(--copper); font-size: .78rem; }
.product-info-strip {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1fr;
  margin-top: 26px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(249,238,232,.84));
  border: 1px solid rgba(226, 202, 191, .68);
  overflow: hidden;
}
.product-info-strip article { padding: 21px 36px 20px; min-height: 105px; }
.product-info-strip article + article { border-left: 1px solid #e3ccc2; }
.product-info-strip h3 { color: #9a6753; font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.product-info-strip p { color: #8f776e; font-size: .78rem; line-height: 1.45; }
.product-info-strip a { display: inline-block; color: #a86e57; border-bottom: 1px solid rgba(168,110,87,.42); margin-top: 8px; font-size: .76rem; }
.mini-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* allergens */
.allergen-block { margin-top: 14px; padding-top: 13px; border-top: 1px solid rgba(226, 202, 191, .8); }
.allergen-title {
  display: block;
  color: #9a6753;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.allergen-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.allergen-tags li {
  background: rgba(244, 215, 202, .5);
  border: 1px solid var(--blush-2);
  border-radius: 999px;
  padding: 3px 11px;
  color: var(--copper);
  font-size: .72rem;
  letter-spacing: .02em;
}
/* "May contain" is a weaker claim than "Contains", so it reads quieter:
   outlined rather than filled, and the heading it follows gets breathing room. */
.allergen-tags.maybe { margin-bottom: 2px; }
.allergen-tags.maybe li { background: transparent; border-style: dashed; color: #a8806f; }
.allergen-block .allergen-title + .allergen-tags + .allergen-title { margin-top: 11px; }
.allergen-note { margin-top: 9px; color: #9c8479 !important; font-size: .69rem !important; line-height: 1.5 !important; }
/* legal pages + footer legal block */
/* The legal line sits in its own bar below the main footer row rather than
   inside it — dropped into that flex row it became a 6th and 7th column and
   wrapped both itself and its neighbours. */
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px 20px;
  flex-wrap: wrap;
  padding: 13px 0 17px;
  border-top: 1px solid rgba(154, 100, 78, .1);
}
.footer-legal { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin: 0; }
.footer-legal a { font-size: .74rem; white-space: nowrap; }
.footer-legal span[aria-hidden] { color: var(--muted); font-size: .7rem; }
.footer-copyright { margin: 0; color: var(--muted) !important; font-size: .7rem !important; letter-spacing: .04em; white-space: nowrap; }
.legal-updated { text-align: center; color: var(--muted); font-size: .72rem; letter-spacing: .05em; margin-top: 10px; }
/* Legal copy is read, not skimmed: give the body column a comfortable measure
   and looser leading than the marketing cards use. */
.about-page .about-card p + p { margin-top: 11px; }
.about-card p, .about-card .fee-notes li { line-height: 1.72; }

.flavour-allergen-note { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); color: #9c8479; font-size: .69rem; line-height: 1.55; }
.recommendation-section { padding-top: 20px; }
.recommendation-wrap { display: block; }
.recommend-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; }
.recommend-grid .product-card { background: transparent; }
.recommend-grid .product-image-wrap { border-radius: 5px; }
.recommend-grid .product-info { padding-left: 4px; }
.recommend-grid .product-tagline { display: none; }

/* ========================= footer/reveal ========================= */
.site-footer { border-top: 1px solid rgba(154,100,78,.12); background: rgba(255,255,255,.72); margin-top: 38px; }
.compact-footer { margin-top: 18px; }
.footer-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #987466; font-size: .86rem; }
.footer-brand .brand-mark { width: 38px; height: 38px; }
.footer-brand .brand-copy { font-size: 1.15rem; }
.footer-inner a:not(.brand) { color: var(--copper); font-weight: 500; }
.footer-contact { font-size: .78rem; line-height: 1.6; max-width: 34ch; }
.footer-contact b { color: var(--copper); font-weight: 500; }
.footer-contact a { white-space: nowrap; }
.footer-inner a.footer-credit {
  align-self: flex-end;
  margin-left: auto;
  margin-right: clamp(70px, 5vw, 84px);
  padding-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .28rem;
  white-space: nowrap;
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: right;
  color: #856f65;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s var(--ease), text-decoration-color .2s var(--ease);
}
.footer-credit-icon {
  width: .72rem;
  height: .72rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .52;
  transition: opacity .2s var(--ease);
}
.footer-inner a.footer-credit:hover,
.footer-inner a.footer-credit:focus-visible {
  color: var(--copper);
  text-decoration-color: currentColor;
}
.footer-credit:hover .footer-credit-icon,
.footer-credit:focus-visible .footer-credit-icon {
  opacity: .78;
}
.footer-credit:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
  border-radius: 2px;
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease) var(--reveal-delay, 0ms), transform .7s var(--ease) var(--reveal-delay, 0ms); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ========================= responsive ========================= */
@media (max-width: 1320px) {
  .nav-shell { width: calc(100% - 36px); grid-template-columns: 218px minmax(0, 1fr) auto; gap: 14px; }
  .brand { gap: 10px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy { font-size: 1.22rem; letter-spacing: .085em; }
  .brand-copy small { font-size: .5rem; letter-spacing: .18em; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: .69rem; letter-spacing: .06em; }
  .nav-actions { gap: 12px; }
  .order-pill { min-width: 106px; padding-inline: 17px; }
  .catalogue-grid, .home-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .service-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail-shell { grid-template-columns: 1.08fr .92fr; }
}

@media (max-width: 980px) {
  .container { width: min(100% - 44px, 760px); }
  .nav-shell { width: calc(100% - 36px); grid-template-columns: 1fr auto; min-height: 72px; }
  .nav-links {
    position: fixed;
    z-index: 2;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    justify-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px max(22px, env(safe-area-inset-right)) 20px max(22px, env(safe-area-inset-left));
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 8px -8px rgba(90,55,35,.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .22s var(--ease), transform .28s var(--ease), visibility .28s;
  }
  .nav-links.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav-links a {
    width: min(100%, 760px);
    min-height: 58px;
    margin-inline: auto;
    padding: 0 4px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(154,100,78,.1);
    font-size: .78rem;
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a.active { color: var(--brown-dark); font-weight: 600; }
  .nav-links a::after { display: none; }
  .nav-backdrop {
    position: fixed;
    z-index: 49;
    inset: 72px 0 0;
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    background: rgba(60,41,35,.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s var(--ease), visibility .25s;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-burger { display: block; }
  body.nav-open .nav-burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .order-pill { min-width: auto; padding-inline: 18px; }

  .home-hero { min-height: 720px; }
  .home-hero::before { display: block; background: linear-gradient(180deg, rgba(255,250,246,.18), rgba(255,250,246,.04) 58%, rgba(255,250,246,.24)); }
  .hero-ambient { display: block; }
  .hero-layout { min-height: 720px; grid-template-columns: 1fr; align-items: start; gap: 0; padding: 64px 0 0; }
  .hero-copy { position: absolute; top: 58px; left: 0; width: min(620px, 100%); max-width: 620px; }
  .hero-photo-card { position: absolute; inset: 0; width: 100%; max-width: none; height: 100%; }
  .hero-photo-card::after { display: none; }
  .hero-photo-card img { object-position: center 73%; }
  .hero-promises { width: min(620px, 100%); max-width: 620px; gap: 40px; }
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .title-row { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .text-link { justify-self: center; }
  .about-card { grid-template-columns: 1fr; gap: 18px; }
  .catalogue-hero img { opacity: .45; width: 76%; }
  .catalogue-toolbar { align-items: flex-start; flex-direction: column; }
  .product-detail-shell { grid-template-columns: 1fr; }
  .product-summary { padding-top: 0; }
  .product-info-strip { grid-template-columns: 1fr; }
  .product-info-strip article + article { border-left: 0; border-top: 1px solid #e3ccc2; }
  .recommend-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { flex-direction: column; align-items: flex-start; padding: 24px 0; }
  .footer-bar { flex-direction: column; justify-content: center; text-align: center; gap: 8px; }
  .footer-legal { justify-content: center; }
  .footer-inner a.footer-credit { align-self: center; margin: 6px auto 0; padding-bottom: 0; text-align: center; }
}

@media (max-width: 720px) {
  .site-header { padding-inline: env(safe-area-inset-left) env(safe-area-inset-right); }
  .nav-shell { min-height: 72px; }
  .nav-actions { gap: 0; }
  .nav-burger, .cart-button { width: 44px; height: 44px; }
  .lang-toggle { min-height: 42px; }
  .lang-toggle button { min-height: 40px; }
  .brand-copy { font-size: 1.12rem; letter-spacing: .08em; }
  .brand-copy small { font-size: .48rem; }
  .brand-mark { width: 38px; height: 38px; }
  .nav-icon { display: none; }
  .order-pill { display: none; }
  .home-hero { min-height: 75vh; min-height: 75svh; background: #fff8f3; }
  .home-hero::before {
    background: linear-gradient(180deg, rgba(255,250,246,.9) 0%, rgba(255,250,246,.8) 22%, rgba(255,250,246,.48) 38%, rgba(255,250,246,.08) 53%, rgba(255,250,246,0) 66%);
  }
  .hero-layout { min-height: 75vh; min-height: 75svh; padding-top: 34px; }
  .hero-photo-card { inset: 0; width: 100%; height: 100%; }
  .hero-photo-card img { object-position: center 58%; opacity: .9; }
  .hero-copy .hero-chinese,
  .hero-copy .hero-buttons { padding-inline: 12px 8px; }
  .hero-chinese { min-height: 2.84em; font-size: 1.08rem; font-weight: 600; letter-spacing: .075em; line-height: 1.42; }
  .hero-buttons .btn { min-width: 135px; min-height: 44px; padding-inline: 22px; }
  .hero-copy { top: 42px; left: 0; width: min(100%, 560px); }
  .hero-buttons { margin-bottom: 68px; }
  .hero-promises { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .hero-promises b { font-size: .6rem; }
  .hero-promises em { font-size: .64rem; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card img { width: 48%; }
  .catalogue-grid, .home-grid, .recommend-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .catalogue-hero h1 { font-size: 3.1rem; letter-spacing: 0; }
  .filters { gap: 10px; }
  .filter-chip { min-width: auto; min-height: 44px; flex: 1 1 calc(50% - 10px); padding-inline: 12px; }
  .sort-wrap select { min-height: 44px; height: 44px; }
  .service-strip { grid-template-columns: 1fr; padding: 18px; }
  .service-item { justify-content: flex-start; }
  .thumbnail-track { gap: 8px; }
  .gallery-row { grid-template-columns: 44px 1fr 44px; gap: 6px; }
  .gallery-arrow { width: 44px; height: 44px; }
  .product-summary h1 { font-size: 2.35rem; }
  .flavor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .size-options, .product-actions { grid-template-columns: 1fr; }
  .quantity-block { align-items: flex-start; flex-direction: column; gap: 10px; }
  .mini-columns { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .container { width: calc(100% - 30px); }
  .nav-shell { width: calc(100% - 24px); }
  .brand { gap: 8px; }
  .brand-copy { font-size: .96rem; }
  .brand-copy small { letter-spacing: .14em; }
  .home-hero { min-height: 75vh; min-height: 75svh; }
  .hero-layout { min-height: 75vh; min-height: 75svh; padding-top: 32px; }
  .hero-copy { bottom: 0; display: flex; flex-direction: column; }
  .hero-chinese { font-size: 1.04rem; letter-spacing: .055em; margin-bottom: 16px; }
  .hero-buttons { margin-bottom: 0; }
  .hero-promises {
    display: grid;
    width: calc(100% + 30px);
    margin-top: auto;
    margin-left: -15px;
    padding: 15px 10px max(17px, env(safe-area-inset-bottom));
    gap: 6px;
    background: #fffaf7;
    border-top: 1px solid rgba(154,100,78,.1);
  }
  .hero-promises div { grid-template-rows: 26px minmax(2.5rem, auto); gap: 4px; }
  .hero-promises .mini-icon { width: 26px; height: 26px; }
  .hero-promises b { min-height: 2.5rem; font-size: .56rem; line-height: 1.2; letter-spacing: .055em; }
  .catalogue-grid, .home-grid, .recommend-grid { grid-template-columns: 1fr; }
  .product-info strong { font-size: 1rem; }
  .product-tagline { max-width: none; }
  .catalogue-hero h1 { font-size: 2.6rem; letter-spacing: 0; }
  .catalogue-hero p { letter-spacing: 0; }
}

/* ========================= cart & order flow ========================= */
.cart-button { position: relative; width: 32px; height: 32px; display: inline-grid; place-items: center; color: var(--copper); background: transparent; border: 0; cursor: pointer; padding: 0; transition: color .25s var(--ease), transform .25s var(--ease); }
.cart-button:hover { color: var(--brown); transform: translateY(-1px); }
.cart-button .bag { display: block; width: 23px; height: 23px; }
.cart-count { position: absolute; top: -4px; right: -6px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 9px; background: var(--copper); color: #fff; font-size: .6rem; font-weight: 600; line-height: 16px; text-align: center; display: none; }
.cart-count.show { display: block; }

.cart-overlay { position: fixed; inset: 0; background: rgba(60,40,30,.42); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; z-index: 60; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100%; height: 100dvh; width: min(430px, 93vw); padding-right: env(safe-area-inset-right); background: var(--paper); box-shadow: -8px 0 44px rgba(90,55,35,.18); transform: translateX(100%); transition: transform .34s var(--ease); z-index: 61; display: flex; flex-direction: column; }
.cart-drawer.open { transform: none; }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.cart-drawer-head h2 { font-family: var(--serif); color: var(--brown); font-size: 1.5rem; letter-spacing: .04em; }
.cart-close { width: 44px; height: 44px; display: grid; place-items: center; background: transparent; border: 0; font-size: 1.6rem; line-height: 1; color: #9a7464; cursor: pointer; padding: 0; }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 22px 8px; }
.cart-empty { text-align: center; color: var(--muted); padding: 52px 12px; font-size: .9rem; }
.cart-empty a { color: var(--copper); }

.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; padding: 14px 0; border-bottom: 1px solid rgba(154,100,78,.12); }
.cart-line b { color: var(--brown); font-weight: 500; font-size: .92rem; grid-column: 1; }
.cart-line .cl-price { color: #5a4037; font-weight: 500; white-space: nowrap; text-align: right; grid-column: 2; grid-row: 1; }
.cart-line .cl-meta { color: #a07f70; font-size: .72rem; grid-column: 1; }
.cl-qty { display: inline-flex; align-items: center; border: 1px solid #e0cfc6; border-radius: 8px; overflow: hidden; margin-top: 7px; }
.cl-qty button { width: 38px; height: 38px; border: 0; background: #f3e9e3; color: #7a5443; cursor: pointer; font-size: .95rem; line-height: 1; }
.cl-qty button:hover { background: #ecdcd3; }
.cl-qty span { min-width: 30px; text-align: center; font-size: .82rem; color: #5a4037; }
.cl-qty-input { width: 46px; height: 38px; border: 0; border-left: 1px solid #e0cfc6; border-right: 1px solid #e0cfc6; background: #fff; text-align: center; font: inherit; font-size: .82rem; color: #5a4037; padding: 0; }
.cl-qty-input:focus { outline: none; background: #fff8f4; }
.cl-fixed-qty { display: inline-flex; align-items: center; min-height: 28px; margin-top: 7px; color: #7a5443; font-size: .78rem; }
.cl-remove { background: transparent; border: 0; color: #b98e7c; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; margin-top: 9px; justify-self: end; align-self: center; grid-column: 2; /* checkout controls need a real thumb target, not a hairline of text */ min-height: 38px; min-width: 60px; padding: 0 8px; }
.cl-remove:hover { color: #8f5238; }

.cart-offer-alert {
  margin: 12px 0 4px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fbeede;
  border: 1px solid #f0d9b4;
  color: #8a5a12;
  font-size: .78rem;
  line-height: 1.4;
  text-align: center;
}
.cart-subtotal { display: grid; gap: 6px; padding: 10px 0 6px; }
.tot-row { display: flex; justify-content: space-between; align-items: baseline; font-size: .82rem; color: #7a5443; }
.tot-row.tot-offer { color: #4e8a54; }
.tot-nudge { margin-bottom: 8px; padding: 9px 12px; border-radius: 8px; background: #fbeede; border: 1px solid #f0d9b4; color: #8a5a12; font-size: .78rem; line-height: 1.4; text-align: center; }
.tot-row.tot-grand { padding-top: 8px; margin-top: 2px; border-top: 1px solid var(--line); font-family: var(--serif); font-size: 1.2rem; color: var(--brown); }
.order-form { margin-top: 8px; display: grid; gap: 12px; }
.order-form.calendar-only { margin-top: 14px; }
.order-form.calendar-only .order-details-field,
.order-form.calendar-only .order-method { display: none !important; }
.order-form h3 { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #9a7464; margin-top: 8px; }
.order-form label { display: grid; gap: 4px; font-size: .7rem; letter-spacing: .05em; color: #8a6b5d; text-transform: uppercase; }
.order-form input, .order-form select { font: inherit; font-size: .86rem; text-transform: none; letter-spacing: normal; color: #5a4037; padding: 9px 11px; border: 1px solid #e0cfc6; border-radius: 8px; background: #fff; }
.order-form input:focus, .order-form select:focus { outline: none; border-color: var(--copper); }
.order-form input.invalid, .order-form select.invalid { border-color: #d98b6f; background: #fdf3ef; }
.order-method { display: flex; gap: 10px; }
.order-method label { flex: 1; flex-direction: row; align-items: center; justify-content: center; gap: 6px; padding: 10px; border: 1px solid #e0cfc6; border-radius: 8px; cursor: pointer; font-size: .78rem; color: #7a5443; }
.order-method input { accent-color: var(--copper); }
.order-form label.address-field { display: none; }
.order-form label.address-field.show { display: grid; }
.field-note { color: var(--muted); font-size: .7rem; line-height: 1.4; letter-spacing: normal; text-transform: none; }
.field-note-link { color: var(--copper); text-decoration: underline; text-underline-offset: 2px; }

/* availability calendar */
.date-field { display: grid; gap: 6px; }
.df-label { font-size: .7rem; letter-spacing: .05em; color: #8a6b5d; text-transform: uppercase; }
.order-form label.date-input-wrap {
  display: grid;
  gap: 5px;
  text-transform: none;
  letter-spacing: normal;
}
.date-input-wrap span {
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #8a6b5d;
}
.date-input-help {
  margin: -1px 0 5px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
}
.order-form .date-input-wrap input { color-scheme: light; }
.avail-cal { border: 1px solid var(--line); border-radius: 12px; padding: 12px; background: #fff; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.cal-month { font-size: .9rem; font-weight: 500; color: #5a4037; }
.cal-nav { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--copper); cursor: pointer; font-size: 1rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .15s var(--ease); }
.cal-nav:hover:not(:disabled) { background: var(--paper-2); }
.cal-nav:disabled { opacity: .3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-wdays { margin-bottom: 2px; }
.cal-wd { text-align: center; font-size: .66rem; color: var(--muted); padding: 2px 0; text-transform: uppercase; letter-spacing: .02em; }
.cal-cell { aspect-ratio: 1 / 1; border: 1px solid transparent; border-radius: 8px; font: inherit; font-size: .8rem; color: #5a4037; background: transparent; display: flex; align-items: center; justify-content: center; padding: 0; cursor: pointer; transition: box-shadow .12s var(--ease); }
.cal-cell.empty { visibility: hidden; cursor: default; }
.cal-cell.disabled { color: #d3c3b9; cursor: default; }
.cal-cell.lvl-open { background: #fff; border-color: var(--line); }
.cal-cell.lvl-busy { background: #fbeaca; border-color: #f0cd8f; color: #8a5a12; }
.cal-cell.lvl-full { background: #f8ddd8; border-color: #eaa99f; color: #a33227; }
.cal-cell.selectable:hover { box-shadow: 0 0 0 2px var(--copper) inset; }
.cal-cell.selected { box-shadow: 0 0 0 2px var(--copper) inset; font-weight: 600; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 6px 12px; margin-top: 10px; font-size: .68rem; color: #7a5443; text-transform: none; letter-spacing: normal; }
.cal-lg { display: inline-flex; align-items: center; gap: 5px; }
.lg-dot { width: 11px; height: 11px; border-radius: 3px; display: inline-block; border: 1px solid; }
.lg-dot.lvl-open { background: #fff; border-color: var(--line); }
.lg-dot.lvl-busy { background: #fbeaca; border-color: #f0cd8f; }
.lg-dot.lvl-full { background: #f8ddd8; border-color: #eaa99f; }
.cal-selected { margin: 10px 0 3px; font-size: .8rem; color: #7a5443; text-transform: none; letter-spacing: normal; }
.cal-selected b { color: #5a4037; }
.cal-note { margin: 0; font-size: .72rem; line-height: 1.5; color: var(--muted); text-transform: none; letter-spacing: normal; }
.cal-note.note-full { color: #a33227; }

.cart-foot { padding: 14px 22px 20px; border-top: 1px solid var(--line); background: var(--paper); display: grid; gap: 10px; }
.cart-expectation {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #ead5ca;
  border-radius: 8px;
  background: #fff8f4;
  color: #7a5443;
  font-size: .72rem;
  line-height: 1.45;
  text-align: center;
}
.btn-order { width: 100%; padding: 13px; border: 0; border-radius: 999px; background: linear-gradient(180deg, #a96a4e, #8f5238); color: #fff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: transform .2s var(--ease), opacity .2s; }
.btn-order:hover:not(:disabled) { transform: translateY(-1px); }
.btn-order:disabled { opacity: .45; cursor: not-allowed; }
.cart-hint { font-size: .68rem; color: var(--muted); text-align: center; }
.cart-error { color: #c0674a; font-size: .72rem; text-align: center; min-height: 0; }

.order-result { display: grid; gap: 9px; }
.order-result textarea { width: 100%; min-height: 130px; font: inherit; font-size: .76rem; color: #5a4037; padding: 10px; border: 1px solid #e0cfc6; border-radius: 8px; background: #fff; resize: vertical; }
.order-result .result-note { font-size: .72rem; color: #7a5443; line-height: 1.5; }
.order-result-actions { display: flex; gap: 8px; }
.order-result-actions button { flex: 1; padding: 10px; border: 1px solid #cbae9f; border-radius: 999px; background: #fff; color: #8f5238; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.order-result-actions button.primary { background: linear-gradient(180deg, #a96a4e, #8f5238); color: #fff; border-color: transparent; }

.cart-toast { position: fixed; left: 50%; bottom: max(26px, calc(16px + env(safe-area-inset-bottom))); transform: translate(-50%, 20px); background: #5a4037; color: #fdf6f1; padding: 11px 12px 11px 18px; border-radius: 999px; font-size: .8rem; box-shadow: 0 8px 24px rgba(70,42,28,.28); opacity: 0; visibility: hidden; transition: opacity .3s, transform .3s, visibility .3s; z-index: 70; display: flex; gap: 12px; align-items: center; }
.cart-toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.cart-toast button { background: transparent; border: 0; color: #f2cdbc; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; white-space: nowrap; }

/* ========================= language toggle (EN / 中文) ========================= */
html[lang="en"] [data-lang-zh] { display: none !important; }
html[lang="zh"] [data-lang-en] { display: none !important; }
[data-lang-zh] { text-transform: none; }

.lang-toggle { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.5); }
.lang-toggle button { border: 0; background: transparent; color: var(--copper); font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .04em; padding: 5px 9px; min-height: 26px; line-height: 1; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease); }
.lang-toggle button:hover { color: var(--brown); }
.lang-toggle button.active { background: var(--copper); color: #fff; }

/* ========================= customer reviews ========================= */
.reviews-section { padding-top: 6px; }
.reviews-strip { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 12px 2px 22px; scrollbar-width: none; cursor: grab; }
.reviews-strip::-webkit-scrollbar { display: none; }
.reviews-strip.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.review-card { flex: 0 0 auto; width: clamp(226px, 74vw, 262px); aspect-ratio: 5 / 8; margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 18px 44px -30px rgba(105,61,43,.55); scroll-snap-align: center; }
.review-card img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; background: #fff; -webkit-user-drag: none; user-select: none; }
.reviews-strip.dragging .review-card { pointer-events: none; }
.reviews-note { text-align: center; color: var(--muted); font-size: .74rem; letter-spacing: .04em; margin-top: 2px; }

/* ========================= about page ========================= */
.about-hero { padding: 40px 0 6px; }
.about-lead { text-align: center; max-width: 620px; margin: 8px auto 0; color: #8a6b5d; font-size: 1.02rem; line-height: 1.72; }
.about-page .about-card { margin-top: 20px; }
.about-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
@media (max-width: 640px) {
  .about-cta .btn { flex: 1 1 100%; }
}

/* ========================= no-JS fallback ========================= */
.noscript-note {
  margin: 18px auto;
  padding: 15px 18px;
  border: 1px solid var(--blush-2);
  background: rgba(244, 215, 202, .32);
  border-radius: 12px;
  color: #8a6b5d;
  font-size: .86rem;
  line-height: 1.65;
}
.noscript-note a { color: var(--copper); border-bottom: 1px solid rgba(167, 101, 73, .4); }

/* ========================= 404 page ========================= */
.error-hero { padding: 56px 0 72px; }
.error-card { text-align: center; max-width: 620px; }
.error-code {
  display: block;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 13vw, 7.2rem);
  line-height: 1;
  color: var(--blush-2);
  letter-spacing: .04em;
}
.error-card h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 600;
  color: var(--brown);
  margin: 10px 0 0;
}
.error-card p { max-width: 470px; margin: 14px auto 0; color: #8a6b5d; line-height: 1.72; }

/* ========================= floating Instagram button ========================= */
.ig-fab {
  position: fixed;
  right: clamp(16px, 4vw, 26px);
  bottom: clamp(16px, 4vw, 26px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(45deg, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 80%, #4f5bd5 100%);
  box-shadow: 0 12px 28px -10px rgba(150, 47, 191, .55), 0 3px 8px rgba(80, 40, 30, .18);
  z-index: 55;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ig-fab:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 16px 32px -10px rgba(150, 47, 191, .6), 0 4px 10px rgba(80, 40, 30, .2); }
.ig-fab svg { width: 28px; height: 28px; }
@media (max-width: 720px) { .ig-fab { right: max(16px, calc(12px + env(safe-area-inset-right))); bottom: max(16px, calc(12px + env(safe-area-inset-bottom))); width: 52px; height: 52px; } .ig-fab svg { width: 26px; height: 26px; } }

/* ========================= how it works ========================= */
.how-section { padding: 30px 0 46px; background: rgba(255,255,255,.55); }
.how-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; margin-top: 10px; }
.how-step { text-align: center; display: grid; justify-items: center; gap: 9px; }
.how-num {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #a96a4e, #8f5238);
  color: #fff; font-family: var(--serif); font-size: 1.34rem; font-weight: 600;
  box-shadow: 0 10px 22px -12px rgba(143, 82, 56, .7);
}
.how-step b { color: var(--brown); font-size: .96rem; font-weight: 600; letter-spacing: .02em; }
.how-step p { color: #8a6b5d; font-size: .82rem; line-height: 1.62; max-width: 235px; }
.how-note { text-align: center; color: var(--muted); font-size: .75rem; letter-spacing: .04em; margin-top: 26px; }
@media (max-width: 860px) { .how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 20px; } }
@media (max-width: 460px) { .how-grid { grid-template-columns: 1fr; gap: 26px; } }

/* Phone controls retain full tap areas even though the shared cart and language
   styles are declared after the responsive section above. */
@media (max-width: 720px) {
  .cart-button { width: 44px; height: 44px; }
  .lang-toggle { min-height: 42px; }
  .lang-toggle button { min-height: 40px; }
}
