/* Pepperell Crafts hi-fi branded prototype — shared styles
   Brand identity: Poppins (headings), Zilla Slab (body), Market Pro (accent script).
   Brand colors: orange #FA5425, dark-orange #D14820, lavender #DFACE5,
   warm cream #FFECD3, warm taupe #967D66, link-on-white #C44018. */

@import url('assets/fonts/google/fonts.css');

@font-face {
  font-family: 'Market Pro';
  src: url('assets/fonts/MarketPro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Market Pro';
  src: url('assets/fonts/MarketPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* brand */
  --brand-orange: #FA5425;
  --brand-orange-dark: #D14820;
  --brand-lavender: #DFACE5;
  --brand-cream: #FFECD3;
  --brand-taupe: #967D66;
  --brand-link: #C44018;

  /* surfaces */
  --bg: #ffffff;
  --bg-cream: #FFECD3;
  --bg-cream-soft: #FFF5E3;
  --bg-lavender: #F4DDF8;
  --bg-gray: #F7F5F1;

  /* ink */
  --ink: #1A1614;
  --ink-2: #4D4641;
  --mute: #8A7E73;

  /* lines */
  --line: #E6DFD4;
  --line-strong: #C9BFB1;

  /* feedback */
  --good: #2F7A4B;
  --warn: #B7531F;

  /* spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 56px;
  --s-8: 80px;

  /* radius */
  --r: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  --container: 1200px;

  --shadow-sm: 0 1px 2px rgba(26,22,20,.06);
  --shadow-md: 0 6px 16px rgba(26,22,20,.08);
  --shadow-lg: 0 18px 40px rgba(26,22,20,.10);

  /* fonts */
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Zilla Slab', Georgia, serif;
  --font-accent: 'Market Pro', cursive;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; padding: 0; }
a { color: var(--brand-link); text-decoration: none; }
a:hover { color: var(--brand-orange-dark); text-decoration: underline; text-underline-offset: 3px; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(30px, 4.4vw, 52px); }
h2 { font-size: clamp(24px, 2.8vw, 36px); margin-bottom: var(--s-5); }
h3 { font-size: clamp(18px, 1.6vw, 22px); margin-bottom: var(--s-3); }
h4 { font-size: 16px; margin-bottom: var(--s-2); }

.accent {
  font-family: var(--font-accent);
  font-weight: 400;
  color: var(--brand-orange);
  font-size: 1.15em;
  letter-spacing: 0.01em;
  display: inline-block;
}

:focus-visible { outline: 2px solid var(--brand-orange); outline-offset: 2px; }

.wrap { max-width: var(--container); margin: 0 auto; padding-left: var(--s-5); padding-right: var(--s-5); }
@media (max-width: 720px) { .wrap { padding-left: var(--s-4); padding-right: var(--s-4); } }

section { padding-top: var(--s-6); padding-bottom: var(--s-6); }
@media (max-width: 720px) { section { padding-top: var(--s-5); padding-bottom: var(--s-5); } }

.section-title {
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-taupe);
  font-weight: 700;
  margin-bottom: var(--s-5);
}
/* When the eyebrow is paired with an H2 directly under it, tighten the pair. */
.section-title + h2,
.section-title + .testimonials__rating,
.testimonials__head .section-title,
.reels__head .section-title { margin-bottom: var(--s-1); }
/* Script accent stays out of small uppercase labels — no font mixing inside section eyebrows. */
.section-title .accent,
.hero__eyebrow .accent,
.badge .accent,
.pdp__label .accent {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

/* ============ ANNOUNCEMENT ============ */
.announce {
  background: var(--brand-orange);
  color: #fff;
  font-size: 13px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.announce span:not(:last-child)::after {
  content: '·';
  margin-left: 32px;
  opacity: 0.7;
}
@media (max-width: 720px) {
  .announce { gap: 0; }
  .announce span { display: none; }
  .announce span:first-child { display: inline; }
  .announce span::after { display: none; }
}

/* ============ HEADER ============ */
.header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--line); }
.header__main { padding-top: var(--s-3); padding-bottom: var(--s-3); }
.header__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--s-5);
}
.header__logo   { grid-column: 1; }
.header__search { grid-column: 2; }
.header__icons  { grid-column: 3; }
.header__hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--ink);
}
.header__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header__logo img { height: 38px; width: auto; }
.header__logo:hover { color: var(--brand-orange); text-decoration: none; }

