/* Settle — Dark, glowing, curated ambient lighting */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Design tokens ── */
:root {
  --bg:               #13111a;
  --surface:          #1e1a26;
  --surface-hover:    #262132;
  --surface-raised:   #2c2738;
  --terracotta:       #C17B5C;
  --terracotta-dark:  #a55f42;
  --terracotta-light: #d49580;
  --terracotta-glow:  rgba(193, 123, 92, 0.18);
  --sage:             #8B9E77;
  --sage-dark:        #6e7d5e;
  --sage-glow:        rgba(139, 158, 119, 0.15);
  --text:             #f0ebe5;
  --text-secondary:   #9d8e84;
  --text-muted:       #6b5e56;
  --warm-gray:        #8a7d78;
  --muted:            #5a504c;
  --border:           rgba(240, 235, 229, 0.07);
  --border-strong:    rgba(240, 235, 229, 0.14);
  --font-display:     'Fraunces', Georgia, serif;
  --font-body:        'DM Sans', system-ui, sans-serif;
  --radius:           14px;
  --radius-sm:        8px;
  --shadow:           0 2px 16px rgba(0,0,0,0.4);
  --shadow-md:        0 6px 32px rgba(0,0,0,0.5);
  --shadow-glow:      0 0 40px var(--terracotta-glow);
  --max-w:            1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.375rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 500; }
p { color: var(--warm-gray); }
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--dark { background: var(--surface); }
.section--surface { background: var(--surface); }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 17, 26, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--terracotta-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 0 20px var(--terracotta-glow);
}

@media (max-width: 768px) {
  .nav-hamburger { display: block; border: none; background: none; padding: 0.5rem; }
  .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: 0.2s; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); flex-direction: column; gap: 1.5rem; padding: 1.5rem 2rem 2rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-size: 0.9375rem; font-weight: 500;
  border: none; transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--terracotta); color: #fff;
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--terracotta-glow);
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover { background: var(--surface); border-color: var(--terracotta); }
.btn-outline-white {
  background: transparent; color: var(--text); border: 1.5px solid var(--border-strong);
}
.btn-outline-white:hover { background: rgba(240,235,229,0.06); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ── Cards ── */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 30px var(--terracotta-glow);
  border-color: rgba(193, 123, 92, 0.25);
}
.card-img {
  aspect-ratio: 1; overflow: hidden;
  background: var(--surface-hover);
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.5rem; }
.card-category {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500; margin-bottom: 0.5rem;
}
.card-title {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  margin-bottom: 0.5rem; color: var(--text);
}
.card-price {
  font-size: 1.125rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 0.75rem;
}
.card-compare {
  font-size: 0.875rem; color: var(--text-muted);
  text-decoration: line-through; font-weight: 400;
}
.card-tag {
  display: inline-block; background: var(--surface-raised);
  color: var(--text-secondary); font-size: 0.7rem; padding: 0.2rem 0.6rem;
  border-radius: 100px; margin-top: 0.75rem;
}

