/* ============================================================================
   KEEPING BALANCED — note pad stationery
   Design system: "calm note-pad boutique"
   - Soft ivory canvas, dusty-plum accent (elevates her lotus/purple heritage),
     botanical sage + blush as section washes — pulled from the products themselves
   - Fraunces (display serif) + Manrope (UI/body)
   ========================================================================== */

/* ---------- Tokens -------------------------------------------------------- */
:root {
  /* Brand — matched to rubymathen.com (plum + saffron) */
  --plum:        #6E3457;   /* plum — CTAs, lotus, accents */
  --plum-hover:  #5C2A47;
  --plum-deep:   #45203A;   /* deep plum — dark sections / gradient depth */
  --plum-dim:    rgba(110, 52, 87, 0.12);

  /* Saffron + warm washes */
  --sage:        #C8842B;   /* saffron/gold accent (marks, ticks, dots) */
  --sage-deep:   #8A5A1B;
  --blush:       #E8C98F;   /* light gold — on-dark accent, badges */
  --blush-bg:    #F2E9DA;   /* warm sand section wash */
  --clay:        #B8814A;
  --sky:         #E0D3BF;

  /* Neutrals (warm) */
  --ivory:       #FAF5EC;   /* primary light background */
  --cream:       #F2E9DA;   /* alternate warm section */
  --mist:        #EFE6D6;   /* warm alternate */
  --white:       #FFFFFF;
  --ink:         #261F1B;   /* primary text — warm near-black */
  --ink-soft:    #5B5048;
  --ink-deep:    #45203A;   /* dark sections — deep plum */
  --muted:       #6E655B;   /* muted text on light */
  --muted-light: rgba(250, 245, 236, 0.66); /* muted on dark */

  /* Lines & surfaces */
  --line:        rgba(38, 31, 27, 0.10);
  --line-strong: rgba(38, 31, 27, 0.18);
  --line-light:  rgba(250, 245, 236, 0.16);
  --card:        #FFFFFF;

  /* Typography */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-hero:    clamp(2.8rem, 6vw, 5.2rem);
  --text-display: clamp(2.1rem, 4.2vw, 3.4rem);
  --text-heading: clamp(1.6rem, 2.7vw, 2.3rem);
  --text-subhead: clamp(1.15rem, 1.7vw, 1.4rem);
  --text-lead:    clamp(1.08rem, 1.4vw, 1.25rem);
  --text-body:    clamp(1rem, 1.1vw, 1.07rem);
  --text-sm:      0.9rem;
  --text-xs:      0.76rem;

  /* Space */
  --container:  min(1180px, 90vw);
  --narrow:     min(720px, 90vw);
  --wide:       min(1340px, 94vw);
  --section-y:  clamp(4.5rem, 9vw, 8rem);

  /* Radii (squared per Ruby) & shadow */
  --r-sm: 0px;
  --r:    0px;
  --r-lg: 0px;
  --r-pill: 0px;     /* squared everything per Ruby */
  --shadow-sm: 0 1px 2px rgba(38,31,27,.04), 0 6px 18px rgba(69,32,58,.06);
  --shadow:    0 2px 6px rgba(38,31,27,.05), 0 22px 48px -16px rgba(69,32,58,.16);
  --shadow-lg: 0 4px 12px rgba(38,31,27,.06), 0 44px 84px -28px rgba(69,32,58,.28);
  --shadow-plum: 0 18px 44px -16px rgba(110,52,87,.34);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--plum); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 200; background: var(--white); padding: .7rem 1.1rem; border-radius: var(--r-sm); box-shadow: var(--shadow); }