.header__search {
  display: flex;
  align-items: center;
  background: var(--bg-cream);
  border: 1.5px solid var(--brand-cream);
  border-radius: var(--r-pill);
  padding: 4px 4px 4px 18px;
  max-width: 560px;
  width: 100%;
  justify-self: center;
  transition: border-color .2s, background .2s;
}
.header__search:focus-within { border-color: var(--brand-orange); background: #fff; }
.header__search input {
  flex: 1; min-width: 0;
  border: none; background: transparent;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.header__search input::placeholder { color: var(--brand-taupe); }
.header__search button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.header__search button:hover { background: var(--brand-orange-dark); }
.header__search .icon { width: 18px; height: 18px; }

.header__icons { display: flex; align-items: center; gap: var(--s-2); }
.header__icon-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 12px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--r);
  text-decoration: none;
  transition: background .15s;
}
.header__icon-btn:hover { background: var(--bg-cream); color: var(--ink); text-decoration: none; }
.header__icon-btn .icon { width: 22px; height: 22px; }

.header__nav-row { background: #fff; border-top: 1px solid var(--line); }
.header__nav-inner { padding-top: var(--s-2); padding-bottom: var(--s-2); }
.header__nav {
  display: flex; gap: var(--s-5); align-items: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
}
.header__nav a {
  color: var(--ink-2);
  text-decoration: none;
  padding: 8px 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.header__nav a:hover { color: var(--brand-orange); border-bottom-color: var(--brand-orange); text-decoration: none; }
.header__nav-sale a {
  background: var(--brand-orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: none;
}
.header__nav-sale a:hover { background: var(--brand-orange-dark); border-bottom: none; }

@media (max-width: 900px) {
  .header__row { grid-template-columns: auto minmax(0, 1fr) auto; row-gap: var(--s-3); }
  .header__hamburger { display: inline-flex; grid-column: 1; grid-row: 1; }
  .header__logo     { grid-column: 2; grid-row: 1; }
  .header__icons    { grid-column: 3; grid-row: 1; justify-self: end; }
  .header__search   { grid-column: 1 / -1; grid-row: 2; max-width: none; }
  .header__icon-btn span { display: none; }
  .header__nav-row { display: none; }
}

/* ============ MOBILE MENU ============ */
.menu-drawer {
  position: fixed; inset: 0 auto 0 0;
  width: min(86vw, 360px);
  background: #fff;
  z-index: 80;
  transform: translateX(-100%);
  transition: transform .25s ease;
  display: flex; flex-direction: column;
  pointer-events: none;
}
.menu-drawer__backdrop {
  position: fixed; inset: 0;
  background: rgba(26,22,20,.45);
  z-index: 79; opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
body.menu-open { overflow: hidden; }
body.menu-open .menu-drawer { transform: translateX(0); pointer-events: auto; box-shadow: var(--shadow-lg); }
body.menu-open .menu-drawer__backdrop { opacity: 1; pointer-events: auto; }
.menu-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: var(--s-4); border-bottom: 1px solid var(--line); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; }
.menu-drawer__close { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--r); display: inline-flex; align-items: center; justify-content: center; color: var(--ink-2); }
.menu-drawer__nav { padding: var(--s-2) 0; flex: 1; overflow-y: auto; }
.menu-drawer__nav a { display: block; padding: 14px var(--s-4); color: var(--ink); font-family: var(--font-heading); font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--line); text-decoration: none; }
.menu-drawer__nav a:hover { background: var(--bg-cream); }
.menu-drawer__nav a.is-sale { color: var(--brand-orange); font-weight: 600; }
.menu-drawer__foot { padding: var(--s-4); border-top: 1px solid var(--line); font-size: 13px; }
.menu-drawer__foot a { color: var(--ink-2); display: block; padding: 6px 0; text-decoration: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2);
  padding: 14px 24px;
  border-radius: var(--r-pill);
  background: var(--brand-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid var(--brand-orange);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s, box-shadow .2s;
  line-height: 1;
  min-height: 48px;
}
.btn:hover { background: var(--brand-orange-dark); border-color: var(--brand-orange-dark); color: #fff; text-decoration: none; box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(1px); }
.btn--block { width: 100%; }
.btn--ghost { background: #fff; color: var(--brand-orange-dark); border-color: var(--brand-orange-dark); }
.btn--ghost:hover { background: var(--brand-orange-dark); color: #fff; }
.btn--ink { background: var(--ink); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink-2); border-color: var(--ink-2); }
.btn--sm { padding: 10px 16px; font-size: 14px; min-height: 40px; }
.btn--xs { padding: 7px 12px; font-size: 12px; min-height: 32px; border-radius: var(--r); }

/* ============ HERO ============ */
.hero-section { padding-top: var(--s-4); padding-bottom: var(--s-5); }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--s-6);
  align-items: center;
  background: var(--bg-cream);
  border-radius: 20px;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
  padding-top: clamp(20px, 3vw, 36px);
  padding-bottom: clamp(20px, 3vw, 36px);
  overflow: hidden;
}
.hero__copy { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-orange-dark);
  margin-bottom: var(--s-2);
}
.hero__eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--brand-orange); display: inline-block; }
.hero h1 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; margin-bottom: var(--s-3); }
.hero h1 .accent { display: inline-block; transform: translateY(3px); }
.hero__copy p { font-size: clamp(14px, 1.1vw, 16px); color: var(--ink-2); margin-bottom: var(--s-4); max-width: 46ch; line-height: 1.55; }
.hero__media { aspect-ratio: 5/3; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero__ornament {
  position: absolute;
  right: -40px; top: -40px;
  width: 240px; opacity: 0.35;
  pointer-events: none;
  transform: rotate(8deg);
}
.hero__loop {
  position: absolute;
  left: -10px; top: 8px;
  width: 110%; opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: var(--s-5); padding: var(--s-5); }
  .hero__media { aspect-ratio: 4/3; order: -1; }
  .hero__ornament { width: 140px; right: -20px; top: -20px; }
  .hero .btn { width: 100%; }
}

