/* =========================================================
   Next Level Herbs — visual match of nextlevelherbs.com
   Brand: purple (#8a4d8e) + lime (#8cc63f) on cream pink
   Typography: Poppins
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand colors */
  --primary-purple:       #8a4d8e;
  --primary-purple-dark:  #6e3b73;
  --primary-purple-light: #c394d0;
  --primary-green:        #8cc63f;
  --primary-green-dark:   #72a830;

  /* Neutrals */
  --neutral-cream:  #f7eeee;
  --neutral-warm:   #E2CAB7;
  --neutral-light:  #fbf6f6;
  --bg-page:        #ffffff;
  --bg-soft:        #f7eeee;

  /* Text */
  --text:           #1a1a1a;
  --text-soft:      #4a4a4a;
  --text-mute:      #8a8a8a;

  /* Lines */
  --line:           #ebe1e1;
  --line-strong:    #d8c8c8;

  /* Type */
  --font:           'Poppins', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 80px; --s-10: 112px;

  /* Layout */
  --max-w:          1280px;
  --gutter:         clamp(16px, 3vw, 32px);
  --radius:         6px;
  --radius-lg:      10px;

  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

/* Typography (matches live site scale: small headings) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 22px; }
h4 { font-size: 16px; font-weight: 600; }
h5 { font-size: 14px; }

.eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-purple);
  display: inline-block;
}
.lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  font-weight: 400;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: var(--s-9) 0; }
.section-tight { padding: var(--s-7) 0; }

/* =========================================================
   Header — top utility bar + main nav (PrestaShop-style)
   ========================================================= */

.top-bar {
  background: var(--primary-purple);
  color: #fff;
  font-size: 12px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.top-bar a { color: #fff; opacity: 0.92; }
.top-bar a:hover { opacity: 1; }
.top-bar .top-info { display: flex; gap: var(--s-5); align-items: center; flex-wrap: wrap; }
.top-bar .top-info span { display: inline-flex; align-items: center; gap: 6px; }
.top-bar .top-info .sep { opacity: 0.4; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lang-switch a { padding: 2px 6px; border-radius: 3px; }
.lang-switch a.is-current { background: rgba(255,255,255,0.18); }
.lang-switch span { opacity: 0.5; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  gap: var(--s-5);
}

/* Dark header variant — opt in via <body class="dark-header"> */
body.dark-header .site-header {
  background: var(--primary-purple);
  border-bottom-color: rgba(255,255,255,0.08);
}
body.dark-header .nav-links a { color: rgba(255,255,255,0.85); }
body.dark-header .nav-links a:hover { color: #fff; }
body.dark-header .nav-links a.is-current { color: var(--primary-green); }
body.dark-header .menu-toggle span { background: #fff; }
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-purple);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand .mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.brand-logo {
  display: block;
  height: 78px;
  width: auto;
}
.brand:has(.brand-logo) {
  /* hide text label when logo is present */
  font-size: 0;
}

/* =========================================================
   Featured brands — 3-column checkerboard
   (Primitiva · Sagrada Madre · RAW Cacao)
   ========================================================= */

.featured-brands {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #fff;
}
.fb-cell {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--s-7);
  text-align: center;
  position: relative;
  background: #fff;
}
.fb-img { padding: 0; overflow: hidden; background: var(--neutral-warm); }
.fb-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.fb-text h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: var(--s-3);
  color: var(--text);
}
.fb-eyebrow {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: var(--s-4);
  line-height: 1.5;
}
.fb-divider {
  width: 60px;
  height: 1px;
  background: var(--primary-purple-light);
  margin: 0 auto var(--s-4);
  border: none;
}
.fb-text p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 320px;
  margin-bottom: var(--s-5);
}
.fb-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-purple);
  border-bottom: 1px solid var(--primary-purple-light);
  padding-bottom: 3px;
  letter-spacing: 0.02em;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.fb-link:hover {
  color: var(--primary-purple-dark);
  border-bottom-color: var(--primary-purple);
}