/* ── Product grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

/* ── Hero ── */
.hero {
  padding: 5rem 0 4rem;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { max-width: 520px; }
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500; margin-bottom: 1.25rem;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero p { font-size: 1.125rem; max-width: 440px; margin-bottom: 2rem; color: var(--text-secondary); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface);
  box-shadow: 0 0 60px var(--terracotta-glow);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Scents hero differentiation ── */
.hero--scent .hero-eyebrow { color: var(--sage); }
.hero--scent .hero-image { box-shadow: 0 0 60px var(--sage-glow); }
.hero--scent .btn-primary { background: var(--sage); color: #fff; }
.hero--scent .btn-primary:hover { background: var(--sage-dark); }

/* ── Need categories (Shop by Need) ── */
.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.need-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.need-card:hover {
  background: var(--surface-hover);
  border-color: rgba(193, 123, 92, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px var(--terracotta-glow);
}
.need-icon {
  width: 56px; height: 56px;
  background: var(--surface-raised);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}
.need-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text); }
.need-card p { font-size: 0.8125rem; color: var(--text-muted); }

/* ── Trust strip ── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 4rem;
}
.trust-item {
  background: var(--surface);
  padding: 2rem;
  text-align: center;
}
.trust-item h4 { font-size: 0.875rem; margin-bottom: 0.5rem; color: var(--text); }
.trust-item p { font-size: 0.8125rem; }

/* ── Product detail page ── */
.product-detail {
  padding: 3rem 0 6rem;
}
.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-gallery { position: sticky; top: 6rem; }
.product-gallery img {
  width: 100%; border-radius: var(--radius);
  aspect-ratio: 1; object-fit: cover;
  box-shadow: 0 0 40px var(--terracotta-glow);
}
.product-gallery-thumbs {
  display: flex; gap: 0.75rem; margin-top: 0.75rem;
}
.product-gallery-thumbs img {
  width: 72px; height: 72px; object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer; border: 2px solid transparent;
  transition: border-color 0.2s;
  box-shadow: none;
}
.product-gallery-thumbs img:hover { border-color: var(--terracotta); }
.product-info { padding-top: 1rem; }
.product-info .eyebrow { margin-bottom: 0.5rem; }
.product-info h1 { font-size: 2.25rem; margin-bottom: 1rem; }
.product-price {
  font-size: 1.75rem; font-weight: 700; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  color: var(--text);
}
.product-compare {
  font-size: 1.125rem; color: var(--text-muted);
  text-decoration: line-through; font-weight: 400;
}
.product-badge {
  display: inline-block; background: var(--sage);
  color: #fff; font-size: 0.75rem; padding: 0.25rem 0.75rem;
  border-radius: 100px; font-weight: 500;
}
.product-description { font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; color: var(--text-secondary); }
.product-actions { display: flex; gap: 1rem; margin-bottom: 2rem; }
.product-actions .btn { flex: 1; max-width: 320px; }
.product-meta {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.product-meta-item { font-size: 0.875rem; }
.product-meta-item strong {
  display: block; color: var(--text); margin-bottom: 0.25rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.product-meta-item span { color: var(--text-secondary); }

/* ── Static pages ── */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 600px; margin: 0 auto; font-size: 1.125rem; color: var(--text-secondary); }

.content-block { max-width: 720px; margin: 0 auto; }
.content-block h2 { margin: 2.5rem 0 1rem; font-size: 1.75rem; color: var(--text); }
.content-block h3 { margin: 2rem 0 0.75rem; color: var(--text); }
.content-block p { margin-bottom: 1.25rem; font-size: 1.0625rem; line-height: 1.8; color: var(--text-secondary); }
.content-block ul { margin: 1rem 0 1.5rem 1.5rem; }
.content-block ul li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem;
  color: var(--text-secondary); line-height: 1.7;
}
.content-block ul li::before {
  content: ''; position: absolute; left: 0; top: 0.7em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item h3 { font-size: 1.0625rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.faq-item h3::after { content: '+'; font-size: 1.5rem; color: var(--terracotta); font-weight: 300; }
.faq-item.open h3::after { content: '−'; }
.faq-item .faq-answer { display: none; padding-top: 1rem; }
.faq-item.open .faq-answer { display: block; }

/* ── Contact form ── */
.contact-form {
  max-width: 560px; margin: 0 auto;
  background: var(--surface);
  padding: 3rem; border-radius: var(--radius);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 500;
  margin-bottom: 0.5rem; color: var(--text);
}
.form-group input, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9375rem;
  background: var(--bg); color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--terracotta); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center; padding: 2rem;
  background: var(--surface); border-radius: var(--radius);
}
.form-success h3 { color: var(--text); margin-bottom: 0.5rem; }

/* ── Email signup section ── */
.email-section {
  background: var(--surface);
  padding: 5rem 0;
  text-align: center;
}
.email-section h2 { margin-bottom: 0.75rem; color: var(--text); }
.email-section p { margin-bottom: 2rem; font-size: 1.0625rem; }
.email-form {
  display: flex; gap: 0.75rem; max-width: 480px; margin: 0 auto;
}
.email-form input {
  flex: 1; padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--border-strong); border-radius: 100px;
  font-size: 0.9375rem; background: var(--bg);
  font-family: var(--font-body); outline: none; color: var(--text);
}
.email-form input:focus { border-color: var(--terracotta); }
.email-note {
  font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}

/* ── Product page email capture ── */
.product-email-capture {
  text-align: center;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}
.product-email-capture h2 { margin-bottom: 0.75rem; color: var(--text); }
.product-email-capture p { margin-bottom: 2rem; font-size: 1.0625rem; color: var(--text-secondary); }
.product-email-capture-inline {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}
.product-email-capture-inline h2 { margin-bottom: 0.75rem; color: var(--text); }
.product-email-capture-inline p { margin-bottom: 1.25rem; font-size: 0.9375rem; color: var(--text-secondary); }

/* ── Hero email signup ── */
.signup-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.signup-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 4rem;
}
.signup-copy { flex: 1; }
.signup-copy h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.75rem; }
.signup-copy p { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; max-width: 380px; }
.signup-form { flex: 0 0 460px; }
.signup-field-row { display: flex; gap: 0.75rem; }
.signup-field-row input {
  flex: 1; padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--border-strong); border-radius: 100px;
  font-size: 0.9375rem; background: var(--bg);
  font-family: var(--font-body); outline: none; color: var(--text);
  transition: border-color 0.2s;
}
.signup-field-row input:focus { border-color: var(--terracotta); }
.signup-field-row input::placeholder { color: var(--text-muted); }
.signup-msg { font-size: 0.8125rem; min-height: 1.25rem; margin-top: 0.75rem; color: var(--sage); }

@media (max-width: 768px) {
  .signup-inner { flex-direction: column; gap: 2rem; }
  .signup-form { flex: none; width: 100%; }
  .signup-field-row { flex-direction: column; }
  .signup-field-row input { border-radius: var(--radius); }
  .signup-copy p { max-width: 100%; }
}

/* ── Footer ── */
.footer {
  background: var(--surface); color: var(--text);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: var(--text); font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.footer-brand p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; max-width: 280px; }
.footer h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem; font-weight: 500; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: var(--text-secondary); font-size: 0.9375rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8125rem; color: var(--text-muted);
}

