/* Appily-Five — Sunlit Botanical Garden */
:root {
  --moss: #2F5233;
  --moss-deep: #1E3624;
  --moss-light: #4A7C59;
  --blush: #F4C2C2;
  --blush-deep: #E8959C;
  --bloom: #FF6B8A;
  --petal: #FFF0F3;
  --sunflower: #E8B86D;
  --sunflower-pale: #FBF0DC;
  --sage: #A8C5A0;
  --sage-pale: #E8F0E6;
  --lavender: #B8A9E8;
  --lavender-pale: #F0ECFA;
  --cream: #FFFBF7;
  --cream-warm: #F7EDE2;
  --ink: #1E2A22;
  --muted: #5C6B61;
  --white: #ffffff;
  --line: rgba(47, 82, 51, 0.1);
  --radius: 12px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-round: 999px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 4px 20px rgba(30, 42, 34, 0.06);
  --shadow: 0 16px 48px rgba(30, 42, 34, 0.12);
  --shadow-lg: 0 24px 64px rgba(30, 42, 34, 0.16);
  /* legacy aliases */
  --forest: var(--moss);
  --forest-light: var(--moss-light);
  --rose: var(--blush);
  --rose-deep: var(--blush-deep);
  --gold: var(--sunflower);
  --gold-pale: var(--sunflower-pale);
  --cream-2: var(--cream-warm);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
html { height: 100%; }

body.appily-store {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100%;
}

body.appily-store::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(168, 197, 160, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(244, 194, 194, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(232, 184, 109, 0.12) 0%, transparent 40%),
    var(--cream);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}

.page-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.page-main { flex: 1 0 auto; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}
.site-header.is-scrolled .header-bar {
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  background: rgba(255, 251, 247, 0.92);
}

.header-promo {
  background: linear-gradient(90deg, var(--moss-deep), var(--moss));
  color: var(--cream);
}
.header-promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 7px 0;
  flex-wrap: wrap;
  text-align: center;
}
.promo-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blush);
}
.promo-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sunflower);
}
.promo-note {
  font-size: .72rem;
  font-weight: 500;
  opacity: .9;
}

.header-bar {
  background: rgba(255, 251, 247, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s, background .25s;
}

.header-bar > .container {
  width: min(1280px, calc(100% - 24px));
}

.header-shell {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 8px 0;
}

.header-cluster {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
}

.header-menu {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--sage-pale);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background .15s;
}
.header-menu:hover { background: var(--blush); }
.menu-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 16px;
}
.menu-bars span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--moss);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.header-menu.is-open .menu-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-menu.is-open .menu-bars span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header-menu.is-open .menu-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50% 50% 50% 12%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--moss);
  background: linear-gradient(135deg, var(--petal), var(--lavender-pale));
  box-shadow: 0 0 0 2px var(--blush), var(--shadow-sm);
}
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  color: var(--moss-deep);
  white-space: nowrap;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.brand-five {
  color: var(--bloom);
  font-style: italic;
}

.header-nav.nav {
  flex: 0 1 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  padding: 3px 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-round);
}

.nav-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 8px;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: var(--radius-round);
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-link:hover {
  color: var(--moss);
  background: var(--sage-pale);
}
.nav-link.is-active {
  color: var(--white);
  background: var(--moss);
}
.nav-rose.is-active { background: var(--blush-deep); }
.nav-lily.is-active { background: var(--lavender); color: var(--ink); }
.nav-season.is-active { background: var(--sunflower); color: var(--ink); }
.nav-tropic.is-active { background: var(--moss-light); }
.nav-heritage.is-active { background: #D4846A; }
.nav-wild.is-active { background: var(--sage); color: var(--ink); }
.nav-bouquet.is-active { background: var(--bloom); }

.header-actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.header-search {
  flex: 0 0 auto;
  width: 132px;
  min-width: 0;
}
.search-field {
  display: flex;
  align-items: center;
  height: 36px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-round);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.search-field:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(168, 197, 160, 0.25);
}
.search-field input {
  flex: 1;
  border: 0;
  height: 100%;
  padding: 0 10px;
  font: inherit;
  font-size: .78rem;
  outline: none;
  min-width: 0;
  background: transparent;
}
.search-submit {
  align-self: stretch;
  display: flex;
  align-items: center;
  border: 0;
  background: var(--moss);
  color: var(--cream);
  padding: 0 12px;
  font-weight: 700;
  font-size: .7rem;
  cursor: pointer;
  flex-shrink: 0;
}
.action-account {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 14px 0 10px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--moss);
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: var(--radius-round);
  border: 1.5px solid rgba(47, 82, 51, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 240, 230, 0.92) 100%);
  box-shadow:
    0 3px 12px rgba(47, 82, 51, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
}
.action-account-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(47, 82, 51, 0.08);
  color: var(--moss);
  flex-shrink: 0;
}
.action-account-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.action-account-label {
  line-height: 1;
}
.action-account:hover {
  color: var(--moss-deep);
  border-color: rgba(74, 124, 89, 0.45);
  background:
    linear-gradient(180deg, #fff 0%, rgba(232, 240, 230, 1) 100%);
  box-shadow:
    0 6px 18px rgba(47, 82, 51, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}
.action-account.is-active {
  border-color: var(--moss-light);
  background:
    linear-gradient(135deg, rgba(47, 82, 51, 0.08) 0%, rgba(168, 197, 160, 0.22) 100%);
  box-shadow: 0 4px 14px rgba(47, 82, 51, 0.14);
}
.action-account.is-authed {
  color: var(--cream);
  border-color: transparent;
  background: linear-gradient(135deg, var(--moss-deep) 0%, var(--moss) 55%, var(--moss-light) 100%);
  box-shadow: 0 4px 16px rgba(47, 82, 51, 0.28);
}
.action-account.is-authed .action-account-icon {
  background: rgba(255, 255, 255, 0.16);
  color: var(--cream);
}
.action-account.is-authed:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(47, 82, 51, 0.34);
}
.action-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  background: linear-gradient(135deg, var(--bloom), var(--blush-deep));
  color: var(--white);
  border-radius: var(--radius-round);
  font-size: .76rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 107, 138, 0.35);
  transition: transform .15s, box-shadow .15s;
}
.action-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 138, 0.45);
}
.cart-count {
  background: var(--white);
  color: var(--moss);
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .66rem;
  font-weight: 800;
}