@media (max-width: 900px) {
  .featured-brands { grid-template-columns: 1fr 1fr; }
  .fb-cell { padding: var(--s-5); }
}
@media (max-width: 560px) {
  .featured-brands { grid-template-columns: 1fr; }
  .fb-cell { aspect-ratio: 5/3; }
  .fb-img { aspect-ratio: 4/3; }
}

/* =========================================================
   Herb intent banners (Energy / Libido / Relax / Detox)
   ========================================================= */

.herb-banners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.herb-banner {
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--neutral-light);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.herb-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(138,77,142,0.12);
}
.herb-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.herb-banner:hover img { transform: scale(1.03); }

@media (max-width: 720px) {
  .herb-banners { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
}

/* =========================================================
   Tabbed product showcase (homepage)
   ========================================================= */

.product-tabs {
  text-align: center;
  margin-bottom: var(--s-6);
}
.tab-list {
  display: inline-flex;
  gap: var(--s-7);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.tab-btn {
  font-family: var(--font);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: var(--text-mute);
  padding: 0 0 12px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s var(--ease);
  letter-spacing: -0.005em;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.is-active { color: var(--primary-purple); }
.tab-btn.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--primary-purple);
}
.tab-description {
  max-width: 640px;
  margin: var(--s-5) auto var(--s-6);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  text-align: center;
}
.tab-cta { text-align: center; margin-bottom: var(--s-7); }

.tab-content { display: none; }
.tab-content.is-active { display: block; animation: tab-fade 0.3s var(--ease); }
@keyframes tab-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Product card with hover-to-second-image */
.product-card-img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--neutral-light);
  margin-bottom: var(--s-3);
  position: relative;
}
.product-card-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.product-card-img .img-hover {
  opacity: 0;
  z-index: 2;
}
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .img-primary { transform: scale(1.02); }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 0;
  position: relative;
}
.nav-links a:hover { color: var(--primary-purple); }
.nav-links a.is-current { color: var(--primary-purple); }
.nav-links a.is-current::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--primary-green);
}
.nav-meta { display: flex; align-items: center; gap: var(--s-4); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--primary-purple);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary-purple);
  color: #fff;
  border-color: var(--primary-purple);
}
.btn-primary:hover {
  background: var(--primary-purple-dark);
  border-color: var(--primary-purple-dark);
}
.btn-green {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
}
.btn-green:hover {
  background: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
}
.btn-outline {
  background: transparent;
  color: var(--primary-purple);
  border-color: var(--primary-purple);
}
.btn-outline:hover {
  background: var(--primary-purple);
  color: #fff;
}
.btn-text {
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-purple);
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 4px;
}
.btn-text::after { content: ' →'; }
.btn-text:hover { color: var(--primary-purple-dark); }

/* =========================================================
   Hero — banner style with overlay (matches at_movic banners)
   ========================================================= */

.hero {
  position: relative;
  background: var(--bg-soft);
  padding: var(--s-9) 0 var(--s-10);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
.hero-content .eyebrow { margin-bottom: var(--s-3); }
.hero-content h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-bottom: var(--s-4);
}
.hero-content .lead { margin-bottom: var(--s-5); max-width: 480px; }
.hero-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--neutral-warm);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-caption {
  position: absolute;
  bottom: var(--s-4);
  left: var(--s-4);
  background: rgba(255,255,255,0.92);
  color: var(--primary-purple);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================
   Section heading
   ========================================================= */

.section-head {
  margin-bottom: var(--s-7);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-5);
  align-items: end;
}
.section-head h2 {
  margin-top: var(--s-2);
  font-size: clamp(22px, 2.5vw, 28px);
}
.section-head .lead { max-width: 480px; }

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
}