/* ---------- Type ---------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.1; letter-spacing: -0.018em; color: var(--ink); }
h1 { font-size: var(--text-hero); font-weight: 300; letter-spacing: -0.028em; }
h2 { font-size: var(--text-display); }
h3 { font-size: var(--text-heading); }
em, .italic { font-style: italic; font-optical-sizing: auto; }

.eyebrow {
  font-family: var(--body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--plum);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--sage); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 24px; height: 1px; background: var(--sage); display: inline-block; }
.eyebrow.on-dark { color: var(--blush); }

.lead { font-size: var(--text-lead); color: var(--ink-soft); line-height: 1.65; }
.muted { color: var(--muted); }

/* ---------- Layout -------------------------------------------------------- */
.container { width: var(--container); margin-inline: auto; }
.narrow { width: var(--narrow); margin-inline: auto; }
.wide { width: var(--wide); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; overflow: hidden; }
.section--ivory { background: var(--ivory); }
.section--cream { background: var(--cream); }
.section--mist  { background: var(--mist); }
.section--blush { background: var(--blush-bg); }
.section--ink   { background: var(--ink-deep); color: var(--ivory); }
.section--ink h1,.section--ink h2,.section--ink h3 { color: var(--ivory); }
.section--ink .lead { color: var(--muted-light); }

.section-head { max-width: 660px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .9rem; }
.section-head p { margin-top: 1rem; }