/* Drawer — mobile conservatory menu */
.bloom-drawer, .header-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
}
.bloom-drawer.is-open { pointer-events: auto; opacity: 1; }
.drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 26, 0.55);
  backdrop-filter: blur(6px);
}
.drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(360px, 92vw);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, #fffef9 0%, var(--cream) 28%, var(--sage-pale) 100%);
  transform: translateX(-105%);
  transition: transform .34s cubic-bezier(.22, 1, .36, 1);
  overflow: hidden;
  border-right: 1px solid rgba(47, 82, 51, 0.12);
  box-shadow: 24px 0 60px rgba(30, 42, 34, 0.18);
}
.bloom-drawer.is-open .drawer-panel { transform: translateX(0); }

.drawer-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  background: linear-gradient(135deg, var(--moss-deep), var(--moss));
  color: var(--cream);
}
.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.drawer-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50% 50% 50% 12%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--moss);
  background: linear-gradient(135deg, var(--petal), var(--lavender-pale));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.drawer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.drawer-brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.1;
}
.drawer-brand-text span {
  font-size: .72rem;
  opacity: .82;
  letter-spacing: .04em;
}
.drawer-close-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
  transition: background .2s, transform .2s;
}
.drawer-close-btn:hover { background: rgba(255, 255, 255, 0.18); }
.drawer-close-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}
.drawer-close-btn span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.drawer-close-btn span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.drawer-search {
  padding: 14px 16px 6px;
}
.drawer-search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 6px 0 12px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-round);
  box-shadow: var(--shadow-sm);
}
.drawer-search-icon {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
}
.drawer-search-field input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .9rem;
  min-width: 0;
  outline: none;
}
.drawer-search-field button {
  border: 0;
  border-radius: var(--radius-round);
  background: var(--moss);
  color: var(--cream);
  font-weight: 700;
  font-size: .78rem;
  padding: 10px 16px;
  cursor: pointer;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 16px 18px;
  -webkit-overflow-scrolling: touch;
}
.drawer-section + .drawer-section { margin-top: 18px; }
.drawer-label {
  margin: 0 0 10px;
  padding-left: 4px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.drawer-tiles {
  display: grid;
  gap: 8px;
}
.drawer-tiles-compact {
  grid-template-columns: 1fr;
}
.drawer-tile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(47, 82, 51, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 14px rgba(30, 42, 34, 0.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.drawer-tile:active { transform: scale(.98); }
.drawer-tile-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1rem;
  background: var(--sage-pale);
  color: var(--moss);
}
.drawer-tile-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.drawer-tile-copy strong {
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
}
.drawer-tile-copy span {
  font-size: .72rem;
  color: var(--muted);
}
.drawer-tile-arrow {
  color: var(--muted);
  font-size: .9rem;
  opacity: .7;
}
.drawer-tile.is-active {
  border-color: var(--moss);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), var(--petal));
  box-shadow: 0 8px 22px rgba(47, 82, 51, 0.12);
}
.drawer-tile.is-active .drawer-tile-arrow { color: var(--moss); opacity: 1; }

.drawer-tile-home .drawer-tile-icon { background: var(--petal); color: var(--bloom); }
.drawer-tile-all .drawer-tile-icon { background: var(--sage-pale); color: var(--moss); }
.drawer-tile-rose .drawer-tile-icon { background: #fde8ec; color: #c94d6a; }
.drawer-tile-lily .drawer-tile-icon { background: var(--lavender-pale); color: #6b5b95; }
.drawer-tile-season .drawer-tile-icon { background: var(--sunflower-pale); color: #b8860b; }
.drawer-tile-tropic .drawer-tile-icon { background: #e8f5e9; color: var(--moss-light); }
.drawer-tile-heritage .drawer-tile-icon { background: #fce8e0; color: #c06040; }
.drawer-tile-wild .drawer-tile-icon { background: #edf5ea; color: #4a7c59; }
.drawer-tile-bouquet .drawer-tile-icon { background: #fff0f5; color: var(--bloom); }
.drawer-tile-meta .drawer-tile-icon { background: var(--cream-warm); color: var(--moss); }

.drawer-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(47, 82, 51, 0.1);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}
.drawer-foot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: .86rem;
  font-weight: 700;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.drawer-foot-btn:active { transform: scale(.98); }
.drawer-foot-cart {
  background: var(--moss);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(47, 82, 51, 0.22);
}
.drawer-foot-account {
  flex-direction: column;
  gap: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 237, 226, 0.95) 100%);
  color: var(--moss);
  border: 1.5px solid rgba(47, 82, 51, 0.16);
  box-shadow: 0 6px 18px rgba(47, 82, 51, 0.08);
}
.drawer-foot-account:hover {
  border-color: rgba(74, 124, 89, 0.35);
  box-shadow: 0 8px 22px rgba(47, 82, 51, 0.12);
}
.drawer-foot-account.is-authed {
  background: linear-gradient(135deg, var(--moss-deep), var(--moss));
  color: var(--cream);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(47, 82, 51, 0.24);
}
.drawer-foot-account.is-active {
  outline: 2px solid rgba(168, 197, 160, 0.55);
  outline-offset: 2px;
}
.drawer-foot-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47, 82, 51, 0.08);
}
.drawer-foot-account.is-authed .drawer-foot-icon {
  background: rgba(255, 255, 255, 0.14);
}
.drawer-foot-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.drawer-foot-badge {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: var(--radius-round);
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 800;
  background: var(--bloom);
  color: var(--white);
}

body.drawer-open { overflow: hidden; }

/* Typography & buttons */
.eyebrow {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bloom);
  font-weight: 700;
  margin: 0 0 12px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 em { font-style: italic; color: var(--moss-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: var(--radius-round);
  font-weight: 700;
  font-size: .88rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--moss);
  color: var(--cream);
  border-color: var(--moss);
  box-shadow: 0 6px 20px rgba(47, 82, 51, 0.25);
}
.btn-primary:hover { background: var(--moss-light); box-shadow: 0 8px 28px rgba(47, 82, 51, 0.3); }
.btn-outline {
  background: transparent;
  border-color: var(--moss);
  color: var(--moss);
}
.btn-outline:hover { background: var(--sage-pale); }
.btn-soft {
  background: var(--petal);
  color: var(--moss);
  border-color: transparent;
}
.btn-soft:hover { background: var(--blush); }
.btn-light { background: var(--white); color: var(--moss); box-shadow: var(--shadow-sm); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.btn-sm { padding: 8px 16px; font-size: .8rem; }
.link-arrow { font-weight: 700; color: var(--moss); font-size: .88rem; }
.link-arrow:hover { color: var(--bloom); }

/* ── Hero garden ── */
.hero-garden {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  animation: floatOrb 12s ease-in-out infinite;
}
.orb-a {
  width: 320px; height: 320px;
  background: var(--blush);
  top: -80px; right: -60px;
}
.orb-b {
  width: 240px; height: 240px;
  background: var(--sage);
  bottom: 20%; left: -80px;
  animation-delay: -4s;
}
.orb-c {
  width: 180px; height: 180px;
  background: var(--sunflower);
  top: 40%; right: 30%;
  animation-delay: -8s;
  opacity: .35;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.05); }
}

.hero-garden-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 18px;
  color: var(--moss-deep);
}
.hero-lede {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 28px;
  font-size: 1.02rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stats li {
  position: relative;
  padding-left: 16px;
}
.hero-stats li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: .6rem;
  color: var(--bloom);
}
.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--moss);
  font-family: var(--font-display);
  line-height: 1.1;
}
.hero-stats span {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-spotlight {
  display: block;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .3s;
}
.hero-spotlight:hover { transform: scale(1.02); }

.spotlight-frame {
  aspect-ratio: 4 / 5;
  max-height: 480px;
  overflow: hidden;
  background: var(--cream-warm);
}
.spotlight-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.hero-spotlight:hover .spotlight-frame img { transform: scale(1.06); }

.spotlight-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-round);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bloom);
}

