/* ============================================================
   Thobe Ukhti — design system
   Colorway matched to the original thobeukhti.com theme:
   olive #67683E, cream #FFFCF7, beige #D9D7C9,
   terracotta #9E3B1B, deep brown #4F1D0E.
   ============================================================ */

:root {
  --red: #67683e;        /* primary — brand olive */
  --red-deep: #50512f;
  --red-bright: #8d8d6c;
  --terra: #9e3b1b;      /* terracotta accent */
  --ink: #4f1d0e;        /* deep brown (dark sections, headings) */
  --ink-soft: #6d675a;
  --cream: #f0eee2;
  --cream-deep: #d9d7c9;
  --linen: #fffcf7;      /* original page background */
  --olive: #67683e;
  --gold: #c98f63;       /* lightened terracotta for dark backgrounds */
  --line: rgba(79, 29, 14, 0.14);

  --font-display: "Syne", sans-serif;
  --font-body: "Questrial", system-ui, sans-serif;
  --font-ar: "Amiri", serif;

  --radius: 18px;
  --shadow-soft: 0 18px 50px -18px rgba(79, 29, 14, 0.22);
  --shadow-lift: 0 26px 60px -20px rgba(79, 29, 14, 0.30);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--linen);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.7vw, 2.8rem); }
h1 em, h2 em { font-style: normal; color: var(--terra); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

/* ---------- Eyebrow / small labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.1rem;
}
.eyebrow.light { color: var(--gold); }
.eyebrow-dot {
  width: 9px; height: 9px; background: currentColor;
  transform: rotate(45deg); /* the diamond — the atomic unit of tatreez */
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.85rem 1.7rem;
  border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1rem; }
.btn-small { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 12px 28px -12px rgba(103, 104, 62, 0.55);
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.text-link {
  font-weight: 600; color: var(--red);
  border-bottom: 1.5px solid transparent; transition: border-color 0.2s;
}
.text-link:hover { border-color: var(--red); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 253, 248, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 0.5rem 0;
}
.brand { display: flex; align-items: center; }
.brand-logo {
  width: 100px; height: 100px; object-fit: contain;
  transition: transform 0.25s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.05); }
.brand-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 560; }
.brand-ar { font-family: var(--font-ar); font-size: 0.85rem; color: var(--red); }

.site-nav { display: flex; gap: 1.9rem; }
.site-nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 0.3rem 0; transition: color 0.2s;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 8px; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(2.5rem, 5vw, 4.5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50rem 30rem at 85% 10%, rgba(158, 59, 27, 0.10), transparent 60%),
    radial-gradient(46rem 32rem at 5% 90%, rgba(103, 104, 62, 0.10), transparent 60%),
    var(--linen);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.lede {
  font-size: 1.12rem; color: var(--ink-soft);
  max-width: 34rem; margin-top: 1.4rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-proof {
  display: flex; gap: 2.4rem; list-style: none;
  margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--line);
}
.hero-proof li { display: flex; flex-direction: column; }
.hero-proof strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--red); }
.hero-proof span { font-size: 0.85rem; color: var(--ink-soft); }

.hero-visual { position: relative; }
.fabric-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1rem;
  box-shadow: var(--shadow-soft);
  transform: rotate(1.5deg);
  transition: transform 0.5s var(--ease);
}
.fabric-card:hover { transform: rotate(0deg) translateY(-4px); }
.hero-photo { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; border-radius: 10px; }
.fabric-card figcaption {
  font-size: 0.82rem; color: var(--ink-soft);
  text-align: center; padding-top: 0.8rem; font-style: italic;
}

.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.55rem 1rem; font-size: 0.82rem; font-weight: 600;
  box-shadow: var(--shadow-soft);
  animation: floaty 5s ease-in-out infinite;
}
.chip-a { top: 8%; left: -6%; }
.chip-b { bottom: 12%; right: -4%; animation-delay: 2.2s; }
.chip-swatch { width: 14px; height: 14px; border-radius: 50%; }
.chip-swatch.red { background: var(--red); }

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

/* ---------- Story ---------- */
.story-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: center;
}
.story-visual { position: relative; }
.story-frame {
  position: relative; z-index: 1;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}