/* ============ CARDS / PRODUCT TILES ============ */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.cards--6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1100px) { .cards--6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } .cards--6 { grid-template-columns: repeat(2, 1fr); } }

.cards--7-asym { grid-template-columns: repeat(12, 1fr); }
.cards--7-asym > *:nth-child(-n+3) { grid-column: span 4; }
.cards--7-asym > *:nth-child(n+4) { grid-column: span 3; }
@media (max-width: 900px) {
  .cards--7-asym { grid-template-columns: repeat(2, 1fr); }
  .cards--7-asym > *:nth-child(-n+3),
  .cards--7-asym > *:nth-child(n+4) { grid-column: auto; }
}

.card {
  position: relative;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(26,22,20,0.03);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
  text-decoration: none;
  color: inherit;
}
.card__media {
  aspect-ratio: 1 / 1;
  background: var(--bg-cream);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__media img { transform: scale(1.04); }
.card__title { font-family: var(--font-heading); font-size: 15px; font-weight: 600; line-height: 1.35; color: var(--ink); margin: 14px 14px 0; }
.card__rating { font-size: 12px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 4px; margin: 6px 14px 0; }
.card__rating .icon { color: #E89D2F; width: 14px; height: 14px; }
.card__rating strong { color: var(--ink); font-weight: 600; }
.card__eta { font-size: 12px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 5px; margin: 4px 14px 0; }
.card__eta .icon { width: 14px; height: 14px; color: var(--brand-taupe); }
.card__price { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--ink); margin: 10px 14px 14px; }
.card__badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 5px; z-index: 1; }

