/* ============================================================
   Bundled — storefront styles
   Real brand kit: ITC Souvenir (headings) + Averta (body),
   official colors from Logo/Bundled Colour Codes.txt.
   Single warm/light theme to match the brand identity.
   ============================================================ */

/* ---------- Brand fonts (self-hosted, no CDN) ---------- */
@font-face {
  font-family: "Souvenir";
  src: url("../fonts/souvenir-medium.woff2") format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Souvenir";
  src: url("../fonts/souvenir-light.woff2") format("woff2");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Averta";
  src: url("../fonts/averta-regular.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Official brand palette */
  --yellow:      #F2AC57;
  --yellow-light:#F9D6AB;
  --yellow-ink:  #DE9233;
  --teal:        #1B5359;
  --teal-soft:   #2F6B71;
  --green:       #68A689;
  --green-deep:  #4F8C70;
  --pink:        #F27979;
  --pink-deep:   #E85E5E;
  --sale:        #D6453F;

  /* Neutrals (biased warm/teal, chosen not defaulted) */
  --cream:      #FBF6EE;
  --cream-deep: #F3EAD9;
  --ink:        #263230;
  --ink-soft:   #6C736F;
  --line:       #E9DFCE;
  --white:      #FFFFFF;

  --shadow-sm: 0 1px 2px rgba(27,83,89,.06), 0 2px 10px rgba(27,83,89,.06);
  --shadow-md: 0 8px 28px rgba(27,83,89,.12);
  --radius:    18px;
  --radius-sm: 11px;

  --font-display: "Souvenir", Georgia, "Times New Roman", serif;
  --font-body: "Averta", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--teal); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--teal);
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 10px 40px;
  letter-spacing: .01em;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 82px;
}
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 46px; width: auto; }

/* Desktop nav with dropdowns */
.nav ul { list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-top {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; font-size: 15.5px; font-weight: 500; color: var(--ink);
  border-radius: 999px; transition: background .15s, color .15s;
}
.nav-top-btn { background: none; border: 0; cursor: default; font: 500 15.5px/1.6 var(--font-body); margin: 0; padding: 10px 14px; }
.nav-top .caret { width: 11px; height: 11px; transition: transform .15s; }
.nav-item:hover .nav-top, .nav-top.active { color: var(--teal); }
.nav-item:hover .nav-top { background: var(--cream-deep); }
.nav-item:hover .caret { transform: rotate(180deg); }
.nav-top.active { position: relative; }
.nav-top.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--yellow); border-radius: 2px;
}
/* Mega menu panel (centered under its trigger) */
.mega {
  position: absolute; top: 100%; left: 50%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 26px 30px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s; z-index: 50;
}
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-inner { display: flex; gap: 46px; }
.mega-col { display: flex; flex-direction: column; gap: 3px; min-width: 148px; }
.mega-col-title {
  font-family: var(--font-display); font-size: 16px; color: var(--teal); font-weight: 700;
  margin-bottom: 10px; padding-bottom: 7px; border-bottom: 2px solid var(--yellow-light);
}
a.mega-col-title { transition: color .12s; }
a.mega-col-title:hover { color: var(--yellow-ink); }
.mega-col a { font-size: 14px; color: var(--ink-soft); padding: 5px 0; transition: color .12s, padding-left .12s; }
.mega-col a:hover { color: var(--teal); padding-left: 4px; }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-link, .cart-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; background: none; border: 0; cursor: pointer;
  color: var(--ink); font-family: var(--font-body); font-weight: 500;
  padding: 9px 11px; border-radius: 999px; transition: background .15s;
}
.icon-link:hover, .cart-btn:hover { background: var(--cream-deep); }
.icon-link .lbl, .cart-btn .lbl { display: none; }
.cart-btn .count {
  min-width: 21px; height: 21px; padding: 0 6px; border-radius: 999px;
  background: var(--yellow); color: #fff; font-size: 12.5px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
@media (min-width: 980px) {
  .account .lbl, .cart-btn .lbl { display: inline; }
}

/* Hamburger (mobile only) */
.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--teal); border-radius: 2px; transition: transform .2s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { display: none; background: #fff; border-bottom: 1px solid var(--line); max-height: 82vh; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu nav { padding: 8px 24px 24px; }
.m-block { padding: 14px 0; border-bottom: 1px solid var(--line); }
.m-block:last-child { border-bottom: 0; }
.m-block-head a, .m-block-head span { font-family: var(--font-display); font-size: 19px; color: var(--teal); display: inline-block; margin-bottom: 4px; }
.m-sub { padding: 4px 0 4px 4px; }
.m-sub-title { font-size: 12px; color: var(--green-deep); text-transform: uppercase; letter-spacing: .1em; margin: 8px 0 2px; }
.m-sub a { display: block; padding: 6px 0; font-size: 15px; color: var(--ink-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-image: linear-gradient(90deg, rgba(27,83,89,.28), rgba(27,83,89,0) 60%), url("../img/hero-summer.jpg");
  background-size: cover;
  background-position: center 32%;
  border-bottom: 6px solid var(--green);
}
.hero .wrap { padding: 70px 24px; display: flex; }
.hero-panel {
  background: rgba(27,83,89,.86);
  color: #fff;
  padding: 40px 40px 44px;
  border-radius: var(--radius);
  max-width: 520px;
  box-shadow: var(--shadow-md);
}
.hero-panel h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  margin: 0 0 16px;
  text-wrap: balance;
}
.hero-panel p {
  font-size: clamp(16px, 2vw, 19px);
  margin: 0 0 28px;
  color: rgba(255,255,255,.94);
  max-width: 40ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 13px 28px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .12s ease, background .15s, box-shadow .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--yellow); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--yellow-ink); }