/* Soft blobs (decor) */
.blob { position: absolute; border-radius: 0; filter: blur(8px); opacity: .5; pointer-events: none; z-index: 0; }
.blob-sage  { background: radial-gradient(circle at 35% 35%, #f2ddb0, transparent 70%); }
.blob-blush { background: radial-gradient(circle at 35% 35%, #eccdb8, transparent 70%); }
.blob-plum  { background: radial-gradient(circle at 35% 35%, #ddc2d0, transparent 70%); }
.blob-sky   { background: radial-gradient(circle at 35% 35%, #ecdcc0, transparent 70%); }
.section > .container, .section > .wide, .section > .narrow { position: relative; z-index: 1; }

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--body); font-weight: 600; font-size: var(--text-sm); letter-spacing: 0.01em;
  padding: 0.92rem 1.7rem; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform; white-space: nowrap; border: 1.5px solid transparent;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .25s var(--ease); }
.btn-primary { background: var(--plum); color: var(--white); box-shadow: var(--shadow-plum); }
.btn-primary:hover { background: var(--plum-hover); transform: translateY(-2px); box-shadow: 0 24px 54px -16px rgba(110,52,87,.5); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary:active { transform: translateY(0) scale(.985); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); background: rgba(38,31,27,.03); }
.btn-light { background: var(--ivory); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost-light { background: transparent; color: var(--ivory); border-color: var(--line-light); }
.btn-ghost-light:hover { border-color: var(--ivory); background: rgba(250,245,236,.07); transform: translateY(-2px); }
.btn-lg { padding: 1.08rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.text-link { color: var(--plum); font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; transition: gap .25s var(--ease); }
.text-link svg { width: 1em; height: 1em; }
.text-link:hover { gap: .7rem; }

/* ---------- Header (announce + nav, fixed as one stack) ------------------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; }

/* ---------- Nav ----------------------------------------------------------- */
.nav { position: relative; z-index: 100; transition: background .4s var(--ease), backdrop-filter .4s var(--ease), box-shadow .4s var(--ease); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(250, 245, 236, 0.9); backdrop-filter: saturate(180%) blur(18px); border-bottom-color: var(--line); box-shadow: 0 4px 20px -12px rgba(69,32,58,.2); }
.nav-inner { width: var(--wide); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.05rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--display); font-size: 1.4rem; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
.brand .lotus { width: 30px; height: 30px; color: var(--plum); flex: none; }
@media (min-width: 1000px) {
  .nav .brand { font-size: clamp(1.8rem, 3.4vw, 2.8rem); white-space: nowrap; }
  .nav .brand .lotus { width: clamp(34px, 3.2vw, 44px); height: clamp(34px, 3.2vw, 44px); }
}
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); transition: color .2s var(--ease); position: relative; }
.nav-links a:hover { color: var(--plum); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--plum); border-radius: 2px; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.cart-link { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .9rem; color: var(--ink); }
.cart-link svg { width: 1.2em; height: 1.2em; }
.cart-count { background: var(--plum); color: #fff; font-size: .72rem; font-weight: 700; min-width: 1.3em; height: 1.3em; padding: 0 .35em; border-radius: 0; display: inline-grid; place-items: center; }
.nav-burger { display: none; width: 44px; height: 44px; position: relative; }
.nav-burger span, .nav-burger::before, .nav-burger::after { content: ""; position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-burger span { top: 21px; } .nav-burger::before { top: 15px; } .nav-burger::after { top: 27px; }
body.menu-open .nav-burger span { opacity: 0; }
body.menu-open .nav-burger::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-burger::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--ivory); display: flex; flex-direction: column; justify-content: center; gap: 1.4rem; padding: 2rem clamp(1.5rem,6vw,3rem); transform: translateX(100%); transition: transform .4s var(--ease); }
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a { font-family: var(--display); font-size: 1.7rem; color: var(--ink); }
.mobile-menu a.btn { font-family: var(--body); font-size: 1rem; margin-top: 1rem; }

/* ---------- Announcement bar --------------------------------------------- */
.announce { background: var(--plum-deep); color: var(--ivory); text-align: center; font-size: .8rem; letter-spacing: .04em; padding: .55rem 1rem; position: relative; z-index: 101; }
.announce strong { font-weight: 700; }

/* ---------- Hero ---------------------------------------------------------- */
.hero { position: relative; padding-top: clamp(7rem, 13vw, 10rem); padding-bottom: clamp(4rem, 8vw, 7rem); background: linear-gradient(180deg, #f1e6d3 0%, var(--ivory) 70%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy { max-width: 36ch; }
.hero h1 { margin: 1.1rem 0 0; }
.hero h1 em { color: var(--plum); }
.hero-sub { margin-top: 1.4rem; font-size: var(--text-lead); color: var(--ink-soft); }
.hero-actions { margin-top: 2rem; display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-trust { margin-top: 2rem; display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; font-size: var(--text-sm); color: var(--muted); }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 0; background: var(--sage); }

/* Hero collage of product tiles */
.hero-art { position: relative; aspect-ratio: 1/1; }
.hero-tile { position: absolute; aspect-ratio: 3/4; border-radius: var(--r); background: var(--white); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line); }
.hero-tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-tile.t1 { width: 52%; left: 0; top: 6%; rotate: -4deg; z-index: 2; }
.hero-tile.t2 { width: 44%; right: 2%; top: 0; rotate: 5deg; z-index: 1; }
.hero-tile.t3 { width: 46%; right: 6%; bottom: 2%; rotate: -3deg; z-index: 3; }
.hero-tile.t4 { width: 38%; left: 8%; bottom: 6%; rotate: 6deg; z-index: 2; }

/* Placeholder tile look (until real product photos drop in) */
.ph { display: grid; place-items: end center; aspect-ratio: 3/4; padding: 14% 0 18%; position: relative; }
.ph::before { content: ""; position: absolute; inset: 0; background: var(--blob, radial-gradient(circle at 50% 30%, #e7ddf0, #f6f2ec)); }
.ph span { position: relative; font-size: clamp(2rem, 6vw, 3.5rem); line-height: 1; }

/* ---------- Category cards ----------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
.cat-card { position: relative; border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.cat-media { aspect-ratio: 4/5; background: var(--white); overflow: hidden; }
.cat-media img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; transition: transform .5s var(--ease); }
.cat-body { padding: 1.2rem 1.4rem 1.4rem; }
.cat-card.dogs .cat-body  { background: linear-gradient(160deg, #f1e7d5, #e8dabf); }
.cat-card.cats .cat-body  { background: linear-gradient(160deg, #efe1ea, #e3cfdc); }
.cat-card.plants .cat-body{ background: linear-gradient(160deg, #f4e9d3, #ecdcbb); }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat-card:hover .cat-media img { transform: scale(1.05); }
.cat-card h3 { font-size: 1.6rem; }
.cat-card .cat-meta { display: block; font-size: .85rem; color: var(--ink-soft); margin-top: .2rem; }
.cat-card .cat-go { margin-top: .8rem; font-weight: 600; font-size: .85rem; color: var(--plum); display: inline-flex; align-items: center; gap: .35rem; }

/* ---------- Product cards ------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.product-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.product-media { position: relative; aspect-ratio: 3/4; background: linear-gradient(160deg, #f4ecdd, #efe6d5); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-badge { position: absolute; top: .8rem; left: .8rem; background: var(--blush); color: #5c2a47; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 0; }
.product-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.product-name { font-family: var(--display); font-size: 1.15rem; }
.product-cat { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.product-specs { font-size: .8rem; line-height: 1.4; color: var(--muted); }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding-top: .6rem; }
.price { font-weight: 700; color: var(--ink); }
.price .was { color: var(--muted); font-weight: 500; text-decoration: line-through; margin-right: .4rem; font-size: .9em; }
.add-btn { background: var(--plum-dim); color: var(--plum); font-weight: 600; font-size: .85rem; padding: .55rem .9rem; border-radius: var(--r-pill); transition: background .2s var(--ease), color .2s var(--ease); }
.add-btn:hover { background: var(--plum); color: #fff; }

/* ---------- Split / story ------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-art { aspect-ratio: 5/4; border-radius: var(--r-lg); background: linear-gradient(160deg, #ecd9e2, #eaddc8, #f0e2c9); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.studio-pad { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-3deg); width: 52%; aspect-ratio: 3/4; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden; z-index: 1; }
.studio-pad img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Steps / values ------------------------------------------------ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem); }
.pillar { text-align: center; }
.pillar .ic { width: 54px; height: 54px; margin: 0 auto 1rem; border-radius: 0; display: grid; place-items: center; background: var(--plum-dim); color: var(--plum); font-size: 1.5rem; }
.pillar h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.pillar p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- CTA band ------------------------------------------------------ */
.cta { text-align: center; }
.cta .narrow { display: grid; gap: 1.3rem; justify-items: center; }
.cta h2 { color: var(--ivory); }

/* ---------- Newsletter --------------------------------------------------- */
.signup { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; max-width: 460px; margin-inline: auto; }
.signup input { flex: 1; min-width: 220px; padding: .92rem 1.2rem; border-radius: var(--r-pill); border: 1.5px solid var(--line-light); background: rgba(251,248,243,.08); color: var(--ivory); }
.signup input::placeholder { color: var(--muted-light); }

/* ---------- Footer -------------------------------------------------------- */
.footer { background: var(--ink-deep); color: var(--muted-light); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer .brand { color: var(--ivory); margin-bottom: 1rem; }
.footer .brand .lotus { color: var(--blush); }
.footer h4 { font-family: var(--body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory); margin-bottom: 1.1rem; font-weight: 700; }
.footer a { display: block; color: var(--muted-light); padding: .3rem 0; transition: color .2s var(--ease); }
.footer a:hover { color: var(--ivory); }
.footer .blurb { max-width: 32ch; font-size: .95rem; }
.socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.socials a { width: 38px; height: 38px; border-radius: 0; border: 1px solid var(--line-light); display: grid; place-items: center; color: var(--ivory); }
.socials a:hover { background: var(--plum); border-color: var(--plum); }
.socials svg { width: 18px; height: 18px; }
.footer-base { border-top: 1px solid var(--line-light); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .82rem; }
.footer-tagline { font-family: var(--display); font-size: 1.4rem; font-weight: 500; letter-spacing: -0.01em; color: var(--ivory); }

/* ---------- Reveal animations -------------------------------------------- */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--delay, 0s); }
[data-animate].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-animate] { opacity: 1; transform: none; transition: none; } }

[data-load] { opacity: 0; transform: translateY(20px); animation: load .9s var(--ease-out) forwards; animation-delay: calc(var(--d, 0) * 1s); }
@keyframes load { to { opacity: 1; transform: none; } }

/* ---------- Responsive --------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero-art { max-width: 460px; margin-inline: auto; width: 100%; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .cart-link .cart-label { display: none; }
  .nav-burger { display: block; }
  .nav .brand { font-size: clamp(1.5rem, 7.4vw, 1.9rem); white-space: nowrap; }
  .nav .brand .lotus { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Shop / catalog ------------------------------------------------ */
.shop-filters { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3rem); }
.shop-filters a { padding: .5rem 1.1rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-pill); font-weight: 600; font-size: .85rem; color: var(--ink-soft); transition: color .2s var(--ease), border-color .2s var(--ease); }
.shop-filters a:hover { border-color: var(--plum); color: var(--plum); }
.shop-cat { scroll-margin-top: 130px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.shop-cat-head { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1.5rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
.shop-cat-head h2 { font-size: var(--text-heading); }
a.product-name { color: var(--ink); transition: color .2s var(--ease); }
a.product-name:hover { color: var(--plum); }
a.product-media { display: block; }

/* ---------- Product detail ------------------------------------------------ */
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 1.6rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.crumbs a:hover { color: var(--plum); }
.crumbs .here { color: var(--ink); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.pd-media { border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(160deg, #f4ecdd, #efe6d5); box-shadow: var(--shadow); }
.pd-media img { width: 100%; height: auto; }
.pd-info { position: sticky; top: 130px; }
.pd-info h1 { font-size: var(--text-display); margin: .5rem 0 .8rem; }
.pd-price { font-size: 1.6rem; font-weight: 700; color: var(--plum); margin-bottom: 1.2rem; }
.pd-info .btn { margin: .6rem 0 1.6rem; }
.pd-points { display: grid; gap: .6rem; }
.pd-points li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); }
.pd-points li::before { content: "✓"; position: absolute; left: 0; color: var(--sage-deep); font-weight: 700; }
.related { margin-top: clamp(3.5rem, 7vw, 5.5rem); }
.related h2 { font-size: var(--text-heading); margin-bottom: 1.6rem; }
@media (max-width: 760px) { .product-detail { grid-template-columns: 1fr; } .pd-info { position: static; } }

/* ---------- Page hero (interior pages) ----------------------------------- */
.page-hero { padding-top: clamp(7rem, 12vw, 9.5rem); padding-bottom: clamp(2rem, 4vw, 3rem); text-align: center; background: linear-gradient(180deg, #f1e6d3, var(--ivory)); }
.page-hero h1 { margin-top: .8rem; }
.page-hero .lead { margin-top: 1rem; }

/* ---------- Forms --------------------------------------------------------- */
.form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink-soft); }
.field input, .field textarea { width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); background: var(--ivory); font: inherit; color: var(--ink); transition: border-color .2s var(--ease); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--plum); }
.field.show-err input, .field.show-err textarea { border-color: #c0524c; }
.field.show-err::after { content: "Please complete this field"; color: #c0524c; font-size: .78rem; margin-top: .35rem; display: block; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; }
.form-success h3 { color: var(--plum); margin-bottom: .5rem; }
.contact-list { margin: 1.4rem 0; display: grid; gap: .6rem; }
.contact-list li { display: flex; gap: .6rem; }
.contact-list strong { min-width: 64px; color: var(--ink); }
.contact-list a { color: var(--plum); }

/* ---------- Prose (policy / faq) ----------------------------------------- */
.prose { max-width: 72ch; }
.prose h1 { margin-bottom: 1rem; }
.prose h2 { font-size: var(--text-heading); margin: 2rem 0 .8rem; }
.prose p, .prose li { color: var(--ink-soft); margin-bottom: 1rem; }
.prose ul { padding-left: 1.2rem; list-style: disc; margin-bottom: 1rem; }
.prose a { color: var(--plum); font-weight: 600; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.faq-item h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.faq-item p { color: var(--ink-soft); margin: 0; }
