/* ============================================================
   SOAPBRIETY — Design System & Component Styles (css/style.css)
   ============================================================ */

/* --- Google Fonts are loaded in index.html --- */

/* ── CSS Variables ── */
:root {
  --bg:        #241C16;
  --bg-card:   #2F251E;
  --bg-deep:   #1E1611;
  --bg-mid:    #292019;
  --border:    #40332A;
  --border-g:  #1E4340;
  --green:     #1E8882;
  --green-lt:  #2BB1A4;
  --copper:    #C87046;
  --copper-lt: #E28C62;
  --cream:     #FDF8F5;
  --muted:     #B5A69D;
  --muted-dk:  #8A7B72;
  --amber:     #F59E0B;
  --red:       #991B1B;
  --instagram: #E1306C;
  --facebook:  #1877F2;
  --font-serif: 'Cinzel', serif;
  --font-sans:  'Plus Jakarta Sans', sans-serif;
  --font-mono:  'Space Grotesk', monospace;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  selection-color: var(--bg);
  selection-background: var(--copper);
}
::selection { background: var(--copper); color: var(--bg); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── Layout ── */
.max-w { max-width: 1280px; margin-inline: auto; padding-inline: 1rem; }
@media(min-width:640px)  { .max-w { padding-inline: 1.5rem; } }
@media(min-width:1024px) { .max-w { padding-inline: 2rem; } }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.justify-end     { justify-content: flex-end; }
.gap-1  { gap: .25rem; }
.gap-2  { gap: .5rem; }
.gap-3  { gap: .75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.grid   { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media(max-width:767px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }
@media(min-width:768px) and (max-width:1023px) { .grid-3 { grid-template-columns: repeat(2,1fr); } .grid-4 { grid-template-columns: repeat(2,1fr); } }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.inset-0  { inset: 0; }
.z-10  { z-index: 10; }
.z-40  { z-index: 40; }
.z-50  { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-auto { overflow-x: auto; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.shrink-0    { flex-shrink: 0; }
.hidden      { display: none !important; }
.block       { display: block; }

/* ── Spacing helpers ── */
.py-1  { padding-block: .25rem; }
.py-2  { padding-block: .5rem; }
.py-3  { padding-block: .75rem; }
.py-4  { padding-block: 1rem; }
.py-6  { padding-block: 1.5rem; }
.py-8  { padding-block: 2rem; }
.py-12 { padding-block: 3rem; }
.py-16 { padding-block: 4rem; }
.py-20 { padding-block: 5rem; }
.py-24 { padding-block: 6rem; }
.px-2  { padding-inline: .5rem; }
.px-3  { padding-inline: .75rem; }
.px-4  { padding-inline: 1rem; }
.px-5  { padding-inline: 1.25rem; }
.px-6  { padding-inline: 1.5rem; }
.px-8  { padding-inline: 2rem; }
.p-3   { padding: .75rem; }
.p-4   { padding: 1rem; }
.p-5   { padding: 1.25rem; }
.p-6   { padding: 1.5rem; }
.p-8   { padding: 2rem; }
.mt-1  { margin-top: .25rem; }
.mt-2  { margin-top: .5rem; }
.mt-4  { margin-top: 1rem; }
.mt-auto { margin-top: auto; }
.mb-4  { margin-bottom: 1rem; }
.mx-auto { margin-inline: auto; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ── Typography ── */
.font-serif   { font-family: var(--font-serif); }
.font-mono    { font-family: var(--font-mono); }
.font-black   { font-weight: 900; }
.font-extrabold { font-weight: 800; }
.font-bold    { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium  { font-weight: 500; }
.uppercase    { text-transform: uppercase; }
.tracking-widest { letter-spacing: .15em; }
.tracking-wider  { letter-spacing: .1em; }
.leading-tight   { line-height: 1.2; }
.leading-relaxed { line-height: 1.7; }
.italic { font-style: italic; }
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.text-xs   { font-size: .75rem; }
.text-sm   { font-size: .875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }
.text-5xl  { font-size: 3rem; }
@media(max-width:639px) { .sm-text-3xl { font-size: 1.875rem !important; } }
@media(min-width:640px) { .sm-text-5xl { font-size: 3rem; } }

/* ── Colors ── */
.text-cream    { color: var(--cream); }
.text-green    { color: var(--green); }
.text-green-lt { color: var(--green-lt); }
.text-copper   { color: var(--copper); }
.text-muted    { color: var(--muted); }
.text-muted-dk { color: var(--muted-dk); }
.text-amber    { color: var(--amber); }
.text-bg       { color: var(--bg); }
.text-instagram { color: var(--instagram); }
.text-facebook  { color: var(--facebook); }

/* ── Announcement Bar ── */
.announce-bar {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  padding: .375rem 1rem;
  font-family: var(--font-mono);
  font-size: .6875rem;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  letter-spacing: .05em;
}
.announce-bar .free-ship { color: var(--green); font-weight: 700; text-transform: uppercase; display: flex; align-items: center; gap: .375rem; }
.announce-bar strong { color: var(--copper); }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(36, 28, 22, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  width: 100%;
}
.navbar-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 1rem;
  height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
@media(min-width:640px)  { .navbar-inner { padding-inline: 1.5rem; } }
@media(min-width:1024px) { .navbar-inner { padding-inline: 2rem; } }

.nav-side {
  display: flex;
  align-items: center;
}
.nav-left {
  justify-content: flex-end;
  gap: 2.5rem;
  padding-right: 2rem;
}
.nav-right {
  justify-content: flex-start;
  gap: 2.5rem;
  padding-left: 2rem;
}

.nav-logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 50;
  top: 20px; /* Overlaps hero section */
}
.nav-logo-center img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
  transition: transform 0.3s ease;
}
.nav-logo-center:hover img {
  transform: scale(1.05);
}

.nav-links-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media(min-width:1024px) { .nav-links-desktop { display: flex; } }

.nav-link {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D0C9B8;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 0.5rem 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--copper);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--cream); }

.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D0C9B8;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans);
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.5rem 0;
}
.nav-dropdown-btn:hover { color: var(--cream); }
.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: .25rem;
  width: 11rem;
  padding: .5rem;
  background: #0F1411;
  border: 1px solid var(--border-g);
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,.6);
  display: none;
  flex-direction: column;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; }