.btn-white { background: #fff; color: var(--teal); }
.btn-white:hover { background: var(--cream); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------- Sections ---------- */
.section { padding: 66px 0; }
.section-head { text-align: center; margin-bottom: 38px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em; font-size: 12.5px;
  font-weight: 700; color: var(--green-deep); margin: 0 0 10px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin: 0; text-wrap: balance; }
.section-head p { color: var(--ink-soft); max-width: 54ch; margin: 12px auto 0; }

/* ---------- Content pages ---------- */
/* Page margins match the header/footer wrap (same --maxw + 24px padding). */
.page-hero { background: var(--cream-deep); border-bottom: 1px solid var(--line); }
.page-hero .wrap { padding: 50px 24px 44px; text-align: center; }
.page-hero .eyebrow { margin-bottom: 8px; }
.page-hero h1 { font-size: clamp(30px, 5vw, 46px); margin: 0; text-wrap: balance; }
.page-hero p { color: var(--ink-soft); max-width: 52ch; margin: 12px auto 0; }

/* Split page hero: text left, image right */
.page-hero-split { background: var(--cream-deep); border-bottom: 1px solid var(--line); }
.page-hero-split .wrap {
  padding: 44px 24px; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 44px; align-items: center;
}
.page-hero-split .eyebrow { margin-bottom: 10px; }
.page-hero-split h1 { font-size: clamp(32px, 5vw, 50px); margin: 0 0 14px; text-wrap: balance; }
.page-hero-split p { color: var(--ink-soft); font-size: 17px; margin: 0; max-width: 48ch; }
.page-hero-split .ph-img img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}

.page-body { max-width: var(--maxw); margin: 0 auto; padding: 52px 24px 64px; }
.page-body h2 { font-size: clamp(24px, 3vw, 30px); margin: 1.8em 0 .6em; }
.page-body h2:first-child { margin-top: 0; }
.page-body h3 { font-size: 19px; margin: 1.4em 0 .4em; }
.page-body p, .page-body li { color: var(--ink-soft); font-size: 16px; }
.page-body ul { padding-left: 20px; }
.page-body li { margin: 6px 0; }
.page-body a { color: var(--teal); text-decoration: underline; }
.page-body a.btn { text-decoration: none; }
.prose { max-width: 72ch; }

/* Two-column text + image rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; margin: 40px 0; }
.split-img img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.split-text h2 { margin-top: 0; }
.split.flip .split-img { order: 2; }

/* Value / info cards */
.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 36px 0; }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
}
.value-card .vc-ic {
  width: 52px; height: 52px; border-radius: 50%; background: var(--yellow-light);
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 14px;
}
.value-card h3 { margin: 0 0 8px; font-size: 20px; }
.value-card p { margin: 0; font-size: 14.5px; }

/* CTA band inside pages */
.cta-band {
  background: var(--teal); border-radius: var(--radius); color: #fff;
  padding: 40px 36px; margin: 48px 0 0; text-align: center;
}
.cta-band h2 { color: #fff; margin: 0 0 8px; font-size: clamp(24px, 3vw, 32px); }
.cta-band p { color: rgba(255,255,255,.9); margin: 0 auto 20px; max-width: 50ch; }

/* FAQ accordions, two-column grid */
.faq-section { margin-bottom: 44px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: start; }
.faq-grid details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-grid summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 14px; padding: 16px 18px; font-weight: 600; font-size: 15.5px; color: var(--ink);
  transition: background .12s;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: ""; flex: none; width: 10px; height: 10px;
  border-right: 2px solid var(--yellow-ink); border-bottom: 2px solid var(--yellow-ink);
  transform: rotate(45deg); transition: transform .18s; margin-top: -4px;
}
.faq-grid details[open] summary { background: var(--cream-deep); }
.faq-grid details[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq-grid details > p { padding: 14px 18px 18px; margin: 0; font-size: 14.5px; }

.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item h3 { font-size: 18px; margin: 0 0 6px; color: var(--ink); }

/* Photo hero: text on cream (left half), photo fills the right 50% so the
   image actually shows. A narrow gradient feathers the seam. */
.page-hero-photo {
  position: relative; border-bottom: 1px solid var(--line);
  min-height: 420px; display: flex; align-items: center; overflow: hidden;
  background: var(--cream-deep);
}
.page-hero-photo .ph-bg { position: absolute; top: 0; right: 0; bottom: 0; width: 60%; }
.page-hero-photo .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
/* Gradient spans 40% to 75% of the header width for a soft, gradual blend */
.page-hero-photo .ph-grad {
  position: absolute; top: 0; bottom: 0; left: 40%; width: 35%;
  background: linear-gradient(90deg, var(--cream-deep) 0%, rgba(243,234,217,0) 100%);
}
.page-hero-photo .wrap { position: relative; width: 100%; padding: 70px 24px; }
.page-hero-photo.short { min-height: 300px; }
.page-hero-photo.short .wrap { padding: 48px 24px; }
.page-hero-photo h1 { font-size: clamp(32px, 5vw, 50px); margin: 0 0 12px; text-wrap: balance; max-width: 14ch; }

/* Sub-header under every H1: styled as its own element, not body text */
.subhead {
  font-family: var(--font-display); font-weight: 300; font-style: normal;
  font-size: clamp(18px, 2.2vw, 22px); line-height: 1.45;
  color: var(--teal-soft); max-width: 44ch; margin: 0;
}
.page-hero .subhead { margin: 12px auto 0; }

/* Portrait image variant (never crop faces) */
.split-img.portrait img { aspect-ratio: 3 / 4; object-position: center top; }

/* Value card kicker (two-part headings): tight to its heading, heading enlarged */
.vc-kicker {
  text-transform: uppercase; letter-spacing: .14em; font-size: 11.5px;
  font-weight: 700; color: var(--green-deep); margin: 0 0 2px;
}
.page-body .value-card h3, .value-card h3 { margin: 2px 0 10px; font-size: 23px; }

/* Fine print block (discrete, bottom of page) */
.fine-print {
  border-top: 1px solid var(--line); margin-top: 46px; padding-top: 18px;
  max-width: 620px;
}
.fine-print h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-soft); margin: 0 0 8px;
}
.fine-print ul { padding-left: 16px; margin: 0; }
.fine-print li { font-size: 12.5px; color: var(--ink-soft); margin: 3px 0; }