.story-canvas { width: 100%; aspect-ratio: 3.4 / 4.4; border-radius: 10px; }
.frame-back {
  position: absolute; inset: 0; z-index: 0;
  transform: translate(18px, 18px) rotate(-2deg);
  background: var(--red); opacity: 0.12; padding: 0; border: 0;
}
.story-copy p { color: var(--ink-soft); margin-top: 1.1rem; max-width: 36rem; }
.story-quote {
  margin: 1.8rem 0; padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--red);
  background: var(--cream);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.12rem; line-height: 1.5; color: var(--ink);
}
.story-copy .text-link { display: inline-block; margin-top: 0.4rem; }

/* ---------- How it works (dark) ---------- */
.section-dark {
  background:
    radial-gradient(40rem 26rem at 90% 0%, rgba(158, 59, 27, 0.30), transparent 55%),
    var(--ink);
  color: var(--linen);
}
.section-dark h2, .section-dark h3 { color: var(--linen); }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.split {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 1.5rem;
}
.section-sub {
  color: var(--ink-soft); max-width: 40rem;
  margin: 1.1rem auto 0;
}

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; list-style: none; counter-reset: step;
}
.step {
  position: relative;
  background: rgba(255, 252, 247, 0.05);
  border: 1px solid rgba(255, 252, 247, 0.14);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem 2rem;
  transition: transform 0.35s var(--ease), background 0.35s;
}
.step:hover { transform: translateY(-6px); background: rgba(255, 252, 247, 0.09); }
.step-num {
  position: absolute; top: 1.4rem; right: 1.6rem;
  font-family: var(--font-display); font-size: 1rem; color: var(--gold);
}
.step-icon {
  width: 72px; height: 72px; margin-bottom: 1.4rem;
  background: rgba(255, 252, 247, 0.07);
  border-radius: 16px; display: grid; place-items: center; overflow: hidden;
}
.step h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.step p { color: rgba(255, 252, 247, 0.72); font-size: 0.95rem; }

/* ---------- Shop ---------- */
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tab {
  padding: 0.55rem 1.25rem; border-radius: 999px;
  border: 1.5px solid var(--line); background: transparent;
  font-family: var(--font-body); font-weight: 600; font-size: 0.88rem;
  color: var(--ink-soft); cursor: pointer; transition: all 0.25s var(--ease);
}
.tab:hover { border-color: var(--ink); color: var(--ink); }
.tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.product {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), opacity 0.3s;
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.product.is-hidden { display: none; }
.product-media {
  position: relative; background: var(--cream);
  aspect-ratio: 4 / 3.4; overflow: hidden;
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product:hover .product-media img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: var(--ink); color: var(--cream);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.35rem 0.75rem; border-radius: 999px;
}
.product-badge.badge-red { background: var(--red); color: #fff; }
.product-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-cat {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem;
}
.product h3 { font-size: 1.22rem; margin-bottom: 0.45rem; }
.product-desc { font-size: 0.9rem; color: var(--ink-soft); flex: 1; }
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line);
}
.product-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 560; }
.product-btn {
  display: inline-block; text-align: center;
  padding: 0.5rem 1.1rem; border-radius: 999px;
  border: 1.5px solid var(--ink); background: transparent;
  font-weight: 600; font-size: 0.84rem; cursor: pointer;
  transition: all 0.25s var(--ease); font-family: var(--font-body);
}
.product-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ---------- Motif library ---------- */
.section-cream { background: var(--cream); }
.motif-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.motif-card {
  background: var(--linen); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
  text-align: center; transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.motif-card:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: var(--shadow-soft); }
