/* ============================================================
   Wagalong — "Australian coastal boutique"
   palette: cream / sand / eucalyptus green / terracotta / ochre
   type:    Fraunces (display) + Public Sans (body)
   ============================================================ */

:root {
  --cream:  #FBF7F0;
  --sand:   #F3E9DA;
  --sand-2: #EADCC6;
  --ink:    #22301F;
  --ink-60: rgba(34, 48, 31, .62);
  --ink-10: rgba(34, 48, 31, .10);
  --green:  #2E5339;
  --green-d:#223A2B;
  --sage:   #7FA08C;
  --sage-l: #CBDCCF;
  --terra:  #D2694B;
  --terra-d:#B85C3F;
  --ochre:  #E3A857;
  --white:  #FFFFFF;

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Public Sans", "Helvetica Neue", Arial, sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow: 0 24px 48px -28px rgba(34, 48, 31, .38);
  --shadow-sm: 0 10px 24px -16px rgba(34, 48, 31, .30);
  --ease: cubic-bezier(.22, .8, .32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body.lock { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input, select {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--green);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
}
.skip-link:focus { left: 8px; }

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- type helpers ---------- */
h1, h2, h3, .display { font-family: var(--f-display); font-weight: 600; line-height: 1.08; letter-spacing: -.015em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terra-d);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
}

.accent { font-style: italic; font-weight: 500; color: var(--terra); }
.accent-green { font-style: italic; font-weight: 500; color: var(--green); }

.squiggle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 9' preserveAspectRatio='none'%3E%3Cpath d='M2 6 Q 12 2 22 6 T 42 6 T 62 6 T 82 6 T 102 6 T 122 6' fill='none' stroke='%23E3A857' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% .32em;
  padding-bottom: .18em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .01em;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-green { background: var(--green); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-green:hover { background: var(--green-d); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-terra { background: var(--terra); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-terra:hover { background: var(--terra-d); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { border: 2px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-cream { background: var(--cream); color: var(--green-d); }
.btn-cream:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: background .15s;
}
.icon-btn:hover { background: var(--ink-10); }
.icon-btn svg { width: 22px; height: 22px; }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--green-d);
  color: var(--cream);
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  letter-spacing: .02em;
}
.announce strong { color: var(--ochre); font-weight: 700; }

/* ---------- header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 247, 240, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-10);
}

.head-row {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -.01em;
}
.logo-paw { width: 38px; height: 38px; border-radius: 10px; }
.logo em { font-style: normal; font-size: 12px; color: var(--terra); font-family: var(--f-body); font-weight: 700; margin-left: 2px; }

.main-nav {
  display: flex;
  gap: 4px;
  margin-inline: auto;
}
.main-nav a {
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-60);
  transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--ink); background: var(--sand); }
.main-nav a.active { color: var(--green-d); background: var(--sage-l); }

.head-actions { display: flex; align-items: center; gap: 6px; }

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  transition: background .15s, color .15s, transform .15s;
}
.cart-btn:hover { background: var(--green); border-color: var(--green); color: var(--cream); transform: translateY(-1px); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--terra);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid var(--cream);
}

.menu-btn { display: none; }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 24px 18px;
  border-top: 1px solid var(--ink-10);
}
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink-10);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav.open { display: flex; }

/* ---------- hero ---------- */
.hero {
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
  padding: 64px 0 30px;
}
.hero-copy h1 {
  font-size: clamp(42px, 5.6vw, 72px);
  margin: 18px 0 22px;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-60);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-60);
}
.hero-trust .stars { color: var(--ochre); letter-spacing: 2px; }

.hero-art { position: relative; }
.hero-art > svg { width: 100%; height: auto; }

.float-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow);
  animation: bob 5s ease-in-out infinite;
}
.float-pill svg { width: 18px; height: 18px; }
.float-pill .stars { color: var(--ochre); letter-spacing: 1.5px; }
.pill-1 { top: 9%; left: -2%; animation-delay: .6s; }
.pill-2 { bottom: 17%; right: -3%; animation-delay: 1.4s; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* wave divider */
.wave { display: block; width: 100%; height: 54px; margin-top: 26px; }

/* marquee strip */
.strip {
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  padding: 13px 0;
}
.strip-track {
  display: flex;
  gap: 54px;
  width: max-content;
  animation: slide 26s linear infinite;
  font-family: var(--f-display);
  font-size: 17px;
  font-style: italic;
  letter-spacing: .02em;
  white-space: nowrap;
}
.strip-track span { display: inline-flex; align-items: center; gap: 54px; }
.strip-track span::after { content: "🐾"; font-size: 14px; font-style: normal; opacity: .8; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 76px 0; }
.section.tight { padding: 54px 0; }
.section-head { max-width: 620px; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); margin: 12px 0 10px; }
.section-head p { color: var(--ink-60); font-size: 17px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

/* ---------- category tiles ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cat-tile {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-md);
  padding: 20px 16px 17px;
  text-align: center;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s;
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--sage); }
.cat-tile .cat-emoji { font-size: 26px; line-height: 1; margin-bottom: 10px; }
.cat-tile strong { display: block; font-size: 14.5px; letter-spacing: -.01em; }
.cat-tile small { color: var(--ink-60); font-size: 12px; line-height: 1.35; display: block; margin-top: 3px; }

/* ---------- product cards ---------- */
.prod-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aud { font-size: .68em; color: var(--ink-60); font-weight: 600; letter-spacing: .05em; margin-left: 2px; }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.card-media {
  position: relative;
  background: var(--sand);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.card-media svg { width: 100%; height: auto; transition: transform .35s var(--ease); }
.card:hover .card-media svg { transform: scale(1.045) rotate(-.5deg); }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green);
  color: var(--cream);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.badge.terra { background: var(--terra); }
.badge.ochre { background: var(--ochre); color: var(--green-d); }

.quick-add {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(34, 48, 31, .92);
  color: var(--cream);
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), background .15s;
}
.card:hover .quick-add, .quick-add:focus-visible { opacity: 1; transform: translateY(0); }
.quick-add:hover { background: var(--green-d); }