/* Lead panel: anchored intro statement */
.lead-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); max-width: 820px; margin: 0 auto 46px;
  padding: 40px 44px; text-align: center; position: relative;
}
.lead-panel .lp-ic {
  width: 54px; height: 54px; border-radius: 50%; background: var(--yellow-light);
  display: flex; align-items: center; justify-content: center; font-size: 25px;
  margin: -67px auto 16px; border: 4px solid var(--cream);
}
.lead-panel p { font-family: var(--font-display); font-weight: 300; font-size: clamp(19px, 2.4vw, 24px); line-height: 1.5; color: var(--teal); margin: 0; }
.lead-panel p strong { font-weight: 700; }

/* Contact details with icons */
.cd-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.cd-ic {
  flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--yellow-light);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.cd-item p { margin: 2px 0 0; }

/* Feature panel (tinted spotlight section) */
.feature-panel {
  background: var(--cream-deep); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 44px; margin: 44px 0;
}
.feature-panel .split { margin: 0; }
.why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-list .wl-ic {
  flex: none; width: 44px; height: 44px; border-radius: 50%; background: #fff;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.why-list h4 { margin: 0 0 3px; font-size: 17px; }
.why-list p { margin: 0; font-size: 14.5px; }
.giftcard-art { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.giftcard-art img { width: 100%; border-radius: var(--radius-sm); }

/* Embedded form modal (Google Form popup) */
.form-modal-overlay {
  position: fixed; inset: 0; background: rgba(38,50,48,.55);
  display: none; align-items: center; justify-content: center; z-index: 95; padding: 20px;
}
.form-modal-overlay.open { display: flex; }
.form-modal {
  background: #fff; border-radius: var(--radius); width: min(720px, 96vw); height: min(84vh, 900px);
  display: flex; flex-direction: column; overflow: hidden; box-shadow: var(--shadow-md);
}
.form-modal header { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.form-modal header h3 { margin: 0; font-size: 19px; }
.form-modal header .close { background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--ink-soft); line-height: 1; }
.form-modal iframe { flex: 1; border: 0; width: 100%; }

@media (max-width: 860px) {
  .page-hero-split .wrap { grid-template-columns: 1fr; gap: 26px; padding: 36px 24px; }
  .page-hero-photo { min-height: 360px; }
  .page-hero-photo .ph-bg { width: 100%; }
  .page-hero-photo .ph-grad {
    left: 0; width: 100%;
    background: linear-gradient(90deg, var(--cream-deep) 0%, rgba(243,234,217,.92) 55%, rgba(243,234,217,.65) 100%);
  }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .split.flip .split-img { order: 0; }
  .value-cards { grid-template-columns: 1fr !important; }
  .faq-grid { grid-template-columns: 1fr; }
  .feature-panel { padding: 26px 20px; }
  .lead-panel { padding: 32px 24px; }
}
.placeholder-note {
  background: var(--yellow-light); color: var(--teal); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 13.5px; margin-top: 24px;
}
.page-body h3 { font-size: 19px; margin: 1.4em 0 .4em; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; margin: 8px 0 8px; align-items: start; }
.contact-details h3 { margin-top: 0; }
.contact-details p { margin: 0 0 16px; font-size: 15px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--teal); }
.contact-form input, .contact-form textarea, .contact-form select {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
}
.contact-form .cf-hidden { display: none; }
/* Post-submit confirmation: hidden until the form is submitted */
.cf-note { display: none; font-size: 13.5px; font-weight: 600; color: var(--green-deep); margin: 2px 0 0; }
.cf-note.visible { display: block; }
.contact-form textarea { resize: vertical; }
.contact-form .btn { align-self: flex-start; }

/* Reward cards */
.reward-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 8px 0; }
.reward-card { background: var(--cream-deep); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; text-align: center; }
.reward-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; border-radius: var(--radius-sm); margin-bottom: 14px; }
.reward-card .reward-amt { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--sage-deep); margin-bottom: 6px; }
.reward-card h4 { font-size: 17px; margin: 0 0 6px; }
.reward-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* Size tables */
.table-wrap { overflow-x: auto; margin: 8px 0 4px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.size-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.size-table th, .size-table td { padding: 12px 16px; text-align: left; white-space: nowrap; }
.size-table thead th { background: var(--teal); color: #fff; font-family: var(--font-body); font-weight: 600; letter-spacing: .02em; }
.size-table tbody tr:nth-child(even) { background: var(--cream-deep); }
.size-table tbody td { border-top: 1px solid var(--line); font-variant-numeric: tabular-nums; }

/* Search */
.search-box { max-width: 560px; margin: 0 auto 14px; }
.search-box input {
  width: 100%; padding: 15px 20px; border-radius: 999px; border: 1px solid var(--line);
  font-family: var(--font-body); font-size: 16px; background: #fff; color: var(--ink);
}
.search-status { text-align: center; color: var(--ink-soft); font-size: 14px; margin: 0 0 28px; }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .reward-cards { grid-template-columns: 1fr; }
}

/* ---------- Product grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(244px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .thumb {
  aspect-ratio: 4 / 5;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.95);
}
.card .thumb .thumb-label {
  font-family: var(--font-display); font-size: 21px; text-align: center; color: #fff;
  padding: 16px; text-shadow: 0 2px 12px rgba(38,50,48,.35); text-wrap: balance;
}
.card .thumb .bow-lg { position: absolute; top: 12px; left: 12px; width: 30px; height: 30px; opacity: .95; }
/* Real product photography: full flat-lay always visible, never cropped */
.card .thumb.has-photo { border-bottom: 1px solid var(--line); }
.card .thumb .thumb-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 10px;
}