.spotlight-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 24px;
  background: linear-gradient(transparent, rgba(30, 42, 34, 0.88));
  color: var(--cream);
}
.spotlight-info h2 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  color: var(--cream);
}
.spotlight-info .price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sunflower);
}

.hero-floats {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.hero-float {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-round);
  box-shadow: var(--shadow);
  font-size: .78rem;
  font-weight: 600;
  max-width: 200px;
  transition: transform .2s, box-shadow .2s;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-2 { animation-delay: -1.3s; }
.hero-float-3 { animation-delay: -2.6s; }
.hero-float:hover {
  transform: translateX(-4px) scale(1.03);
  box-shadow: var(--shadow-lg);
}
.hero-float img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--blush);
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-ribbon {
  margin-top: 48px;
  background: var(--moss-deep);
  color: var(--cream);
  padding: 14px 0;
}
.ribbon-inner {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.ribbon-item {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  opacity: .92;
}

/* ── Collections garden ── */
.garden-collections {
  padding: 72px 0 48px;
}

.section-head { margin-bottom: 36px; }
.section-head-center {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-head-center h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 10px;
  color: var(--moss-deep);
}
.section-sub {
  color: var(--muted);
  margin: 0;
  font-size: .95rem;
}
.section-head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head-split h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 8px;
  color: var(--moss-deep);
}
.section-head-split p { margin: 0; color: var(--muted); }

.collection-garden {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.garden-bed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.garden-bed:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.garden-bed:nth-child(2) { grid-column: 3; }
.garden-bed:nth-child(3) { grid-column: 4; }
.garden-bed:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.garden-bed-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.garden-bed:hover .garden-bed-img { transform: scale(1.08); }
.garden-bed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(30, 42, 34, 0.85));
}
.garden-rose .garden-bed-overlay { background: linear-gradient(transparent 30%, rgba(232, 149, 156, 0.85)); }
.garden-lily .garden-bed-overlay { background: linear-gradient(transparent 30%, rgba(184, 169, 232, 0.85)); }
.garden-season .garden-bed-overlay { background: linear-gradient(transparent 30%, rgba(232, 184, 109, 0.85)); }
.garden-tropic .garden-bed-overlay { background: linear-gradient(transparent 30%, rgba(74, 124, 89, 0.85)); }
.garden-heritage .garden-bed-overlay { background: linear-gradient(transparent 30%, rgba(212, 132, 106, 0.85)); }
.garden-wild .garden-bed-overlay { background: linear-gradient(transparent 30%, rgba(168, 197, 160, 0.85)); }
.garden-bouquet .garden-bed-overlay { background: linear-gradient(transparent 30%, rgba(255, 107, 138, 0.85)); }

.garden-bed-body {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: var(--white);
  width: 100%;
}
.garden-bed-body h3 {
  margin: 0 0 4px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white);
}
.garden-bed-count {
  font-size: .78rem;
  opacity: .85;
  display: block;
}
.garden-bed-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.garden-bed:hover .garden-bed-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── Products ── */
.section { padding: 64px 0; }
.section-bloom { background: linear-gradient(180deg, var(--cream) 0%, var(--petal) 100%); }
.section-muted { background: var(--cream-warm); }

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.benefit-list li {
  font-size: .76rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-round);
  background: var(--white);
  color: var(--moss);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.product-masonry, .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.product-img {
  position: relative;
  display: block;
  padding: 20px 20px 0;
}
.product-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50% 50% var(--radius-lg) var(--radius-lg);
  background: var(--cream-warm);
  transition: border-radius .3s;
}
.product-card:hover .product-img img {
  border-radius: var(--radius-lg);
}
.product-badge {
  position: absolute;
  top: 28px;
  right: 20px;
  background: var(--bloom);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-round);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.product-body { padding: 16px 20px 22px; }
.product-cat {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--bloom);
  font-weight: 600;
}
.product-body h3 {
  font-size: 1rem;
  margin: 6px 0;
  font-family: var(--font-display);
  font-weight: 700;
}
.product-variant { font-size: .8rem; color: var(--muted); margin: 0 0 14px; }
.product-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.price { font-weight: 800; color: var(--moss); font-size: 1.08rem; }