/* =========================================================
   Category banner cards (homepage feature grid)
   ========================================================= */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-5);
}
.cat-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--neutral-warm);
  aspect-ratio: 4 / 5;
  isolation: isolate;
  transition: transform 0.3s var(--ease);
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card.span-7 { grid-column: span 7; }
.cat-card.span-5 { grid-column: span 5; }
.cat-card.span-6 { grid-column: span 6; }
.cat-card.span-4 { grid-column: span 4; }
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.cat-card:hover img { transform: scale(1.04); }
.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(138,77,142,0.0) 30%, rgba(74,38,76,0.85) 100%);
  z-index: 1;
}
.cat-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--s-5);
  z-index: 2;
  color: #fff;
}
.cat-card-body .eyebrow {
  color: var(--primary-green);
  margin-bottom: var(--s-2);
}
.cat-card-body h3 { color: #fff; margin-bottom: var(--s-2); font-size: 22px; }
.cat-card-body p {
  font-size: 13px;
  opacity: 0.9;
  max-width: 320px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card.span-7, .cat-card.span-5,
  .cat-card.span-6, .cat-card.span-4 { grid-column: span 1; }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Product grid (catalog page)
   ========================================================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s-6) var(--s-4);
}
.product-card {
  display: block;
  position: relative;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-3);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.product-card:hover {
  border-color: var(--primary-purple-light);
  box-shadow: 0 4px 20px rgba(138,77,142,0.08);
}
.product-card-img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--neutral-light);
  margin-bottom: var(--s-3);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.03); }
.product-card-name {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-card-meta {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-purple);
  font-weight: 500;
}

/* =========================================================
   Product detail page
   ========================================================= */

.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-7);
  padding: var(--s-7) 0 var(--s-9);
  align-items: start;
}
.product-gallery { position: sticky; top: 110px; }
.product-gallery-main {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--neutral-light);
  margin-bottom: var(--s-3);
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
}
.product-gallery-thumbs button {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--neutral-light);
  border: 2px solid transparent;
  padding: 0;
  transition: border-color 0.2s var(--ease);
}
.product-gallery-thumbs button.is-active { border-color: var(--primary-purple); }
.product-gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product-info .breadcrumb {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  margin-bottom: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-wrap: wrap;
  text-transform: uppercase;
}
.product-info .breadcrumb a:hover { color: var(--primary-purple); }
.product-info h1 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: var(--s-2);
  line-height: 1.15;
}
.product-info .product-origin {
  color: var(--primary-purple);
  margin-bottom: var(--s-5);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: var(--s-5);
}
.product-description p + p { margin-top: var(--s-3); }

.product-specs {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--s-5) 0;
  margin: var(--s-5) 0;
}
.product-specs dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--s-3) var(--s-5);
}
.product-specs dt {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}
.product-specs dd { font-size: 14px; color: var(--text); }

.in-store-note {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: var(--s-5);
  border-left: 3px solid var(--primary-green);
}
.in-store-note h4 {
  margin-bottom: var(--s-2);
  color: var(--primary-purple);
  font-size: 15px;
}
.in-store-note p { font-size: 14px; color: var(--text-soft); }

/* =========================================================
   Category page header
   ========================================================= */

.cat-header {
  background: var(--bg-soft);
  padding: var(--s-9) 0 var(--s-7);
  margin-bottom: var(--s-7);
  position: relative;
}
.cat-header .eyebrow { margin-bottom: var(--s-3); }
.cat-header h1 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: var(--s-4);
  max-width: 14ch;
  line-height: 1.1;
}
.cat-header .lead { max-width: 540px; }

.subcategory-pills {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-top: var(--s-5);
}
.subcategory-pills a {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s var(--ease);
}
.subcategory-pills a:hover,
.subcategory-pills a.is-active {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  color: #fff;
}

/* =========================================================
   Store / Contact pages
   ========================================================= */

.store-hero { padding: var(--s-9) 0 var(--s-7); background: var(--bg-soft); }
.store-hero h1 {
  font-size: clamp(28px, 4vw, 38px);
  margin-top: var(--s-3);
  margin-bottom: var(--s-4);
  max-width: 14ch;
  line-height: 1.15;
}
.store-hero .lead { max-width: 580px; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
.info-block h3 {
  margin-bottom: var(--s-4);
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  font-size: 18px;
}
.info-block h3 .num {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 14px;
}

.hours-list { display: grid; gap: 0; font-size: 14px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 500; }
.hours-list .time { color: var(--primary-purple); font-weight: 500; }

.address-block { font-size: 15px; line-height: 1.7; color: var(--text-soft); }
.address-block strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s-2);
}