.nav-dropdown-item {
  width: 100%;
  text-align: left;
  padding: .625rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background: none; border: none; cursor: pointer;
  border-radius: .5rem;
  font-family: var(--font-sans);
  transition: all .15s;
}
.nav-dropdown-item:hover { color: var(--cream); background: #151D18; }
.nav-dropdown-item.active { color: var(--green); background: #192A1F; }

.nav-actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; margin-left: auto; }
.nav-icon-btn {
  padding: .625rem;
  border-radius: .75rem;
  background: #121714;
  color: var(--muted);
  border: 1px solid #202E24;
  transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.nav-icon-btn:hover { color: var(--green); background: #17221B; }
.nav-icon-btn svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.nav-cart-btn {
  display: flex; align-items: center; gap: .5rem;
  padding: .625rem 1rem;
  border-radius: .75rem;
  background: var(--copper);
  color: var(--bg);
  font-weight: 800;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: all .2s;
  box-shadow: 0 0 20px rgba(200,122,75,.35);
}
.nav-cart-btn:hover { background: var(--copper-lt); }
.nav-cart-btn svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.cart-count {
  min-width: 1.25rem; height: 1.25rem;
  padding-inline: .25rem;
  border-radius: 9999px;
  background: var(--bg);
  color: var(--green);
  font-size: .625rem;
  font-family: var(--font-mono);
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

.mobile-menu-btn {
  display: flex;
  padding: .5rem;
  color: var(--cream);
  border-radius: .5rem;
  transition: color .2s;
  margin-right: auto;
}
.mobile-menu-btn:hover { color: var(--green); }
.mobile-menu-btn svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media(min-width:1024px) { .mobile-menu-btn { display: none; } }

.mobile-menu {
  border-top: 1px solid #1E2822;
  background: #0E1310;
  padding: 1.5rem 1rem;
  display: none;
}
.mobile-menu.open { display: block; }
.mobile-menu-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: .5rem;
}
.mobile-nav-item {
  padding: .75rem;
  text-align: left;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .05em;
  border-radius: .75rem;
  border: 1px solid #1F2922;
  background: #121614;
  color: var(--cream);
  transition: all .15s;
  width: 100%;
}
.mobile-nav-item:hover { background: #17201A; }
.mobile-nav-item.active { background: #1A2B20; border-color: #385541; color: var(--green); }

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #070908;
  padding-block: 3rem 6rem;
  border-bottom: 1px solid #1A261D;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .2;
  filter: contrast(1.25) brightness(.75);
  transform: scale(1.05);
  animation: heroPulse 10s ease-in-out infinite;
}
@keyframes heroPulse { 0%,100%{transform:scale(1.05)} 50%{transform:scale(1)} }
.hero-overlay-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #0C0D0E, rgba(12,13,14,.8), transparent);
}
.hero-dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(#22C55E 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .1;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem .875rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.badge-green { background: #1A2E20; border: 1px solid #3A5C44; color: var(--green-lt); }
.badge-copper { background: rgba(200,122,75,.1); border: 1px solid rgba(200,122,75,.3); color: var(--copper); }
.badge-pill svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--cream);
  font-size: clamp(2rem, 8vw, 4.5rem);
  letter-spacing: -.01em;
}
.hero-title .gradient-text {
  background: linear-gradient(to right, var(--cream), var(--copper), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.125rem; color: var(--muted); max-width: 36rem; line-height: 1.7; }
.hero-desc strong { color: var(--cream); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; border-radius: .75rem; transition: all .2s; cursor: pointer; font-family: var(--font-sans); border: none; }
.btn-copper { background: var(--copper); color: var(--bg); padding: 1rem 2rem; box-shadow: 0 0 24px rgba(200,122,75,.4); }
.btn-copper:hover { background: var(--copper-lt); }
.btn-dark { background: #141C16; color: var(--cream); padding: 1rem 2rem; border: 1px solid #27382D; }
.btn-dark:hover { color: var(--green); border-color: #3E5C46; }
.btn-green { background: #1E2E23; color: var(--green); padding: .875rem 1.5rem; border: 1px solid #3E5C46; }
.btn-green:hover { background: #273D2F; }
.btn-outline { background: #141916; color: var(--muted); padding: .875rem 1.5rem; border: 1px solid #242F27; }
.btn-outline:hover { color: var(--cream); }
.btn-icon { padding: .625rem; border-radius: .75rem; }
.btn svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-sm { padding: .5rem 1rem; font-size: .6875rem; }
.btn-xs { padding: .375rem .75rem; font-size: .625rem; border-radius: .5rem; }
.btn-full { width: 100%; }

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(28,41,32,.8);
  width: 100%;
  max-width: 48rem;
}
@media(min-width:768px) { .hero-pillars { grid-template-columns: repeat(4,1fr); } }
.pillar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem;
  border-radius: .75rem;
  background: rgba(16,23,19,.6);
  border: 1px solid #1E2C22;
  font-size: .75rem;
  font-family: var(--font-mono);
  color: var(--muted);
}
.pillar svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── Section Spacing ── */
.sections { display: flex; flex-direction: column; gap: 6rem; padding-bottom: 5rem; }
.section { max-width: 1280px; margin-inline: auto; padding-inline: 1rem; }
@media(min-width:640px)  { .section { padding-inline: 1.5rem; } }
@media(min-width:1024px) { .section { padding-inline: 2rem; } }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid #232F27;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color .3s;
}
.card:hover { border-color: #3E5C46; }
.card-dark { background: #0F1411; border-color: var(--border-g); border-radius: 1.5rem; }
.card-p { padding: 1.5rem; }

/* ── Why Section (Documentary) ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media(min-width:1024px) { .why-grid { grid-template-columns: 5fr 7fr; } }
.why-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #36503E;
  box-shadow: 0 25px 50px rgba(0,0,0,.6);
}
.why-img-wrap img { width:100%; height:100%; object-fit:cover; filter:contrast(1.1) brightness(.9); }
.why-img-caption {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  padding: 1rem;
  border-radius: .75rem;
  background: rgba(12,13,14,.9);
  backdrop-filter: blur(12px);
  border: 1px solid #26382D;
}
.caption-label { font-size: .625rem; font-family: var(--font-mono); font-weight: 700; color: var(--copper); text-transform: uppercase; display: block; }
.caption-name  { font-family: var(--font-serif); font-weight: 700; font-size: .875rem; color: var(--cream); }

.why-quote {
  padding: 1rem;
  border-radius: .75rem;
  background: #141E17;
  border-left: 4px solid var(--copper);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .75rem;
  color: var(--cream);
}

/* ── Collection Grid ── */
.collection-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid #233127;
  height: 20rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
  transition: border-color .3s;
}
.collection-card:hover { border-color: var(--green); }
.collection-card img {
  position: absolute; inset: 0;
  width:100%; height:100%;
  object-fit: cover;
  opacity: .4;
  transition: transform .5s;
  filter: brightness(.9);
}
.collection-card:hover img { transform: scale(1.05); }
.collection-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #0C0D0E, rgba(12,13,14,.6), transparent);
}
.collection-info { position: relative; z-index: 1; display: flex; flex-direction: column; gap: .5rem; }
.coll-badge {
  display: inline-block;
  padding: .25rem .625rem;
  border-radius: .25rem;
  font-size: .625rem;
  font-family: var(--font-mono);
  font-weight: 900;
  text-transform: uppercase;
  width: fit-content;
}
.coll-badge-copper { background: var(--copper); color: var(--bg); }
.coll-badge-green  { background: #22C55E; color: var(--bg); }
.coll-badge-white  { background: var(--cream); color: var(--bg); }
.coll-title { font-family: var(--font-serif); font-weight: 900; font-size: 1.5rem; color: var(--cream); }
.coll-desc  { font-size: .75rem; color: var(--muted); }

/* ── Product Cards ── */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  background: var(--bg-card);
  border: 1px solid #232F27;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.product-card:hover { border-color: #3E5C46; box-shadow: 0 8px 32px rgba(0,0,0,.5); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  background: #0D100E;
  overflow: hidden;
  cursor: pointer;
}
.product-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s;
  filter: brightness(.95);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badges {
  position: absolute; top: .75rem; left: .75rem; right: .75rem;
  display: flex; align-items: flex-start; justify-content: space-between;
  pointer-events: none; z-index: 10;
}
.product-badge-bs   { padding: .25rem .625rem; border-radius: .375rem; background: var(--copper); color: var(--bg); font-size: .625rem; font-family: var(--font-mono); font-weight: 900; text-transform: uppercase; }
.product-badge-ltd  { padding: .25rem .625rem; border-radius: .375rem; background: var(--red); color: var(--cream); font-size: .625rem; font-family: var(--font-mono); font-weight: 900; text-transform: uppercase; }
.product-badge-hrs  { display: inline-flex; align-items: center; gap: .25rem; padding: .25rem .625rem; border-radius: .375rem; background: rgba(12,13,14,.8); backdrop-filter: blur(4px); border: 1px solid #2F4436; color: var(--green); font-size: .625rem; font-family: var(--font-mono); font-weight: 700; }
.product-badge-hrs svg { width: .75rem; height: .75rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.product-hover-actions {
  position: absolute; inset: 0;
  background: rgba(12,13,14,.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .3s;
  display: flex; align-items: center; justify-content: center; gap: .75rem;
}
.product-card:hover .product-hover-actions { opacity: 1; }
.hover-quick-view {
  padding: .75rem;
  border-radius: 50%;
  background: #121614;
  color: var(--cream);
  border: 1px solid #2F4436;
  box-shadow: 0 4px 16px rgba(0,0,0,.5);
  transition: all .2s;
}
.hover-quick-view:hover { color: var(--green); transform: scale(1.1); }
.hover-quick-view svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hover-add {
  display: flex; align-items: center; gap: .5rem;
  padding: .75rem 1.25rem;
  border-radius: 9999px;
  background: var(--copper);
  color: var(--bg);
  font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .05em;
  box-shadow: 0 4px 16px rgba(0,0,0,.5);
  transition: all .2s;
}
.hover-add:hover { background: var(--copper-lt); transform: scale(1.05); }
.hover-add svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.product-body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem; gap: .75rem; }
.product-meta { display: flex; align-items: center; justify-content: space-between; font-size: .6875rem; font-family: var(--font-mono); color: var(--muted-dk); }
.product-cat  { text-transform: uppercase; letter-spacing: .1em; color: var(--copper); font-weight: 600; }
.product-intensity { padding: .125rem .5rem; border-radius: .25rem; background: #17211B; border: 1px solid #28382D; color: var(--green-lt); }
.product-name { font-family: var(--font-serif); font-weight: 900; font-size: 1.125rem; color: var(--cream); cursor: pointer; line-height: 1.2; transition: color .2s; }
.product-card:hover .product-name { color: var(--green); }
.product-subtitle { font-size: .75rem; color: #9EB0A1; line-height: 1.4; }
.product-scents { padding-top: .5rem; border-top: 1px solid #1C241E; display: flex; flex-wrap: wrap; gap: .375rem; }
.scent-tag { font-size: .625rem; padding: .125rem .5rem; border-radius: 9999px; background: #151A17; border: 1px solid #232F27; color: #C9D6CB; }
.product-footer { margin-top: auto; padding-top: .75rem; border-top: 1px solid #1C241E; display: flex; align-items: center; justify-content: space-between; }
.product-rating { display: flex; align-items: center; gap: .375rem; }
.star-icon { color: var(--amber); font-size: .875rem; }
.rating-score { font-size: .75rem; font-family: var(--font-mono); font-weight: 700; color: var(--cream); }
.rating-count  { font-size: .625rem; color: #708074; }
.product-price { font-size: 1rem; font-family: var(--font-mono); font-weight: 800; color: var(--cream); }
.product-atc {
  width: 100%; margin-top: .5rem;
  padding: .625rem;
  border-radius: .75rem;
  background: #1A271F;
  border: 1px solid #304838;
  color: var(--green-lt);
  font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.product-atc:hover { background: #23352A; color: var(--green); }
.product-atc svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Impact Process Steps ── */
.impact-step {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #141B17;
  border: 1px solid #223126;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.step-num {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: #1E3023;
  border: 1px solid #3E5C46;
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 1.125rem;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-family: var(--font-serif); font-weight: 700; font-size: 1rem; color: var(--cream); }
.step-desc  { font-size: .75rem; color: var(--muted-dk); }

/* ── Stats Grid ── */
.stat-block { padding: 1rem; border-radius: .75rem; background: #0B0E0C; text-align: center; }
.stat-num  { font-size: 1.875rem; font-family: var(--font-mono); font-weight: 900; }
.stat-label { font-size: .6875rem; font-family: var(--font-mono); color: var(--muted-dk); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }

/* ── Impact Calculator ── */
.impact-calc {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #121E15, #0E1510, #16120F);
  border: 1px solid #2B4232;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,.5);
}
.impact-calc-glow {
  position: absolute; top: 0; right: 0;
  width: 20rem; height: 20rem;
  background: rgba(74,222,128,.1);
  border-radius: 50%;
  filter: blur(3rem);
  pointer-events: none;
}
.calc-slider {
  width: 100%; height: .625rem;
  border-radius: .5rem;
  background: #17231B;
  appearance: none;
  cursor: pointer;
  accent-color: var(--green);
}
.calc-metric { padding: 1rem; border-radius: 1rem; background: #121A15; border: 1px solid #24362A; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.calc-metric svg { width: 1.5rem; height: 1.5rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.calc-metric-num   { font-size: 1.875rem; font-family: var(--font-mono); font-weight: 900; color: var(--cream); }
.calc-metric-label { font-size: .6875rem; font-family: var(--font-mono); color: var(--muted); font-weight: 700; }

/* ── Review Cards ── */
.review-card { padding: 1.5rem; border-radius: 1rem; background: var(--bg-card); border: 1px solid #233127; display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; }
.review-stars { display: flex; align-items: center; gap: .125rem; color: var(--amber); font-size: .875rem; }
.review-badge { font-size: .625rem; font-family: var(--font-mono); font-weight: 700; padding: .125rem .5rem; border-radius: .25rem; background: rgba(200,122,75,.2); color: var(--copper); border: 1px solid rgba(200,122,75,.3); }
.review-title { font-family: var(--font-serif); font-weight: 700; font-size: 1rem; color: var(--cream); }
.review-body  { font-size: .75rem; color: #9EB0A1; line-height: 1.6; }
.review-author { padding-top: 1rem; border-top: 1px solid #1C261E; display: flex; align-items: center; gap: .75rem; }
.review-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; border: 1px solid #2A3B2F; flex-shrink: 0; }
.review-name   { font-family: var(--font-serif); font-weight: 700; font-size: .75rem; color: var(--cream); }
.review-loc    { font-size: .625rem; font-family: var(--font-mono); color: #78887C; }

/* ── Social Posts Grid ── */
.social-post {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid #232F27;
  transition: border-color .3s;
  display: block;
}
.social-post:hover { border-color: var(--green); }
.social-post img { width:100%;height:100%;object-fit:cover;transition:transform .5s;filter:brightness(.9); }
.social-post:hover img { transform: scale(1.05); }
.social-post-grad { position:absolute;inset:0;background:linear-gradient(to top,#0C0D0E,transparent,transparent);opacity:.8; }
.social-platform { position:absolute;top:.75rem;left:.75rem;padding:.5rem;border-radius:.5rem;background:rgba(12,13,14,.8);backdrop-filter:blur(4px); }
.social-platform svg { width:1rem;height:1rem;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round; }
.social-caption {
  position: absolute; bottom: .75rem; left: .75rem; right: .75rem;
  padding: .75rem;
  border-radius: .75rem;
  background: rgba(12,13,14,.9);
  backdrop-filter: blur(4px);
  border: 1px solid #25362A;
}
.social-cap-text { font-size: .6875rem; color: #D0C9B8; line-height: 1.4; }
.social-stats { display: flex; gap: .75rem; margin-top: .25rem; font-size: .625rem; font-family: var(--font-mono); color: var(--green); }

/* ── Section Header ── */
.section-header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.section-eyebrow { font-size: .75rem; font-family: var(--font-mono); font-weight: 700; color: var(--copper); text-transform: uppercase; letter-spacing: .1em; display: block; margin-bottom: .25rem; }
.section-title { font-family: var(--font-serif); font-weight: 900; color: var(--cream); font-size: clamp(1.5rem, 4vw, 2.25rem); }

/* ── Tabs / Filters ── */
.tab-btn {
  padding: .5rem 1rem;
  border-radius: .75rem;
  font-size: .75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: 1px solid #222E26;
  background: #121614;
  color: var(--muted-dk);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-btn:hover { color: var(--cream); }
.tab-btn.active { background: #1E2E23; color: var(--green); border-color: #3A5C44; }
.tab-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.tab-scroll { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .5rem; }
.tab-scroll::-webkit-scrollbar { display: none; }

/* ── Story Page ── */
.chapter-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; padding: 2rem; border-radius: 1.5rem; background: #0E1310; border: 1px solid #223126; }
@media(min-width:1024px) { .chapter-grid { grid-template-columns: 5fr 7fr; } }
.chapter-img { position: relative; aspect-ratio: 4/3; border-radius: 1rem; overflow: hidden; border: 1px solid #2A3E30; }
.chapter-img img { width:100%;height:100%;object-fit:cover;filter:contrast(1.1) brightness(.9); }
.chapter-num  { font-size: .75rem; font-family: var(--font-mono); font-weight: 700; text-transform: uppercase; display: block; margin-bottom: .5rem; }
.chapter-title { font-family: var(--font-serif); font-weight: 900; font-size: clamp(1.25rem, 3vw, 1.875rem); color: var(--cream); }
.chapter-text  { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ── Wheelhouse / Impact Page ── */
.program-card { padding: 1.5rem; border-radius: 1rem; background: #121814; border: 1px solid var(--border-g); display: flex; flex-direction: column; gap: .75rem; }
.program-card svg { width: 2rem; height: 2rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.program-title { font-family: var(--font-serif); font-weight: 700; font-size: 1.125rem; color: var(--cream); }
.program-desc  { font-size: .75rem; color: #9EB0A1; line-height: 1.6; }

.event-card { border-radius: 1rem; background: var(--bg-card); border: 1px solid #233127; overflow: hidden; display: flex; flex-direction: column; }
.event-img-wrap { position: relative; aspect-ratio: 16/9; }
.event-img-wrap img { width:100%;height:100%;object-fit:cover; }
.event-cat-badge { position:absolute;top:.75rem;left:.75rem;padding:.25rem .625rem;border-radius:.25rem;background:rgba(12,13,14,.8);backdrop-filter:blur(4px);color:var(--green);font-family:var(--font-mono);font-size:.625rem;font-weight:700; }
.event-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.event-title { font-family: var(--font-serif); font-weight: 700; font-size: 1rem; color: var(--cream); }
.event-desc  { font-size: .75rem; color: #9EB0A1; line-height: 1.5; }
.event-meta  { padding-top: .75rem; border-top: 1px solid #1C261E; display: flex; flex-direction: column; gap: .25rem; font-size: .6875rem; font-family: var(--font-mono); color: var(--muted-dk); }
.event-meta-row { display: flex; align-items: center; gap: .375rem; }
.event-meta-row svg { width: .875rem; height: .875rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── Journal ── */
.article-card { border-radius: 1rem; background: var(--bg-card); border: 1px solid #222E26; overflow: hidden; cursor: pointer; transition: border-color .3s; display: flex; flex-direction: column; }
.article-card:hover { border-color: #3E5C46; }
.article-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.article-img-wrap img { width:100%;height:100%;object-fit:cover;filter:brightness(.9);transition:transform .5s; }
.article-card:hover .article-img-wrap img { transform: scale(1.05); }
.article-cat-badge { position:absolute;top:.75rem;left:.75rem;padding:.25rem .625rem;border-radius:.25rem;background:rgba(12,13,14,.8);backdrop-filter:blur(4px);color:var(--green);font-family:var(--font-mono);font-size:.625rem;font-weight:700; }
.article-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.article-title { font-family: var(--font-serif); font-weight: 700; font-size: 1.125rem; color: var(--cream); line-height: 1.3; transition: color .2s; }
.article-card:hover .article-title { color: var(--green); }
.article-excerpt { font-size: .75rem; color: #9EB0A1; line-height: 1.5; }
.article-footer { margin-top: auto; padding-top: .75rem; border-top: 1px solid #1C261E; display: flex; justify-content: space-between; font-size: .6875rem; font-family: var(--font-mono); color: #78887C; }

/* ── FAQ ── */
.faq-item { border-radius: 1rem; background: #101512; border: 1px solid #202B23; overflow: hidden; }
.faq-btn { width:100%;padding:1.25rem;text-align:left;display:flex;align-items:center;justify-content:space-between;gap:1rem;font-family:var(--font-serif);font-weight:700;font-size:1rem;color:var(--cream);cursor:pointer;transition:color .2s;background:none;border:none; }
.faq-btn:hover { color: var(--green); }
.faq-chevron { width:1.25rem;height:1.25rem;stroke:var(--copper);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;transition:transform .3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); stroke: var(--green); }
.faq-answer { padding: 0 1.25rem 1.25rem; font-size: .875rem; color: var(--muted); line-height: 1.7; border-top: 1px solid #1C261F; padding-top: 1rem; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ── Search Bar ── */
.search-input-wrap { position: relative; }
.search-input-wrap svg { position:absolute;left:.75rem;top:50%;transform:translateY(-50%);width:1rem;height:1rem;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round; }
.search-input {
  width: 100%;
  padding: .625rem .875rem .625rem 2.375rem;
  border-radius: .75rem;
  background: #090C0A;
  border: 1px solid #222E26;
  color: var(--cream);
  font-size: .75rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--green); }
.search-input::placeholder { color: #607065; }

/* ── Shop Page controls ── */
.shop-filter-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; border-radius: 1rem; background: #101412; border: 1px solid #202B23; }
.filter-label { font-size: .75rem; font-family: var(--font-mono); color: var(--muted-dk); display: flex; align-items: center; gap: .375rem; }
.filter-label svg { width: .875rem; height: .875rem; stroke: var(--copper); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.filter-select {
  background: #090C0A;
  border: 1px solid #222E26;
  color: var(--cream);
  font-size: .75rem;
  font-family: var(--font-mono);
  border-radius: .5rem;
  padding: .375rem .625rem;
  outline: none;
  cursor: pointer;
}
.filter-select:focus { border-color: var(--green); }

/* ── Cart Drawer ── */
.cart-overlay { position:fixed;inset:0;background:rgba(0,0,0,.8);backdrop-filter:blur(4px);z-index:50; display:flex;justify-content:flex-end; }
.cart-drawer {
  position: relative;
  width: 100%;
  max-width: 28rem;
  background: #0D100E;
  border-left: 1px solid #232F27;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 10;
  overflow: hidden;
}
.cart-header { padding: 1.25rem; border-bottom: 1px solid #1E2921; display: flex; align-items: center; justify-content: space-between; background: #111613; }
.cart-title  { font-family: var(--font-serif); font-weight: 900; font-size: 1.125rem; color: var(--cream); display: flex; align-items: center; gap: .5rem; }
.cart-title svg { width: 1.25rem; height: 1.25rem; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cart-close { padding: .5rem; border-radius: .5rem; color: var(--muted-dk); transition: all .2s; }
.cart-close:hover { color: var(--cream); background: #1A231C; }
.cart-close svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cart-ship-bar { background: #141C16; border-bottom: 1px solid #223126; padding: .75rem 1.25rem; font-size: .75rem; }
.ship-progress-track { width: 100%; height: .375rem; background: #090D0A; border-radius: 9999px; margin-top: .5rem; overflow: hidden; border: 1px solid #223126; }
.ship-progress-fill { height: 100%; background: linear-gradient(to right, var(--copper), var(--green)); transition: width .5s; }

.cart-impact-box { margin: 1rem; padding: .875rem; border-radius: .75rem; background: linear-gradient(to right, #172E1E, #122216); border: 1px solid #2F4D37; display: flex; align-items: center; justify-content: space-between; font-size: .75rem; }
.cart-impact-left { display: flex; align-items: center; gap: .625rem; }
.cart-impact-left svg { width: 1.25rem; height: 1.25rem; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.impact-label { font-weight: 700; color: var(--cream); display: block; }
.impact-sub   { font-size: .6875rem; color: var(--muted); }
.impact-hrs   { font-family: var(--font-mono); font-weight: 800; font-size: .875rem; color: var(--green); background: #0A140D; padding: .25rem .625rem; border-radius: .5rem; border: 1px solid #25422D; }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-item { padding: .875rem; border-radius: .75rem; background: #121714; border: 1px solid #222E26; display: flex; align-items: center; gap: .875rem; }
.cart-item-img { width: 4rem; height: 4rem; border-radius: .5rem; object-fit: cover; background: #090D0A; flex-shrink: 0; border: 1px solid #222E26; }
.cart-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .25rem; }
.cart-item-name { font-family: var(--font-serif); font-weight: 700; font-size: .875rem; color: var(--cream); }
.cart-item-unit { font-size: .6875rem; font-family: var(--font-mono); color: var(--muted-dk); }
.cart-item-sub-toggle { font-size: .625rem; font-family: var(--font-mono); padding: .125rem .5rem; border-radius: .25rem; border: 1px solid #222E26; background: #151B17; color: #7E8E81; cursor: pointer; transition: all .15s; }
.cart-item-sub-toggle.active { background: #1E3A28; border-color: #3E5C46; color: var(--green); font-weight: 700; }
.cart-item-qty { display: flex; align-items: center; border: 1px solid #27362C; border-radius: .5rem; background: #0E1310; overflow: hidden; }
.qty-btn { padding: .25rem .5rem; color: var(--muted-dk); font-size: .75rem; transition: all .15s; }
.qty-btn:hover { color: var(--cream); background: #1B251E; }
.qty-num { padding-inline: .75rem; font-size: .75rem; font-family: var(--font-mono); font-weight: 700; color: var(--cream); }
.cart-item-price { font-family: var(--font-mono); font-weight: 700; font-size: .875rem; color: var(--cream); flex-shrink: 0; }
.cart-item-remove { color: #68786B; transition: color .15s; padding: .25rem; flex-shrink: 0; }
.cart-item-remove:hover { color: #EF4444; }
.cart-item-remove svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cart-empty { padding: 4rem 1rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cart-empty-icon { width: 4rem; height: 4rem; border-radius: 50%; background: #141A16; border: 1px solid #253328; display: flex; align-items: center; justify-content: center; color: #68786B; }
.cart-empty-icon svg { width: 2rem; height: 2rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cart-footer { padding: 1.25rem; border-top: 1px solid #1E2921; background: #101412; display: flex; flex-direction: column; gap: .75rem; }
.cart-line { display: flex; justify-content: space-between; font-size: .75rem; font-family: var(--font-mono); color: #9EB0A1; }
.cart-line.total { padding-top: .5rem; border-top: 1px solid #1C261F; font-size: .875rem; color: var(--cream); font-weight: 700; }
.cart-total-num { font-size: 1rem; color: var(--green); }
.cart-trust { display: flex; align-items: center; justify-content: center; gap: .75rem; font-size: .625rem; font-family: var(--font-mono); color: #68786B; }
.cart-trust-item { display: flex; align-items: center; gap: .25rem; }
.cart-trust-item svg { width: .875rem; height: .875rem; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cart-order-done { padding: 3rem 1rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.order-check-icon { width: 4rem; height: 4rem; border-radius: 50%; background: #1E3A28; border: 2px solid var(--green); color: var(--green); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 30px rgba(74,222,128,.3); }
.order-check-icon svg { width: 2rem; height: 2rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Product Modal ── */
.modal-overlay { position:fixed;inset:0;z-index:50;display:flex;align-items:center;justify-content:center;padding:1rem; }
.modal-backdrop { position:fixed;inset:0;background:rgba(0,0,0,.85);backdrop-filter:blur(8px); }
.modal-box {
  position: relative;
  width: 100%;
  max-width: 56rem;
  background: #0D100E;
  border: 1px solid #27382C;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.7);
  z-index: 10;
  color: var(--cream);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
@media(min-width:1024px) { .modal-box { flex-direction: row; } }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 20;
  padding: .625rem;
  border-radius: 50%;
  background: #151A17;
  border: 1px solid #2B3B30;
  color: var(--muted);
  transition: all .2s;
}
.modal-close:hover { color: var(--cream); background: #1E2721; }
.modal-close svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.modal-gallery {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem;
  background: #080B09;
  border-bottom: 1px solid #1E2921;
}
@media(min-width:1024px) { .modal-gallery { width: 50%; border-bottom: none; border-right: 1px solid #1E2921; overflow: hidden; } }
.modal-img-main { position: relative; width: 100%; aspect-ratio: 1; border-radius: 1rem; overflow: hidden; background: #0F1411; border: 1px solid #223026; }
.modal-img-main img { width:100%;height:100%;object-fit:cover;filter:brightness(.95); }
.modal-impact-badge { position:absolute;top:.75rem;left:.75rem;padding:.375rem .75rem;border-radius:.375rem;background:rgba(12,13,14,.8);backdrop-filter:blur(4px);border:1px solid #2B3D30;color:var(--green);font-size:.75rem;font-family:var(--font-mono);font-weight:700; }
.modal-thumbs { display: flex; gap: .75rem; }
.modal-thumb { width: 3.5rem; height: 3.5rem; border-radius: .75rem; overflow: hidden; border: 2px solid #223026; opacity: .6; transition: all .2s; cursor: pointer; flex-shrink: 0; }
.modal-thumb:hover { opacity: 1; }
.modal-thumb.active { border-color: var(--green); opacity: 1; transform: scale(1.05); }
.modal-thumb img { width:100%;height:100%;object-fit:cover; }

.modal-details { flex: 1; padding: 1.5rem 2rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1.25rem; }
.modal-cat-line { display: flex; align-items: center; gap: .5rem; font-size: .75rem; font-family: var(--font-mono); color: var(--copper); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.modal-cat-line .wt { color: var(--green-lt); }
.modal-product-name { font-family: var(--font-serif); font-weight: 900; font-size: clamp(1.5rem, 4vw, 1.875rem); color: var(--cream); }
.modal-subtitle { font-size: .875rem; color: #9EB0A1; }
.modal-price-row { display: flex; align-items: center; justify-content: space-between; padding-block: .75rem; border-block: 1px solid #1E2921; }
.modal-price { font-size: 1.5rem; font-family: var(--font-mono); font-weight: 900; color: var(--cream); }
.save-badge { font-size: .75rem; font-family: var(--font-mono); font-weight: 700; color: var(--green); background: #172E1E; padding: .125rem .5rem; border-radius: .25rem; border: 1px solid #2F4D37; }
.modal-rating-row { display: flex; align-items: center; gap: .375rem; }

.scent-pyramid { display: flex; flex-direction: column; gap: .625rem; background: #121714; padding: 1rem; border-radius: 1rem; border: 1px solid #222F26; }
.scent-pyramid h4 { font-size: .75rem; font-family: var(--font-mono); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--copper); display: flex; align-items: center; gap: .375rem; }
.scent-pyramid h4 svg { width: .875rem; height: .875rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.scent-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; font-size: .6875rem; font-family: var(--font-mono); }
.scent-col { padding: .5rem; border-radius: .375rem; background: #0B0E0C; border: 1px solid #1E2921; }
.scent-label { font-size: .5625rem; color: #7E8E81; display: block; margin-bottom: .125rem; }
.scent-value { color: var(--cream); font-weight: 500; }

.modal-desc { font-size: .75rem; color: var(--muted); line-height: 1.7; }
.modal-story { color: var(--copper); font-style: italic; border-left: 2px solid var(--copper); padding-left: .75rem; padding-block: .25rem; background: #181310; border-radius: 0 .375rem .375rem 0; font-size: .75rem; }
.modal-ingredients h4 { font-size: .75rem; font-family: var(--font-mono); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #D0C9B8; }
.modal-ingredients p  { font-size: .6875rem; color: var(--muted-dk); line-height: 1.6; margin-top: .375rem; }

.purchase-options { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.purchase-opt { padding: .75rem; border-radius: .75rem; border: 1px solid #222F26; background: #121614; text-align: left; cursor: pointer; transition: all .2s; }
.purchase-opt.active { background: #1E2E23; border-color: var(--green); }
.purchase-opt:not(.active):hover { border-color: #334438; }
.purchase-opt-title { font-weight: 700; font-size: .75rem; color: var(--cream); }
.purchase-opt-title.sub-active { color: var(--green); display: flex; align-items: center; justify-content: space-between; }
.sub-save { font-size: .5625rem; background: rgba(74,222,128,.2); padding: .125rem .375rem; border-radius: .25rem; }
.purchase-opt-price { font-size: .6875rem; font-family: var(--font-mono); color: #9EB0A1; margin-top: .125rem; }

.modal-atc-btn {
  width: 100%; padding: 1rem;
  border-radius: .75rem;
  background: var(--copper);
  color: var(--bg);
  font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  box-shadow: 0 0 24px rgba(200,122,75,.4);
  transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  border: none; cursor: pointer; font-family: var(--font-sans);
}
.modal-atc-btn:hover { background: var(--copper-lt); }
.modal-atc-btn.added { background: #22C55E; box-shadow: 0 0 24px rgba(34,197,94,.4); }
.modal-atc-btn svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── Search Modal ── */
.search-modal-overlay { position:fixed;inset:0;z-index:50;display:flex;align-items:flex-start;justify-content:center;padding-top:4rem;padding-inline:1rem; }
.search-modal-box { position:relative;width:100%;max-width:42rem;background:#0E1210;border:1px solid #27372C;border-radius:1.5rem;overflow:hidden;box-shadow:0 25px 60px rgba(0,0,0,.7);z-index:10;display:flex;flex-direction:column; }
.search-bar-row { padding: 1rem; border-bottom: 1px solid #1E2921; display: flex; align-items: center; gap: .75rem; background: #131915; }
.search-bar-row svg { width: 1.25rem; height: 1.25rem; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.search-modal-input { flex: 1; background: none; border: none; color: var(--cream); font-size: .875rem; font-family: var(--font-sans); outline: none; }
.search-modal-input::placeholder { color: #607265; }
.search-esc { padding: .375rem .75rem; border-radius: .5rem; background: #1D2721; color: var(--muted); font-size: .75rem; font-family: var(--font-mono); font-weight: 700; }
.search-results { max-height: 60vh; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .75rem; }
.search-result-item { padding: .75rem; border-radius: 1rem; background: #131714; border: 1px solid #222E26; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; transition: all .2s; }
.search-result-item:hover { background: #18211C; border-color: #3E5C46; }
.search-result-left { display: flex; align-items: center; gap: .875rem; }
.search-result-img { width: 3.5rem; height: 3.5rem; border-radius: .75rem; object-fit: cover; background: #090D0A; flex-shrink: 0; }
.search-result-cat  { font-size: .625rem; font-family: var(--font-mono); color: var(--copper); font-weight: 700; text-transform: uppercase; display: block; }
.search-result-name { font-family: var(--font-serif); font-weight: 700; font-size: .875rem; color: var(--cream); transition: color .2s; }
.search-result-item:hover .search-result-name { color: var(--green); }
.search-result-sub  { font-size: .75rem; color: #9EB0A1; }
.search-result-right { text-align: right; flex-shrink: 0; }
.search-result-price { font-family: var(--font-mono); font-weight: 700; font-size: .875rem; color: var(--cream); display: block; }
.search-result-impact { font-size: .625rem; font-family: var(--font-mono); color: var(--green); display: block; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 60;
  display: flex; align-items: center; gap: .625rem;
  padding: .75rem 1rem;
  border-radius: .75rem;
  background: #172E1E;
  border: 1px solid #3E5C46;
  color: var(--green-lt);
  font-size: .75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  box-shadow: 0 25px 50px rgba(0,0,0,.5);
  animation: toastIn .3s ease;
}
.toast svg { width: 1rem; height: 1rem; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
@keyframes toastIn { from { transform: translateY(1rem); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ── Newsletter CTA (Footer top) ── */
.newsletter-cta {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #121F16, #0D1510, #18110D);
  border: 1px solid #2D4534;
  padding: 3rem 2rem;
}
.nl-glow-green { position:absolute;top:0;right:0;width:24rem;height:24rem;background:rgba(74,222,128,.1);border-radius:50%;filter:blur(3rem);pointer-events:none; }
.nl-glow-copper { position:absolute;bottom:0;left:0;width:24rem;height:24rem;background:rgba(200,122,75,.1);border-radius:50%;filter:blur(3rem);pointer-events:none; }
.nl-grid { position:relative;z-index:1;display:grid;grid-template-columns:1fr;gap:2rem;align-items:center; }
@media(min-width:1024px) { .nl-grid { grid-template-columns: 7fr 5fr; } }
.nl-form { display: flex; flex-direction: column; gap: .75rem; }
@media(min-width:640px) { .nl-form { flex-direction: row; } }
.nl-input {
  flex: 1;
  padding: 1rem 1.25rem;
  border-radius: .75rem;
  background: #090C0A;
  border: 1px solid #2B3B30;
  color: var(--cream);
  font-size: .875rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .2s;
}
.nl-input:focus { border-color: var(--green); }
.nl-input::placeholder { color: #607065; }
.nl-trust { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; font-size: .6875rem; font-family: var(--font-mono); color: #78887C; }
.nl-trust-item { display: flex; align-items: center; gap: .25rem; }
.nl-trust-item svg { width: .875rem; height: .875rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nl-success { padding: 1.5rem; border-radius: 1rem; background: #172E1E; border: 1px solid #3E5C46; display: flex; align-items: center; gap: 1rem; color: var(--green-lt); }
.nl-success svg { width: 2rem; height: 2rem; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── Footer ── */
footer { background: var(--bg-deep); border-top: 1px solid #1C241E; color: var(--cream); padding-top: 4rem; padding-bottom: 3rem; margin-top: auto; }
.footer-main { max-width:1280px;margin-inline:auto;padding-inline:1rem;display:grid;grid-template-columns:1fr;gap:2.5rem;padding-bottom:3rem;border-bottom:1px solid #1A221C; }
@media(min-width:640px)  { .footer-main { padding-inline: 1.5rem; } }
@media(min-width:1024px) { .footer-main { padding-inline: 2rem; grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-brand-desc { font-size: .875rem; color: var(--muted-dk); line-height: 1.7; max-width: 20rem; }
.footer-founded { font-size: .75rem; font-family: var(--font-mono); color: var(--copper); font-weight: 700; }
.footer-socials { display: flex; align-items: center; gap: .75rem; }
.footer-social-btn { padding: .75rem; border-radius: .75rem; background: #141816; color: var(--cream); border: 1px solid #27322B; transition: all .2s; display: flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 600; }
.footer-social-btn:hover { color: var(--green); background: #1D2620; }
.footer-social-btn svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-col h4 { font-family: var(--font-serif); font-weight: 700; font-size: .875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); margin-bottom: 1rem; }
.footer-link { font-size: .75rem; color: #9EB0A1; cursor: pointer; background: none; border: none; font-family: var(--font-sans); text-align: left; display: block; margin-bottom: .625rem; transition: color .15s; }
.footer-link:hover { color: var(--green); }
.footer-link.copper { color: var(--copper); font-weight: 700; }
.footer-link.copper:hover { color: var(--copper-lt); }
.footer-bottom { max-width:1280px;margin-inline:auto;padding-inline:1rem;padding-top:2rem;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem;font-size:.6875rem;font-family:var(--font-mono);color:#6F7D72; }
@media(min-width:640px)  { .footer-bottom { padding-inline: 1.5rem; } }
@media(min-width:1024px) { .footer-bottom { padding-inline: 2rem; } }
.footer-legal { display: flex; align-items: center; gap: 1rem; }

/* ── Wholesale / Contact Forms ── */
.form-field { margin-bottom: 1rem; }
.form-label { display: block; font-size: .75rem; font-family: var(--font-mono); font-weight: 700; color: var(--muted); margin-bottom: .25rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: .75rem;
  background: #090C0A;
  border: 1px solid #222E26;
  color: var(--cream);
  font-size: .75rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 7rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media(min-width:640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-success { padding: 2rem; border-radius: 1rem; background: #172E1E; border: 1px solid #3E5C46; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.form-success svg { width: 3rem; height: 3rem; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.25rem; color: var(--cream); }
.form-success p  { font-size: .75rem; color: #9EB0A1; }

/* ── Contact Cards ── */
.contact-info-card { padding: 2rem; border-radius: 1.5rem; background: #0F1411; border: 1px solid var(--border-g); display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .75rem; font-family: var(--font-mono); color: #D0C9B8; }
.contact-info-item svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: .125rem; }
.contact-info-sublabel { font-size: .625rem; text-transform: uppercase; color: #8E9E91; display: block; margin-bottom: .125rem; }
.contact-form-card { padding: 2rem; border-radius: 1.5rem; background: #0F1411; border: 1px solid var(--border-g); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media(min-width:1024px) { .contact-grid { grid-template-columns: 5fr 7fr; } }

/* ── Wholesale Benefits ── */
.benefit-card { padding: 1.5rem; border-radius: 1rem; background: #121814; border: 1px solid var(--border-g); display: flex; flex-direction: column; gap: .75rem; }
.benefit-card svg { width: 2rem; height: 2rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.benefit-title { font-family: var(--font-serif); font-weight: 700; font-size: 1.125rem; color: var(--cream); }
.benefit-desc  { font-size: .75rem; color: #9EB0A1; line-height: 1.6; }

/* ── Soapbriety Logo SVG ── */
.logo-emblem-wrap {
  width: 10rem; height: 10rem;
  border-radius: 50%;
  background: #131C16;
  border: 4px solid #35523D;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,.6);
  overflow: hidden;
}
.logo-emblem-wrap::before {
  content: '';
  position: absolute; inset: .25rem;
  border-radius: 50%;
  border: 1px dashed rgba(200,122,75,.4);
  pointer-events: none;
}
.logo-emblem-banner {
  position: absolute;
  bottom: .25rem;
  left: 5%;
  right: 5%;
  background: linear-gradient(to right, var(--copper), #E2D9C5, var(--copper));
  color: var(--bg);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: .625rem;
  padding: .25rem .5rem;
  border-radius: .25rem;
  text-align: center;
  transform: rotate(-2deg);
  border: 1px solid var(--bg);
  box-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.logo-glow {
  position: absolute; inset: -1rem;
  background: radial-gradient(circle, rgba(74,222,128,.15), rgba(200,122,75,.1), transparent 70%);
  border-radius: 50%;
  filter: blur(1rem);
  pointer-events: none;
}

/* ── Chapter Reversed (Story page ch2) ── */
@media(min-width:1024px) { .chapter-grid.reversed .chapter-img { order: 2; } .chapter-grid.reversed .chapter-text-col { order: 1; } }

/* ── Misc helpers ── */
.border-t-dim { border-top: 1px solid #1C261E; }
.border-t-dim-2 { border-top: 1px solid #1C261F; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow-xl  { box-shadow: 0 20px 25px rgba(0,0,0,.4); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0,0,0,.5); }
.italic { font-style: italic; }
.select-none { user-select: none; }
.cursor-pointer { cursor: pointer; }
.transition { transition: all .2s; }
.backdrop-blur { backdrop-filter: blur(12px); }

/* ── Filter row for shop ── */
.shop-search-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.shop-search-left { width: 100%; max-width: 20rem; }
.shop-filter-right { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }

/* ── Page views ── */
.page-view { display: none; }
.page-view.active { display: block; }

/* Responsive helpers */
@media(max-width:639px) {
  .hero-title { font-size: 2rem; }
  .hide-mobile { display: none !important; }
}
@media(min-width:640px) { .sm-flex { display: flex; } }
@media(max-width:1023px) { .lg-hide { display: none !important; } }
@media(min-width:1024px) { .lg-show { display: block !important; } }

/* ── Scrollbar styling ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0C0D0E; }
::-webkit-scrollbar-thumb { background: #2A3B30; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3E5C46; }
