/* =================================================================
   PEDALLING WEARS — HEADLESS THEME CSS
   Matches pedallingwears.com design guide (index-03e0c9df.html)
   ================================================================= */

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: #0d1829;
  color: #f7f4f0;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --bg:              #0d1829;
  --bg-alt:          #131f35;
  --surface-light:   #ffffff;
  --footer-top:      #0b1522;
  --footer-bottom-bg:#080f1a;
  --border:          rgba(255,255,255,0.08);
  --text:            #f7f4f0;
  --text-muted:      rgba(247,244,240,0.48);
  --text-dark:       #1c1a17;
  --white:           #ffffff;
  --pink:            #e8196a;
  --pink-dark:       #c41458;
  --yellow:          #f5c800;
  --yellow-soft:     #ffd84a;
}

/* ── Screen-reader only ──────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =================================================================
   ANNOUNCEMENT BAR
   ================================================================= */
.announce {
  background: #0e0e0e;
  color: rgba(255,255,255,0.68);
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.announce strong { color: var(--yellow); }
.announce-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.2); flex-shrink: 0;
}

/* =================================================================
   NAVIGATION
   ================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  width: 100%;
}

.nav {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  padding: 0 2.4rem;
  height: 72px;
}
.nav-logo-img {
  height: 48px; width: auto; display: block;
}
.nav > a {
  display: inline-flex; align-items: center; justify-self: start;
}
.nav-logo-fallback {
  display: none;
  font-weight: 700; font-size: 1.05rem; letter-spacing: 0.04em;
  color: var(--text-dark);
}
.nav-logo-fallback span { color: var(--pink); }
.nav-logo-img.errored { display: none; }
.nav-logo-img.errored + .nav-logo-fallback { display: block; }

.nav-links {
  display: flex; gap: 0; list-style: none; justify-content: center;
}
.nav-links a {
  display: block;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(28,26,23,0.88);
  border-radius: 4px;
  position: relative;
  transition: color 0.18s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 1.1rem; right: 1.1rem; bottom: 0.35rem;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text-dark); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

/* ── Dropdown nav items ─────────────────────────────────────── */
.nav-item { position: relative; }
.nav-item--dd { position: relative; }

/* Chevron indicator on parent links */
.nav-link-parent { display: flex; align-items: center; gap: 0.3rem; }
.nav-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.nav-item--dd:hover .nav-link-parent .nav-chevron,
.nav-item--dd:focus-within .nav-link-parent .nav-chevron { transform: rotate(180deg); }

/* Mobile toggle chevron — hidden on desktop */
.nav-dd-toggle { display: none; }

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(28,26,23,0.1);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(28,26,23,0.1);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 500;
}
.nav-item--dd:hover .nav-dropdown,
.nav-item--dd:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dd-link {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(28,26,23,0.75) !important;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
/* Override the underline animation on dropdown links */
.nav-dd-link::after { display: none !important; }
.nav-dd-link:hover {
  color: var(--text-dark) !important;
  background: rgba(28,26,23,0.04);
}
.nav-dd-viewall {
  border-top: 1px solid rgba(28,26,23,0.08);
  margin-top: 0.25rem;
  color: var(--pink) !important;
  font-weight: 600;
}
.nav-dd-viewall:hover { color: var(--pink-dark, #c4175a) !important; background: rgba(232,25,106,0.04); }

.nav-toggle, .nav-close {
  display: none;
  appearance: none; -webkit-appearance: none;
  background: transparent; border: none; padding: 0;
}

.nav-right { display: flex; align-items: center; gap: 0.35rem; justify-self: end; }

.nav-icon-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  color: rgba(28,26,23,0.75);
  transition: color 0.18s ease, background 0.18s ease;
}
.nav-icon-btn:hover { background: rgba(28,26,23,0.05); color: var(--text-dark); }
.nav-icon-btn svg { stroke: currentColor; }

.nav-cart { position: relative; }
.nav-cart-count {
  position: absolute; top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  background: var(--pink); color: #fff;
  font-size: 0.6rem; font-weight: 700;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

.nav-shop-btn {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1.15rem;
  background: var(--pink); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.nav-shop-btn:hover { background: var(--pink-dark); }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.95rem 1.85rem;
  border: none; cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.btn svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.2; }

.btn-primary, .btn.btn--primary {
  background: linear-gradient(135deg, var(--pink) 0%, #ff2f82 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(232,25,106,0.22);
}
.btn-primary:hover, .btn.btn--primary:hover {
  background: linear-gradient(135deg, var(--pink-dark) 0%, #dd1e6c 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(232,25,106,0.32);
}

.btn-ghost, .btn.btn--ghost {
  background: rgba(255,255,255,0.02); color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover, .btn.btn--ghost:hover {
  border-color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.06); color: #fff;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent; color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.5); color: #fff;
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  display: grid;
  grid-template-columns: 41% 59%;
  min-height: calc(100svh - 72px - 34px);
  border-bottom: 1px solid var(--border);
}
.hero-copy {
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 4.6rem 3.3rem 4.8rem 2.8rem;
  position: relative; overflow: hidden;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero-ring-1 { width: 500px; height: 500px; top: -180px; left: -180px; }
.hero-ring-2 { width: 300px; height: 300px; bottom: -100px; right: -80px; }
.hero-ring-3 { width: 160px; height: 160px; bottom: -30px; right: 30px; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1.8rem;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.eyebrow-text {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.42);
}

.hero-h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.95rem, 4.05vw, 4.35rem);
  font-weight: 400; line-height: 1.01;
  letter-spacing: -0.022em;
  color: var(--text); margin-bottom: 0.34em;
}
.hero-h1 em { font-style: italic; color: var(--yellow); }

.hero-sub {
  font-size: 0.9rem; font-weight: 300; line-height: 1.78;
  color: rgba(255,255,255,0.56);
  max-width: 338px; margin-bottom: 2.25rem;
}

.hero-ctas { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-bottom: 2.9rem; }

.hero-trust {
  display: flex; gap: 1.9rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-trust-item {
  display: block; text-decoration: none;
  transition: transform 0.18s ease;
}
.hero-trust-item:hover { transform: translateY(-2px); }
.trust-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem; color: var(--text); line-height: 1; margin-bottom: 0.2rem;
}
.trust-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.34);
}

/* Hero brand panels */
.hero-brands {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 3px; background: #0a0a0a; height: 100%;
}
.hb-panel {
  position: relative; overflow: hidden;
  background: var(--bg-alt); display: block; min-height: 0;
}
.hb-panel img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: brightness(0.9) saturate(0.85);
  transition: transform 0.75s ease, filter 0.35s ease;
}
.hb-panel:hover img { transform: scale(1.04); filter: brightness(1) saturate(1); }

.hb-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.97) 0%,
    rgba(5,5,5,0.92) 25%,
    rgba(5,5,5,0.65) 42%,
    rgba(5,5,5,0.1)  55%,
    transparent      65%
  );
}
.hb-panel::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; z-index: 4;
  background: var(--accent, var(--pink));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.hb-panel:hover::after { transform: scaleX(1); }