/* Bundle tier badge (Standard / Premium / Bargain) */
.tier-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; color: #fff; box-shadow: var(--shadow-sm); z-index: 1;
}
/* Evenly toned so no tier visually dominates, but each is distinct.
   Unknown/new tiers (e.g. Mini) fall back to the base badge tone below
   until they get their own colour. */
.tier-badge { background: #8A8371; }
.tier-standard { background: #47857F; }
.tier-premium { background: #A76A72; }
.tier-bargain { background: #6C736F; }
.tier-mini { background: #C98A4B; }
.badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.96); color: var(--teal);
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.card .body { padding: 16px 17px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card .meta { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }
.card h3 { font-size: 21px; margin: 2px 0 4px; }
/* Price is pinned to the bottom, so price and button line up across every card
   no matter how long the title is. */
.card .price { display: flex; align-items: baseline; gap: 8px; font-variant-numeric: tabular-nums; margin-top: auto; padding-top: 10px; }
.card .price .now { font-size: 18px; font-weight: 700; color: var(--ink); }
.card .price.on-sale .now { color: var(--sale); }
.card .price .was { font-size: 14px; color: var(--ink-soft); text-decoration: line-through; }
.sale-flag {
  display: inline-block; background: var(--sale); color: #fff;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 8px; border-radius: 999px; line-height: 1.4; white-space: nowrap;
}
.card .price .sale-flag { margin-left: auto; }
.pdp-price .sale-flag { font-size: 11.5px; padding: 4px 10px; }
.card .actions { margin-top: 12px; }

.pill-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot-girl { background: var(--pink); }
.dot-boy { background: var(--teal); }
.dot-neutral { background: var(--yellow); }

/* ---------- Shop toolbar (filters + sort) ---------- */
/* Sticky: parks just below the sticky site header as the page scrolls. */
.shop-toolbar {
  position: sticky; top: 81px; z-index: 30; background: var(--cream);
  display: flex; align-items: center; justify-content: space-between; gap: 16px 20px; flex-wrap: wrap;
  padding: 16px 0; margin-bottom: 24px; border-bottom: 1px solid var(--line);
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600; cursor: pointer;
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); transition: background .15s, color .15s, border-color .15s;
}
.chip:hover { border-color: var(--sage); }
.chip.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.shop-controls { display: flex; gap: 14px; flex-wrap: wrap; }
.select-wrap { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }
.select-wrap select {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 500; color: var(--ink);
  text-transform: none; letter-spacing: 0;
  padding: 9px 34px 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff;
  cursor: pointer; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%231B5359' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.shop-count { color: var(--ink-soft); font-size: 14px; margin: 0 0 20px; }
.shop-empty { grid-column: 1 / -1; text-align: center; padding: 50px 20px; }
.shop-empty p { color: var(--ink-soft); margin: 0 0 18px; }

/* Off-season browse page: filter sidebar + category tabs */
.browse-layout { display: grid; grid-template-columns: 232px 1fr; gap: 34px; align-items: start; }
.browse-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 24px; }
.fs-group { display: flex; flex-direction: column; gap: 12px; }
.fs-title {
  font-family: var(--font-display); font-size: 15px; color: var(--teal); font-weight: 700;
  margin: 0; padding-bottom: 8px; border-bottom: 2px solid var(--yellow-light);
}
.browse-sidebar .filter-chips { gap: 8px; }
.select-wrap.block { display: flex; }
.select-wrap.block select { width: 100%; }
.cat-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.cat-tab {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600; cursor: pointer;
  padding: 9px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); transition: background .15s, color .15s, border-color .15s;
}
.cat-tab:hover { border-color: var(--green); }
.cat-tab.active { background: var(--green); color: #fff; border-color: var(--green); }
.browse-main .grid { grid-column: auto; }
.addons-shop { margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--line); }

/* Homepage featured carousel: arrows page through up to 15 bundles */
.carousel-wrap { position: relative; }
.grid.carousel {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  gap: 24px; padding-bottom: 6px; scrollbar-width: none;
}
.grid.carousel::-webkit-scrollbar { display: none; }
.grid.carousel .card { flex: 0 0 calc(25% - 18px); min-width: 240px; scroll-snap-align: start; }
.car-btn {
  position: absolute; top: 40%; z-index: 5; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,.96); color: var(--teal);
  font-size: 26px; line-height: 1; cursor: pointer; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; padding-bottom: 4px;
}
.car-btn:hover { background: var(--cream-deep); }
.car-btn.prev { left: -14px; }
.car-btn.next { right: -14px; }
@media (max-width: 760px) {
  .grid.carousel .card { flex-basis: 78%; }
  .car-btn.prev { left: 4px; } .car-btn.next { right: 4px; }
}

@media (max-width: 860px) {
  .browse-layout { grid-template-columns: 1fr; gap: 24px; }
  .browse-sidebar {
    position: static; flex-direction: row; flex-wrap: wrap; gap: 18px 26px;
    padding-bottom: 20px; border-bottom: 1px solid var(--line);
  }
}

/* ---------- Product detail page ---------- */
.crumb { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 24px; }
.crumb a { color: var(--ink-soft); }
.crumb a:hover { color: var(--teal); }
.crumb span { color: var(--ink); }
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.pdp-media { position: sticky; top: 96px; }
.pdp-tile {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.pdp-tile .bow-lg { position: absolute; top: 18px; left: 18px; width: 34px; height: 34px; opacity: .95; }
.pdp-tile-label { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 36px); color: #fff; text-align: center; padding: 20px; text-shadow: 0 2px 14px rgba(38,50,48,.35); text-wrap: balance; }
.pdp-tile.has-photo { border: 1px solid var(--line); overflow: hidden; }
.pdp-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 16px; cursor: zoom-in; }

/* click-to-zoom lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(38,50,48,.85);
  display: flex; align-items: center; justify-content: center; padding: 28px; cursor: zoom-out;
}
.lightbox img { max-width: 96%; max-height: 96%; object-fit: contain; background: #fff; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 16px; right: 18px; width: 40px; height: 40px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--ink); font-size: 24px; cursor: pointer; box-shadow: var(--shadow-md);
}
.pdp-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.pdp-thumb {
  width: 68px; height: 68px; padding: 4px; cursor: pointer;
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pdp-thumb:hover { border-color: var(--yellow); }
.pdp-thumb.active { border-color: var(--yellow-ink); }
.pdp-info { padding-top: 4px; }
.pdp-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.pdp-pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600;
  color: var(--teal); background: var(--cream-deep); border: 1px solid var(--line);
  padding: 6px 13px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em;
}
.pdp-info h1 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 14px; }
.pdp-condition {
  background: var(--cream-deep); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 14px; color: var(--ink); margin: 0 0 18px;
}
.pdp-condition strong { color: var(--teal); }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; font-variant-numeric: tabular-nums; }
.pdp-now { font-size: 28px; font-weight: 700; }
.pdp-was { font-size: 18px; color: var(--ink-soft); text-decoration: line-through; }
.pdp-save { font-size: 12.5px; font-weight: 700; color: #fff; background: var(--sale); padding: 4px 10px; border-radius: 999px; letter-spacing: .02em; }
.pdp-desc { color: var(--ink-soft); font-size: 16px; margin: 0 0 22px; }
.pdp-inside { background: var(--cream-deep); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 24px; }
.pdp-inside h2 { font-size: 18px; margin: 0 0 12px; }
.pdp-inside ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.pdp-inside li { display: flex; gap: 10px; font-size: 15px; color: var(--ink); }
.pdp-inside li::before { content: "✓"; color: var(--green-deep); font-weight: 700; flex: none; }
.pdp-add { font-size: 16px; padding: 15px 28px; }
.pdp-oneofakind { text-align: center; font-size: 13.5px; color: var(--sage-deep); font-weight: 600; margin: 12px 0 22px; }
.pdp-trust { display: flex; justify-content: space-between; gap: 12px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pt-item { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--ink); text-align: center; flex: 1; }
.pt-ic { font-size: 22px; }
/* PDP accordions (measurements, tier standards, shipping) */
.pdp-accordions { margin-top: 24px; border-top: 1px solid var(--line); }
.pdp-accordion, .pdp-accordions details { border-bottom: 1px solid var(--line); }
.pdp-accordions summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 14px; padding: 16px 2px; font-weight: 600; font-size: 15.5px; color: var(--ink);
}
.pdp-accordions summary::-webkit-details-marker { display: none; }
.pdp-accordions summary::after {
  content: ""; flex: none; width: 9px; height: 9px;
  border-right: 2px solid var(--yellow-ink); border-bottom: 2px solid var(--yellow-ink);
  transform: rotate(45deg); transition: transform .18s; margin-top: -4px;
}
.pdp-accordions details[open] summary::after { transform: rotate(225deg); margin-top: 3px; }
.acc-body { padding: 0 2px 18px; }
.acc-body p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 10px; }
.acc-body p:last-child { margin-bottom: 0; }
.acc-lead { font-weight: 500; color: var(--ink); }
.acc-note { font-style: italic; margin-top: 10px; }
.piece-list { margin: 6px 0 0; padding-left: 18px; }
.piece-list li { font-size: 14px; color: var(--ink-soft); margin-bottom: 7px; line-height: 1.5; }
/* Measurements chart: garment per row, dimensions in columns */
.measure-scroll { overflow-x: auto; }
.measure-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 6px; }
.measure-table th, .measure-table td { padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.measure-table thead th {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-soft); border-bottom: 2px solid var(--yellow-light);
}
.measure-table tbody th { font-weight: 600; color: var(--ink); }
.measure-table td { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.measure-table tbody tr:last-child th, .measure-table tbody tr:last-child td { border-bottom: none; }

.measure-list { display: grid; grid-template-columns: 1fr auto; gap: 9px 20px; margin: 6px 0 0; }
.measure-list dt { font-size: 14.5px; color: var(--ink); }
.measure-list dd { margin: 0; font-size: 14.5px; font-weight: 700; color: var(--teal); text-align: right; font-variant-numeric: tabular-nums; }
.related { margin-top: 72px; padding-top: 44px; border-top: 1px solid var(--line); }
.related h2 { text-align: center; font-size: clamp(24px, 3vw, 32px); margin: 0 0 34px; }

@media (max-width: 940px) {
  .shop-toolbar { top: 69px; }
}
@media (max-width: 820px) {
  .pdp { grid-template-columns: 1fr; gap: 30px; }
  .pdp-media { position: static; } .pdp-tile { max-width: 460px; }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
}

/* ---------- Collection & elevate tiles ---------- */
.section-tint { background: var(--cream-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tile-grid { display: grid; gap: 26px; }
.tile-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.tile-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.tile {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 2;
}
.tile.tile-sm { aspect-ratio: 4 / 5; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
/* People photos anchor to the top so faces are never cropped out */
.tile img[src*="collection-"] { object-position: center 12%; }
.tile:hover img { transform: scale(1.05); }
.tile-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; color: #fff;
  background: linear-gradient(to top, rgba(27,83,89,.78), rgba(27,83,89,.12) 55%, rgba(27,83,89,0) 80%);
}
.tile-title { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.1; }
.tile-sm .tile-title { font-size: 22px; }
.tile-sub { font-size: 14px; opacity: .95; margin-top: 3px; }
.tile-cta {
  align-self: flex-start; margin-top: 14px; background: var(--yellow); color: #fff;
  font-size: 14px; font-weight: 600; padding: 9px 20px; border-radius: 999px;
  transition: background .15s;
}
.tile:hover .tile-cta { background: var(--yellow-ink); }

/* ---------- Sustainable band ---------- */
.sustain { background: var(--cream); }
.sustain-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 66px 24px; }
.sustain-text h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 14px; text-wrap: balance; }
.sustain-text p { color: var(--ink-soft); margin: 0 0 24px; max-width: 46ch; }
.sustain-img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

@media (max-width: 820px) {
  .tile-grid.cols-2, .tile-grid.cols-3 { grid-template-columns: 1fr; }
  .sustain-inner { grid-template-columns: 1fr; gap: 30px; padding: 48px 24px; }
  .sustain-img { order: -1; }
}

/* ---------- Unique like your little: process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin: 8px 0 36px; }
.process-step { text-align: center; }
.process-step .p-ic {
  width: 58px; height: 58px; margin: 0 auto 12px; border-radius: 50%;
  background: var(--yellow-light); display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.process-step h4 { font-size: 18px; margin: 0 0 4px; }
.process-step p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }
.care-callout {
  background: var(--cream-deep); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 30px; max-width: 760px; margin: 0 auto; text-align: center;
}
.care-callout p { margin: 0; font-size: 16px; color: var(--ink); }

/* ---------- How it works: steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.step { text-align: center; }
.step-num {
  width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 50%;
  background: var(--teal); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { font-size: 20px; margin: 0 0 6px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0 auto; max-width: 30ch; }

/* ---------- Cuddles callout ---------- */
.cuddles { background: var(--green); }
.cuddles .wrap { padding: 60px 24px; text-align: center; }
.cuddles p {
  font-family: var(--font-display); font-weight: 700; color: #fff;
  font-size: clamp(26px, 4vw, 40px); line-height: 1.15; margin: 0 auto; max-width: 20ch; text-wrap: balance;
}

@media (max-width: 820px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Feature strip ---------- */
.features { background: var(--cream-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 48px 24px; }
.feature { text-align: center; }
.feature h4 { font-size: 21px; margin: 10px 0 6px; }
.feature p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.feature .ic { font-size: 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal); color: #fff; margin-top: 20px; }

/* Newsletter band (section 1) - discount led */
.footer-news { background: var(--green-deep); }
.footer-news-inner { padding: 46px 24px; text-align: center; max-width: 620px; margin: 0 auto; }
.news-eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.8); margin: 0 0 12px;
}
.news-headline { color: #fff; font-size: clamp(30px, 5vw, 44px); margin: 0 0 10px; line-height: 1.03; }
.news-headline span { color: #fff; }
.news-sub { color: rgba(255,255,255,.9); font-size: 14.5px; margin: 0 auto 24px; max-width: 42ch; }
.news-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.news-form input {
  flex: 1; min-width: 240px; max-width: 320px; padding: 13px 18px; border-radius: 999px; border: 0;
  font-family: var(--font-body); font-size: 15px; background: #fff; color: var(--ink);
}
.news-form .btn { white-space: nowrap; }

/* Main columns (section 2) */
.footer-main {
  padding: 52px 24px 40px;
  display: grid; grid-template-columns: 1.5fr 3fr; gap: 48px;
}
.f-brand .f-logo { height: 42px; width: auto; margin-bottom: 16px; }
.f-brand .note { font-size: 14px; opacity: .9; margin: 0 0 12px; max-width: 36ch; }
.f-brand small { opacity: .75; }
.f-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.f-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 14px; opacity: .95; }
.f-col a { display: block; font-size: 14px; padding: 6px 0; color: rgba(255,255,255,.82); transition: color .12s; }
.f-col a:hover { color: var(--yellow-light); }

/* Bottom bar (section 3) */
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 18px 24px; border-top: 1px solid rgba(255,255,255,.16);
  font-size: 13px; opacity: .82;
}
.footer-bottom a { color: rgba(255,255,255,.86); }
.footer-bottom a:hover { color: var(--yellow-light); }

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .f-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-news-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Cart drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(38,50,48,.45);
  opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 60;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw);
  background: var(--cream); z-index: 70; transform: translateX(100%);
  transition: transform .25s ease; display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(27,83,89,.22);
}
.drawer.open { transform: translateX(0); }
.drawer header { padding: 20px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.drawer header h3 { font-size: 22px; margin: 0; }
.drawer .close { background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--ink-soft); line-height: 1; }
.drawer .items { flex: 1; overflow-y: auto; padding: 12px 22px; }
.drawer-empty { text-align: center; color: var(--ink-soft); padding: 60px 20px; }
.line-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
/* "We noticed you like..." suggestions: its own panel docked LEFT of the
   cart drawer on desktop; on small screens a compact strip along the bottom
   so it never covers the shopper's cart. */