.badge {
  display: inline-flex; align-items: center;
  padding: 5px 10px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--brand-orange);
  color: #fff;
  border-radius: var(--r-pill);
}
.badge--mute { background: #fff; color: var(--ink); border: 1px solid var(--line-strong); }
.badge--new { background: var(--brand-lavender); color: var(--ink); }
.badge--bestseller { background: var(--brand-orange); color: #fff; }
.badge--cream { background: var(--brand-cream); color: var(--ink); }

/* category cards — taller, branded */
.cat-card {
  display: flex; flex-direction: column;
  text-decoration: none;
  background: var(--bg-cream);
  border-radius: var(--r-lg);
  padding: var(--s-3);
  transition: background .2s, transform .2s;
  text-align: center;
}
.cat-card:hover { background: var(--brand-cream); transform: translateY(-2px); text-decoration: none; }
.cat-card__media { aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; background: #fff; margin-bottom: var(--s-3); }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cat-card__title { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--ink); margin: 0 0 4px; }
.cat-card__count { font-size: 12px; color: var(--brand-taupe); }

/* ============ STARS ============ */
.stars { display: inline-flex; gap: 1px; }
.stars .icon { color: #E89D2F; width: 14px; height: 14px; }
.stars--lg .icon { width: 20px; height: 20px; }

/* ============ HERITAGE ============ */
.heritage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  background: var(--bg-cream);
  border-radius: 24px;
  overflow: hidden;
}
.heritage__media { aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.heritage__media img { width: 100%; height: 100%; object-fit: cover; }
.heritage h2 { margin-bottom: var(--s-4); }
.heritage h2 .accent { color: var(--brand-orange); }
.heritage p { font-size: 16px; color: var(--ink-2); line-height: 1.6; }
.heritage__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); margin-top: var(--s-5); border-top: 1px solid var(--line-strong); padding-top: var(--s-5); }
.heritage__stat strong { font-family: var(--font-heading); display: block; font-size: 36px; font-weight: 700; color: var(--brand-orange); line-height: 1; }
.heritage__stat span { font-family: var(--font-heading); display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-taupe); margin-top: 6px; font-weight: 600; }
.heritage__cta { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--s-5); font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--brand-orange-dark); }
.heritage__ornament { position: absolute; right: -50px; bottom: -50px; width: 220px; opacity: 0.18; pointer-events: none; transform: rotate(-12deg); }
@media (max-width: 900px) {
  .heritage { grid-template-columns: 1fr; padding: var(--s-5); gap: var(--s-5); }
  .heritage__media { aspect-ratio: 16/10; }
}

/* ============ TRUST BAR ============ */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  padding: var(--s-5) var(--s-6);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.trust__item { font-size: 13px; color: var(--ink-2); display: flex; gap: var(--s-3); align-items: flex-start; }
.trust__item .icon { color: var(--brand-orange); width: 28px; height: 28px; flex-shrink: 0; }
.trust__item strong { display: block; color: var(--ink); margin-bottom: 2px; font-family: var(--font-heading); font-size: 14px; font-weight: 600; }
@media (max-width: 900px) { .trust { grid-template-columns: repeat(2, 1fr); padding: var(--s-4); } }