.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.card-rating { font-size: 12.5px; color: var(--ink-60); display: flex; align-items: center; gap: 6px; }
.card-rating .stars { color: var(--ochre); letter-spacing: 1.5px; font-size: 12px; }
.card-name { font-family: var(--f-display); font-size: 18.5px; font-weight: 600; line-height: 1.25; letter-spacing: -.01em; }
.card-blurb { font-size: 13.5px; color: var(--ink-60); line-height: 1.5; flex: 1; }
.card-price { display: flex; align-items: baseline; gap: 9px; margin-top: 5px; }
.price { font-weight: 700; font-size: 17px; }
.was { color: var(--ink-60); text-decoration: line-through; font-size: 13.5px; }
.save { color: var(--terra-d); font-size: 12px; font-weight: 700; background: rgba(210, 105, 75, .12); padding: 2px 8px; border-radius: 999px; }

/* ---------- why us ---------- */
.why-wrap { background: var(--green); color: var(--cream); border-radius: var(--r-lg); padding: 56px 48px; position: relative; overflow: hidden; }
.why-wrap .eyebrow { color: var(--ochre); }
.why-wrap .eyebrow::before { background: var(--ochre); }
.why-wrap h2 { color: var(--cream); font-size: clamp(28px, 3.4vw, 40px); margin: 10px 0 8px; }
.why-wrap .section-sub { color: rgba(251, 247, 240, .75); max-width: 52ch; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 40px; }
.why-card { background: rgba(251, 247, 240, .07); border: 1px solid rgba(251, 247, 240, .16); border-radius: var(--r-md); padding: 24px 22px; }
.why-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--terra);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.why-icon svg { width: 23px; height: 23px; }
.why-card h3 { font-size: 19px; margin-bottom: 7px; color: var(--cream); }
.why-card p { font-size: 14px; color: rgba(251, 247, 240, .78); line-height: 1.55; }

