/* ==========================================================================
   Bhaav — The Emotion | Sustainable Gifts
   Global stylesheet
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-alt: #fcfaf7;
  --bg-card: #f7f4ef;
  --border: #d7d7d7;
  --text: #362e26;
  --text-muted: #5b544d;
  --text-light: #8c8782;
  --primary: #4b675b;
  --primary-hover: #234235;
  --accent: #d2815f;
  --accent-hover: #b8663f;
  --max-width: 1200px;
  --radius: 10px;
  --font-heading: 'Noto Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg-card);
  padding: 0.3em 0.9em;
  border-radius: 999px;
  margin-bottom: 0.75em;
  font-weight: 600;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: #fbf7ef;
}
.btn-primary:hover { background: var(--primary-hover); }

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fbf7ef; }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  background: var(--bg-card);
  padding: 3px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.logo-text .brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.header-search {
  flex: 1;
  display: flex;
  max-width: 420px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-alt);
}

.header-search input[type="search"] {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
}

.header-search input::placeholder { color: var(--text-muted); }

.header-search button {
  border: 0;
  background: transparent;
  color: var(--primary);
  padding: 0 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.header-search button svg { width: 18px; height: 18px; }

.burger-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Slide-in nav ---------- */
.nav-overlay-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 150;
}
.nav-overlay-bg.is-open { opacity: 1; pointer-events: auto; }

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(340px, 86vw);
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 151;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.site-nav.is-open { transform: translateX(0); }

.nav-close {
  align-self: flex-end;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  margin-bottom: 2rem;
}

.site-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-nav a {
  display: block;
  padding: 0.75rem 0.25rem;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--primary); padding-left: 0.5rem; }

.nav-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(54,46,38,0.94) 15%, rgba(54,46,38,0.55) 60%, rgba(54,46,38,0.25) 100%);
  z-index: -1;
}

.hero-content { max-width: 620px; padding: 4rem 0; }

.hero p.lead { font-size: 1.1rem; max-width: 520px; }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

.page-hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero p { max-width: 620px; margin-inline: auto; }

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding: 1.5rem 0 0.5rem;
}
.breadcrumb a, .breadcrumb span {
  display: inline-block;
  padding: 2px 2px 1px 0;
}
.breadcrumb a:first-child, .breadcrumb span:first-child { padding-left: 0; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { text-decoration: underline; color: var(--primary); }
.breadcrumb span[aria-hidden="true"] { color: var(--text-light); padding: 2px 6px 1px; }
.breadcrumb span:not([aria-hidden]) { color: var(--text); }

/* ---------- Feature / value strip ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.value-icon {
  width: 46px; height: 46px;
  margin: 0 auto 1rem;
  color: var(--primary);
}
.value-icon svg { width: 100%; height: 100%; }

.value-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.value-card p { font-size: 0.92rem; margin: 0; }

/* ---------- Category cards ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  border: 1px solid var(--border);
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(54,46,38,0) 30%, rgba(54,46,38,0.92) 100%);
  z-index: -1;
}
.category-card .cat-body { padding: 1.5rem; }
.category-card h3 { margin-bottom: 0.25em; }
.category-card span.link { color: var(--accent); font-size: 0.88rem; font-weight: 600; }

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--primary); }

.product-card .thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-card .info { padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-card .cat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.4em; }
.product-card h3 { font-size: 1.1rem; margin-bottom: 0.3em; }
.product-card .price { color: var(--accent); font-weight: 600; margin-top: auto; padding-top: 0.75rem; font-size: 1.05rem; }
.product-card .desc { font-size: 0.9rem; }

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  display: none;
}
.no-results.is-visible { display: block; }

/* ---------- Shop toolbar ---------- */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.shop-search {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-card);
  flex: 1;
  min-width: 220px;
  max-width: 420px;
}
.shop-search input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0.75rem 1.2rem;
  font-family: var(--font-body);
  outline: none;
}

.filter-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.filter-pill {
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-pill.is-active, .filter-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.results-count { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* ---------- Product detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 820px) {
  .product-detail { grid-template-columns: 1fr; }
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.gallery-thumbs button {
  padding: 0; border: 2px solid var(--border);
  border-radius: 8px; overflow: hidden;
  width: 74px; height: 74px;
  background: #fff;
  cursor: pointer;
}
.gallery-thumbs button.is-active, .gallery-thumbs button:hover { border-color: var(--primary); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product-info .cat-list { display: flex; flex-wrap: wrap; gap: 0.5rem 0.3rem; margin-bottom: 0.75rem; }
.product-info .cat-label { color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; }
.product-info a.cat-label { border-bottom: 1px dotted var(--primary); }
.product-info a.cat-label:hover { color: var(--accent); border-color: var(--accent); }
.product-info .price { font-size: 1.6rem; color: var(--accent); font-weight: 700; margin: 0.5rem 0 1.25rem; }

.feature-list { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--text-muted); font-size: 0.95rem; }
.feature-list li svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; color: var(--primary); }

.product-note {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-card);
}