.suggest-panel {
  position: fixed; top: 25vh; right: min(420px, 92vw); height: 50vh;
  width: 300px; max-width: calc(100vw - min(420px, 92vw));
  background: #fff; z-index: 69; padding: 16px 4px 12px 0;
  border-radius: 18px 0 0 18px;
  transform: translateX(120%); transition: transform .6s ease;
  box-shadow: -10px 0 30px rgba(27,83,89,.14);
  overflow-y: auto; display: flex; flex-direction: column;
}
.suggest-panel.open { transform: translateX(0); }
.suggest-panel:empty { display: none; }
.sg-never {
  margin: auto 20px 8px; border: none; background: none; cursor: pointer;
  font: inherit; font-size: 12.5px; color: var(--ink-soft); text-decoration: underline; padding: 6px 0;
}
.sg-never:hover { color: var(--sale); }
@media (max-width: 860px) {
  .suggest-panel {
    top: auto; right: 0; left: 0; bottom: 0; height: auto; width: 100%; max-width: none;
    transform: translateY(120%); border-right: none; border-top: 2px solid var(--yellow-light);
    padding: 6px 4px 10px 0; max-height: 42vh; border-radius: 16px 16px 0 0; z-index: 71;
  }
  .suggest-panel.open { transform: translateY(0); }
  .suggest-panel .sg-items { flex-direction: row; overflow-x: auto; padding: 0 14px 6px; }
  .suggest-panel .sg-item { flex: 0 0 210px; }
}
.sg-head { display: flex; align-items: flex-start; gap: 8px; padding: 4px 14px 8px 20px; }
.sg-head p { margin: 0; font-size: 13.5px; color: var(--ink); flex: 1; }
.sg-head strong { color: var(--green-deep); text-transform: capitalize; }
.sg-close { border: none; background: var(--cream-deep); width: 24px; height: 24px; border-radius: 50%; cursor: pointer; color: var(--ink-soft); font-size: 15px; line-height: 1; flex: none; }
.sg-items { display: flex; flex-direction: column; gap: 8px; padding: 0 14px 12px 20px; }
.li-link { color: var(--ink); text-decoration: none; }
.li-link:hover { color: var(--teal); text-decoration: underline; }
.line-item .li-thumb { display: block; }
.sg-item { display: flex; align-items: center; gap: 10px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 8px 10px; text-decoration: none; }
.sg-thumb { width: 42px; height: 52px; border-radius: 7px; background: #fff; border: 1px solid var(--line); overflow: hidden; flex: none; }
.sg-thumb img { width: 100%; height: 100%; object-fit: contain; }
.sg-info { flex: 1; min-width: 0; }
.sg-name { display: block; font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sg-meta { display: block; font-size: 12px; color: var(--ink-soft); }
.sg-add { width: 30px; height: 30px; border-radius: 50%; border: none; background: var(--yellow); color: #fff; font-size: 18px; font-weight: 700; cursor: pointer; flex: none; }
.sg-add:hover { background: var(--yellow-ink); }

/* Free-shipping progress bar (cart drawer) */
.ship-progress { margin-bottom: 14px; }
.ship-progress:empty { display: none; }
.sp-msg { margin: 0 0 8px; font-size: 13.5px; color: var(--ink); }
.sp-msg strong { color: var(--green-deep); }
.sp-track { height: 8px; background: var(--cream-deep); border-radius: 999px; overflow: hidden; border: 1px solid var(--line); }
.sp-fill { height: 100%; background: var(--yellow); border-radius: 999px; transition: width .35s ease; }
.sp-fill.done { background: var(--green); }

.line-item .li-thumb { width: 56px; height: 70px; border-radius: 8px; flex: none; border: 1px solid var(--line); overflow: hidden; }
.line-item .li-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.line-item .li-info { flex: 1; min-width: 0; }
.line-item .li-info h4 { font-size: 16px; margin: 0 0 2px; color: var(--ink); }
.line-item .li-info .li-meta { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; }
.line-item .li-price { font-weight: 700; font-variant-numeric: tabular-nums; }
.line-item .li-remove { background: none; border: 0; color: var(--ink-soft); font-size: 12.5px; cursor: pointer; text-decoration: underline; padding: 4px 0; }
.drawer footer { padding: 20px 22px; border-top: 1px solid var(--line); background: var(--white); }
.drawer .subtotal { display: flex; justify-content: space-between; font-size: 17px; margin-bottom: 4px; }
.drawer .subtotal strong { font-variant-numeric: tabular-nums; }
.drawer .ship-note { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 14px; }

/* ---------- Modal (mock checkout / packing slip) ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(38,50,48,.55);
  display: none; align-items: center; justify-content: center; z-index: 90; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius); max-width: 520px; width: 100%;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-md);
}
.modal .m-head { padding: 22px 24px; border-bottom: 1px solid var(--line); }
.modal .m-head h3 { font-size: 22px; margin: 0 0 4px; }
.modal .m-head p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.modal .m-body { padding: 22px 24px; }
.demo-tag {
  display: inline-block; background: var(--green); color: #fff; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 999px; margin-bottom: 14px;
}
.slip { border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: 16px; background: var(--cream); }
.slip h5 { margin: 0 0 10px; font-family: var(--font-display); font-size: 16px; color: var(--teal); }
.slip table { width: 100%; border-collapse: collapse; font-size: 14px; }
.slip td { padding: 6px 0; vertical-align: top; }
.slip td.r { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.slip .slip-total td { border-top: 1px solid var(--line); padding-top: 10px; font-weight: 700; }
.slip-hint { font-size: 13px; color: var(--ink-soft); margin: 14px 0 0; }
/* checkout options (delivery choice inside the checkout modal) */
.btn-ghost { background: transparent; color: var(--teal); border: 1.5px solid var(--hairline); }
.btn-ghost:hover { background: var(--cream); }
.co-choice { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); padding: 12px 0; cursor: pointer; }
.co-choice input { accent-color: var(--teal); width: 18px; height: 18px; }
.co-province { margin: 0 0 6px 28px; }
.co-province label { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; }
.co-province select { width: 100%; max-width: 320px; padding: 10px 12px; border: 1.5px solid var(--hairline); border-radius: 10px; font: inherit; color: var(--ink); background: #fff; }
.co-error { color: var(--sale); font-weight: 600; }
/* gift card + full-coverage customer details (B5) */
.co-gift { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 14px; }
.co-gift > label, .co-gift [data-co-promo] label { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; }
.co-gift-row { display: flex; gap: 8px; }
.co-gift input, .co-customer input {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--hairline); border-radius: 10px;
  font: inherit; color: var(--ink); background: #fff;
}
.co-gift input { text-transform: uppercase; }
.co-gift-row .btn { flex-shrink: 0; }
.co-gift [data-co-promo] { margin-top: 12px; }
.co-gift [data-co-promo] input { text-transform: uppercase; }
.co-gift .slip-hint.on { color: var(--green); font-weight: 600; }
.co-customer { border-top: 1px solid var(--line); margin-top: 14px; padding-top: 14px; }
.co-customer label { display: block; font-size: 13px; color: var(--ink-soft); margin: 10px 0 0; }
.co-customer input { margin-top: 6px; }
/* gift card purchase form (gift-cards.html) */
.gc-buy { max-width: 560px; margin: 0 auto; }
.gc-amounts { display: flex; gap: 10px; flex-wrap: wrap; margin: 6px 0 16px; }
.gc-amounts button {
  flex: 1 1 100px; padding: 14px 10px; border: 1.5px solid var(--hairline); border-radius: 12px;
  background: #fff; font: inherit; font-weight: 700; font-size: 18px; color: var(--teal); cursor: pointer;
}
.gc-amounts button.on { border-color: var(--teal); background: var(--cream); box-shadow: 0 0 0 1.5px var(--teal) inset; }
.gc-buy label { display: block; font-size: 13.5px; color: var(--ink-soft); margin: 14px 0 0; }
.gc-buy input, .gc-buy textarea {
  width: 100%; margin-top: 6px; padding: 11px 12px; border: 1.5px solid var(--hairline); border-radius: 10px;
  font: inherit; color: var(--ink); background: #fff;
}
.gc-buy textarea { min-height: 84px; resize: vertical; }
.gc-buy .btn { margin-top: 20px; }
.m-foot { padding: 18px 24px 24px; display: flex; gap: 10px; flex-wrap: wrap; }

/* Promo popup (campaign banner, config-driven) */
.promo-overlay {
  position: fixed; inset: 0; background: rgba(38,50,48,.55);
  display: flex; align-items: center; justify-content: center; z-index: 95; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.promo-overlay.open { opacity: 1; visibility: visible; }
.promo {
  position: relative; background: var(--white); border-radius: var(--radius);
  max-width: 760px; width: 100%; max-height: 90vh; overflow: hidden;
  box-shadow: var(--shadow-md); display: flex;
  transform: translateY(14px) scale(.98); transition: transform .28s ease;
}
.promo-overlay.open .promo { transform: translateY(0) scale(1); }
.promo.has-media { min-height: 340px; }
.promo-media { flex: 0 0 44%; background: var(--cream-deep); }
.promo-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.promo-body {
  flex: 1 1 auto; padding: 40px 38px; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; gap: 6px;
}
.promo-eyebrow {
  margin: 0; color: var(--green-deep); font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .14em;
}
.promo-heading { margin: 4px 0 2px; font-size: 30px; line-height: 1.12; }
.promo-text { margin: 0 0 18px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }
.promo .btn-primary { padding: 13px 26px; }
.promo-dismiss {
  margin-top: 12px; background: none; border: none; padding: 4px 0;
  color: var(--ink-soft); font: inherit; font-size: 13.5px; cursor: pointer; text-decoration: underline;
}
.promo-dismiss:hover { color: var(--teal); }
.promo-close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 34px; height: 34px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--ink); font-size: 22px; line-height: 1;
  cursor: pointer; box-shadow: var(--shadow-sm); transition: background .15s;
}
.promo-close:hover { background: #fff; }

@media (max-width: 640px) {
  .promo { flex-direction: column; max-width: 420px; overflow-y: auto; }
  .promo.has-media { min-height: 0; }
  .promo-media { flex: none; width: 100%; height: 175px; min-height: 0; }
  .promo-media img { height: 175px; }
  .promo-body { padding: 26px 26px 30px; text-align: left; }
  .promo-heading { font-size: 25px; }
}

@media (max-width: 940px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .site-header .wrap { height: 70px; }
  .brand-logo { margin-right: auto; }
  .brand-logo img { height: 38px; }
}
@media (max-width: 760px) {
  .features .wrap { grid-template-columns: 1fr; gap: 24px; }
  .hero-panel { background: rgba(27,83,89,.9); }
  .hero .wrap { padding: 44px 24px; }
}

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

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* Impact page stats */
.impact-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 34px 0; }
.is-tile { background: var(--cream, #FBF6F0); border-radius: 14px; padding: 26px 18px; text-align: center; }
.is-num { font-family: var(--font-display); font-size: 40px; line-height: 1; color: var(--apricot-ink, #C4684B); }
.is-label { margin-top: 8px; color: var(--ink-soft); font-size: 14px; }
@media (max-width: 640px) { .impact-stats { grid-template-columns: 1fr; } }