/* ---------- stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat strong { font-family: var(--f-display); font-size: clamp(30px, 3.4vw, 44px); color: var(--green); display: block; line-height: 1.1; }
.stat span { font-size: 13.5px; color: var(--ink-60); font-weight: 600; }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card .stars { color: var(--ochre); letter-spacing: 3px; font-size: 14px; }
.review-card blockquote { font-size: 15px; line-height: 1.65; flex: 1; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage-l);
  color: var(--green-d);
  font-weight: 700;
  font-size: 15px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.review-meta strong { display: block; font-size: 14px; line-height: 1.3; }
.review-meta small { color: var(--ink-60); font-size: 12.5px; }
.verified { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--green); background: var(--sage-l); padding: 3px 9px; border-radius: 999px; white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 760px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 19px 22px;
  font-weight: 700;
  font-size: 15.5px;
  font-family: var(--f-body);
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s var(--ease); color: var(--terra); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; color: var(--ink-60); font-size: 14.5px; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- newsletter ---------- */
.news-band {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
.news-band h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 8px; }
.news-band p { color: var(--ink-60); }
.news-form { display: flex; gap: 10px; }
.news-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--white);
  transition: border-color .15s;
}
.news-form input:focus { outline: none; border-color: var(--green); }
.news-form .btn { padding: 14px 26px; }

/* ---------- footer ---------- */
.site-foot {
  background: var(--green-d);
  color: rgba(251, 247, 240, .82);
  margin-top: 90px;
  padding: 64px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(251, 247, 240, .14);
}
.foot-blurb { font-size: 14px; line-height: 1.65; margin: 18px 0 16px; max-width: 34ch; }
.foot-contact { font-size: 14px; line-height: 1.8; }
.foot-contact a { color: var(--ochre); font-weight: 600; }
.site-foot h4 {
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.foot-col a { display: block; padding: 5px 0; font-size: 14.5px; transition: color .15s; }
.foot-col a:hover { color: var(--ochre); }
.foot-news p { font-size: 14px; margin-bottom: 14px; }
.foot-news form { display: flex; gap: 8px; }
.foot-news input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(251, 247, 240, .3);
  background: rgba(251, 247, 240, .08);
  color: var(--cream);
}
.foot-news input::placeholder { color: rgba(251, 247, 240, .45); }
.foot-news input:focus { outline: none; border-color: var(--ochre); }
.foot-news .btn { padding: 12px 20px; font-size: 14px; }
.news-note { margin-top: 10px; color: var(--ochre) !important; font-weight: 600; }
.foot-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 12.5px;
  color: rgba(251, 247, 240, .55);
}
.pay-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.pay-pills span {
  border: 1px solid rgba(251, 247, 240, .25);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .02em;
}
.pay-pills .afterpay-pill { background: var(--cream); color: var(--green-d); border-color: var(--cream); }