/* Promo */
.promo-garden { padding: 0 0 64px; }
.promo-garden-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.promo-bloom {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 240px;
}
.promo-bloom-inner {
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-bloom-main {
  background:
    linear-gradient(135deg, rgba(30, 54, 36, 0.92), rgba(47, 82, 51, 0.88)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: var(--cream);
}
.promo-bloom-side {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--blush-deep) 100%);
  color: var(--white);
}
.promo-bloom h2 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: inherit;
}
.promo-bloom p {
  margin: 0 0 22px;
  opacity: .9;
  max-width: 36ch;
  font-size: .92rem;
}

/* Showcase scroll */
.showcase-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.showcase-card {
  flex-shrink: 0;
  width: 210px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.showcase-card-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.showcase-card-info { padding: 12px 14px 16px; }
.showcase-card-info h3 {
  font-size: .9rem;
  margin: 4px 0;
  font-family: var(--font-display);
}

/* Legacy aliases for inner pages */
.bed-showcase { padding: 72px 0 48px; }
.bed-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.bed-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.bed-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.bed-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-warm); }
.bed-img img { width: 100%; height: 100%; object-fit: cover; }
.bed-body { padding: 14px 16px 18px; }
.bed-body h3 { margin: 4px 0; font-size: 1rem; }
.bed-count { font-size: .78rem; color: var(--muted); }
.promo-trio { padding: 0 0 64px; }
.promo-trio-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
.promo-panel {
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  color: var(--cream);
}
.promo-main { background: linear-gradient(135deg, var(--moss-deep), var(--moss-light)); }
.promo-side { background: linear-gradient(135deg, var(--lavender), var(--blush-deep)); }
.promo-panel h2 { margin: 0 0 10px; color: var(--cream); font-size: 1.4rem; }
.promo-panel p { margin: 0 0 20px; opacity: .85; max-width: 36ch; }
.showcase-bloom-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
}
.showcase-bloom {
  flex-shrink: 0;
  width: 210px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.showcase-bloom-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.showcase-bloom-info { padding: 12px 14px 16px; }
.showcase-bloom-info h3 { font-size: .9rem; margin: 4px 0; font-family: var(--font-display); }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2rem); margin: 0; color: var(--moss-deep); }
.link-arrow:hover { color: var(--bloom); }

/* Catalog / detail / cart */
.page-hero {
  padding: 48px 0 28px;
  background: linear-gradient(180deg, var(--petal) 0%, var(--cream) 100%);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--moss-deep);
  margin: 0;
}

/* ── Greenhouse shop (unique stem gallery) ── */
.shop-canopy {
  position: relative;
  padding: 44px 0 36px;
  overflow: hidden;
}
.shop-canopy-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168, 197, 160, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(244, 194, 194, 0.15) 0%, transparent 40%),
    var(--cream);
  pointer-events: none;
}
.shop-canopy-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.shop-canopy-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin: 0 0 10px;
  color: var(--moss-deep);
  line-height: 1.1;
}
.shop-canopy-title em {
  font-style: italic;
  color: var(--moss-light);
}
.shop-canopy-lede {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--muted);
  font-size: .92rem;
}

.greenhouse-shop {
  padding: 0 0 72px;
}

.vine-rail {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(5px, 0.7vw, 9px);
  width: 100%;
  max-width: 100%;
  margin: 0 auto 28px;
  padding: 16px 8px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  border-bottom: 2px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
}
.vine-rail::-webkit-scrollbar { display: none; }