/* ── Brand story section ── */
.story-section { background: var(--surface); }
.story-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.story-image {
  border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 0 50px var(--sage-glow);
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Featured collection ── */
.featured-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem;
}
.featured-header h2 { margin-bottom: 0; }

/* ── Shipping table ── */
.shipping-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.shipping-table th, .shipping-table td {
  padding: 1rem; text-align: left;
  border-bottom: 1px solid var(--border);
}
.shipping-table th { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; }
.shipping-table td { color: var(--text-secondary); }
.shipping-table tr:last-child td { border-bottom: none; }

/* ── Related products ── */
.related-section { margin-top: 4rem; }
.related-section h2 { margin-bottom: 2rem; }

/* ── 404 ── */
.error-page { text-align: center; padding: 8rem 2rem; }
.error-page h1 { font-size: 6rem; color: var(--border); margin-bottom: 1rem; }
.error-page h2 { margin-bottom: 1rem; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-terracotta { color: var(--terracotta); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* ── Shop filters ── */
.shop-header { margin-bottom: 1.5rem; }
.shop-filters {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center; margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.filter-group { display: flex; align-items: center; gap: 0.5rem; }
.filter-label {
  font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-right: 0.25rem;
}
.filter-btn {
  display: inline-block; padding: 0.375rem 1rem;
  border-radius: 100px; font-size: 0.875rem;
  border: 1.5px solid var(--border-strong);
  color: var(--text-secondary); transition: all 0.2s;
  cursor: pointer; background: var(--surface);
}
.filter-btn:hover { border-color: var(--terracotta); color: var(--text); }
.filter-btn.active { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.sort-select {
  padding: 0.375rem 2rem 0.375rem 0.875rem;
  border: 1.5px solid var(--border-strong); border-radius: 100px;
  font-size: 0.875rem; font-family: var(--font-body);
  background: var(--surface); color: var(--text);
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239d8e84' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center;
}
.sort-select:focus { outline: none; border-color: var(--terracotta); }
.product-count { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeUp 0.5s ease forwards; }

/* ── Return policy box ── */
.return-policy {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.return-policy-header {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.875rem;
}
.return-policy-header svg { color: var(--terracotta); flex-shrink: 0; }
.return-policy-list {
  list-style: none; padding: 0; display: flex;
  flex-direction: column; gap: 0.4rem; margin-bottom: 1rem;
}
.return-policy-list li {
  font-size: 0.8125rem; color: var(--text-secondary);
  padding-left: 1.25rem; position: relative;
}
.return-policy-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--sage-dark); font-size: 0.875rem; line-height: 1.4;
}
.return-policy-link {
  font-size: 0.8125rem; color: var(--terracotta); font-weight: 500; transition: color 0.2s;
}
.return-policy-link:hover { color: var(--terracotta-light); }

/* ── Sensory strip ── */
.sensory-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.sensory-strip-heading {
  font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600; margin-bottom: 0.875rem;
}
.sensory-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1.5rem; margin-bottom: 0.875rem;
}
.sensory-item { display: flex; flex-direction: column; }
.sensory-label {
  font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 500; margin-bottom: 0.2rem;
}
.sensory-value {
  font-size: 0.8125rem; color: var(--text); font-weight: 500; line-height: 1.4;
}
.sensory-note {
  font-size: 0.8125rem; font-style: italic;
  color: var(--text-secondary); border-left: 3px solid var(--sage-dark);
  padding-left: 0.875rem; margin-top: 0.25rem; line-height: 1.5;
}

/* ── Quantity selector ── */
.quantity-row {
  display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1.25rem;
}
.quantity-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); font-weight: 500;
}
.quantity-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--surface);
}
.quantity-control button {
  width: 36px; height: 36px; border: none; background: none; cursor: pointer;
  font-size: 1.125rem; color: var(--text-secondary); transition: background 0.15s;
}
.quantity-control button:hover { background: var(--surface-hover); }
.quantity-control input {
  width: 40px; text-align: center; border: none;
  font-family: var(--font-body); font-size: 0.875rem; color: var(--text);
  background: none; padding: 0; height: 36px;
}

/* ── Variant selector ── */
.variant-selector { margin-bottom: 1.25rem; }
.variant-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 0.625rem; font-weight: 500;
}
.variant-options { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.variant-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.875rem; border: 1.5px solid var(--border-strong);
  border-radius: 100px; background: var(--surface); color: var(--text-secondary);
  font-size: 0.8125rem; font-family: var(--font-body); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.variant-btn:hover { border-color: var(--terracotta-light); }
.variant-btn.selected { border-color: var(--terracotta); color: var(--text); background: var(--surface-hover); }
.variant-swatch { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; }
.variant-name { font-weight: 500; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb-sep { color: var(--muted); }
.breadcrumb-current { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .needs-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-inner { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }
  .hero { padding: 3rem 0 2.5rem; }
  .needs-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; }
  .email-form { flex-direction: column; }
  .product-actions { flex-direction: column; }
  .product-actions .btn { max-width: 100%; }
  .shop-filters { gap: 1rem; }
  .filter-label { display: none; }
}