.hb-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 1.1rem 1.1rem;
}
.hb-top { margin-bottom: 0.5rem; }
.hb-eyebrow {
  display: block;
  font-size: 0.52rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(247,244,240,0.5);
  margin-bottom: 0.28rem;
}
.hb-name {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 400;
  color: #ffffff; line-height: 1;
}
.hb-desc {
  font-size: 0.7rem; line-height: 1.6;
  color: rgba(247,244,240,0.72); margin-bottom: 0.7rem;
}
.hb-cta {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent, var(--yellow));
}
.hb-cta::after { content: ' →'; }

/* =================================================================
   TICKER
   ================================================================= */
.ticker-wrap {
  background: #0b0b0b;
  padding: 0.6rem 0;
  overflow: hidden; display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
}
.ticker-label {
  flex-shrink: 0; padding: 0 1.6rem;
  font-size: 0.54rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ticker-inner { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex; align-items: center;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-brand {
  display: inline-block;
  padding: 0 2.2rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45);
}
.ticker-sep {
  display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--yellow); opacity: 0.5;
}

/* =================================================================
   TRUST STRIP
   ================================================================= */
.trust-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: var(--surface-light);
}
.trust-cell {
  padding: 1.7rem 2.3rem;
  border-right: 1px solid rgba(0,0,0,0.05);
  display: flex; align-items: flex-start; gap: 0.9rem;
}
.trust-cell:last-child { border-right: none; }
.tc-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(28,26,23,0.035); border-radius: 50%; margin-top: 0.15rem;
}
.tc-icon svg { width: 13px; height: 13px; stroke: var(--pink); fill: none; stroke-width: 1.8; }
.trust-cell h3 { font-size: 0.78rem; font-weight: 700; margin-bottom: 0.22rem; color: var(--text-dark); }
.trust-cell p  { font-size: 0.75rem; line-height: 1.62; color: rgba(28,26,23,0.62); }

/* =================================================================
   SECTIONS (homepage)
   ================================================================= */
.section { padding: 4.2rem 2.3rem; }
.section-raised,
.section-soft {
  background: var(--surface-light);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1.9rem;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.35rem; font-weight: 400; color: var(--text-dark);
}
.view-all {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink); display: flex; align-items: center; gap: 0.32rem;
}
.view-all::after { content: '→'; }

/* =================================================================
   CATEGORY GRID
   ================================================================= */
.cat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 2px;
  background: rgba(28,26,23,0.06);
}
.cat-tile:first-child { grid-row: span 2; }
.cat-tile {
  overflow: hidden; position: relative; cursor: pointer;
  background: var(--bg-alt);
  display: block;
}
.cat-tile::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #242424 0%, #0f0f0f 100%);
}
.cat-tile img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s ease;
}
.cat-tile:hover img { transform: scale(1.04); }
.cat-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(15,15,15,0.52) 0%, rgba(15,15,15,0.1) 38%, transparent 65%);
}
.cat-label {
  position: absolute; bottom: 1.2rem; left: 1.2rem; z-index: 3;
}
.cat-label h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; font-weight: 400; color: #fff;
  line-height: 1.2; margin-bottom: 0.3rem;
}
.cat-tile:first-child .cat-label h3 { font-size: 1.9rem; }
.cat-label span {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yellow);
}
.cat-label span::after { content: ' →'; }

/* =================================================================
   PRODUCT CARDS (homepage "latest in" & collection pages)
   ================================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
/* ── Card shell ── */
.pcard {
  cursor: pointer;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative; display: flex; flex-direction: column;
  text-decoration: none;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
}
/* ── Card image ── */
.pcard-img {
  aspect-ratio: 1/1; overflow: hidden; position: relative;
  background: #f0eeeb;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pcard-img img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.04); }
.pcard-cue {
  position: absolute; top: 0.65rem; right: 0.65rem; z-index: 6;
  font-size: 0.52rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.22rem 0.55rem;
  border-radius: 999px; background: rgba(255,255,255,0.95);
  border: 1px solid rgba(28,26,23,0.08); color: var(--pink);
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.pcard:hover .pcard-cue { opacity: 1; transform: translateY(0); }
/* ── Card text area ── */
.pcard-body {
  padding: 0.75rem 0.85rem 0.9rem;
  display: flex; flex-direction: column; flex: 1;
  background: #fff;
}
.pcard-brand {
  font-size: 0.57rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 0.2rem;
}
.pcard-name {
  font-size: 0.8rem; line-height: 1.4; color: #1c1a17;
  margin-bottom: 0.3rem;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  transition: color 0.18s ease;
}
.pcard:hover .pcard-name { color: var(--pink); }
.pcard-meta {
  display: flex; align-items: center; gap: 0.3rem;
  margin-bottom: 0.35rem;
  font-size: 0.68rem; color: rgba(28,26,23,0.5);
}
.pcard-meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(28,26,23,0.25); flex-shrink: 0;
}
.pcard-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 0.5rem;
  border-top: 1px solid rgba(28,26,23,0.07);
}
.pcard-price {
  font-family: 'DM Serif Display', serif; font-size: 1.18rem; color: #1c1a17;
}
.pcard-compare {
  font-size: 0.78rem; color: rgba(28,26,23,0.38);
  text-decoration: line-through;
}
.pcard-size {
  font-size: 0.54rem; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(28,26,23,0.34); background: rgba(28,26,23,0.04); padding: 0.13rem 0.42rem;
  border-radius: 3px;
}