/* ---------- cart drawer ---------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(34, 48, 31, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
  z-index: 120;
}
.drawer-backdrop.show { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: var(--cream);
  z-index: 130;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform .3s var(--ease);
  box-shadow: -20px 0 60px rgba(34, 48, 31, .25);
}
.cart-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 14px;
}
.drawer-head h3 { font-size: 24px; }
.drawer-head span { color: var(--terra); font-style: italic; }

.ship-progress { padding: 0 24px 14px; }
.ship-progress .track { height: 8px; border-radius: 99px; background: var(--sand-2); overflow: hidden; }
.ship-progress .fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--sage), var(--green));
  transition: width .4s var(--ease);
}
.ship-progress p { font-size: 13px; font-weight: 600; color: var(--ink-60); margin-top: 8px; }
.ship-progress p strong { color: var(--green); }

.drawer-items { flex: 1; overflow-y: auto; padding: 6px 24px; }
.drawer-empty { text-align: center; padding: 60px 20px; color: var(--ink-60); }
.drawer-empty .empty-paw { font-size: 44px; margin-bottom: 12px; }
.drawer-empty h4 { font-family: var(--f-display); font-size: 22px; color: var(--ink); margin-bottom: 6px; }
.drawer-empty .btn { margin-top: 20px; }

.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-10);
}
.cart-line:last-child { border-bottom: 0; }
.cart-thumb { background: var(--sand); border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 1 / 1; }
.cart-thumb svg { width: 100%; height: 100%; }
.cart-line-info h5 { font-family: var(--f-display); font-size: 15.5px; line-height: 1.3; font-weight: 600; }
.cart-line-info small { color: var(--ink-60); font-size: 12.5px; }
.line-price { font-weight: 700; font-size: 14.5px; text-align: right; }

.qty-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--ink-10);
  border-radius: 999px;
  background: var(--white);
}
.qty button { width: 28px; height: 28px; font-weight: 700; color: var(--ink-60); }
.qty button:hover { color: var(--ink); }
.qty .q { min-width: 20px; text-align: center; font-weight: 700; font-size: 14px; }
.remove-link { font-size: 12px; color: var(--ink-60); text-decoration: underline; }
.remove-link:hover { color: var(--terra-d); }

.drawer-foot { border-top: 1px solid var(--ink-10); padding: 18px 24px 22px; background: var(--cream); }
.drawer-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.drawer-subtotal strong { font-size: 20px; }
.drawer-subtotal span { font-size: 14px; font-weight: 600; color: var(--ink-60); }
.afterpay-note { font-size: 12.5px; color: var(--ink-60); margin-bottom: 14px; }
.afterpay-note strong { color: var(--green); }
.drawer-foot .btn { margin-bottom: 10px; }
.keep-link { display: block; text-align: center; font-size: 13px; font-weight: 600; color: var(--ink-60); text-decoration: underline; }
.keep-link:hover { color: var(--ink); }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 80px);
  background: var(--green-d);
  color: var(--cream);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  z-index: 150;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- shop page ---------- */
.page-head { padding: 54px 0 8px; }
.page-head h1 { font-size: clamp(36px, 4.6vw, 56px); margin: 14px 0 8px; }
.page-head p { color: var(--ink-60); font-size: 17px; max-width: 56ch; }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0 26px;
}
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-60);
  transition: all .15s;
}
.chip:hover { border-color: var(--sage); color: var(--ink); }
.chip.on { background: var(--green); border-color: var(--green); color: var(--cream); }

.sort-select {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--green); }

.results-note { grid-column: 1 / -1; text-align: center; color: var(--ink-60); padding: 50px 0; }

/* ---------- product page ---------- */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  padding-top: 48px;
  align-items: start;
}
.pdp-media {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.pdp-media svg { width: 100%; height: auto; }

.pdp-info .badge { position: static; display: inline-block; margin-bottom: 14px; }
.pdp-info h1 { font-size: clamp(30px, 3.6vw, 44px); margin: 10px 0 12px; }
.pdp-rating { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-60); margin-bottom: 18px; }
.pdp-rating .stars { color: var(--ochre); letter-spacing: 2px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pdp-price .price { font-family: var(--f-display); font-size: 30px; }
.pdp-price .was { font-size: 17px; }
.pdp-gst { font-size: 12.5px; color: var(--ink-60); margin-bottom: 20px; }
.pdp-blurb { font-size: 17px; color: var(--ink-60); margin-bottom: 22px; }

.opt-label { font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.opt-label span { color: var(--terra-d); }
.size-row, .color-row { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 20px; }
.size-pill {
  min-width: 52px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: all .15s;
}
.size-pill:hover { border-color: var(--sage); }
.size-pill.on { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.color-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  font-weight: 600;
  font-size: 13.5px;
  transition: all .15s;
}
.color-pill.on { background: var(--green); border-color: var(--green); color: var(--cream); }
.size-help { font-size: 13px; color: var(--ink-60); text-decoration: underline; margin: -12px 0 20px; display: inline-block; }
.size-help:hover { color: var(--ink); }

.buy-row { display: flex; gap: 12px; margin: 6px 0 18px; }
.buy-row .qty { height: 54px; padding: 0 6px; }
.buy-row .qty button { width: 38px; height: 100%; font-size: 18px; }
.buy-row .btn { flex: 1; }

.pdp-perks { display: grid; gap: 9px; margin: 22px 0; }
.perk { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--ink-60); }
.perk svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.perk strong { color: var(--ink); }

.pdp-acc { border-top: 1px solid var(--ink-10); margin-top: 8px; }
.pdp-acc details { border-bottom: 1px solid var(--ink-10); }
.pdp-acc summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 2px;
  font-weight: 700;
  cursor: pointer;
}
.pdp-acc summary::-webkit-details-marker { display: none; }
.pdp-acc summary::after { content: "+"; font-size: 20px; color: var(--terra); transition: transform .2s; }
.pdp-acc details[open] summary::after { transform: rotate(45deg); }
.pdp-acc .acc-body { padding: 0 2px 18px; color: var(--ink-60); font-size: 14.5px; line-height: 1.7; }
.pdp-acc ul { padding-left: 20px; }
.pdp-acc li { margin-bottom: 6px; }