.motif-card canvas { width: 92px; height: 92px; margin: 0 auto 1.1rem; }
.motif-card h3 { font-size: 1.08rem; margin-bottom: 0.35rem; }
.motif-card .motif-ar { font-family: var(--font-ar); color: var(--red); font-size: 1rem; display: block; margin-bottom: 0.5rem; }
.motif-card p { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Voices ---------- */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.voice {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.voice:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.voice-stars { color: var(--gold); letter-spacing: 0.25em; font-size: 0.85rem; }
.voice blockquote { font-size: 0.98rem; color: var(--ink-soft); flex: 1; }
.voice figcaption { display: flex; flex-direction: column; }
.voice figcaption strong { font-size: 0.95rem; }
.voice figcaption span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- CTA ---------- */
.cta { padding-top: 0; }
.cta-card {
  background: var(--red); color: #fff;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden; box-shadow: var(--shadow-lift);
}
.cta-band canvas { width: 100%; height: 22px; opacity: 0.9; }
.cta-inner {
  text-align: center; padding: clamp(2.8rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
}
.cta-inner h2 { color: #fff; }
.cta-inner p { max-width: 34rem; margin: 1rem auto 2rem; color: rgba(255, 255, 255, 0.85); }
.cta-form {
  display: flex; gap: 0.7rem; max-width: 30rem; margin: 0 auto;
}
.cta-form input {
  flex: 1; padding: 0.95rem 1.4rem; border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12); color: #fff;
  font-family: var(--font-body); font-size: 0.95rem; outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.cta-form input:focus { border-color: #fff; background: rgba(255, 255, 255, 0.18); }
.cta-form .btn-primary { background: var(--ink); box-shadow: none; }
.cta-form .btn-primary:hover { background: #000; }
.cta-note { min-height: 1.4rem; margin-top: 1rem; font-size: 0.88rem; color: var(--cream-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: var(--cream);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 252, 247, 0.15);
}
.footer-logo {
  width: 88px; height: 88px; object-fit: contain;
  margin-bottom: 0.8rem;
  background: var(--linen); border-radius: 50%; padding: 6px;
}
.footer-brand .brand-name { font-size: 1.4rem; font-family: var(--font-display); color: var(--linen); }
.footer-brand .brand-ar { display: block; margin: 0.2rem 0 0.9rem; color: var(--gold); }
.footer-brand p { font-size: 0.9rem; color: rgba(255, 252, 247, 0.65); max-width: 22rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col h4 {
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.footer-col a { font-size: 0.92rem; color: rgba(255, 252, 247, 0.75); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem;
  font-size: 0.85rem; color: rgba(255, 252, 247, 0.55);
}
.footer-bottom .text-link { color: var(--gold); }

/* ---------- Cart badge / Wix banner ---------- */
.cart-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.25rem; height: 1.25rem; padding: 0 0.35rem;
  margin-left: 0.3rem; border-radius: 999px;
  background: var(--terra); color: #fff;
  font-size: 0.7rem; font-weight: 700;
}
.cart-btn { position: relative; }
.wix-setup-banner {
  background: var(--ink); color: var(--linen);
  text-align: center; padding: 0.7rem 1rem;
  font-size: 0.88rem; line-height: 1.45;
}
.wix-setup-banner code {
  background: rgba(255,252,247,0.12); padding: 0.1rem 0.35rem; border-radius: 4px;
}

.product h3 a { color: inherit; }
.product h3 a:hover { color: var(--terra); }

.shop-loading, .shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  padding: 2rem 1rem;
  font-size: 1.05rem;
}
.shop-empty code {
  background: var(--cream);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85em;
}

/* ---------- Product detail page ---------- */
.crumb {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 2rem;
}
.crumb a:hover { color: var(--terra); }

.pdp-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.pdp-main {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.pdp-main img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 0.7rem; margin-top: 0.9rem; }
.pdp-thumb {
  width: 72px; height: 72px; padding: 0; border-radius: 10px;
  border: 2px solid transparent; overflow: hidden; cursor: pointer; background: var(--cream);
}
.pdp-thumb.is-active, .pdp-thumb:hover { border-color: var(--olive); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.6rem; }
.pdp-price {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--terra); margin-bottom: 0.5rem;
}
.pdp-stock { font-size: 0.92rem; margin-bottom: 1.5rem; color: var(--ink-soft); }
.pdp-stock.is-ok { color: var(--olive); }
.pdp-stock.is-out { color: var(--terra); }
.pdp-stock.is-warn { color: var(--terra); }

.pdp-buy { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.qty-field {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff;
}
.qty-field input {
  width: 3rem; border: 0; text-align: center; font-family: var(--font-body);
  font-size: 1rem; font-weight: 600; color: var(--ink); outline: none;
  -moz-appearance: textfield;
}
.qty-field input::-webkit-outer-spin-button,
.qty-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-btn {
  width: 2.4rem; height: 2.4rem; border: 0; background: transparent;
  font-size: 1.2rem; cursor: pointer; color: var(--ink);
}
.qty-btn:hover { background: var(--cream); }
.qty-field.compact input { width: 2.4rem; }

.pdp-msg { min-height: 1.4rem; margin-top: 0.9rem; font-size: 0.9rem; }
.pdp-msg.is-ok { color: var(--olive); }
.pdp-msg.is-error { color: var(--terra); }

.pdp-desc { margin-top: 2.2rem; color: var(--ink-soft); }
.pdp-desc h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--ink); margin: 1.4rem 0 0.6rem;
}
.pdp-desc p { margin-bottom: 0.9rem; }
.pdp-desc ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.pdp-desc li { margin-bottom: 0.35rem; }
.pdp-wix-note {
  margin-top: 1.8rem; font-size: 0.82rem; color: var(--ink-soft);
  border-top: 1px solid var(--line); padding-top: 1rem;
}

.pdp-more { margin-top: clamp(3rem, 6vw, 5rem); padding-top: 2.5rem; border-top: 1px solid var(--line); }
.pdp-more h2 { margin-bottom: 1.5rem; }
.pdp-more-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.pdp-more-card {
  display: grid; grid-template-columns: 100px 1fr; gap: 1rem; align-items: center;
  padding: 0.9rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.pdp-more-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.pdp-more-card img {
  width: 100px; height: 100px; object-fit: cover; border-radius: 10px; background: var(--cream);
}
.pdp-more-card span { display: block; font-weight: 600; margin-bottom: 0.25rem; }
.pdp-more-card strong { color: var(--terra); font-family: var(--font-display); }

/* ---------- Cart page ---------- */
.cart-loading { color: var(--ink-soft); }
.cart-empty { text-align: center; max-width: 28rem; margin: 2rem auto; }
.cart-empty h1 { margin-bottom: 0.8rem; }
.cart-empty p { color: var(--ink-soft); margin-bottom: 1.5rem; }
.cart-empty code {
  background: var(--cream); padding: 0.1rem 0.35rem; border-radius: 4px; font-size: 0.85em;
}

.cart-layout {
  display: grid; grid-template-columns: 1.4fr 0.8fr;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: start;
}
.cart-layout > div > h1 { margin-bottom: 1.5rem; }
.cart-line {
  display: grid; grid-template-columns: 110px 1fr auto;
  gap: 1.2rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); align-items: center;
}
.cart-line img {
  width: 110px; height: 110px; object-fit: cover; border-radius: 12px; background: var(--cream);
}
.cart-line h2 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.cart-line-unit { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0.7rem; }
.cart-line-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.cart-line-total { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.cart-summary {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  position: sticky; top: 7rem;
}
.cart-summary h2 { font-size: 1.3rem; margin-bottom: 1.2rem; }
.cart-summary-row {
  display: flex; justify-content: space-between; margin-bottom: 0.8rem; font-size: 1.05rem;
}
.cart-summary-note { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.cart-summary .btn { width: 100%; margin-bottom: 1rem; }
.cart-summary .text-link { display: inline-block; }

@media (max-width: 980px) {
  .pdp-grid, .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .pdp-more-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .cart-line { grid-template-columns: 80px 1fr; }
  .cart-line-total { grid-column: 2; }
  .header-actions .cart-btn { display: inline-flex; }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .story-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .steps, .voice-grid, .product-grid { grid-template-columns: 1fr 1fr; }
  .motif-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-visual { max-width: 420px; }
}

@media (max-width: 680px) {
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--linen); border-bottom: 1px solid var(--line);
    padding: 0.5rem 4vw 1rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  .header-actions .cart-btn { display: inline-flex; }
  .hero-proof { gap: 1.4rem; flex-wrap: wrap; }
  .float-chip { display: none; }
  .cta-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