.vine-leaf {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  width: clamp(78px, 10vw, 112px);
  max-width: 112px;
  padding: 10px 8px 8px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 50% 50% 12px 12px;
  scroll-snap-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
  text-align: center;
}
.vine-leaf:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--sage);
}
.vine-leaf.is-active {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--cream);
  box-shadow: var(--shadow);
}
.leaf-icon {
  font-size: .82rem;
  line-height: 1;
  opacity: .7;
  flex-shrink: 0;
}
.vine-leaf.is-active .leaf-icon { opacity: 1; color: var(--blush); }
.leaf-label {
  font-size: clamp(.58rem, 0.65vw, .66rem);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  color: inherit;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.leaf-count {
  font-size: .58rem;
  font-weight: 600;
  opacity: .65;
  padding: 1px 6px;
  background: rgba(47, 82, 51, 0.06);
  border-radius: var(--radius-round);
  flex-shrink: 0;
}
.vine-leaf.is-active .leaf-count {
  background: rgba(255, 255, 255, 0.15);
  opacity: .9;
}
.leaf-rose.is-active { background: var(--blush-deep); border-color: var(--blush-deep); }
.leaf-lily.is-active { background: var(--lavender); border-color: var(--lavender); color: var(--ink); }
.leaf-season.is-active { background: var(--sunflower); border-color: var(--sunflower); color: var(--ink); }
.leaf-tropic.is-active { background: var(--moss-light); border-color: var(--moss-light); }
.leaf-heritage.is-active { background: #D4846A; border-color: #D4846A; }
.leaf-wild.is-active { background: var(--sage); border-color: var(--sage); color: var(--ink); }
.leaf-bouquet.is-active { background: var(--bloom); border-color: var(--bloom); }

.shop-meta {
  font-size: .84rem;
  color: var(--muted);
  margin: 0 0 22px;
  font-weight: 600;
  letter-spacing: .02em;
}
.shop-empty { margin-top: 20px; }
.shop-empty .btn { margin-top: 16px; }

.stem-bloom-garden {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px 20px;
  align-items: end;
}

.stem-bloom-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stem-bloom-card.is-tall .bloom-petal-mask {
  width: 118%;
  margin-left: -9%;
}
.stem-bloom-card.is-tall .stem-tag {
  transform: translateY(4px);
}

.stem-bloom-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform .25s;
}
.stem-bloom-link:hover {
  transform: translateY(-6px);
}

.stem-wire {
  display: block;
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, var(--sage) 0%, var(--moss-light) 100%);
  border-radius: 2px;
  margin-bottom: -2px;
  position: relative;
  z-index: 1;
}
.tone-rose .stem-wire { background: linear-gradient(180deg, var(--blush), var(--blush-deep)); }
.tone-lily .stem-wire { background: linear-gradient(180deg, var(--lavender-pale), var(--lavender)); }
.tone-season .stem-wire { background: linear-gradient(180deg, var(--sunflower-pale), var(--sunflower)); }
.tone-tropic .stem-wire { background: linear-gradient(180deg, var(--sage-pale), var(--moss-light)); }
.tone-heritage .stem-wire { background: linear-gradient(180deg, #f5d4c8, #D4846A); }
.tone-wild .stem-wire { background: linear-gradient(180deg, var(--sage-pale), var(--sage)); }
.tone-bouquet .stem-wire { background: linear-gradient(180deg, var(--petal), var(--bloom)); }

.bloom-head {
  position: relative;
  width: 100%;
  z-index: 2;
}

.bloom-petal-mask {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 48% 48% 42% 42%;
  background: var(--cream-warm);
  box-shadow:
    0 0 0 3px var(--white),
    0 8px 28px rgba(47, 82, 51, 0.12);
  transition: border-radius .35s, box-shadow .35s;
}
.stem-bloom-link:hover .bloom-petal-mask {
  border-radius: 50%;
  box-shadow:
    0 0 0 3px var(--blush),
    0 14px 36px rgba(47, 82, 51, 0.16);
}
.bloom-petal-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.stem-bloom-link:hover .bloom-petal-mask img {
  transform: scale(1.08);
}

.bloom-ribbon {
  position: absolute;
  top: 8px;
  right: -4px;
  padding: 4px 10px;
  background: var(--bloom);
  color: var(--white);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 3px 8px 8px 3px;
  box-shadow: 0 3px 10px rgba(255, 107, 138, 0.35);
  transform: rotate(4deg);
}

.stem-tag {
  width: calc(100% - 8px);
  margin-top: 12px;
  padding: 14px 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px 6px 14px 14px;
  box-shadow: 0 4px 16px rgba(47, 82, 51, 0.06);
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.stem-tag::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: var(--white);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.stem-bloom-link:hover .stem-tag {
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
}
.tone-rose .stem-tag { border-top: 3px solid var(--blush-deep); }
.tone-lily .stem-tag { border-top: 3px solid var(--lavender); }
.tone-season .stem-tag { border-top: 3px solid var(--sunflower); }
.tone-tropic .stem-tag { border-top: 3px solid var(--moss-light); }
.tone-heritage .stem-tag { border-top: 3px solid #D4846A; }
.tone-wild .stem-tag { border-top: 3px solid var(--sage); }
.tone-bouquet .stem-tag { border-top: 3px solid var(--bloom); }
.tone-all .stem-tag { border-top: 3px solid var(--moss); }

.tag-bed {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bloom);
  margin-bottom: 4px;
}
.stem-tag h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin: 0 0 4px;
  line-height: 1.2;
  color: var(--moss-deep);
}
.tag-note {
  font-size: .76rem;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tag-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.tag-foot .price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--moss);
}
.tag-pick {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--bloom);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s, transform .2s;
}
.stem-bloom-link:hover .tag-pick {
  opacity: 1;
  transform: translateX(0);
}

/* Legacy catalog (fallback) */
.catalog-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding-bottom: 64px;
}
.filter-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: 100px;
  align-self: start;
  box-shadow: var(--shadow-sm);
}
.filter-panel h2 { font-size: .95rem; margin: 0 0 14px; color: var(--moss); font-family: var(--font-display); }
.filter-nav { display: flex; flex-direction: column; gap: 2px; }
.filter-nav a {
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: .86rem;
  color: var(--muted);
  transition: background .15s;
}
.filter-nav a.active, .filter-nav a:hover {
  background: var(--petal);
  color: var(--moss);
  font-weight: 700;
}
.result-meta { font-size: .88rem; color: var(--muted); margin: 0 0 18px; }