/* ── Featured card (spans full grid width, every 9th item) ────── */
.pcard--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  min-height: unset;
}
.pcard--featured .pcard-img {
  flex: 0 0 42%;
  aspect-ratio: 1/1;
  height: auto;
  border-bottom: none;
  border-right: 1px solid rgba(0,0,0,0.05);
}
.pcard--featured .pcard-body {
  padding: 2.5rem 3rem 2rem;
  justify-content: center;
  gap: 0;
}
.pcard-featured-eyebrow {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--pink);
  margin: 0 0 0.9rem;
}
.pcard--featured .pcard-brand {
  font-size: 0.7rem; margin-bottom: 0.35rem;
}
.pcard--featured .pcard-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem; line-height: 1.2;
  -webkit-line-clamp: unset; overflow: visible;
  margin-bottom: 0.75rem;
}
.pcard--featured .pcard-meta {
  font-size: 0.8rem; margin-bottom: 0.5rem;
}
.pcard--featured .pcard-foot {
  padding-top: 1rem; margin-top: 0.5rem;
  border-top: 1px solid rgba(28,26,23,0.07);
}
.pcard--featured .pcard-price { font-size: 1.5rem; }
/* on mobile stack featured card vertically */
@media (max-width: 900px) {
  .pcard--featured { flex-direction: column; min-height: unset; }
  .pcard--featured .pcard-img {
    flex: unset; height: auto; aspect-ratio: 1/1;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .pcard--featured .pcard-body { padding: 1.25rem 1.1rem 1.25rem; }
  .pcard--featured .pcard-name { font-size: 1.2rem; }
}

/* =================================================================
   CONDITION BADGES
   ================================================================= */
.cond {
  position: absolute; top: 0.65rem; left: 0.65rem; z-index: 5;
  font-size: 0.52rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.2rem 0.5rem;
  border-radius: 999px; background: rgba(255,255,255,0.92);
  border: 1px solid rgba(28,26,23,0.10);
}
.cond-as-new    { color: rgba(13,100,90,0.92); }
.cond-excellent { color: rgba(26,122,46,0.92); }
.cond-very-good { color: rgba(138,105,0,0.92); }
.cond-good      { color: rgba(75,100,135,0.92);  }
.cond-well-loved{ color: rgba(150,80,30,0.92); }

/* =================================================================
   GRADING SECTION
   ================================================================= */
.grade-section {
  background: linear-gradient(180deg, #0d1829 0%, #091220 100%);
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.grade-inner {
  display: grid; grid-template-columns: 285px 1fr;
  gap: 4.25rem; align-items: start;
}
.grade-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem; font-weight: 400; line-height: 1.1;
  color: var(--white); margin-bottom: 1rem;
}
.grade-intro-text {
  font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.52);
  margin-bottom: 2rem;
}
.btn-grade-link {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--yellow);
}
.btn-grade-link::after { content: ' →'; }
.grade-cards {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.grade-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.2rem 1.3rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.grade-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.grade-pip {
  width: 10px; height: 10px; border-radius: 50%; margin-bottom: 1rem;
}
.pip-teal        { background: rgba(13,100,90,1);   }
.pip-green       { background: rgba(26,122,46,1);   }
.pip-amber       { background: rgba(138,105,0,1);   }
.pip-slate       { background: rgba(75,100,135,1);  }
.pip-burnt       { background: rgba(150,80,30,1);   }
.grade-card h4 { font-size: 0.76rem; font-weight: 700; color: var(--white); margin-bottom: 0.34rem; }
.grade-card p  { font-size: 0.74rem; line-height: 1.6; color: rgba(255,255,255,0.44); }

/* =================================================================
   FOUNDER
   ================================================================= */
.founder {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 440px;
}
.founder-img {
  background: #131f35; overflow: hidden; position: relative; min-height: 440px;
}
.founder-img img { width: 100%; height: 100%; object-fit: cover; }
.founder-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  color: rgba(247,244,240,0.4);
}
.founder-ph svg { width: 48px; height: 48px; stroke: rgba(255,255,255,0.16); fill: none; stroke-width: 1; }
.founder-ph p { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.founder-copy {
  background: #0b0b0b;
  padding: 5.2rem 4.2rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.founder-eyebrow {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 1.25rem;
}
.founder-open-quote {
  display: block; font-size: 3.5rem; line-height: 0.6;
  color: var(--yellow); margin-bottom: 0.8rem;
}
.founder-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 2.4vw, 2.35rem); font-weight: 400;
  font-style: italic; line-height: 1.34; color: var(--white);
  margin-bottom: 1.6rem;
}
.founder-sig {
  font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 0.06em;
}
.founder-sig strong { color: rgba(255,255,255,0.76); }
.founder-cta { margin-top: 1.6rem; }
.founder-cta a {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--yellow);
}
.founder-cta a::after { content: ' →'; }

/* =================================================================
   EMAIL / NEWSLETTER SECTION
   ================================================================= */