/* related */
.related-grid { margin-top: 30px; }

/* ---------- checkout ---------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  padding: 50px 0 10px;
  align-items: start;
}
.co-section { margin-bottom: 34px; }
.co-section h3 {
  font-size: 23px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.field-row.single { grid-template-columns: 1fr; }
.field label { display: block; font-size: 12.5px; font-weight: 700; margin-bottom: 6px; color: var(--ink-60); letter-spacing: .03em; }
.field input, .field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  transition: border-color .15s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--green); }
.field input.invalid { border-color: var(--terra); background: #fdf3ef; }

.ship-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color .15s;
}
.ship-opt:hover { border-color: var(--sage); }
.ship-opt.on { border-color: var(--green); background: #f4f8f3; }
.ship-opt input { accent-color: var(--green); width: 18px; height: 18px; }
.ship-opt .s-name { font-weight: 700; font-size: 14.5px; }
.ship-opt small { display: block; color: var(--ink-60); font-size: 12.5px; }
.ship-opt .s-price { margin-left: auto; font-weight: 700; }
.ship-opt .s-price.free { color: var(--green); }

.pay-opt { border: 1.5px solid var(--ink-10); background: var(--white); border-radius: var(--r-md); overflow: hidden; }
.pay-opt label {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--ink-10);
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
}
.pay-opt label:last-of-type { border-bottom: 0; }
.pay-opt input { accent-color: var(--green); width: 17px; height: 17px; }
.pay-tag { margin-left: auto; font-size: 11px; font-weight: 700; background: var(--sand); padding: 3px 9px; border-radius: 999px; color: var(--ink-60); }
.pay-body { padding: 4px 18px 16px; font-size: 13px; color: var(--ink-60); }
.pay-body .field { margin-bottom: 10px; }
.pay-note { font-size: 12px; color: var(--ink-60); background: var(--sand); border-radius: 10px; padding: 10px 14px; margin-top: 12px; }

.co-summary {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  position: sticky;
  top: 100px;
}
.co-summary h3 { font-size: 21px; margin-bottom: 18px; }
.sum-lines { display: grid; gap: 13px; margin-bottom: 18px; }
.sum-line { display: flex; gap: 12px; align-items: center; }
.sum-thumb { width: 52px; height: 52px; border-radius: 10px; background: var(--sand); overflow: hidden; flex-shrink: 0; }
.sum-thumb svg { width: 100%; height: 100%; }
.sum-line div { flex: 1; font-size: 13.5px; }
.sum-line strong { display: block; font-size: 13.5px; line-height: 1.3; }
.sum-line small { color: var(--ink-60); }
.sum-line .amt { font-weight: 700; font-size: 14px; }

.promo-row { display: flex; gap: 8px; margin-bottom: 18px; }
.promo-row input {
  flex: 1;
  min-width: 0;
  padding: 11px 15px;
  border-radius: 10px;
  border: 1.5px dashed var(--ink-10);
  background: var(--cream);
  font-size: 13.5px;
}
.promo-row input:focus { outline: none; border-color: var(--green); }
.promo-row button { padding: 11px 18px; border-radius: 10px; background: var(--ink); color: var(--cream); font-weight: 700; font-size: 13px; }
.promo-ok { font-size: 12.5px; color: var(--green); font-weight: 700; margin: -10px 0 14px; }
.promo-err { font-size: 12.5px; color: var(--terra-d); font-weight: 700; margin: -10px 0 14px; }

.sum-rows { border-top: 1px solid var(--ink-10); padding-top: 14px; display: grid; gap: 8px; font-size: 14px; }
.sum-rows .row { display: flex; justify-content: space-between; color: var(--ink-60); }
.sum-rows .row strong { color: var(--ink); }
.sum-rows .row.disc { color: var(--green); font-weight: 700; }
.sum-rows .total { border-top: 1px solid var(--ink-10); padding-top: 12px; margin-top: 6px; font-size: 17px; color: var(--ink); }
.sum-rows .total strong { font-family: var(--f-display); font-size: 24px; }
.sum-afterpay { font-size: 12.5px; color: var(--ink-60); text-align: center; margin-top: 10px; }
.sum-afterpay strong { color: var(--green); }

.trust-row { display: flex; justify-content: center; gap: 16px; margin-top: 18px; font-size: 11.5px; color: var(--ink-60); flex-wrap: wrap; }
.trust-row span { display: inline-flex; align-items: center; gap: 5px; }
.trust-row svg { width: 14px; height: 14px; color: var(--green); }

/* ---------- success ---------- */
.success-wrap { max-width: 640px; margin: 0 auto; text-align: center; padding: 70px 0 20px; }
.success-icon {
  width: 84px; height: 84px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--sage-l);
  display: grid; place-items: center;
  animation: pop .5s var(--ease) both;
}
.success-icon svg { width: 40px; height: 40px; color: var(--green); }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-wrap h1 { font-size: clamp(32px, 4.4vw, 48px); margin-bottom: 12px; }
.success-wrap .lede { color: var(--ink-60); font-size: 17px; margin-bottom: 8px; }
.order-ref { display: inline-block; background: var(--white); border: 1.5px dashed var(--sage); border-radius: 12px; padding: 12px 26px; font-weight: 700; font-size: 15px; margin: 20px 0 28px; letter-spacing: .06em; }
.success-next { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: left; margin: 34px 0 38px; }
.s-next { background: var(--white); border: 1px solid var(--ink-10); border-radius: var(--r-md); padding: 18px; font-size: 13px; color: var(--ink-60); }
.s-next strong { display: block; color: var(--ink); font-size: 14px; margin-bottom: 4px; }

/* ---------- FAQ page ---------- */
.page-pad { padding: 30px 0 0; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
  .main-nav { display: none; }
  .menu-btn { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 40px; gap: 26px; }
  .hero-art { max-width: 480px; margin-inline: auto; }
  .pdp { grid-template-columns: 1fr; gap: 30px; }
  .pdp-media { position: static; }
  .checkout-grid { grid-template-columns: 1fr; }
  .co-summary { position: static; order: -1; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .news-band { grid-template-columns: 1fr; padding: 40px 30px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 640px) {
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 13px; }
  .card-body { padding: 13px 13px 16px; }
  .card-name { font-size: 15.5px; }
  .card-blurb { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 54px 0; }
  .why-wrap { padding: 38px 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .review-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-ctas .btn { width: 100%; }
  .buy-row { flex-wrap: wrap; }
  .buy-row .qty { width: 100%; justify-content: space-between; }
  .field-row { grid-template-columns: 1fr; }
  .success-next { grid-template-columns: 1fr; }
  .announce { font-size: 11.5px; }
  .float-pill { padding: 8px 14px; font-size: 12.5px; }
  .news-form { flex-direction: column; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