.product-hero { padding: 48px 0; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-gallery {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.product-info h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 8px 0 14px;
  color: var(--moss-deep);
}
.product-lede { color: var(--muted); margin-bottom: 22px; }
.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 26px;
}
.spec-list div {
  padding: 12px 14px;
  background: var(--sage-pale);
  border-radius: var(--radius);
}
.spec-list dt {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.spec-list dd { margin: 4px 0 0; font-weight: 700; color: var(--moss); }
.buy-panel {
  padding: 26px;
  background: linear-gradient(135deg, var(--moss-deep), var(--moss-light));
  color: var(--cream);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.buy-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.price-lg { font-size: 1.7rem; color: var(--sunflower); font-weight: 800; }
.buy-form { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.buy-form label { display: block; font-size: .82rem; margin-bottom: 4px; }
.buy-form select {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}
.fine-print { font-size: .78rem; opacity: .75; margin: 14px 0 0; }

.dual { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.summary-box { position: sticky; top: 100px; }
.cart-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.cart-table th, .cart-table td { padding: 12px 8px; border-bottom: 1px solid var(--line); text-align: left; }
.price-row { display: flex; justify-content: space-between; gap: 12px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 4px; color: var(--moss); }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(168, 197, 160, 0.2);
}
.form-grid textarea { min-height: 90px; resize: vertical; }
.notice {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--sage-pale);
  border: 1px solid var(--line);
}
.notice.error { border-color: #e8b4b4; background: #fdf2f2; color: #922b21; }
.notice.success { border-color: #b8e0c8; background: #f0fdf4; color: var(--moss); }
.notice.warning { border-color: #f0d78c; background: var(--sunflower-pale); }
.mini-copy { font-size: .85rem; color: var(--muted); margin: 0; }
.empty-state { text-align: center; padding: 56px 24px; }
.empty-state p { margin: 0; font-size: 1.1rem; font-weight: 700; font-family: var(--font-display); color: var(--moss); }
.empty-state .sub { margin-top: 8px; font-size: .92rem; font-weight: 400; color: var(--muted); }

.catalog-pagination { margin-top: 36px; }
.pagination-inner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.pagination-btn, .pagination-num {
  padding: 9px 16px;
  border-radius: var(--radius-round);
  border: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 700;
  transition: background .15s;
}
.pagination-num.is-active { background: var(--moss); color: var(--cream); border-color: var(--moss); }
.pagination-btn.is-disabled { opacity: .4; pointer-events: none; }

/* ── Potting bench footer ── */
.potting-footer {
  margin-top: auto;
  position: relative;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 12%, #e8dcc8 100%);
  color: var(--moss-deep);
  overflow: hidden;
}

.potting-ribs {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 72px);
  padding: 0 16px;
  margin-bottom: -1px;
  pointer-events: none;
}
.potting-ribs .rib {
  flex: 0 0 3px;
  height: 52px;
  background: linear-gradient(180deg, rgba(47, 82, 51, 0.08) 0%, rgba(47, 82, 51, 0.22) 70%, rgba(47, 82, 51, 0.35) 100%);
  border-radius: 2px 2px 0 0;
  transform-origin: bottom center;
}
.potting-ribs .rib:nth-child(1) { transform: rotate(-14deg); height: 38px; opacity: .5; }
.potting-ribs .rib:nth-child(2) { transform: rotate(-8deg); height: 44px; opacity: .65; }
.potting-ribs .rib:nth-child(3) { transform: rotate(-3deg); height: 48px; }
.potting-ribs .rib:nth-child(4) { height: 52px; }
.potting-ribs .rib:nth-child(5) { transform: rotate(3deg); height: 48px; }
.potting-ribs .rib:nth-child(6) { transform: rotate(8deg); height: 44px; opacity: .65; }
.potting-ribs .rib:nth-child(7) { transform: rotate(14deg); height: 38px; opacity: .5; }

.potting-wrap {
  display: grid;
  grid-template-columns: 1fr min(280px, 32%);
  gap: 28px;
  align-items: start;
  padding: 36px 0 32px;
}

.potting-bench {
  background:
    linear-gradient(180deg, #d4c4a8 0%, #c9b896 4%, #bfa888 100%);
  border: 1px solid rgba(94, 72, 48, 0.25);
  border-radius: 6px 6px 4px 4px;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -3px 6px rgba(94, 72, 48, 0.12),
    0 12px 32px rgba(30, 42, 34, 0.1);
  padding: 24px 22px 22px;
  position: relative;
}
.potting-bench::before {
  content: '';
  position: absolute;
  inset: 8px 10px auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1px;
}
.potting-bench::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -8px;
  height: 8px;
  background: linear-gradient(180deg, #a89272 0%, #8f7d62 100%);
  border-radius: 0 0 3px 3px;
  box-shadow: 0 4px 8px rgba(30, 42, 34, 0.12);
}

.bench-plaque {
  position: relative;
  text-align: center;
  max-width: 340px;
  margin: 0 auto 24px;
  padding: 18px 24px 16px;
  background: linear-gradient(145deg, #f0e4c8 0%, #dcc9a0 45%, #c9b080 100%);
  border: 2px solid rgba(139, 109, 58, 0.45);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 3px 8px rgba(94, 72, 48, 0.15);
}
.plaque-nail {
  position: absolute;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8e0d0, #7a6a52);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
}
.plaque-nail-l { left: 14px; }
.plaque-nail-r { right: 14px; }
.bench-plaque strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--moss-deep);
  letter-spacing: .02em;
}
.bench-plaque p {
  margin: 6px 0 10px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}
.plaque-stamp {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--moss);
  padding: 4px 12px;
  border: 1px dashed rgba(47, 82, 51, 0.35);
  border-radius: var(--radius-round);
  background: rgba(255, 251, 247, 0.5);
}

.bench-trays {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.seed-tray {
  padding: 14px 12px 12px;
  background: rgba(255, 251, 247, 0.55);
  border: 1px solid rgba(94, 72, 48, 0.18);
  border-radius: 4px;
  box-shadow: inset 0 2px 4px rgba(94, 72, 48, 0.06);
}
.seed-tray h4 {
  margin: 0 0 10px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--moss);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(47, 82, 51, 0.12);
}
.seed-tray a {
  display: block;
  font-size: .82rem;
  color: var(--ink);
  opacity: .82;
  margin-bottom: 7px;
  transition: color .15s, opacity .15s, transform .15s;
}
.seed-tray a:hover {
  opacity: 1;
  color: var(--bloom);
  transform: translateX(3px);
}
.seed-tray a:last-child { margin-bottom: 0; }

.chalk-slate {
  position: relative;
  padding: 22px 20px 18px;
  background:
    linear-gradient(165deg, #2a4530 0%, #1e3624 55%, #162a1c 100%);
  color: rgba(255, 251, 247, 0.92);
  border-radius: 4px;
  box-shadow:
    3px 6px 0 rgba(30, 42, 34, 0.15),
    0 16px 40px rgba(30, 42, 34, 0.18);
  transform: rotate(1.2deg);
  margin-top: 12px;
}
.chalk-hook {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 10px;
  border: 3px solid #8a8278;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  background: transparent;
}
.chalk-slate h4 {
  margin: 4px 0 14px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--sage);
  border-bottom: 1px dashed rgba(168, 197, 160, 0.35);
  padding-bottom: 10px;
}
.chalk-line {
  margin: 0 0 8px;
  font-size: .84rem;
  line-height: 1.5;
  font-family: var(--font-body);
  opacity: .9;
}
.chalk-muted { opacity: .65; font-size: .78rem; }
.chalk-hours {
  font-size: .76rem;
  opacity: .7;
  font-style: italic;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dotted rgba(168, 197, 160, 0.25);
}
.chalk-legal {
  margin: 14px 0 0;
  font-size: .68rem;
  opacity: .5;
  line-height: 1.45;
}

.gravel-strip {
  margin-top: 20px;
  padding: 16px 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 8%),
    radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 6%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.07) 0%, transparent 7%),
    linear-gradient(180deg, #3d5244 0%, var(--moss-deep) 100%);
  color: rgba(255, 251, 247, 0.7);
}
.gravel-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
}
.gravel-bloom-link {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--blush);
  transition: color .15s, transform .15s;
}
.gravel-bloom-link:hover {
  color: var(--cream);
  transform: translateX(4px);
}

.order-list { display: grid; gap: 12px; margin-top: 18px; }
.order-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