.email-section {
  background: linear-gradient(135deg, #d91561 0%, #eb2574 100%);
  padding: 4rem 2.5rem;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 3rem; align-items: center;
  position: relative;
}
.email-section::after {
  content: 'Limited quantities · One-off pieces · No restocks';
  position: absolute; bottom: 1rem; left: 2.5rem;
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.email-h {
  font-family: 'DM Serif Display', serif; font-size: 2rem; color: #fff; margin-bottom: 0.5rem;
}
.email-p { font-size: 0.85rem; color: rgba(255,255,255,0.72); max-width: 480px; }
.email-form { display: flex; }
.email-input {
  flex: 1; padding: 0.95rem 1.2rem; border: none;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.18); color: #fff; outline: none;
  border-bottom: 2px solid rgba(255,255,255,0.35);
}
.email-input::placeholder { color: rgba(255,255,255,0.55); }
.email-input:focus { border-bottom-color: #fff; }
.email-btn {
  padding: 0.95rem 1.5rem;
  background: rgba(19,19,19,0.92); color: #fff;
  border: none; cursor: pointer;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px;
}
.email-btn:hover { background: #000; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  background: var(--footer-top);
  padding: 3.5rem 2.5rem 0;
  display: grid; grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo-img { height: 36px; width: auto; display: block; margin-bottom: 1rem; }
.footer-bio {
  font-size: 0.76rem; line-height: 1.7; color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.6rem; }
.f-social {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: border-color 0.2s, color 0.2s;
}
.f-social:hover { border-color: var(--yellow-soft); color: var(--yellow-soft); }
.f-col h4 {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 1.2rem;
}
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 0.7rem; }
.f-col a { font-size: 0.8rem; color: rgba(255,255,255,0.48); transition: color 0.2s; }
.f-col a:hover { color: #fff; }
.footer-bottom {
  background: var(--footer-bottom-bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 3rem;
  padding: 1.2rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.7rem; color: rgba(255,255,255,0.22);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* =================================================================
   SKELETON LOADING
   ================================================================= */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton-card, .skeleton-text {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.09) 37%, rgba(255,255,255,0.04) 63%);
  background-size: 400px 100%;
  animation: shimmer 1.4s ease infinite;
}
.skeleton-card {
  aspect-ratio: 1/1;
  border-radius: 0;
}
.skeleton-text {
  display: block; border-radius: 4px;
}

/* =================================================================
   TOAST / NOTIFICATION
   ================================================================= */
#cart-toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: var(--text-dark); color: #fff;
  padding: 0.75rem 1.1rem;
  border-radius: 8px;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
#cart-toast.is-visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
#cart-toast svg { stroke: #2ecc71; flex-shrink: 0; }

/* =================================================================
   COLLECTION PAGE
   ================================================================= */
.coll-breadcrumb {
  padding: 0.75rem 2rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.coll-breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.18s; }
.coll-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.coll-breadcrumb span:not([aria-current]) { opacity: 0.4; }

.coll-header {
  padding: 3rem 2rem 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.coll-header--hero {
  background-size: cover; background-position: center;
  min-height: 220px;
  display: flex; align-items: flex-end;
}
.coll-header--hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.coll-header-body { position: relative; z-index: 1; }
.coll-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem; font-weight: 400; color: var(--text); line-height: 1.1;
  margin-bottom: 0.5rem;
}
.coll-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); max-width: 680px; margin-bottom: 0.5rem; }
.coll-count { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }

.coll-toolbar { border-bottom: 1px solid var(--border); background: var(--bg); }
.coll-toolbar-inner {
  padding: 0.55rem 2rem;
  display: flex; flex-direction: column; gap: 0;
}
.coll-toolbar-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; padding: 0.35rem 0;
}
.coll-toolbar-row--sizes {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.55rem; margin-top: 0.1rem;
}
.coll-filters { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.coll-filter-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-right: 0.25rem;
}
.coll-filter-pill {
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.55); background: transparent;
  cursor: pointer; transition: all 0.18s;
}
.coll-filter-pill:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.9); }
.coll-filter-pill.is-active {
  background: var(--pink); border-color: var(--pink); color: #fff;
}
.coll-pill--excellent.is-active   { background: rgba(26,122,46,0.9);  border-color: rgba(26,122,46,0.9);  }
.coll-pill--very-good.is-active   { background: rgba(138,105,0,0.9);  border-color: rgba(138,105,0,0.9);  }
.coll-pill--good.is-active        { background: rgba(75,100,135,0.9);  border-color: rgba(75,100,135,0.9);  }
.coll-pill--as-new.is-active      { background: rgba(13,100,90,0.9);  border-color: rgba(13,100,90,0.9);  }
.coll-pill--well-loved.is-active  { background: rgba(150,80,30,0.9);  border-color: rgba(150,80,30,0.9);  }

.coll-sort { display: flex; align-items: center; gap: 0.5rem; }
.coll-sort-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.coll-sort-wrap { position: relative; }
.coll-sort-select {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75); font-size: 0.78rem;
  padding: 0.35rem 2rem 0.35rem 0.75rem; border-radius: 6px;
  cursor: pointer;
}
.coll-sort-select:focus { outline: none; border-color: var(--pink); }
.coll-sort-select option { background: #222; color: #fff; }
.coll-sort-chevron {
  position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; stroke: rgba(255,255,255,0.5);
}

.coll-body {
  padding: 2.5rem 2rem 4rem;
  background: #f4f2ef;
  min-height: 60vh;
}
/* Skeleton shimmer adapted for light bg */
.coll-body .skeleton-card {
  background: linear-gradient(90deg, rgba(0,0,0,0.05) 25%, rgba(0,0,0,0.09) 37%, rgba(0,0,0,0.05) 63%);
  background-size: 400px 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.05);
}