/* ============ TESTIMONIALS ============ */
.testimonials__head { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--s-3); margin-bottom: var(--s-5); flex-wrap: wrap; }
.testimonials__rating { font-size: 14px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px; }
.testimonials__rating .icon { width: 18px; height: 18px; color: #E89D2F; }
.testimonials__rating strong { color: var(--ink); font-family: var(--font-heading); font-weight: 600; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.testimonial {
  background: var(--bg-cream-soft);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute; top: 4px; right: 18px;
  font-family: var(--font-accent);
  font-size: 72px; line-height: 1;
  color: var(--brand-orange);
  opacity: 0.4;
}
.testimonial__product { font-size: 12px; color: var(--brand-taupe); margin: 0; }
.testimonial__product a { color: var(--brand-taupe); text-decoration: underline; }
.testimonial__stars { display: inline-flex; gap: 1px; margin: 0; }
.testimonial__stars .icon { color: #E89D2F; width: 16px; height: 16px; }
.testimonial__quote { font-size: 15px; color: var(--ink); margin: 0; line-height: 1.55; flex: 1; }
.testimonial__by { font-size: 12px; color: var(--brand-taupe); display: flex; justify-content: space-between; align-items: center; gap: var(--s-2); margin: 0; padding-top: var(--s-3); border-top: 1px solid var(--line); flex-wrap: wrap; }
.testimonial__by strong { color: var(--ink); font-family: var(--font-heading); font-weight: 600; }
.testimonial__verified { font-size: 11px; color: var(--good); display: inline-flex; align-items: center; gap: 4px; }
.testimonial__verified .icon { width: 12px; height: 12px; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* ============ REELS / TIKTOK / IG ============ */
.reels { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6); }
.reels__head { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--s-3); margin-bottom: var(--s-5); flex-wrap: wrap; }
.reels__head h2 { margin: 0; }
.reels__handle { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--brand-orange-dark); text-decoration: none; }
.reels__handle .icon { width: 20px; height: 20px; }
.reels__scroll { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s-3); }
@media (max-width: 1100px) { .reels__scroll { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .reels__scroll { grid-template-columns: repeat(2, 1fr); } }
.reels__card { position: relative; aspect-ratio: 9 / 16; border-radius: var(--r); overflow: hidden; text-decoration: none; box-shadow: var(--shadow-sm); }
.reels__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reels__card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65)); }
.reels__card-label { position: absolute; left: 10px; bottom: 10px; right: 10px; font-family: var(--font-heading); font-size: 12px; font-weight: 500; color: #fff; line-height: 1.3; z-index: 1; }
.reels__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 1; }
.reels__play svg { width: 44px; height: 44px; color: rgba(255,255,255,.95); filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.reels__cta { margin-top: var(--s-5); text-align: center; }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--brand-lavender);
  border-radius: 24px;
  padding: clamp(32px, 6vw, 72px) var(--s-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  left: -60px; bottom: -60px;
  width: 240px; height: 240px;
  background: url('assets/illustrations/brand-stroke-tape.svg') no-repeat center / contain;
  opacity: 0.4;
  pointer-events: none;
  transform: rotate(-10deg);
}
.newsletter h2 { margin-bottom: var(--s-3); }
.newsletter h2 .accent { color: var(--ink); }
.newsletter p { color: var(--ink); margin: 0 auto var(--s-5); font-size: 16px; max-width: 50ch; position: relative; z-index: 1; }
.newsletter form { display: flex; gap: var(--s-2); max-width: 480px; margin: 0 auto; position: relative; z-index: 1; }
.newsletter input { flex: 1; padding: 14px 18px; border: 1.5px solid transparent; border-radius: var(--r-pill); font-family: var(--font-body); background: #fff; min-height: 48px; }
.newsletter input:focus { outline: none; border-color: var(--brand-orange); }
.newsletter button { min-height: 48px; }
@media (max-width: 600px) {
  .newsletter form { flex-direction: column; }
}

/* ============ FAQ ============ */
.faq-home { max-width: 760px; margin: 0 auto; }
.faq-home details { border-bottom: 1px solid var(--line); padding: var(--s-4) 0; }
.faq-home summary { font-family: var(--font-heading); font-size: 16px; font-weight: 600; cursor: pointer; list-style: none; padding-right: 32px; position: relative; color: var(--ink); }
.faq-home summary::-webkit-details-marker { display: none; }
.faq-home summary::after {
  content: '+';
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--brand-orange); transition: transform .2s; font-weight: 400;
}
.faq-home details[open] summary::after { content: '−'; }
.faq-home p { font-size: 15px; color: var(--ink-2); margin: var(--s-2) 0 0; line-height: 1.6; padding-right: 32px; }

/* ============ JOURNAL ============ */
.journal { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.journal__article { display: flex; flex-direction: column; gap: var(--s-3); text-decoration: none; color: inherit; }
.journal__article:hover { color: inherit; text-decoration: none; }
.journal__media { aspect-ratio: 16/10; border-radius: var(--r-lg); overflow: hidden; background: var(--bg-cream); }
.journal__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.journal__article:hover .journal__media img { transform: scale(1.04); }
.journal__date { font-family: var(--font-heading); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-taupe); font-weight: 600; }
.journal__title { font-family: var(--font-heading); font-size: 18px; font-weight: 600; line-height: 1.3; color: var(--ink); margin: 0; }
@media (max-width: 720px) { .journal { grid-template-columns: 1fr; } }

/* ============ PDP ============ */
.breadcrumb { font-family: var(--font-heading); font-size: 12px; color: var(--brand-taupe); padding: var(--s-4) 0; letter-spacing: 0.02em; }
.breadcrumb a { color: var(--brand-taupe); }
.breadcrumb a:hover { color: var(--brand-orange-dark); }

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  column-gap: clamp(40px, 6vw, 96px);
  row-gap: var(--s-7);
  align-items: start;
  padding-top: var(--s-3);
}
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; column-gap: 0; row-gap: var(--s-5); } }