/* ── Delivery folio (orders page) ── */
.delivery-folio {
  position: relative;
  padding: 44px 0 80px;
  overflow: hidden;
}
.delivery-folio-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(168, 197, 160, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(244, 194, 194, 0.12) 0%, transparent 40%),
    var(--cream);
  pointer-events: none;
}
.delivery-wrap {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.delivery-head {
  text-align: center;
  margin-bottom: 36px;
}
.delivery-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0 0 10px;
  color: var(--moss-deep);
}
.delivery-head h1 em {
  font-style: italic;
  color: var(--moss-light);
}
.delivery-lede {
  margin: 0 auto;
  max-width: 46ch;
  color: var(--muted);
  font-size: .92rem;
}

.delivery-guest {
  display: flex;
  justify-content: center;
}
.guest-receipt {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 40px 32px 36px;
  text-align: center;
  background: linear-gradient(175deg, #fffef9 0%, #faf6ee 100%);
  border: 1px solid rgba(47, 82, 51, 0.15);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.guest-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8e4dc, #a09888);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.guest-pin-tl { top: 16px; left: 20px; }
.guest-pin-tr { top: 16px; right: 20px; }
.guest-seal {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, var(--lavender-pale), var(--lavender));
  color: var(--moss);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  transform: rotate(-6deg);
  box-shadow: 0 0 0 3px var(--blush);
}
.guest-receipt h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  margin: 0 0 10px;
  color: var(--moss-deep);
}
.guest-receipt p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.guest-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.guest-actions .btn { min-width: 220px; justify-content: center; }

.delivery-clothesline-wrap {
  position: relative;
  padding-top: 24px;
}
.clothesline {
  position: relative;
  height: 8px;
  margin-bottom: 8px;
}
.line-wire {
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--moss-light) 8%, var(--moss-light) 92%, transparent);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.receipt-clothesline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px 20px;
  padding-top: 12px;
}

.bouquet-receipt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 18px;
  animation: folioReveal .45s ease both;
}
.receipt-clip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 14px;
  background: linear-gradient(180deg, #c9c4b8 0%, #8a8278 100%);
  border-radius: 2px 2px 0 0;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.receipt-clip::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 4px;
  background: #8a8278;
  border-radius: 0 0 2px 2px;
}

.receipt-card {
  width: 100%;
  padding: 20px 20px 18px;
  background: #fffef9;
  border: 1px solid rgba(47, 82, 51, 0.14);
  border-radius: 3px;
  box-shadow:
    2px 3px 0 rgba(47, 82, 51, 0.05),
    0 8px 24px rgba(47, 82, 51, 0.08);
  transform: rotate(-0.5deg);
  transition: transform .2s, box-shadow .2s;
}
.bouquet-receipt:nth-child(even) .receipt-card {
  transform: rotate(0.4deg);
}
.bouquet-receipt:hover .receipt-card {
  transform: rotate(0) translateY(-4px);
  box-shadow: var(--shadow);
}

.receipt-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(47, 82, 51, 0.15);
}
.receipt-id {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--moss-deep);
  word-break: break-all;
}
.receipt-status {
  flex-shrink: 0;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-round);
}
.status-placed { background: var(--petal); color: var(--bloom); }
.status-confirmed { background: var(--sage-pale); color: var(--moss); }
.status-shipped { background: var(--lavender-pale); color: var(--moss-light); }
.status-delivered { background: var(--moss); color: var(--cream); }
.status-cancelled { background: #fde8e8; color: #922b21; }

.receipt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 10px;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
}
.receipt-date::before {
  content: '📅 ';
  font-size: .7rem;
}
.receipt-pay::before {
  content: '💳 ';
  font-size: .7rem;
}

.receipt-stems {
  margin: 0 0 14px;
  font-size: .82rem;
  color: var(--ink);
  line-height: 1.45;
  padding: 10px 12px;
  background: rgba(168, 197, 160, 0.12);
  border-left: 3px solid var(--sage);
  border-radius: 0 4px 4px 0;
  font-style: italic;
}

.receipt-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.receipt-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--moss);
  font-family: var(--font-display);
}
.receipt-track {
  font-size: .72rem !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.delivery-empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  margin-top: 20px;
}
.empty-bloom {
  font-size: 2.5rem;
  opacity: .35;
  margin-bottom: 12px;
}
.delivery-empty p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--moss);
  font-weight: 700;
}
.delivery-empty .sub {
  margin: 8px 0 20px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 400;
  color: var(--muted);
}

.page-delivery-folio .herbarium-account .order-row,
.page-orders .order-list .order-row { /* legacy fallback */ }

@keyframes folioReveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.bouquet-receipt:nth-child(1) { animation-delay: .04s; }
.bouquet-receipt:nth-child(2) { animation-delay: .08s; }
.bouquet-receipt:nth-child(3) { animation-delay: .12s; }
.bouquet-receipt:nth-child(4) { animation-delay: .16s; }
.bouquet-receipt:nth-child(n+5) { animation-delay: .2s; }