.coll-loadmore {
  display: flex; justify-content: center;
  padding: 2.5rem 0 4rem;
}
.coll-loadmore .btn {
  background: var(--bg);
  color: #fff;
  border: none;
  letter-spacing: 0.12em;
}
.coll-loadmore .btn:hover {
  background: var(--bg-alt);
  transform: translateY(-1px);
}
.coll-empty {
  text-align: center; padding: 5rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.coll-empty-msg { color: rgba(28,26,23,0.45); font-size: 0.92rem; }

/* =================================================================
   PRODUCT PAGE
   ================================================================= */
.prod-page {
  padding-bottom: 0;
  background: #f4f2ef;
}
.prod-breadcrumb {
  padding: 0.75rem 2rem;
  font-size: 0.72rem; color: rgba(28,26,23,0.48);
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(28,26,23,0.1);
  background: #f4f2ef;
}
.prod-breadcrumb a { color: rgba(28,26,23,0.48); transition: color 0.18s; }
.prod-breadcrumb a:hover { color: var(--text-dark); }
.prod-breadcrumb span:not([aria-current]) { opacity: 1; color: rgba(28,26,23,0.48); }

/* ── Unified product card ─────────────────────────────────── */
.prod-card {
  max-width: 1280px;
  margin: 1.75rem auto 2.5rem;
  background: #fff;
  border: 1px solid rgba(28,26,23,0.1);
  border-radius: 6px;
  overflow: hidden;
}

.prod-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; padding: 2.5rem 2rem 2.5rem;
  align-items: stretch;
}

.prod-gallery {
  display: flex; flex-direction: column;
}
.prod-main-img-wrap {
  position: relative; flex: 1; min-height: 300px;
  background: #f0eeeb; overflow: hidden; margin-bottom: 0.4rem;
  cursor: zoom-in; border-radius: 6px;
}
.prod-main-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.prod-main-img-wrap:hover .prod-main-img { transform: scale(1.02); }

/* ── Lightbox ─────────────────────────────────────────────── */
.prod-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,14,22,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.prod-lightbox.open { opacity: 1; visibility: visible; }
.prod-lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.prod-lightbox-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1.25rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
}
.prod-lightbox-close:hover { background: rgba(255,255,255,0.2); }
.prod-lightbox-prev,
.prod-lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
}
.prod-lightbox-prev:hover,
.prod-lightbox-next:hover { background: rgba(255,255,255,0.2); }
.prod-lightbox-prev { left: 1.25rem; }
.prod-lightbox-next { right: 1.25rem; }
.prod-lightbox-counter {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em;
}
.prod-main-img-wrap .cond { top: 0.9rem; left: 0.9rem; }

.prod-thumbs {
  display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center;
}
.prod-thumb {
  width: 68px; height: 68px; flex-shrink: 0;
  border: 2px solid transparent; border-radius: 4px;
  overflow: hidden; background: #f0eeeb;
  cursor: pointer; padding: 0; transition: border-color 0.18s;
}
.prod-thumb.is-active { border-color: var(--text-dark); }
.prod-thumb:hover:not(.is-active) { border-color: rgba(28,26,23,0.25); }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Info panel — white card on light page */
.prod-info {
  background: #ffffff;
  border-radius: 6px;
  padding: 2rem 2rem 2rem;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex; flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.prod-vendor {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 0.5rem;
}
.prod-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; font-weight: 400; line-height: 1.2;
  color: #1c1a17; margin-bottom: 1rem;
}
.prod-price-row {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.prod-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; color: #1c1a17;
}
.prod-compare {
  font-size: 1rem; color: rgba(28,26,23,0.38);
  text-decoration: line-through;
}
.prod-avail { font-size: 0.82rem; color: rgba(28,26,23,0.55); margin-bottom: 1.25rem; }
.prod-avail--sold-out { color: rgba(232,25,106,0.85); }

.prod-option-group { margin-bottom: 1.25rem; }
.prod-option-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(28,26,23,0.5);
  margin-bottom: 0.6rem;
}
.prod-option-btns { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.prod-option-btn {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(28,26,23,0.18); border-radius: 4px;
  font-size: 0.8rem; font-weight: 600;
  color: rgba(28,26,23,0.72); background: transparent;
  cursor: pointer; transition: all 0.18s;
}
.prod-option-btn:hover { border-color: rgba(28,26,23,0.5); color: #1c1a17; }
.prod-option-btn.is-selected {
  background: #1c1a17; border-color: #1c1a17; color: #fff;
}
.prod-option-btn.is-unavailable {
  opacity: 0.3; cursor: not-allowed;
  text-decoration: line-through;
}

.prod-atc {
  width: 100%; padding: 1.05rem;
  background: linear-gradient(135deg, var(--pink) 0%, #ff2f82 100%);
  color: #fff; border: none;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px; cursor: pointer;
  box-shadow: 0 8px 22px rgba(232,25,106,0.22);
  transition: all 0.2s;
  margin-bottom: 1.5rem;
}
.prod-atc:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(232,25,106,0.32);
}
.prod-atc:disabled {
  background: rgba(28,26,23,0.08);
  box-shadow: none; cursor: not-allowed; color: rgba(28,26,23,0.35);
}

.prod-trust {
  display: flex; flex-direction: column; gap: 0.65rem;
  padding: 1.2rem 0; border-top: 1px solid rgba(28,26,23,0.1);
  border-bottom: 1px solid rgba(28,26,23,0.1); margin-bottom: 1.2rem;
}
.prod-trust-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; color: rgba(28,26,23,0.62);
}
.prod-trust-item svg { stroke: var(--pink); flex-shrink: 0; }

/* Shipping breakdown inside trust strip */
.prod-trust-item--shipping { align-items: flex-start; }
.prod-shipping-breakdown {
  display: flex; flex-direction: column; gap: 0.25rem; flex: 1;
}
.prod-shipping-row {
  display: flex; align-items: baseline; gap: 0.4rem;
}
.prod-shipping-service {
  color: rgba(28,26,23,0.72); min-width: 4.5rem;
}
.prod-shipping-detail {
  color: rgba(28,26,23,0.55);
}
.prod-shipping-row--free .prod-shipping-service { color: rgba(22,110,50,0.9); }
.prod-shipping-row--free .prod-shipping-detail  { color: rgba(22,110,50,0.75); }

.prod-grade-link {
  font-size: 0.75rem; color: rgba(28,26,23,0.45); margin-bottom: 1.5rem;
}
.prod-grade-link a { color: var(--pink); }
.prod-grade-link a:hover { text-decoration: underline; }

/* ── Description strip (below product layout, same card) ──────── */
.prod-desc-strip {
  background: #fff;
  border-top: 1px solid rgba(28,26,23,0.08);
  padding: 2rem 2rem 2.5rem;
}
.prod-desc-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(28,26,23,0.45);
  margin-bottom: 0.75rem;
}
.prod-desc-body {
  font-size: 0.9rem; line-height: 1.85; color: rgba(28,26,23,0.72);
  columns: 2; column-gap: 3rem; column-fill: balance;
}
.prod-desc-body p { margin-bottom: 0.85rem; }
.prod-desc-body p:last-child { margin-bottom: 0; }
.prod-desc-body ul { padding-left: 0; list-style: none; break-inside: avoid; margin-bottom: 0.85rem; }
.prod-desc-body li { position: relative; padding-left: 1.1rem; margin-bottom: 0.5rem; }
.prod-desc-body li::before {
  content: ''; position: absolute; left: 0; top: 0.68em;
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(28,26,23,0.4);
}
@media (max-width: 700px) {
  .prod-desc-strip { padding: 1.5rem 1rem; }
  .prod-desc-body { columns: 1; }
}