.pdp__gallery { display: grid; grid-template-columns: 92px 1fr; gap: var(--s-3); }
.pdp__thumbs { display: flex; flex-direction: column; gap: 10px; }
.pdp__thumb {
  aspect-ratio: 1/1;
  border: 2px solid transparent;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-cream);
  padding: 0;
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb[aria-current="true"] { border-color: var(--brand-orange); }
.pdp__main {
  aspect-ratio: 1/1;
  background: var(--bg-cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp__main .card__badges { position: absolute; top: 16px; left: 16px; }
@media (max-width: 768px) {
  .pdp__gallery { grid-template-columns: 1fr; gap: var(--s-2); }
  .pdp__thumbs { order: 2; flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; }
  .pdp__thumb { flex: 0 0 72px; scroll-snap-align: start; }
  .pdp__main { order: 1; }
}

.pdp__title { margin: 0 0 var(--s-3); font-size: clamp(26px, 3vw, 38px); }
.pdp__rating { font-size: 14px; color: var(--ink-2); margin: 0 0 var(--s-4); display: inline-flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.pdp__rating .stars { gap: 2px; }
.pdp__rating .stars .icon { width: 18px; height: 18px; }
.pdp__rating strong { color: var(--ink); font-family: var(--font-heading); font-weight: 600; }
.pdp__price { font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--ink); margin: 0 0 var(--s-4); }
.pdp__row { display: flex; flex-direction: column; gap: var(--s-2); margin-bottom: var(--s-4); }
.pdp__label { font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-taupe); font-weight: 600; }
.pdp__label small { font-weight: 400; letter-spacing: 0.02em; text-transform: none; color: var(--brand-taupe); }

/* swatches */
.swatches { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.swatch {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px var(--line-strong);
  cursor: pointer; padding: 0;
  transition: transform .15s, box-shadow .15s;
}
.swatch:hover { transform: scale(1.08); }
.swatch[aria-checked="true"] { box-shadow: 0 0 0 2px var(--brand-orange); }

/* eta / low stock */
.eta { font-size: 14px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; }
.eta strong { color: var(--ink); font-family: var(--font-heading); font-weight: 600; }
.eta .icon { color: var(--brand-orange); }
.low-stock { font-size: 13px; color: var(--warn); font-family: var(--font-heading); font-weight: 600; }

/* progress */
.progress { background: #fff; border: 1px solid var(--line); height: 10px; border-radius: var(--r-pill); overflow: hidden; }
.progress__fill { background: var(--brand-orange); height: 100%; border-radius: var(--r-pill); transition: width .3s; }

/* qty */
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line-strong); border-radius: var(--r-pill); background: #fff; overflow: hidden; }
.qty button { width: 40px; height: 44px; background: #fff; color: var(--ink); font-size: 18px; font-family: var(--font-heading); font-weight: 600; }
.qty button:hover { background: var(--bg-cream); }
.qty input { width: 48px; height: 44px; border: none; text-align: center; font-family: var(--font-heading); font-weight: 600; background: #fff; }

/* spec table */
.spec { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec tr { border-bottom: 1px solid var(--line); }
.spec th, .spec td { text-align: left; padding: 12px 8px; }
.spec th { font-family: var(--font-heading); font-weight: 600; color: var(--brand-taupe); width: 36%; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.spec td { color: var(--ink); }
@media (max-width: 480px) {
  .spec th, .spec td { display: block; width: 100%; padding: 4px 0; }
  .spec tr { padding: 8px 0; }
}

/* tabs */
.product-page__tab { border-bottom: 1px solid var(--line); }
.product-page__tab-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) 0; cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 17px;
  list-style: none;
}
.product-page__tab-header::-webkit-details-marker { display: none; }
.product-page__tab-header .icon { width: 18px; height: 18px; color: var(--brand-orange); transition: transform .2s; }
.product-page__tab[open] .product-page__tab-header .icon { transform: rotate(180deg); }
.product-page__tab-content { padding-bottom: var(--s-5); max-width: 760px; }
.product-page__tab-content p { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 0 0 12px; }
.product-page__tab-content ul { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 12px 0; padding-left: 22px; list-style: disc; }
.product-page__tab-content ul.use-cases { padding: 0; list-style: none; }
.product-page__tab-content li { margin-bottom: 6px; }

.use-cases { margin: var(--s-3) 0 0; display: grid; gap: var(--s-3); grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .use-cases { grid-template-columns: 1fr; } }
.use-cases li {
  display: flex; gap: var(--s-3); align-items: flex-start;
  padding: var(--s-3);
  background: var(--bg-cream-soft);
  border-radius: var(--r);
  margin: 0;
}
.use-cases__thumb { flex: 0 0 80px; aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; background: #fff; }
.use-cases__thumb img { width: 100%; height: 100%; object-fit: cover; }
.use-cases__body strong { display: block; font-family: var(--font-heading); margin-bottom: 4px; font-size: 14px; color: var(--ink); }
.use-cases__body p { margin: 0 !important; color: var(--ink-2); font-size: 13px; line-height: 1.5; }

/* sticky mobile ATC */
.sticky-atc {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--line);
  padding: 10px 16px;
  display: none; align-items: center; gap: 12px;
  z-index: 30;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -2px 20px rgba(0,0,0,0.06);
}
.sticky-atc__price { font-family: var(--font-heading); font-weight: 700; flex: 1; font-size: 17px; color: var(--ink); }
@media (max-width: 768px) { .sticky-atc { display: flex; } }

/* sticky cart checkout */
.sticky-checkout {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--line);
  padding: 10px 16px;
  display: none; align-items: center; gap: 12px;
  z-index: 30;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.sticky-checkout span { font-family: var(--font-heading); font-weight: 700; font-size: 17px; }
@media (max-width: 768px) { .sticky-checkout { display: flex; } }

/* reviews */
.reviews { display: grid; grid-template-columns: 1fr 2fr; gap: var(--s-6); }
@media (max-width: 720px) { .reviews { grid-template-columns: 1fr; } }
.reviews__summary { background: var(--bg-cream-soft); padding: var(--s-5); border-radius: var(--r-lg); }
.review { padding: var(--s-4) 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.review__head { display: flex; justify-content: space-between; margin-bottom: 6px; font-family: var(--font-heading); font-weight: 600; }
.review__verified { font-size: 11px; color: var(--good); display: inline-flex; align-items: center; gap: 4px; }
.review__verified .icon { width: 12px; height: 12px; }
.review p { color: var(--ink-2); line-height: 1.6; }

/* Q&A */
.qa { background: var(--bg-cream-soft); border-radius: var(--r-lg); padding: var(--s-3) var(--s-5); }
.qa details { border-bottom: 1px solid var(--line); padding: var(--s-3) 0; }
.qa details:last-child { border-bottom: 0; }
.qa summary { font-family: var(--font-heading); font-weight: 600; font-size: 14px; cursor: pointer; color: var(--ink); }
.qa-answer { font-size: 14px; color: var(--ink-2); margin-top: var(--s-2); line-height: 1.6; }

/* forms */
.review-form, .qa-form {
  margin-top: var(--s-5); padding: var(--s-5);
  background: var(--bg-cream-soft); border-radius: var(--r-lg);
  display: grid; gap: var(--s-3);
}
.review-form h3, .qa-form h3 { font-size: 17px; margin: 0; }
.review-form textarea, .qa-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--r);
  font-family: var(--font-body); resize: vertical;
  background: #fff;
}
.review-form textarea:focus, .qa-form textarea:focus { outline: none; border-color: var(--brand-orange); }
.review-form__rating { display: flex; gap: var(--s-3); align-items: center; font-size: 14px; }
.review-form__stars { color: #E89D2F; font-size: 22px; letter-spacing: 4px; }

/* ============ CART ============ */
.cart { display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--s-7); padding-bottom: var(--s-8); }
@media (max-width: 900px) { .cart { grid-template-columns: 1fr; gap: var(--s-5); } }
.cart-line {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
}
.cart-line__media { aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; background: var(--bg-cream); }
.cart-line__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__title { font-family: var(--font-heading); font-size: 15px; font-weight: 600; margin: 0 0 4px; color: var(--ink); }
.cart-line__meta { font-size: 12px; color: var(--brand-taupe); font-family: var(--font-heading); letter-spacing: 0.04em; }
.cart-line__remove { color: var(--brand-taupe); text-decoration: underline; font-size: 13px; background: none; padding: 0; }
.cart-line__remove:hover { color: var(--brand-orange-dark); }
.cart-line__total { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--ink); }

.summary {
  background: var(--bg-cream);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  position: sticky; top: 100px;
}
.summary__row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 15px; color: var(--ink-2); }
.summary__row--total { border-top: 1px solid var(--line-strong); margin-top: var(--s-3); padding-top: var(--s-3); font-weight: 700; font-size: 19px; color: var(--ink); font-family: var(--font-heading); }

.express { display: grid; gap: 8px; margin-bottom: var(--s-3); }
.express__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-pill);
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 600;
  min-height: 48px;
  color: var(--ink);
  transition: border-color .2s;
}
.express__btn:hover { border-color: var(--brand-orange); }