.contact-form { display: grid; gap: var(--s-4); max-width: 540px; }
.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: var(--s-2);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary-purple);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.map-block {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: var(--neutral-light);
  overflow: hidden;
}
.map-block iframe { width: 100%; height: 100%; border: none; }

/* =========================================================
   Quote band
   ========================================================= */

.quote-band {
  background: var(--primary-purple);
  color: #fff;
  padding: var(--s-9) 0;
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  max-width: 780px;
  margin: 0 auto var(--s-4);
  color: #fff;
}
.quote-band cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-green);
  font-weight: 600;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: var(--s-9) 0 var(--s-5);
  margin-top: var(--s-9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: var(--s-3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.footer-brand p { font-size: 13px; color: #aaa; max-width: 320px; line-height: 1.6; }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: var(--s-4);
  font-weight: 600;
}
.footer-col ul li { margin-bottom: var(--s-2); }
.footer-col a {
  color: #ccc;
  font-size: 13px;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--primary-purple-light); }

.footer-bottom {
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #888;
  flex-wrap: wrap;
  gap: var(--s-3);
}

/* =========================================================
   Long-form text + team section (store page)
   ========================================================= */

.store-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--neutral-warm);
  margin-top: var(--s-5);
}
.store-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .store-banner { aspect-ratio: 4 / 3; }
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
}
.prose p + p { margin-top: var(--s-4); }

.team-section {
  padding: var(--s-9) 0;
  background: var(--bg-soft);
}

.team-list {
  margin-top: var(--s-7);
}

.team-member {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--s-7);
  padding: var(--s-7) 0;
  border-top: 1px solid var(--line-strong);
}
.team-member:last-child { border-bottom: 1px solid var(--line-strong); }

.team-member-name {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin: 0 0 var(--s-2);
  line-height: 1.1;
}
.team-member-role {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.team-bio { font-size: 15px; line-height: 1.75; color: var(--text-soft); }
.team-bio p + p { margin-top: var(--s-3); }
.team-bio .signature {
  margin-top: var(--s-4);
  color: var(--primary-purple);
  font-weight: 500;
  font-style: italic;
}

@media (max-width: 720px) {
  .team-member { grid-template-columns: 1fr; gap: var(--s-3); padding: var(--s-5) 0; }
}

/* Purple footer variant — opt in via <body class="purple-footer"> */
body.purple-footer .site-footer {
  background: var(--primary-purple);
  color: rgba(255,255,255,0.85);
}
body.purple-footer .footer-brand p { color: rgba(255,255,255,0.78); }
body.purple-footer .footer-col h4 { color: var(--primary-green); }
body.purple-footer .footer-col a { color: rgba(255,255,255,0.85); }
body.purple-footer .footer-col a:hover { color: #fff; }
body.purple-footer .footer-grid { border-bottom-color: rgba(255,255,255,0.15); }
body.purple-footer .footer-bottom { color: rgba(255,255,255,0.7); }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .hero { padding: var(--s-7) 0 var(--s-8); }
  .product-detail { grid-template-columns: 1fr; gap: var(--s-5); }
  .product-gallery { position: static; }
  .info-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}

@media (max-width: 720px) {
  .top-bar { font-size: 11px; padding: 6px 0; }
  .top-bar .top-info { gap: var(--s-3); }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 110px 0 0 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--s-5) var(--gutter);
    gap: var(--s-3);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 16px; }
  body.dark-header .nav-links { background: var(--primary-purple); }
  body.dark-header .nav-links a { color: #fff; }
  .section { padding: var(--s-7) 0; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .product-specs dl { grid-template-columns: 1fr; gap: var(--s-2); }
  .product-specs dd { margin-bottom: var(--s-3); }
}

@media (max-width: 480px) {
  .nav { height: 64px; }
  .nav-links { inset-block-start: 64px; }
  .brand { font-size: 15px; }
  .brand .mark { width: 30px; height: 30px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