/* ── Related products ───────────────────────────────────────── */
.prod-related {
  background: #f4f2ef;
  border-top: 1px solid rgba(28,26,23,0.08);
  padding: 3rem 2rem 4rem;
}
.prod-related-inner {
  max-width: 1280px; margin: 0 auto;
}
.prod-related-heading {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}
.prod-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .prod-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .prod-related-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .prod-related { padding: 2rem 1rem 3rem; }
}

/* Skeleton on light page bg */
.prod-skeleton {
  padding: 2.5rem 2rem; display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.prod-skeleton .skeleton-card,
.prod-skeleton .skeleton-text {
  background: linear-gradient(90deg, rgba(0,0,0,0.05) 25%, rgba(0,0,0,0.09) 37%, rgba(0,0,0,0.05) 63%);
  background-size: 400px 100%;
  animation: shimmer 1.4s ease infinite;
}
.prod-skeleton-gallery {}
.prod-skeleton-info { display: flex; flex-direction: column; gap: 0.75rem; }

/* =================================================================
   CART PAGE
   ================================================================= */
.cart-page { padding-bottom: 4rem; }
.cart-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.cart-heading { padding: 2.5rem 0 1.5rem; }
.cart-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; font-weight: 400; color: var(--text);
  margin-bottom: 0.25rem;
}
.cart-subtitle { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

.cart-skeleton { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 1rem 0; }
.cart-skeleton-items { display: flex; flex-direction: column; gap: 1.5rem; }
.cart-skeleton-row { display: flex; gap: 1rem; }
.cart-skeleton-summary {}

.cart-empty {
  text-align: center; padding: 5rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  color: rgba(255,255,255,0.45);
}
.cart-empty svg { stroke: rgba(255,255,255,0.2); }
.cart-empty p { font-size: 1rem; }

.cart-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 3.5rem; align-items: start;
}

/* Cart line items */
.cart-items { display: flex; flex-direction: column; gap: 0; }
.cart-line {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 1.2rem; align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s;
}
.cart-line-img-wrap { display: block; }
.cart-line-img-wrap img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; }
.cart-line-img-placeholder { width: 80px; height: 80px; background: rgba(255,255,255,0.06); border-radius: 4px; }

.cart-line-info { display: flex; flex-direction: column; gap: 0.3rem; }
.cart-line-vendor {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--pink);
}
.cart-line-title {
  font-size: 0.88rem; font-weight: 600; color: var(--text); line-height: 1.35;
}
.cart-line-title:hover { color: var(--pink); }
.cart-line-options {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.74rem; color: rgba(255,255,255,0.45);
}
.cart-line-dot { font-size: 0.6rem; opacity: 0.5; }
.cart-line-unit-price { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

.cart-line-actions { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; }

.cart-qty {
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 6px;
  overflow: hidden;
}
.cart-qty-btn {
  width: 32px; height: 32px; border: none;
  background: transparent; color: rgba(255,255,255,0.7);
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.cart-qty-btn:hover:not(:disabled) { background: rgba(255,255,255,0.06); color: #fff; }
.cart-qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.cart-qty-val {
  padding: 0 0.6rem; font-size: 0.82rem; font-weight: 600;
  color: var(--text); min-width: 28px; text-align: center;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.cart-remove-btn {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.7rem; color: rgba(255,255,255,0.35);
  background: none; border: none; cursor: pointer;
  transition: color 0.15s;
}
.cart-remove-btn:hover { color: rgba(232,25,106,0.8); }
.cart-remove-btn svg { stroke: currentColor; }

.cart-line-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: var(--text); white-space: nowrap;
}

/* Cart summary */
.cart-summary {
  position: sticky; top: calc(72px + 1.5rem);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 1.5rem;
}
.cart-summary-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}
.cart-summary-rows { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1rem; }
.cart-summary-row {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.cart-delivery-free { color: #2ecc71; font-weight: 600; }
.cart-delivery-note { color: rgba(255,255,255,0.35); font-size: 0.72rem; }
.cart-summary-divider { height: 1px; background: var(--border); margin-bottom: 0.85rem; }
.cart-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
}
.cart-summary-total span:last-child {
  font-family: 'DM Serif Display', serif; font-size: 1.5rem;
}
.cart-summary-note { font-size: 0.68rem; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }

.cart-checkout-btn {
  width: 100%; justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink) 0%, #ff2f82 100%);
  color: #fff; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 1rem;
  box-shadow: 0 8px 22px rgba(232,25,106,0.22);
  display: flex; align-items: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(232,25,106,0.32);
}

.cart-continue {
  display: block; text-align: center; margin-top: 0.85rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.38);
  transition: color 0.18s;
}
.cart-continue:hover { color: rgba(255,255,255,0.7); }

.cart-trust {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.cart-trust-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.38);
}
.cart-trust-item svg { stroke: var(--pink); flex-shrink: 0; }