@media (max-width: 720px) {
  .delivery-folio { padding: 32px 0 56px; }
  .delivery-head { text-align: left; }
  .receipt-clothesline { grid-template-columns: 1fr; }
  .receipt-foot { flex-direction: column; align-items: stretch; }
  .receipt-track { width: 100%; justify-content: center; }
  .guest-actions .btn { width: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .bouquet-receipt { animation: none; }
  .receipt-card { transform: none !important; }
}

/* ── Responsive ── */
@media (max-width: 1150px) {
  .header-cluster { gap: 10px; }
  .nav-link {
    padding: 0 6px;
    font-size: .6rem;
    height: 30px;
  }
  .header-search { width: 118px; }
}

@media (max-width: 1100px) {
  .vine-leaf {
    width: clamp(72px, 8.5vw, 92px);
    max-width: 92px;
    padding: 9px 6px 7px;
  }
  .collection-garden {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .garden-bed:first-child { grid-column: span 2; grid-row: span 1; min-height: 280px; }
  .garden-bed:nth-child(2), .garden-bed:nth-child(3) { grid-column: auto; }
  .garden-bed { min-height: 180px; }
  .hero-floats { display: none; }
}

@media (max-width: 960px) {
  .shop-canopy { padding: 32px 0 24px; }
  .shop-canopy-inner { text-align: left; }
  .vine-rail { justify-content: flex-start; padding: 14px 4px 18px; }
  .vine-leaf { width: 88px; max-width: 88px; }
  .stem-bloom-garden {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 24px 14px;
  }
  .tag-pick { opacity: 1; transform: none; }

  .header-shell {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    justify-content: stretch;
  }
  .header-menu { display: flex; flex: 0 0 auto; width: 44px; height: 44px; }
  .header-cluster {
    flex: 1 1 auto;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
  }
  .header-brand { min-width: 0; }
  .header-nav.nav { display: none; }
  .header-actions {
    flex: 0 0 auto;
    gap: 6px;
  }
  .header-search { display: none; }
  .promo-note { display: none; }

  .hero-garden { padding: 36px 0 0; }
  .hero-garden-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-visual { min-height: auto; }
  .spotlight-frame { max-height: 400px; aspect-ratio: 4/3; }

  .promo-garden-grid,
  .product-layout,
  .dual,
  .catalog-layout { grid-template-columns: 1fr; }
  .collection-garden { grid-template-columns: 1fr; }
  .garden-bed:first-child { grid-column: 1; min-height: 240px; }
  .filter-panel { position: static; }
  .potting-wrap { grid-template-columns: 1fr; }
  .bench-trays { grid-template-columns: repeat(2, 1fr); }
  .chalk-slate { transform: none; margin-top: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .ribbon-inner { gap: 14px; }
}

@media (max-width: 520px) {
  .bench-trays { grid-template-columns: 1fr; }
  .potting-ribs { gap: 20px; }
  .gravel-inner { flex-direction: column; align-items: flex-start; }
  .product-masonry, .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stem-bloom-garden { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .stem-bloom-card.is-tall .bloom-petal-mask { width: 100%; margin-left: 0; }
  .stem-tag h3 { font-size: .92rem; }
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .action-account {
    padding: 0 10px 0 8px;
    gap: 5px;
    font-size: .72rem;
  }
  .action-account-label {
    max-width: 58px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ── Global mobile polish ── */
@media (max-width: 960px) {
  .container { width: min(1180px, calc(100% - 20px)); }
  .section { padding: 48px 0; }
  .page-panel { padding: 32px 0 48px; }
  .panel { padding: 20px; border-radius: var(--radius); }
  .summary-box { position: static; top: auto; }
  .section-head-split,
  .section-head-center,
  .section-head { text-align: left; }
  .benefit-list { padding-left: 18px; }
  .catalog-pagination { margin-top: 28px; }
  .pagination-inner { gap: 8px; }
  .pagination-btn,
  .pagination-num { min-height: 42px; min-width: 42px; }
  .policy-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .policy-nav::-webkit-scrollbar { display: none; }
  .policy-nav a { flex-shrink: 0; }
  .policy-card { padding: 22px 18px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(1180px, calc(100% - 16px)); }
  .header-promo-inner { padding: 6px 0; gap: 8px; }
  .promo-badge { font-size: .62rem; }
  .brand-mark { width: 36px; height: 36px; font-size: 1rem; }
  .action-cart { min-height: 40px; padding: 0 10px; }
  .hero-garden h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-lede { font-size: .92rem; }
  .hero-stats { flex-wrap: wrap; justify-content: flex-start; }
  .hero-stats li { min-width: calc(33% - 12px); }
  .showcase-card { width: min(72vw, 210px); }
  .product-masonry,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .product-img { padding: 14px 14px 0; }
  .product-body { padding: 12px 14px 16px; }
  .product-body h3 { font-size: .95rem; }
  .product-badge { top: 20px; right: 14px; font-size: .58rem; padding: 4px 10px; }
  .garden-bed { min-height: 200px !important; }
  .garden-bed-body h3 { font-size: 1.1rem; }
  .promo-garden-grid { gap: 14px; }
  .promo-bloom { padding: 24px 20px; }
  .table-like { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cart-table { min-width: 560px; }
  .page-panel .dual > .panel form [style*="display:flex"] {
    flex-direction: column;
    align-items: stretch !important;
  }
  .page-panel .dual > .panel form .btn { width: 100%; justify-content: center; }
  .payment-state h2 { font-size: 1.35rem; }
  .payment-state .btn { width: 100%; justify-content: center; }
  .payment-state [style*="display:flex"] { flex-direction: column !important; }
}

@media (max-width: 680px) {
  .cart-table,
  .cart-table thead,
  .cart-table tbody,
  .cart-table th,
  .cart-table td,
  .cart-table tr { display: block; }
  .cart-table { min-width: 0; }
  .cart-table thead { display: none; }
  .cart-table tr {
    margin-bottom: 14px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
  }
  .cart-table td {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 4px 12px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(47, 82, 51, 0.12);
    align-items: center;
  }
  .cart-table td:last-child { border-bottom: 0; }
  .cart-table td::before {
    content: attr(data-label);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .cart-table td input[type="number"] { max-width: 100% !important; width: 100%; }
}

@media (max-width: 520px) {
  .stem-bloom-garden { grid-template-columns: 1fr; }
  .drawer-tiles:not(.drawer-tiles-compact) {
    grid-template-columns: 1fr;
  }
  .drawer-tile { min-height: 52px; }
  .drawer-foot { grid-template-columns: 1fr; }
  .hero-stats li { min-width: calc(50% - 10px); }
  h1 { font-size: clamp(1.75rem, 8vw, 2.2rem); }
  h2 { font-size: clamp(1.35rem, 6vw, 1.8rem); }
  .btn { min-height: 44px; }
  .form-grid input,
  .form-grid select,
  .form-grid textarea { font-size: 16px; }
}

@media (min-width: 380px) and (max-width: 719px) {
  .drawer-tiles:not(.drawer-tiles-compact) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .drawer-tile-home,
  .drawer-tile-all { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .orb, .hero-float { animation: none; }
  .btn, .product-card, .garden-bed { transition: none; }
  .reveal-ready { opacity: 1; transform: none; }
}

/* Scroll reveal */
.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-in {
  opacity: 1;
  transform: translateY(0);
}