/* ---------- Story page ---------- */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.story-block.reverse .story-media { order: 2; }
.story-media img { border-radius: var(--radius); border: 1px solid var(--border); }
@media (max-width: 780px) {
  .story-block, .story-block.reverse .story-media { grid-template-columns: 1fr; order: initial; }
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.pillar .num { font-family: var(--font-heading); font-size: 2rem; color: var(--primary); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.75rem;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testimonial .stars { color: var(--accent); letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.testimonial footer { margin-top: 1rem; font-size: 0.85rem; color: var(--accent); font-weight: 600; }

/* ---------- Forms (contact/newsletter) ---------- */
.form-grid { display: grid; gap: 1.1rem; max-width: 640px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-size: 0.85rem; color: var(--text-muted); }
.form-row input, .form-row textarea, .form-row select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--primary); }
.form-note { font-size: 0.82rem; color: var(--text-muted); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 780px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-list li { display: flex; gap: 1rem; }
.contact-info-list .ci-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.contact-info-list .ci-icon svg { width: 18px; height: 18px; }

.form-success {
  display: none;
  background: rgba(75,103,91,0.12);
  border: 1px solid var(--primary);
  color: var(--primary-hover);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.form-success.is-visible { display: block; }

.form-error {
  display: none;
  background: rgba(178,58,58,0.1);
  border: 1px solid #b23a3a;
  color: #8a2c2c;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.form-error.is-visible { display: block; }

/* ---------- Reviews ---------- */
.stars { color: var(--accent); letter-spacing: 0.1em; }

.review-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}
.review-summary-score { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.review-summary-average { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; }
.review-summary-count { font-size: 0.85rem; color: var(--text-muted); }

.review-summary-bars { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 0.4rem; }
.review-bar-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--text-muted); }
.review-bar { flex: 1; height: 8px; border-radius: 999px; background: var(--bg-card); overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--accent); }

.review-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto 2rem;
}
.review-controls .form-row { flex: 1; min-width: 180px; }

.review-no-results {
  display: none;
  max-width: 780px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
}
.review-no-results.is-visible { display: block; }

.review-list { max-width: 780px; margin: 0 auto 3rem; display: flex; flex-direction: column; gap: 1.25rem; }
.review-empty { color: var(--text-muted); }

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.review-card h3 { font-size: 1.05rem; margin: 0.5em 0 0.3em; }
.review-body { color: var(--text); margin-bottom: 0.75em; }
.review-card footer { font-size: 0.82rem; color: var(--text-muted); }
.review-author { font-weight: 600; color: var(--text); }

.review-form-wrap { max-width: 640px; margin: 0 auto; }
.review-form-wrap h3 { margin-bottom: 1rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--primary);
  font-size: 1.4rem;
  margin-left: 1rem;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo { height: 56px; background: var(--bg-card); border-radius: 8px; padding: 4px; margin-bottom: 1rem; }
.footer-links h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 1rem; }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--text-muted); font-size: 0.92rem; }
.footer-links a:hover { color: var(--accent); }

.newsletter-form { display: flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; background: var(--bg-card); }
.newsletter-form input { flex: 1; border: 0; background: transparent; padding: 0.7rem 1rem; color: var(--text); outline: none; }
.newsletter-form button { border: 0; background: var(--primary); color: #fbf7ef; padding: 0 1.2rem; font-weight: 700; cursor: pointer; }
.newsletter-success { color: var(--primary-hover); font-size: 0.85rem; margin-top: 0.75rem; display: none; }
.newsletter-success.is-visible { display: block; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }

.social-row { display: flex; gap: 0.75rem; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.social-row svg { width: 16px; height: 16px; }

/* ---------- Photo-backed sections keep light text over their dark scrim ---------- */
.hero-content h1,
.hero p.lead,
.category-card .cat-body h3,
.category-card .cat-body span.link { color: #fbf7ef; }
.hero-content .eyebrow { background: rgba(255,255,255,0.15); color: #fbf7ef; }

/* ---------- Misc pages (privacy/shipping) ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin-top: 2rem; }
.prose ul { color: var(--text-muted); }

@media (max-width: 700px) {
  .header-search { display: none; }
  .section { padding: 3rem 0; }
}