/* =================================================================
   SEARCH PAGE
   ================================================================= */
.search-page { padding-bottom: 4rem; }
.search-header {
  background: var(--bg);
  padding: 3rem 2rem 2rem;
  border-bottom: 1px solid var(--border);
}
.search-header-inner { max-width: 780px; }
.search-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem; font-weight: 400; color: var(--text);
  margin-bottom: 1.5rem;
}
.search-form { display: flex; gap: 0.75rem; align-items: center; }
.search-input-wrap {
  flex: 1; position: relative;
  display: flex; align-items: center;
}
.search-icon {
  position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; stroke: rgba(255,255,255,0.4);
}
.search-input {
  width: 100%; padding: 0.85rem 2.5rem 0.85rem 2.8rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--text); border-radius: 8px;
  font-size: 0.9rem;
  transition: border-color 0.18s, background 0.18s;
}
.search-input:focus { outline: none; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); }
.search-input::placeholder { color: rgba(255,255,255,0.32); }
.search-clear {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  border: none; background: transparent;
  color: rgba(255,255,255,0.4); cursor: pointer;
  transition: color 0.15s;
}
.search-clear:hover { color: rgba(255,255,255,0.8); }
.search-submit { flex-shrink: 0; }

.search-body { padding: 2rem; }

.search-default {}
.search-hint { font-size: 0.88rem; color: rgba(255,255,255,0.45); margin-bottom: 2rem; }
.search-suggestions { }
.search-suggestions-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.75rem;
}
.search-suggestion-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.search-pill {
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.6);
  background: transparent; cursor: pointer; transition: all 0.18s;
}
.search-pill:hover { border-color: var(--pink); color: var(--text); }

.search-results-meta {
  font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem;
}

.search-noresults { text-align: center; padding: 4rem 2rem; }
.search-noresults-msg { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 0.5rem; }
.search-noresults-sub { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin-bottom: 2rem; }

/* =================================================================
   PW-FOOTER (product, collection & policy pages)
   ================================================================= */
.pw-footer {
  background: var(--footer-top);
  border-top: 1px solid var(--border);
}
.footer-inner {
  padding: 3.5rem 2.5rem 0;
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-col--logo .footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--text);
  display: inline-block; margin-bottom: 0.75rem;
}
.footer-col--logo .footer-logo span { color: var(--pink); }
.footer-about {
  font-size: 0.76rem; line-height: 1.7;
  color: rgba(255,255,255,0.35); margin-bottom: 1.5rem;
}
.footer-heading {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-social {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: border-color 0.2s, color 0.2s;
}
.footer-social:hover { border-color: var(--yellow-soft); color: var(--yellow-soft); }

.footer-payment-logos {
  display: block;
  margin-top: 1.1rem;
  width: 100%;
  max-width: 220px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.48;
}

.footer-legal-links { display: flex; gap: 1.5rem; align-items: center; }
.footer-legal-links a,
.footer-legal-links .footer-cookie-btn { font-size: 0.72rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-legal-links a:hover,
.footer-legal-links .footer-cookie-btn:hover { color: #fff; }
.pw-footer .footer-bottom {
  margin-top: 3rem;
  background: var(--footer-bottom-bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.2rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.pw-footer .footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.38); }
.pw-footer .footer-bottom a { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.pw-footer .footer-bottom a:hover { color: #fff; }

/* =================================================================
   POLICY / INFO PAGES (privacy, shipping, about, contact, terms)
   ================================================================= */
.policy-page { padding-bottom: 0; }

/* ── Hero banner ─────────────────────────────────────────────── */
.policy-hero {
  background: linear-gradient(180deg, #0f1e30 0%, #0d1829 100%);
  border-bottom: 2px solid var(--pink);
  padding: 3rem 2rem 3.5rem;
  text-align: center;
}
.policy-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  margin-bottom: 2rem;
}
.policy-breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.18s; }
.policy-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.policy-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 1rem;
}
.policy-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 400;
  color: var(--text); line-height: 1.1; margin-bottom: 1rem;
}
.policy-meta {
  font-size: 0.78rem; color: rgba(255,255,255,0.32);
}

/* ── Content area ─────────────────────────────────────────────── */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}
.policy-body {
  font-size: 0.9rem; line-height: 1.9;
  color: rgba(255,255,255,0.62);
}
.policy-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--text);
  margin: 3rem 0 0.75rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.policy-body h3 {
  font-size: 0.82rem; font-weight: 700;
  color: rgba(255,255,255,0.75); letter-spacing: 0.04em;
  margin: 1.75rem 0 0.5rem;
}
.policy-body p { margin-bottom: 1.1rem; }
.policy-body ul,
.policy-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.policy-body ul li { list-style: disc; margin-bottom: 0.5rem; }
.policy-body ol li { list-style: decimal; margin-bottom: 0.5rem; }
.policy-body a { color: var(--yellow); text-decoration: underline; text-underline-offset: 2px; }
.policy-body a:hover { color: var(--yellow-soft); }
.policy-body strong { color: rgba(255,255,255,0.82); font-weight: 600; }
.policy-address {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-left: 3px solid var(--pink);
  border-radius: 6px; padding: 1.25rem 1.5rem; margin-bottom: 1.25rem;
  font-style: normal; line-height: 1.9;
}

/* =================================================================
   RESPONSIVE
   ================================================================= */