.xsell { background: var(--bg-cream-soft); border-radius: var(--r-lg); padding: var(--s-5); margin-top: var(--s-5); }
.xsell h3 { font-size: 18px; margin: 0; }
.xsell small { color: var(--brand-taupe); font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.04em; }
.xsell__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-top: var(--s-3); }
@media (max-width: 600px) { .xsell__row { grid-template-columns: 1fr; } }
.xsell .card { background: #fff; padding: 10px; }
.xsell .card .card__media { border-radius: var(--r); }
.xsell .card .btn { margin: 8px 10px 0; }

.cart-trust { font-size: 11px; color: var(--brand-taupe); margin-top: var(--s-4); display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
.cart-trust__pays { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.cart-trust__pays .pay-icon { width: 32px; height: 22px; }
.pay-icon { width: 36px; height: 24px; display: inline-block; flex-shrink: 0; }

/* mini cart */
#mini-cart-backdrop { position: fixed; inset: 0; background: rgba(26,22,20,.45); z-index: 79; display: none; }
#mini-cart {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 92vw;
  background: #fff;
  z-index: 80;
  padding: var(--s-5);
  display: none;
  flex-direction: column; gap: var(--s-4);
  box-shadow: var(--shadow-lg);
}

/* chat launcher */
.chat-launcher {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--brand-orange); color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 600;
  z-index: 25;
  display: inline-flex; align-items: center; gap: 8px;
  border: none;
}
.chat-launcher:hover { background: var(--brand-orange-dark); }
.chat-launcher .icon { width: 18px; height: 18px; }
@media (max-width: 768px) {
  .chat-launcher { bottom: 80px; right: 12px; padding: 10px 14px; }
  .chat-launcher span { display: none; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-cream);
  padding: var(--s-7) 0 var(--s-5);
  margin-top: var(--s-8);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: url('assets/illustrations/brand-cord-skein-loop.svg') no-repeat center / contain;
  opacity: 0.15;
  pointer-events: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: var(--s-6);
  position: relative;
}
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand, .footer__col--connect { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand, .footer__col--connect { grid-column: 1 / -1; }
}
.footer__brand .header__logo { font-size: 24px; }
.footer__heritage { font-size: 14px; color: var(--ink-2); margin: var(--s-3) 0; line-height: 1.55; max-width: 36ch; }
.footer__contact { font-size: 13px; color: var(--brand-taupe); margin: 0 0 var(--s-3); font-family: var(--font-heading); }
.footer h4 { font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-taupe); margin-bottom: var(--s-3); font-weight: 700; }
.footer li { margin-bottom: 8px; font-size: 14px; }
.footer a { color: var(--ink-2); text-decoration: none; }
.footer a:hover { color: var(--brand-orange-dark); }
.footer__social { display: flex; gap: 10px; margin-top: var(--s-3); }
.footer__social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--ink-2);
  transition: background .15s, color .15s;
}
.footer__social a:hover { background: var(--brand-orange); color: #fff; }
.footer__social .icon { width: 16px; height: 16px; }
.footer__newsletter { display: flex; gap: 6px; margin-top: var(--s-2); }
.footer__newsletter input { flex: 1; min-width: 0; font-size: 13px; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: var(--r-pill); background: #fff; font-family: var(--font-body); }
.footer__newsletter input:focus { outline: none; border-color: var(--brand-orange); }
.footer__newsletter button {
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  padding: 10px 18px;
  background: var(--brand-orange); color: #fff;
  border-radius: var(--r-pill);
  border: none;
}
.footer__newsletter button:hover { background: var(--brand-orange-dark); }
.footer__pays { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: var(--s-6) 0 var(--s-3); padding-top: var(--s-4); border-top: 1px solid var(--line); }
.footer__pays .pay-icon { width: 32px; height: 22px; }
.footer__legal { font-size: 12px; color: var(--brand-taupe); display: flex; gap: var(--s-4); flex-wrap: wrap; align-items: center; }
.footer__legal a { color: var(--brand-taupe); }

/* icons */
.icon { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon--filled { fill: currentColor; stroke: none; }

/* brand illustration helper */
.brand-ill {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.brand-stroke-underline {
  display: block;
  width: 110px;
  height: auto;
  margin: -2px 0 var(--s-3);
  color: var(--brand-orange);
}

/* utility */
.text-cream-bg { background: var(--bg-cream); }
.no-underline { text-decoration: none; }