/* ─ Tablet / mid ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero            { grid-template-columns: 1fr; min-height: auto; }
  .founder         { grid-template-columns: 1fr; }
  .email-section   { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 4rem; }
  .email-section::after { display: none; }
  .grade-inner     { grid-template-columns: 1fr; gap: 2rem; }
  .footer          { grid-template-columns: 1fr 1fr; }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
  .trust-strip     { grid-template-columns: 1fr; }
  .trust-cell      { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .trust-cell:last-child { border-bottom: none; }

  .prod-layout     { grid-template-columns: 1fr; gap: 2rem; }
  .cart-layout     { grid-template-columns: 1fr; }
  .cart-summary    { position: static; }

  .product-grid    { grid-template-columns: repeat(3, 1fr); }
  .coll-grid       { grid-template-columns: repeat(3, 1fr); }
}

/* ─ Mobile ───────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .announce { gap: 0.7rem; font-size: 0.58rem; padding: 0.5rem 0.75rem; }
  .announce-dot { display: none; }
  .announce span:not(:first-child) { display: none; }

  /* Nav mobile */
  .nav {
    grid-template-columns: 1fr auto;
    height: 64px; padding: 0 1rem;
  }
  .nav-logo-img { height: 40px; }

  .nav-icon-btn.nav-cart { display: inline-flex; }
  .nav-shop-btn  { display: none; }

  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 999px;
    border: 1px solid rgba(28,26,23,0.12); background: rgba(28,26,23,0.02);
  }
  .nav-toggle svg { width: 18px; height: 18px; }

  .nav-links {
    position: fixed; inset: 0;
    background: #ffffff;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 1.4rem; z-index: 1200;
    opacity: 0; pointer-events: none;
    transition: opacity 0.18s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a {
    font-size: 1.08rem; color: var(--text-dark); padding: 0.55rem 1.25rem;
  }
  .nav-links a::after {
    left: 1.25rem; right: 1.25rem; bottom: 0.2rem;
  }

  /* Mobile dropdown accordion */
  .nav-item--dd {
    display: flex; flex-direction: column; align-items: center; width: 100%;
  }
  .nav-item--dd > .nav-link-parent {
    width: 100%; justify-content: center;
  }
  /* Hide desktop chevron on parent link in mobile — use toggle button instead */
  .nav-link-parent .nav-chevron { display: none; }
  .nav-dd-toggle {
    display: flex; align-items: center; justify-content: center;
    position: absolute; right: 1rem;
    width: 36px; height: 36px;
    background: transparent; border: none; cursor: pointer;
    color: var(--text-dark);
  }
  .nav-dd-toggle .nav-chevron { display: block; transition: transform 0.2s ease; }
  .nav-item--dd.open .nav-dd-toggle .nav-chevron { transform: rotate(180deg); }
  .nav-dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    background: rgba(28,26,23,0.04);
    width: 100%;
    max-height: 0; overflow: hidden;
    padding: 0;
    transition: max-height 0.25s ease;
  }
  .nav-item--dd.open .nav-dropdown {
    max-height: 300px;
    padding: 0.25rem 0 0.5rem;
  }
  .nav-dd-link {
    font-size: 0.9rem !important;
    padding: 0.5rem 2rem !important;
    color: rgba(28,26,23,0.65) !important;
  }
  .nav-dd-viewall { border-top: 1px solid rgba(28,26,23,0.08); margin-top: 0.1rem; }

  .nav-close {
    position: fixed; top: 0.9rem; right: 1rem;
    width: 40px; height: 40px; border-radius: 999px;
    border: 1px solid rgba(28,26,23,0.12); background: rgba(28,26,23,0.02);
    display: none; align-items: center; justify-content: center;
    z-index: 1300;
  }
  .nav-links.open ~ * .nav-close,
  .site-header:has(.nav-links.open) .nav-close { display: flex; }

  /* Hero mobile */
  .hero-copy { padding: 3rem 1rem; }
  .hero-h1 { font-size: 2.35rem; }
  .hero-sub { max-width: 100%; font-size: 0.85rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-wrap: wrap; gap: 1rem; }
  .hero-brands { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
  .hb-eyebrow { display: none; }
  .hb-name { font-size: 1.2rem; }

  /* Cat grid mobile */
  .cat-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 210px); }
  .cat-tile:first-child { grid-row: span 1; }

  /* Product grids */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .coll-grid    { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .coll-body    { padding: 1.25rem 1rem 3rem; }

  /* Grade cards */
  .grade-cards { grid-template-columns: repeat(2, 1fr); }

  /* Founder */
  .founder-img { min-height: 300px; }
  .founder-copy { padding: 3rem 1.5rem; }

  /* Email */
  .email-form { flex-direction: column; gap: 0.8rem; }
  .email-btn  { width: 100%; }

  /* Footer */
  .footer { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.2rem 0; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: flex-start; padding: 1rem 1.2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.2rem 0; }
  .pw-footer .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: flex-start; padding: 1rem 1.2rem; }

  /* Policy pages */
  .policy-hero { padding: 2rem 1.25rem 2.5rem; }
  .policy-content { padding: 2.5rem 1.25rem 4rem; }

  /* Section padding */
  .section { padding: 3rem 1rem; }
  .grade-section { padding: 3.5rem 1rem; }
  .email-section { padding: 3rem 1rem 4rem; }

  /* Toolbar */
  .coll-toolbar-inner { flex-direction: column; align-items: flex-start; }

  /* Breadcrumbs */
  .coll-breadcrumb, .prod-breadcrumb { padding: 0.6rem 1rem; }

  /* Cart */
  .cart-line { grid-template-columns: 64px 1fr; }
  .cart-line-price { grid-column: 2; }
  .cart-inner { padding: 0 1rem; }

  /* Search */
  .search-header { padding: 2rem 1rem 1.5rem; }
  .search-form { flex-direction: column; }
  .search-submit { width: 100%; justify-content: center; }
  .search-body { padding: 1.5rem 1rem; }

  /* Product page */
  .prod-card { margin: 0.75rem; border-radius: 4px; }
  .prod-layout { padding: 1rem 1rem 1.5rem; }
  .prod-title { font-size: 1.6rem; }
  .prod-info { padding: 1.5rem; border-radius: 6px; }
  .prod-skeleton { padding: 1.5rem 1rem; gap: 1.5rem; }
}
