/*
Theme Name: Erizon Assam
Theme URI: https://erizon.in
Description: Erizon — Ethical Eri Silk from Assam. WordPress theme.
Author: Lumenoid Studios
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: erizon-assam
*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --bg: #F5F1E8;
  --glass: rgba(255,255,255,0.4);
  --accent: #2F5D50;
  --accent-soft: #7A9E8B;
  --text: #1E1E1E;
  --muted: #6F6F6F;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --blur: blur(14px);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  font-family: var(--sans);
  color: var(--text);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
button { font-family: var(--sans); }
img { display: block; max-width: 100%; }

/* ── Grain overlay ── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ── Navbar ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245,241,232,0.75);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--accent);
}

.nav-logo em { font-style: italic; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 280ms var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: color 280ms var(--ease);
  border: none;
  background: transparent;
  position: relative;
}

.nav-icon:hover { color: var(--text); }

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  color: #F5F1E8;
  font-size: 8px;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--accent);
  color: #F5F1E8;
  border: none;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 280ms var(--ease);
  display: inline-block;
}

.btn-primary:hover {
  background: #264d43;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0,0,0,.15);
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 280ms var(--ease);
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Eyebrow / labels ── */
.eyebrow {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 400;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
}

/* ── Hero Slider ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1000ms var(--ease);
}

.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  animation: kenBurns 12s ease-in-out infinite alternate;
  animation-play-state: paused; /* only active slide animates */
}

.slide.active .slide-bg { animation-play-state: running; }

@keyframes kenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(-2%, -1%); }
}

.slide-1 .slide-bg {
  background: radial-gradient(ellipse at 35% 40%, rgba(47,93,80,.18) 0%, transparent 60%),
              repeating-linear-gradient(135deg, rgba(47,93,80,.15) 0px, rgba(47,93,80,.04) 1px, transparent 1px, transparent 12px),
              repeating-linear-gradient(45deg, rgba(122,158,139,.12) 0px, transparent 1px, transparent 16px),
              var(--bg);
}

.slide-2 .slide-bg {
  background: radial-gradient(ellipse at 65% 55%, rgba(196,168,130,.22) 0%, transparent 55%),
              repeating-linear-gradient(110deg, rgba(196,168,130,.18) 0px, rgba(196,168,130,.05) 1px, transparent 1px, transparent 14px),
              var(--bg);
}

.slide-3 .slide-bg {
  background: radial-gradient(ellipse at 50% 30%, rgba(122,158,139,.2) 0%, transparent 60%),
              repeating-linear-gradient(160deg, rgba(122,158,139,.15) 0px, transparent 1px, transparent 18px),
              var(--bg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    135deg,
    rgba(26,26,24,.58) 0%,
    rgba(26,26,24,.28) 45%,
    transparent 72%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-text {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px 88px;
  pointer-events: all;
  animation: heroTextIn 1100ms var(--ease) both;
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,241,232,.72);
  font-weight: 400;
  margin-bottom: 18px;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: #F5F1E8;
  margin-bottom: 20px;
  max-width: 640px;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
}

.hero-h1 em {
  font-style: italic;
  color: #C4A882;
}

.hero-sub {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245,241,232,.72);
  max-width: 440px;
  font-weight: 300;
  margin-bottom: 36px;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-ghost {
  background: transparent;
  border-color: rgba(245,241,232,.5);
  color: #F5F1E8;
}

.hero-ghost:hover {
  background: rgba(245,241,232,.12);
  border-color: rgba(245,241,232,.85);
  color: #F5F1E8;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 20px;
  height: 2px;
  background: var(--muted);
  opacity: .3;
  cursor: pointer;
  transition: all 300ms var(--ease);
  border: none;
}

.dot.active {
  background: var(--accent);
  opacity: 1;
  width: 36px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .4;
  z-index: 3;
}

.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--text);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .2; transform: scaleY(1); }
  50% { opacity: .7; transform: scaleY(.55); }
}

/* ── Sections ── */
.section {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 56px;
}

.section-header .eyebrow { margin-bottom: 14px; }

/* ── USP Grid ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.usp-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.usp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  pointer-events: none;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.usp-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--serif);
  font-size: 11px;
  color: var(--accent-soft);
  opacity: .5;
  letter-spacing: .1em;
}

.usp-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.usp-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text);
}

.usp-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

/* ── Product Cards (horizontal scroll) ── */
.products-ribbon {
  padding: 80px 0;
  overflow: hidden;
}

.ribbon-header {
  padding: 0 80px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.ribbon-header h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
}

.prod-scroll {
  display: flex;
  gap: 24px;
  padding: 0 80px 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.prod-scroll::-webkit-scrollbar { display: none; }

.prod-card {
  flex: 0 0 300px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.prod-img {
  height: 380px;
  overflow: hidden;
  background: rgba(47,93,80,.07);
  position: relative;
}

.prod-img-inner {
  position: absolute;
  inset: 0;
  transition: transform 400ms var(--ease);
}

.prod-card:hover .prod-img-inner { transform: scale(1.04); }

.prod-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(245,241,232,.95), transparent);
  transform: translateY(100%);
  transition: transform 320ms var(--ease);
}

.prod-card:hover .prod-overlay { transform: translateY(0); }

.prod-quick {
  background: var(--accent);
  color: #F5F1E8;
  border: none;
  padding: 10px 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  width: 100%;
  transition: background 240ms var(--ease);
}

.prod-quick:hover { background: #264d43; }

.prod-swatches {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.7);
}

.prod-info {
  padding: 20px 4px 4px;
}

.prod-label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 6px;
}

.prod-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--text);
}

.prod-price {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

.prod-price strong {
  color: var(--text);
  font-weight: 500;
}

.tag-ethical {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(47,93,80,.08);
  padding: 3px 8px;
  border-radius: 20px;
  margin-top: 6px;
}

/* ── Story Section ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  /* padding/max-width via layout system fix layer */
}

.story-visual {
  aspect-ratio: 3/4;
  background: rgba(47,93,80,.06);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.story-silk-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(160deg, rgba(47,93,80,.12) 0px, rgba(47,93,80,.03) 1px, transparent 1px, transparent 18px),
              repeating-linear-gradient(70deg, rgba(122,158,139,.1) 0px, transparent 1px, transparent 20px);
  opacity: .7;
}

.story-float {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius);
  padding: 24px;
}

.story-float-label {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 8px;
}

.story-float-stat {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--accent);
}

.story-float-desc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.6;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.story-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent-soft);
}

.story-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text);
}

.story-h2 em {
  font-style: italic;
  color: var(--accent);
}

.story-p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
  max-width: 440px;
}

.story-divider {
  width: 48px;
  height: 1px;
  background: var(--accent-soft);
  opacity: .4;
}

.story-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  line-height: 1.6;
  padding-left: 20px;
  border-left: 2px solid var(--accent-soft);
  opacity: .8;
}

/* ── Process Section ── */
.process-section {
  background: rgba(47,93,80,.04);
  padding: 100px 80px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 56px;
  max-width: 1320px;
}

.process-step {
  position: relative;
  padding-top: 20px;
}

.process-step::before {
  content: attr(data-num);
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--accent);
  opacity: .08;
  position: absolute;
  top: -20px;
  left: -8px;
  line-height: 1;
}

.process-line {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
  position: relative;
}

.process-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}

.process-step h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text);
}

.process-step p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}

/* ── Founder Section ── */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  padding: 100px 80px;
  max-width: 1320px;
  margin: 0 auto;
}

.founder-portrait {
  aspect-ratio: 3/4;
  max-width: 320px;
  background: rgba(47,93,80,.08);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.founder-silk {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(155deg, rgba(47,93,80,.1) 0px, transparent 1px, transparent 16px);
}

.founder-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 8px;
  padding: 12px 16px;
}

.founder-badge-title {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.founder-badge-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-top: 2px;
}

.founder-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.founder-content blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
}

.founder-content p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
}

.founder-sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  opacity: .7;
}

/* ── Products Page ── */
.page-hero {
  padding: 148px 80px 60px;
  max-width: 1320px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 14px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.85;
  font-weight: 300;
}

.filter-bar {
  background: rgba(245,241,232,.85);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 80px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 72px;
  z-index: 90;
}

.filter-label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}

.filter-chip {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
  transition: all 240ms var(--ease);
  white-space: nowrap;
  font-family: var(--sans);
}

.filter-chip:hover,
.filter-chip.active {
  background: rgba(47,93,80,.1);
  border-color: rgba(47,93,80,.25);
  color: var(--accent);
}

.filter-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

.filter-sort {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-sort select {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  padding: 7px 12px;
  border-radius: 20px;
  font-family: var(--sans);
  cursor: pointer;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  /* container via layout system fix layer */
}

.prod-grid-card {
  cursor: pointer;
  /* transition moved to microinteraction layer */
}

.prod-grid-card:hover { transform: translateY(-6px); }

.prod-grid-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: rgba(47,93,80,.07);
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}

.prod-grid-silk {
  position: absolute;
  inset: 0;
  transition: opacity 300ms var(--ease);
}

.prod-grid-card:hover .prod-grid-silk { opacity: .85; }

.ethical-dot {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(47,93,80,.85);
  color: #F5F1E8;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── Product Single ── */
.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 80px 80px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.pdp-gallery { display: grid; gap: 12px; }

.pdp-main-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: rgba(47,93,80,.07);
  position: relative;
  overflow: hidden;
}

.pdp-silk {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(120deg, rgba(47,93,80,.12) 0px, rgba(47,93,80,.04) 1px, transparent 1px, transparent 16px),
              repeating-linear-gradient(30deg, rgba(122,158,139,.08) 0px, transparent 1px, transparent 20px);
}

.pdp-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pdp-thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(47,93,80,.05);
  cursor: pointer;
  transition: all 240ms var(--ease);
  border: 1.5px solid transparent;
  overflow: hidden;
  position: relative;
}

.pdp-thumb.active { border-color: var(--accent); }

.pdp-thumb-silk { position: absolute; inset: 0; }

.pdp-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 120px;
}

.pdp-breadcrumb {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .05em;
}

.pdp-breadcrumb span { color: var(--text); }

.pdp-name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
}

.pdp-tagline {
  font-size: 13px;
  color: var(--accent-soft);
  font-style: italic;
  font-family: var(--serif);
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.pdp-price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
}

.pdp-price-note {
  font-size: 11px;
  color: var(--muted);
}

.pdp-swatches { display: flex; flex-direction: column; gap: 12px; }

.swatch-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.swatch-row { display: flex; gap: 10px; }

.swatch-lg {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 220ms var(--ease);
}

.swatch-lg.active {
  border-color: var(--text);
  padding: 2px;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.size-btn {
  padding: 10px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: all 220ms var(--ease);
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
}

.size-btn:hover,
.size-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(47,93,80,.05);
}

.pdp-add {
  width: 100%;
  background: var(--accent);
  color: #F5F1E8;
  border: none;
  padding: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 280ms var(--ease);
  font-family: var(--sans);
}

.pdp-add:hover { background: #264d43; }

.pdp-divider { height: 1px; background: var(--border); }

.ethical-panel {
  background: rgba(47,93,80,.05);
  border: 1px solid rgba(47,93,80,.1);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.eth-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.eth-icon {
  width: 32px;
  height: 32px;
  background: rgba(47,93,80,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.eth-item h5 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--accent);
}

.eth-item p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Accordion ── */
.accord-item { border-bottom: 1px solid var(--border); }

.accord-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  font-family: var(--sans);
}

.accord-trigger .accord-icon {
  color: var(--muted);
  transition: transform 280ms var(--ease);
  flex-shrink: 0;
}

.accord-trigger.open .accord-icon { transform: rotate(45deg); }

.accord-body {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  padding-bottom: 16px;
  font-weight: 300;
  display: none;
}

.accord-body.open { display: block; }

/* ── Weaver card ── */
.weaver-card {
  background: rgba(47,93,80,.03);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.weaver-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(47,93,80,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.weaver-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.weaver-meta {
  font-size: 11px;
  color: var(--muted);
}

/* ── Related Products ── */
.related-section {
  padding: 0 80px 80px;
  max-width: 1320px;
  margin: 0 auto;
}

/* ── About Page ── */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(47,93,80,.1) 0px, rgba(47,93,80,.03) 1px, transparent 1px, transparent 14px),
              repeating-linear-gradient(45deg, rgba(122,158,139,.08) 0px, transparent 1px, transparent 18px);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  max-width: 720px;
}

.about-hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.about-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.9;
  font-weight: 300;
  margin-top: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-block {
  background: var(--bg);
  padding: 48px 40px;
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}

.value-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}

.value-card:hover {
  border-color: rgba(47,93,80,.2);
  box-shadow: var(--shadow);
}

.value-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}

.value-card p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}

/* ── Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 140px 80px 100px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.contact-info h1 em {
  font-style: italic;
  color: var(--accent);
}

.contact-info p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 48px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(47,93,80,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 300;
}

.contact-form-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--radius);
  padding: 48px;
}

/* form-group, form-label, form-input — canonical definitions in auth section below */

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* ── Checkout Page ── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  padding: 120px 80px 100px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.checkout-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.checkout-section-title {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  margin-top: 36px;
}

.checkout-section-title:first-child { margin-top: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.order-summary-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--radius);
  padding: 36px;
  position: sticky;
  top: 100px;
}

.order-summary-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.order-item {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.order-item-img {
  width: 64px;
  height: 80px;
  border-radius: 6px;
  background: rgba(47,93,80,.07);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.order-item-silk {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(47,93,80,.12) 0px, transparent 1px, transparent 12px);
}

.order-item-details { flex: 1; }

.order-item-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 3px;
}

.order-item-meta {
  font-size: 11px;
  color: var(--muted);
}

.order-item-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.order-totals { border-top: 1px solid var(--border); margin-top: 24px; padding-top: 20px; }

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--muted);
}

.order-total-row.grand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}

.checkout-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

.trust-item-icon { color: var(--accent); flex-shrink: 0; }

/* ── Footer ── */
.footer {
  background: rgba(47,93,80,.04);
  border-top: 1px solid var(--border);
  padding: 60px 80px 40px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.footer-brand-name em { font-style: italic; }

.footer-tagline {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  max-width: 280px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  transition: color 240ms var(--ease);
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social-link {
  color: var(--muted);
  transition: color 240ms var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════
   EXTENDED STYLES v1.1 — Auth, Account, eCommerce, Utility
   ══════════════════════════════════════════════════════ */

/* ── Hero slide images ── */
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* NO animation here — .slide-bg parent handles Ken Burns */
}

.slide-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(245,241,232,.52) 0%,
    rgba(245,241,232,.18) 60%,
    transparent 100%
  );
}

/* ── Process step image ── */
.process-step-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 4/3;
  background: rgba(47,93,80,.05);
}

.process-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85);
  transition: filter 300ms var(--ease);
}

.process-step:hover .process-step-img img { filter: saturate(1); }

/* ── Nav: custom-logo image ── */
.nav-logo--img img {
  height: 40px;
  width: auto;
  max-width: 180px;
  max-height: 40px;
  display: block;
  object-fit: contain;
}

/* Footer logo — same constraint */
.footer-inner .custom-logo {
  height: 32px;
  width: auto;
  max-width: 140px;
  max-height: 32px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

/* ── Nav: account avatar initials ── */
.nav-icon--avatar { position: relative; }

.nav-avatar-init {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #F5F1E8;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
}

/* ── Mobile hamburger ── */
.nav-hamburger { display: none; }

/* ── Mobile Drawer ── */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 280ms var(--ease), visibility 280ms var(--ease);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg);
  z-index: 200;
  padding: 24px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: right 300ms var(--ease);
  border-left: 1px solid var(--border);
}

body.nav-open .nav-drawer-overlay { opacity: 1; visibility: visible; pointer-events: all; }
body.nav-open .nav-drawer { right: 0; }

.nav-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  margin-bottom: 28px;
}

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.nav-drawer-links li a {
  display: block;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 240ms var(--ease);
}

.nav-drawer-links li a:hover { color: var(--accent); }

.nav-drawer-footer { margin-top: 32px; }

/* ── Footer email link ── */
.footer-email-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--accent-soft);
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 240ms var(--ease);
}
.footer-email-link:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════
   AUTH PAGES
   ══════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   AUTH PAGES — Login + Register — refined spacing system
   ══════════════════════════════════════════════════════════ */

/* ── Layout wrapper ── */
.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* ── Left: decorative panel ── */
.auth-deco {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(47,93,80,.07) 0%, rgba(196,168,130,.06) 100%);
  display: flex;
  align-items: stretch;
}

.auth-silk-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(47,93,80,.1) 0px, rgba(47,93,80,.03) 1px, transparent 1px, transparent 16px),
    repeating-linear-gradient(45deg, rgba(196,168,130,.08) 0px, transparent 1px, transparent 20px),
    radial-gradient(ellipse at 60% 25%, rgba(47,93,80,.1) 0%, transparent 60%);
}

.auth-deco-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 56px;
  gap: 24px;
  width: 100%;
}

.auth-deco-tagline {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  color: rgba(47,93,80,.65);
  line-height: 1.65;
  max-width: 280px;
  font-style: italic;
}

.auth-deco-text {
  font-family: var(--serif);
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(47,93,80,.18);
  letter-spacing: -.02em;
  pointer-events: none;
}

.auth-deco-text em {
  font-style: italic;
  -webkit-text-stroke-color: rgba(47,93,80,.32);
}

.auth-deco-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.auth-deco-badge {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(47,93,80,.5);
  border: 1px solid rgba(47,93,80,.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-family: var(--sans);
  font-weight: 400;
}

/* Register deco perks list */
.auth-deco-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-deco-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(47,93,80,.6);
  letter-spacing: .04em;
}

/* ── Right: form panel ── */
.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 56px 72px;
  background: var(--bg);
  min-height: 100vh;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
}

/* Card header — eyebrow + title + subtitle */
.auth-card-header {
  margin-bottom: 32px;
}

.auth-eyebrow {
  margin-bottom: 10px;
  display: block;
}

.auth-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 10px;
}

.auth-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Alerts ── */
.auth-alert {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 28px;
  border: 1px solid transparent;
}

.auth-alert-icon {
  width: 15px;
  height: 15px;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 1px;
}

.auth-alert--error {
  background: rgba(192,57,43,.06);
  border-color: rgba(192,57,43,.18);
  color: #b93328;
}

.auth-alert--success {
  background: rgba(47,93,80,.06);
  border-color: rgba(47,93,80,.18);
  color: var(--accent);
}

.auth-alert--info {
  background: rgba(196,168,130,.1);
  border-color: rgba(196,168,130,.28);
  color: #7a6040;
}

/* ── Form ── */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Field group — label + input + hint */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;           /* label → input breathing room */
  margin-bottom: 22px;
}

/* Two-column row (first+last name) */
.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.form-row--2col .form-group {
  margin-bottom: 0;
}

/* Label */
.form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  line-height: 1;
}

.form-label-req {
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
}

/* Input */
.form-input {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(226,221,211,.9);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.04);
  transition:
    border-color 220ms var(--ease-in-out),
    background   220ms var(--ease-in-out),
    box-shadow   220ms var(--ease-out);
  line-height: 1.4;
}

.form-input::placeholder {
  color: rgba(138,133,120,.5);
  font-weight: 300;
}

.form-input:hover:not(:focus) {
  border-color: rgba(47,93,80,.28);
  background: rgba(255,255,255,.72);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.92);
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,.02),
    0 0 0 3px rgba(47,93,80,.10),
    0 2px 8px rgba(47,93,80,.07);
}

.form-input.error,
.form-input[aria-invalid="true"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,.09);
}

/* Password eye wrap */
.input-eye-wrap {
  position: relative;
}

.input-eye-wrap .form-input {
  padding-right: 48px;
}

.input-eye-btn {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 5px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: color 200ms ease, transform 200ms ease;
  line-height: 0;
}

.input-eye-btn:hover { color: var(--accent); }
.input-eye-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Hint text below input */
.form-hint {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
  margin-top: -2px;
}

.form-hint--ok  { color: #27ae60; }
.form-hint--err { color: #c0392b; }

/* ── Remember me checkbox ── */
.auth-check {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 28px;  /* gap to submit button */
  user-select: none;
  position: relative;
}

.auth-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Custom checkbox */
.auth-check-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,.7);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background   200ms ease,
    border-color 200ms ease,
    box-shadow   200ms ease;
  position: relative;
}

.auth-check-box::after {
  content: '';
  width: 4px;
  height: 7px;
  border: 1.5px solid #F5F1E8;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0) translateY(-1px);
  transition: transform 180ms var(--ease-spring);
}

.auth-check input[type="checkbox"]:checked + .auth-check-box {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47,93,80,.1);
}

.auth-check input[type="checkbox"]:checked + .auth-check-box::after {
  transform: rotate(45deg) scale(1) translateY(-1px);
}

.auth-check-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
}

/* ── Submit button ── */
.auth-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 11px;
  letter-spacing: .16em;
  border-radius: 8px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Terms note (register) ── */
.auth-terms {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
  font-weight: 300;
}

/* ── Footer: "already have account?" ── */
.auth-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.auth-card-footer-text {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* ── Auth links ── */
.auth-link {
  color: var(--accent);
  font-weight: 400;
  text-decoration: none;
  position: relative;
  transition: color 220ms ease;
}

.auth-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

.auth-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.auth-link--sm  { font-size: 10px; letter-spacing: .06em; opacity: .75; }
.auth-link--sm:hover { opacity: 1; }

.auth-link--bold {
  font-weight: 600;
  font-size: 13px;
}

/* ══════════════════════════════════════════════
   AUTH RESPONSIVE
   ══════════════════════════════════════════════ */

@media (max-width: 900px) {
  .auth-wrap {
    grid-template-columns: 1fr;
    min-height: 100vh;
  }

  .auth-deco {
    display: none; /* full-screen form on tablet/mobile */
  }

  .auth-panel {
    padding: 100px 32px 64px;
    min-height: 100vh;
    align-items: flex-start;
    padding-top: 100px;
  }

  .auth-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .auth-panel {
    padding: 90px 20px 56px;
  }

  .form-row--2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row--2col .form-group {
    margin-bottom: 22px;
  }

  .auth-card-header {
    margin-bottom: 28px;
  }
}

/* ── Password strength bar ── */
.pass-strength-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: -4px;
}

.pass-strength-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  transition: width 320ms var(--ease-out), background 320ms var(--ease-in-out);
}

.pass-strength-bar-fill[data-strength="weak"]   { width: 25%; background: #e74c3c; }
.pass-strength-bar-fill[data-strength="fair"]   { width: 55%; background: #f39c12; }
.pass-strength-bar-fill[data-strength="good"]   { width: 80%; background: #27ae60; }
.pass-strength-bar-fill[data-strength="strong"] { width: 100%; background: #2ecc71; }

.pass-strength-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: -4px;
  font-weight: 500;
  min-height: 14px;
  display: block;
  transition: color 280ms ease;
}

/* input-eye-btn — see auth section */

/* Order success icon */
.success-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 0 12px rgba(47,93,80,.1);
}

.success-summary-card {
  background: rgba(47,93,80,.04);
  border: 1px solid rgba(47,93,80,.1);
  border-radius: var(--radius);
  padding: 24px;
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.success-summary-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* ══════════════════════════════════════════════════════
   ACCOUNT PAGES
   ══════════════════════════════════════════════════════ */

.account-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding: 120px 80px 100px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.account-sidebar {
  position: sticky;
  top: 100px;
}

.account-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: #F5F1E8;
  margin-bottom: 14px;
}

.account-sidebar-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2px;
}

.account-sidebar-email {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 32px;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.account-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 240ms var(--ease);
}

.account-nav-item:hover,
.account-nav-item.active {
  background: rgba(47,93,80,.06);
  color: var(--accent);
}

.account-nav-item--logout {
  margin-top: 8px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: rgba(192,57,43,.6);
}

.account-nav-item--logout:hover {
  background: rgba(192,57,43,.05);
  color: #c0392b;
}

.account-main { min-width: 0; }

.account-section-header { margin-bottom: 32px; }

.account-page-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--text);
  margin-top: 8px;
}

.account-form-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--radius);
  padding: 36px;
}

/* ── Orders table ── */
.orders-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.orders-header {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 120px 110px 60px;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(47,93,80,.04);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.orders-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 120px 110px 60px;
  gap: 16px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  align-items: center;
  transition: background 240ms var(--ease);
}

.orders-row:hover { background: rgba(47,93,80,.02); }

.order-num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
}

.order-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
}

.status--success {
  background: rgba(47,93,80,.08);
  color: var(--accent);
}

.status--error {
  background: rgba(192,57,43,.07);
  color: #c0392b;
}

.status--pending {
  background: rgba(196,168,130,.15);
  color: #7a6040;
}

/* ── Wishlist grid ── */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.wishlist-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 300ms var(--ease), transform 300ms var(--ease);
}

.wishlist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.wishlist-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(47,93,80,.05);
}

.wishlist-info {
  padding: 16px;
}

/* ══════════════════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════════════════ */

.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 80px;
  height: 100px;
  border-radius: 6px;
  background: rgba(47,93,80,.06);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-info { min-width: 0; }

.cart-remove {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  transition: color 220ms var(--ease);
}

.cart-remove:hover { color: #c0392b; }

.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 220ms var(--ease);
  font-family: var(--sans);
}

.qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.qty-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  min-width: 20px;
  text-align: center;
}

.cart-coupon-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 24px 0;
}

/* ══════════════════════════════════════════════════════
   SEARCH PAGE
   ══════════════════════════════════════════════════════ */

.search-form-bar {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.search-form-input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
}

.search-form-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.search-post-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 280ms var(--ease), box-shadow 280ms var(--ease);
  grid-column: 1 / -1;
}

.search-post-card:hover {
  border-color: rgba(47,93,80,.2);
  box-shadow: var(--shadow);
}

.search-post-img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(47,93,80,.05);
}

.search-post-body { flex: 1; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .section, .story-grid, .founder-section { padding-left: 48px; padding-right: 48px; }
  .prod-grid, .related-section { padding-left: 48px; padding-right: 48px; }
  .checkout-layout, .account-wrap { padding-left: 48px; padding-right: 48px; }
  .filter-bar, .page-hero, .ribbon-header, .prod-scroll { padding-left: 48px; padding-right: 48px; }
  .footer { padding-left: 48px; padding-right: 48px; }
  .process-section { padding-left: 48px; padding-right: 48px; }
  /* USP stays 4-col at 1100px — only wraps below 900px */
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-text { padding: 0 48px 72px; }
  .ahimsa-stat { padding: 8px 14px; }
  .usp-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex !important; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-deco { display: none; }
  .auth-panel { padding: 100px 24px 60px; }
  .account-wrap { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .account-sidebar { position: static; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-section { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 100%; aspect-ratio: 4/3; }
  .pdp-layout { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .checkout-layout { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); padding: 24px 24px 60px; }
  .orders-header, .orders-row { grid-template-columns: 70px 1fr 1fr 70px; }
  .orders-header span:nth-child(3),
  .orders-row span:nth-child(3) { display: none; }
  .page-hero, .section { padding-left: 24px; padding-right: 24px; }
  .filter-bar { padding-left: 24px; padding-right: 24px; }
  .ribbon-header, .prod-scroll { padding-left: 24px; padding-right: 24px; }
  .process-section, .about-hero { padding-left: 24px; padding-right: 24px; }
  .contact-layout { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .footer { padding: 48px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-text { padding: 0 32px 64px; }
  /* Category row: narrower scroll on tablet */
  .cat-row-section { padding-left: 24px; padding-right: 24px; }
  .ahimsa-stat { padding: 6px 10px; gap: 10px; }
  .ahimsa-strip-divider { display: none; }
}

@media (max-width: 600px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .prod-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-text { padding: 0 20px 52px; }
  .hero-h1 { font-size: clamp(28px, 9vw, 44px); }
  .hero-sub { font-size: 13px; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-ctas .btn-primary,
  .hero-ctas .hero-ghost { width: 100%; text-align: center; padding: 14px; }
  .orders-table { overflow-x: auto; }
  .orders-header, .orders-row { grid-template-columns: 70px 1fr 80px 80px; }
  .orders-header span:nth-child(5),
  .orders-row span:nth-child(5) { display: none; }
  .nav { padding: 0 16px; }
  .success-summary-card { grid-template-columns: 1fr; }
  .account-form-card { padding: 24px; }
  .cart-row { grid-template-columns: 60px 1fr; }
  .cart-qty, .cart-row .order-item-price { grid-column: 2; }
  /* Ahimsa strip: 2x2 on mobile */
  .ahimsa-strip-inner { flex-wrap: wrap; padding: 12px 16px; }
  .ahimsa-stat { flex: 0 0 calc(50% - 1px); padding: 12px 12px; }
  .ahimsa-strip-divider { display: none; }
  .ahimsa-stat { padding: 12px 10px; }
  .ahimsa-stat-num { font-size: 22px; }
  .ahimsa-stat-label { font-size: 10px; }
  /* Category row scroll on mobile */
  .cat-row-section { padding-left: 16px; padding-right: 16px; }
  .cat-row-scroll { gap: 12px; }
  .cat-prod-card { min-width: 160px; }
  /* USP card images slightly shorter */
  .usp-card-img { height: 140px; }
  /* Process step images */
  .process-step-img { height: 200px; }
}

/* ══════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ══════════════════════════════════════════════════════ */

.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  text-decoration: none;
  box-shadow:
    0 4px 24px rgba(37,211,102,.35),
    0 2px 8px rgba(0,0,0,.12);
  transition:
    transform 280ms cubic-bezier(.34,1.56,.64,1),
    box-shadow 280ms var(--ease),
    padding 280ms var(--ease);
  overflow: hidden;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 8px 32px rgba(37,211,102,.45),
    0 4px 16px rgba(0,0,0,.15);
}

.wa-float-ring {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid rgba(37,211,102,.5);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.2); opacity: 0;  }
  100% { transform: scale(1.2); opacity: 0;  }
}

.wa-float-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: #fff;
}

.wa-float-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* Collapse to icon-only on small screens */
@media (max-width: 480px) {
  .wa-float          { padding: 14px; border-radius: 50%; }
  .wa-float-label    { display: none; }
  .wa-float          { bottom: 20px; right: 20px; }
}


/* ══════════════════════════════════════════════════════
   ASSAMESE LINE ART MOTIF DIVIDERS
   ══════════════════════════════════════════════════════ */

.motif-divider {
  padding: 0 0;
  overflow: hidden;
  width: 100%;
}

.motif-divider-svg {
  width: 100%;
  height: 48px;
  display: block;
}

.motif-inline {
  padding: 4px 0;
  overflow: hidden;
  width: 100%;
}

.motif-inline-svg {
  width: 100%;
  height: 36px;
  display: block;
}

/* Gamosa-inspired horizontal band */
.gamosa-band {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.gamosa-band svg {
  width: 100%;
  height: 28px;
  display: block;
}


/* ══════════════════════════════════════════════════════
   CATEGORY ROW SECTIONS
   ══════════════════════════════════════════════════════ */

.cat-row-section {
  padding: 56px 80px 0;
  max-width: 1320px;
  margin: 0 auto;
}

.cat-row-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

/* Assamese jaapi silhouette watermark in header */
.cat-row-header::before {
  content: '';
  position: absolute;
  right: 120px;
  bottom: 20px;
  width: 48px;
  height: 36px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 60%, var(--accent) 0%, transparent 100%),
    conic-gradient(from 180deg at 50% 100%, transparent 0deg, rgba(47,93,80,.08) 60deg, transparent 120deg);
  opacity: .12;
  pointer-events: none;
}

.cat-row-header-text {}

.cat-row-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-top: 6px;
  letter-spacing: -.01em;
}

.cat-row-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(47,93,80,.25);
  padding: 9px 18px;
  border-radius: 40px;
  transition:
    background 260ms var(--ease),
    color 260ms var(--ease),
    border-color 260ms var(--ease);
  white-space: nowrap;
  margin-left: 16px;
  flex-shrink: 0;
}

.cat-row-viewall:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.cat-row-viewall svg {
  transition: transform 260ms var(--ease);
}

.cat-row-viewall:hover svg {
  transform: translateX(3px);
}

/* ── Horizontal scroll strip ── */
.cat-row-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 32px;
  /* Custom thin scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(47,93,80,.25) transparent;
}

.cat-row-scroll::-webkit-scrollbar { height: 3px; }
.cat-row-scroll::-webkit-scrollbar-track { background: transparent; }
.cat-row-scroll::-webkit-scrollbar-thumb {
  background: rgba(47,93,80,.25);
  border-radius: 2px;
}

/* ── Individual product card ── */
.cat-prod-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 300ms var(--ease);
}

.cat-prod-card:hover { transform: translateY(-4px); }

.cat-prod-img {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background: rgba(47,93,80,.05);
}

.cat-prod-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease), filter 400ms var(--ease);
  filter: saturate(.9);
}

.cat-prod-card:hover .cat-prod-img img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

/* Overlay with Quick View */
.cat-prod-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,.42);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 260ms var(--ease);
}

.cat-prod-card:hover .cat-prod-overlay { opacity: 1; }

.cat-prod-overlay span {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F5F1E8;
  font-weight: 500;
  border: 1px solid rgba(245,241,232,.55);
  padding: 8px 18px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(245,241,232,.08);
  white-space: nowrap;
}

/* Colour swatches bottom-left of image */
.cat-prod-swatches {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 5px;
}

.cat-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.7);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

/* Info below image */
.cat-prod-info {
  padding: 14px 4px 0;
}

.cat-prod-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 5px;
}

.cat-prod-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 5px;
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-prod-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  font-family: var(--serif);
}

/* ── Section wrapper for category rows — add decorative side motif ── */
.cat-row-section:nth-child(odd) {
  position: relative;
}

.cat-row-section:nth-child(odd)::after {
  content: '';
  position: absolute;
  top: 48px;
  right: 40px;
  width: 80px;
  height: 80px;
  background:
    repeating-conic-gradient(
      rgba(47,93,80,.06) 0deg 10deg,
      transparent 10deg 20deg
    );
  border-radius: 50%;
  pointer-events: none;
  opacity: .7;
}

.cat-row-section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 44px;
  width: 64px;
  height: 64px;
  background:
    repeating-conic-gradient(
      rgba(196,168,130,.1) 0deg 15deg,
      transparent 15deg 30deg
    );
  border-radius: 50%;
  pointer-events: none;
  opacity: .6;
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE — category rows
   ══════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .cat-row-section { padding: 48px 48px 0; }
}

@media (max-width: 900px) {
  .cat-row-section     { padding: 40px 24px 0; }
  .cat-prod-card       { flex: 0 0 180px; }
  .cat-row-title       { font-size: 22px; }
}

@media (max-width: 600px) {
  .cat-row-section   { padding: 32px 16px 0; }
  .cat-prod-card     { flex: 0 0 155px; }
  .cat-row-header    { flex-wrap: wrap; gap: 12px; }
  .cat-row-viewall   { margin-left: 0; }
  .motif-divider-svg,
  .motif-inline-svg  { height: 28px; }
}

/* ══════════════════════════════════════════════════════
   LUMENOID STUDIOS CREDIT BAR
   ══════════════════════════════════════════════════════ */

.lumenoid-credit {
  width: 100%;
  background: rgba(26,26,24,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,241,232,.35);
  font-family: var(--sans);
  font-weight: 400;
  border-top: 1px solid rgba(245,241,232,.06);
}

.lumenoid-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(245,241,232,.55);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .1em;
  transition: color 240ms var(--ease);
}

.lumenoid-credit-link:hover { color: #C4A882; }

.lumenoid-credit-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: currentColor;
  transition: transform 300ms var(--ease);
}

.lumenoid-credit-link:hover .lumenoid-credit-icon {
  transform: rotate(30deg);
}

/* ══════════════════════════════════════════════════════
   CART: column header row (aligns with .cart-row grid)
   ══════════════════════════════════════════════════════ */

.cart-header-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 20px;
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  align-items: center;
}

/* ══════════════════════════════════════════════════════
   CHECKOUT: payment method selector
   ══════════════════════════════════════════════════════ */

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.payment-option {
  cursor: pointer;
  display: block;
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.payment-option-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  transition: border-color 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
  color: var(--text);
}

.payment-option-inner svg,
.payment-option-inner i {
  flex-shrink: 0;
  color: var(--muted);
  transition: color 240ms var(--ease);
}

.payment-option-inner span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-option-inner strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--text);
}

.payment-option-inner small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}

.payment-option input[type="radio"]:checked + .payment-option-inner {
  border-color: var(--accent);
  background: rgba(47,93,80,.05);
  box-shadow: 0 0 0 3px rgba(47,93,80,.08);
}

.payment-option input[type="radio"]:checked + .payment-option-inner i,
.payment-option input[type="radio"]:checked + .payment-option-inner svg {
  color: var(--accent);
}

.payment-option:hover .payment-option-inner {
  border-color: rgba(47,93,80,.3);
}

.checkout-payment-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(47,93,80,.04);
  border-radius: 6px;
  font-weight: 300;
}

@media (max-width: 600px) {
  .cart-header-row { grid-template-columns: 60px 1fr auto; }
  .cart-header-row span:nth-child(3) { display: none; }
}

/* ══════════════════════════════════════════════════════
   NAV CART DROPDOWN — mini-cart flyout
   ══════════════════════════════════════════════════════ */

.nav-cart-wrap { position: relative; }

.nav-cart-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 340px;
  background: var(--bg, #F5F1E8);
  border: 1px solid var(--border, #E2DDD3);
  border-radius: 12px;
  box-shadow:
    0 4px 6px rgba(0,0,0,.04),
    0 20px 40px rgba(0,0,0,.10);
  padding: 20px;
  z-index: 500;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.nav-cart-dropdown.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Arrow pointer */
.nav-cart-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 18px;
  width: 13px;
  height: 13px;
  background: var(--bg, #F5F1E8);
  border-top: 1px solid var(--border, #E2DDD3);
  border-left: 1px solid var(--border, #E2DDD3);
  transform: rotate(45deg);
}

@media (max-width: 600px) {
  .nav-cart-dropdown {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 12px 12px;
  }
  .nav-cart-dropdown::before { display: none; }
}

/* ── Category row empty state ── */
.cat-row-empty {
  min-width: 280px;
  padding: 48px 32px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Category row add-to-cart button ── */
.cat-add-to-cart {
  background: var(--bg, #F5F1E8);
  color: var(--text, #1A1A18);
  border: 1px solid rgba(245,241,232,.7);
  border-radius: 30px;
  padding: 9px 20px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 240ms ease, color 240ms ease;
}
.cat-add-to-cart:hover,
.cat-add-to-cart.loading,
.cat-add-to-cart.added {
  background: var(--accent, #2F5D50);
  color: #F5F1E8;
  border-color: var(--accent, #2F5D50);
}

/* ══════════════════════════════════════════════════════
   AHIMSA STAT STRIP
   ══════════════════════════════════════════════════════ */

.ahimsa-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(47,93,80,.025);
}

.ahimsa-strip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 24px var(--container-pad);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.ahimsa-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px;
  flex: 1;
}

.ahimsa-stat-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.ahimsa-stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.4;
  max-width: 140px;
}

.ahimsa-strip-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   USP CARDS WITH IMAGES
   ══════════════════════════════════════════════════════ */

.usp-card {
  position: relative;
  overflow: hidden;
}

.usp-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
}

.usp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.8);
  transition: transform 600ms ease, filter 400ms ease;
}

.usp-card:hover .usp-card-img img {
  transform: scale(1.05);
  filter: saturate(1);
}

.usp-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(245,241,232,.35) 100%);
}

/* ══════════════════════════════════════════════════════
   STORY FLOAT — moth version
   ══════════════════════════════════════════════════════ */

.story-float--moth {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.story-float-moth-img {
  width: 88px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   SILK BANNER
   ══════════════════════════════════════════════════════ */

.silk-banner {
  position: relative;
  margin: 80px 0 0;
  overflow: hidden;
}

.silk-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,24,.6) 0%, rgba(26,26,24,.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.silk-banner-text {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 300;
  color: #F5F1E8;
  max-width: 540px;
  line-height: 1.4;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE — Premium layout
   ══════════════════════════════════════════════════════ */

/* Hero with full-bleed photo */
.about-hero {
  position: relative;
  height: 80vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.about-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.85);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,26,24,.15) 0%,
    rgba(26,26,24,.45) 55%,
    rgba(26,26,24,.75) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 80px 72px;
  color: #F5F1E8;
}

.about-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: #F5F1E8;
  margin-bottom: 18px;
}

.about-hero-content h1 em {
  font-style: italic;
  color: rgba(196,168,130,.9);
}

.about-hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,241,232,.8);
  max-width: 520px;
}

/* Stats bar */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--border);
}

.stat-block {
  padding: 36px 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-block:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}

/* Lifecycle diagram */
.eri-lifecycle-diagram {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 28px;
  flex-wrap: wrap;
}

.lifecycle-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 60px;
}

.lifecycle-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.lifecycle-icon svg {
  width: 44px;
  height: 44px;
}

.lifecycle-label {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}

.lifecycle-arrow {
  color: var(--border);
  font-size: 14px;
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* Double stacked image block */
.about-double-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-caption {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .08em;
  padding: 8px 14px;
  background: rgba(245,241,232,.8);
  line-height: 1.4;
  border-top: 1px solid var(--border);
}

/* Values section */
.about-values-section {
  background: rgba(47,93,80,.04);
  padding: 100px 80px;
}

.about-values-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* Value card with photo */
.value-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}

.value-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.value-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) brightness(.92);
  transition: transform 500ms ease, filter 400ms ease;
  display: block;
}

.value-card:hover .value-card-img img {
  transform: scale(1.04);
  filter: saturate(.9) brightness(.95);
}

.value-icon,
.value-card h3,
.value-card p {
  padding: 0 28px;
}

.value-icon {
  padding-top: 24px;
  padding-bottom: 0;
  color: var(--accent);
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin: 14px 0 10px;
  color: var(--text);
}

.value-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  padding-bottom: 28px;
}

/* Ahimsa stat strip icon sizing */
.ahimsa-stat-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.ahimsa-stat-icon svg {
  width: 56px;
  height: 56px;
}

/* Story float cocoon SVG sizing */
.story-float-cocoon-svg {
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — About page
   ══════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .about-hero-content { padding: 0 48px 60px; }
  .about-values-section { padding: 80px 48px; }
  .stat-block { padding: 28px 20px; }
  .stat-num { font-size: 36px; }
}

@media (max-width: 900px) {
  .about-hero { height: 60vh; min-height: 440px; }
  .about-hero-content { padding: 0 24px 48px; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .about-values-section { padding: 60px 24px; }
  .eri-lifecycle-diagram { gap: 4px; }
  .lifecycle-icon, .lifecycle-icon svg { width: 36px; height: 36px; }
}

@media (max-width: 600px) {
  .about-hero { height: 55vh; min-height: 360px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .eri-lifecycle-diagram { justify-content: center; }
  .lifecycle-arrow { font-size: 11px; }
  .lifecycle-icon, .lifecycle-icon svg { width: 32px; height: 32px; }
}

/* ══════════════════════════════════════════════════════
   USP CARD — Icon-only variant (no photo)
   ══════════════════════════════════════════════════════ */

.usp-card--icon {
  padding-top: 36px;
}

.usp-icon-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.usp-icon-lg svg {
  width: 80px;
  height: 80px;
  display: block;
}



/* ══════════════════════════════════════════════════════
   PROCESS STEP — SVG variant (replaces .process-step-img)
   ══════════════════════════════════════════════════════ */

.process-step-svg {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: stretch;
}

.process-step-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Hover: subtle lift */
.process-step:hover .process-step-svg {
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
  transform: translateY(-2px);
  transition: box-shadow 300ms ease, transform 300ms ease;
}

/* ══════════════════════════════════════════════════════════════
   ERIZON — PREMIUM MICROINTERACTIONS v2.9
   GPU-safe: transform + opacity only. No layout-triggering props.
   Easing scale: --ease-out: decelerate into rest (reveals)
                 --ease-spring: slight overshoot (buttons, cards)
                 --ease-in-out: smooth A→B (tabs, overlays)
   ══════════════════════════════════════════════════════════════ */

:root {
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  /* Shadow scale */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 32px 64px rgba(0,0,0,.14), 0 8px 20px rgba(0,0,0,.07);

  /* Silk glow (accent colour at low opacity) */
  --glow-accent: 0 0 0 3px rgba(47,93,80,.10);
  --glow-accent-lg: 0 0 24px rgba(47,93,80,.12);
}

/* ══════════════════════════════════════════════
   1. BUTTONS — scale + shadow + ripple-free elegance
   ══════════════════════════════════════════════ */

.btn-primary,
.btn-ghost {
  will-change: transform;
  transition:
    transform      220ms var(--ease-spring),
    box-shadow     220ms var(--ease-out),
    background     240ms var(--ease-in-out),
    color          240ms var(--ease-in-out),
    border-color   240ms var(--ease-in-out),
    opacity        200ms var(--ease-in-out);
  backface-visibility: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.008);
  box-shadow: var(--shadow-md), var(--glow-accent-lg);
}

.btn-primary:active {
  transform: translateY(0) scale(0.975);
  box-shadow: var(--shadow-xs);
  transition-duration: 100ms;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: var(--glow-accent);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost:active {
  transform: translateY(0) scale(0.975);
  transition-duration: 100ms;
}

.btn-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* WC add-to-cart and all .button variants */
ul.products li.product .button,
ul.products li.product .add_to_cart_button,
.cat-add-to-cart {
  will-change: transform;
  transition:
    transform    200ms var(--ease-spring),
    background   240ms var(--ease-in-out),
    color        240ms var(--ease-in-out),
    border-color 240ms var(--ease-in-out),
    box-shadow   220ms var(--ease-out);
}

ul.products li.product .button:hover,
ul.products li.product .add_to_cart_button:hover,
.cat-add-to-cart:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm), var(--glow-accent);
}

ul.products li.product .button:active,
ul.products li.product .add_to_cart_button:active,
.cat-add-to-cart:active {
  transform: scale(0.96);
  transition-duration: 90ms;
}

/* Single product ATC — the primary purchase action */
.single-product form.cart .single_add_to_cart_button {
  will-change: transform;
  position: relative;
  overflow: hidden;
  transition:
    transform    220ms var(--ease-spring),
    box-shadow   220ms var(--ease-out),
    opacity      200ms var(--ease-in-out);
}

.single-product form.cart .single_add_to_cart_button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity 200ms var(--ease-in-out);
}

.single-product form.cart .single_add_to_cart_button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-lg), var(--glow-accent-lg);
  opacity: 1;
}

.single-product form.cart .single_add_to_cart_button:hover::before {
  opacity: 1;
}

.single-product form.cart .single_add_to_cart_button:active {
  transform: scale(0.975);
  transition-duration: 90ms;
}

/* ══════════════════════════════════════════════
   2. NAVIGATION LINKS — animated underline
   ══════════════════════════════════════════════ */

.nav-links a {
  position: relative;
  transition: color 240ms var(--ease-in-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-out);
}

.nav-links a:hover::after,
.nav-links .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav icons */
.nav-icon {
  transition: transform 200ms var(--ease-spring), color 200ms var(--ease-in-out);
}

.nav-icon:hover {
  transform: scale(1.12);
}

/* Cart badge pop on count change */
.cart-count {
  transition: transform 300ms var(--ease-spring);
}

.cart-count.bump {
  transform: scale(1.5);
}

/* ══════════════════════════════════════════════
   3. PRODUCT CARDS (grid, homepage rows, related)
   ══════════════════════════════════════════════ */

/* WC grid cards */
ul.products.wc-prod-grid li.product,
.single-product .related.products ul.products li.product,
.single-product .upsells.products ul.products li.product {
  will-change: transform;
  transition:
    transform  320ms var(--ease-out),
    box-shadow 320ms var(--ease-out);
}

ul.products.wc-prod-grid li.product:hover,
.single-product .related.products ul.products li.product:hover,
.single-product .upsells.products ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Image zoom inside card */
ul.products.wc-prod-grid li.product img {
  will-change: transform;
  transition:
    transform 500ms var(--ease-out),
    filter    400ms var(--ease-in-out);
}

ul.products.wc-prod-grid li.product:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) brightness(1.02);
}

/* Homepage category row cards */
.cat-prod-card {
  will-change: transform;
  transition:
    transform  320ms var(--ease-out),
    box-shadow 320ms var(--ease-out);
}

.cat-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cat-prod-img img {
  will-change: transform;
  transition:
    transform 550ms var(--ease-out),
    filter    400ms var(--ease-in-out);
}

.cat-prod-card:hover .cat-prod-img img {
  transform: scale(1.07);
  filter: saturate(1.06) brightness(1.02);
}

/* ══════════════════════════════════════════════
   4. HERO — staggered text entry
   ══════════════════════════════════════════════ */

.hero-eyebrow {
  animation: heroStagger 800ms var(--ease-out) 100ms both;
}

.hero-h1 {
  animation: heroStagger 900ms var(--ease-out) 220ms both;
}

.hero-sub {
  animation: heroStagger 800ms var(--ease-out) 380ms both;
}

.hero-ctas {
  animation: heroStagger 700ms var(--ease-out) 520ms both;
}

@keyframes heroStagger {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Slider dots */
.dot {
  transition: transform 250ms var(--ease-spring), opacity 250ms var(--ease-in-out), background 250ms var(--ease-in-out);
}

.dot.active {
  transform: scale(1.35);
}

.dot:not(.active):hover {
  transform: scale(1.15);
  opacity: .7;
}

/* ══════════════════════════════════════════════
   5. SCROLL REVEAL — CSS-only trigger via .is-visible
   JS adds class via IntersectionObserver in main.js
   ══════════════════════════════════════════════ */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   550ms var(--ease-out),
    transform 550ms var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"]  { transform: translateX(-24px); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal="scale"] { transform: scale(0.96); }

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="scale"].is-visible {
  transform: none;
}

/* Stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity   480ms var(--ease-out),
    transform 480ms var(--ease-out);
}

[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms;   opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 80ms;  opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: none; }

/* ══════════════════════════════════════════════
   6. USP CARDS — icon pulse + card lift
   ══════════════════════════════════════════════ */

.usp-card {
  will-change: transform;
  transition:
    transform  300ms var(--ease-out),
    box-shadow 300ms var(--ease-out),
    border-color 240ms var(--ease-in-out);
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47,93,80,.25);
}

.usp-icon-lg {
  transition: transform 350ms var(--ease-spring);
}

.usp-card:hover .usp-icon-lg {
  transform: scale(1.08) translateY(-2px);
}

/* ══════════════════════════════════════════════
   7. PROCESS STEPS — hover lift + icon scale
   ══════════════════════════════════════════════ */

.process-step {
  transition: transform 280ms var(--ease-out);
}

.process-step:hover {
  transform: translateY(-3px);
}

.process-step-svg {
  transition:
    box-shadow 280ms var(--ease-out),
    transform  280ms var(--ease-out);
}

.process-step:hover .process-step-svg {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   8. FILTER CHIPS — active/hover polish
   ══════════════════════════════════════════════ */

.filter-chip {
  will-change: transform;
  transition:
    transform    200ms var(--ease-spring),
    background   200ms var(--ease-in-out),
    color        200ms var(--ease-in-out),
    border-color 200ms var(--ease-in-out),
    box-shadow   200ms var(--ease-out);
}

.filter-chip:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-xs);
}

.filter-chip.active,
.filter-chip[aria-pressed="true"] {
  box-shadow: var(--glow-accent);
}

/* ══════════════════════════════════════════════
   9. FORM INPUTS — focus glow
   ══════════════════════════════════════════════ */

.form-input {
  transition:
    border-color 220ms var(--ease-in-out),
    box-shadow   220ms var(--ease-out);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: var(--glow-accent);
  outline: none;
}

/* Qty buttons on product page */
.qty-btn,
.single-product form.cart .qty {
  transition:
    border-color 200ms var(--ease-in-out),
    box-shadow   200ms var(--ease-out),
    transform    150ms var(--ease-spring);
}

.qty-btn:hover {
  transform: scale(1.1);
}

.qty-btn:active {
  transform: scale(0.92);
  transition-duration: 80ms;
}

.single-product form.cart .qty:focus {
  border-color: var(--accent);
  box-shadow: var(--glow-accent);
}

/* ══════════════════════════════════════════════
   10. PRODUCT PAGE — gallery, tabs, trust badges
   ══════════════════════════════════════════════ */

/* Gallery main image zoom on hover */
.woocommerce-product-gallery figure img,
.pdp-gallery figure img {
  transition:
    transform 600ms var(--ease-out),
    filter    400ms var(--ease-in-out);
  will-change: transform;
}

.woocommerce-product-gallery:hover figure img,
.pdp-gallery:hover figure img {
  transform: scale(1.03);
  filter: brightness(1.02);
}

/* Thumbnail strip */
.flex-control-thumbs li img {
  transition:
    border-color 200ms var(--ease-in-out),
    transform    200ms var(--ease-spring),
    opacity      200ms var(--ease-in-out);
}

.flex-control-thumbs li img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.flex-control-thumbs li img.flex-active {
  border-color: var(--accent);
  box-shadow: var(--glow-accent);
}

/* Product tabs — animated border indicator */
.woocommerce-tabs ul.tabs {
  position: relative;
}

.woocommerce-tabs ul.tabs li {
  transition: opacity 200ms var(--ease-in-out);
}

.woocommerce-tabs ul.tabs li:not(.active) {
  opacity: .6;
}

.woocommerce-tabs ul.tabs li:not(.active):hover {
  opacity: .85;
}

.woocommerce-tabs ul.tabs li a {
  transition: color 200ms var(--ease-in-out);
}

.woocommerce-tabs .panel {
  animation: tabFadeIn 300ms var(--ease-out) both;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Variation swatches (WC variable products) */
.woocommerce-variation-add-to-cart {
  transition: opacity 250ms var(--ease-in-out);
}

.variations select {
  transition:
    border-color 200ms var(--ease-in-out),
    box-shadow   200ms var(--ease-out);
}

.variations select:focus {
  border-color: var(--accent);
  box-shadow: var(--glow-accent);
  outline: none;
}

/* Payment option selector */
.payment-option-inner {
  transition:
    border-color 220ms var(--ease-in-out),
    background   220ms var(--ease-in-out),
    box-shadow   220ms var(--ease-out),
    transform    200ms var(--ease-spring);
}

.payment-option:hover .payment-option-inner {
  transform: translateY(-1px);
  box-shadow: var(--shadow-xs);
}

.payment-option input:checked + .payment-option-inner {
  box-shadow: var(--glow-accent), var(--shadow-sm);
}

/* Trust badges */
.trust-item {
  transition: transform 250ms var(--ease-spring), opacity 250ms var(--ease-in-out);
}

.trust-item:hover {
  transform: translateY(-1px);
  opacity: 1 !important;
}

.trust-item-icon {
  transition: transform 300ms var(--ease-spring);
}

.trust-item:hover .trust-item-icon {
  transform: scale(1.2) rotate(-5deg);
}

/* ══════════════════════════════════════════════
   11. FOOTER + MISC
   ══════════════════════════════════════════════ */

.footer-social-link {
  transition:
    transform    200ms var(--ease-spring),
    color        200ms var(--ease-in-out),
    box-shadow   200ms var(--ease-out);
}

.footer-social-link:hover {
  transform: translateY(-3px) scale(1.12);
  box-shadow: var(--shadow-sm);
}

.footer-links a {
  position: relative;
  transition: color 220ms var(--ease-in-out), padding-left 220ms var(--ease-out);
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -16px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 220ms var(--ease-in-out), transform 220ms var(--ease-out);
  font-size: 10px;
  color: var(--accent);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 16px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════════
   12. STORY + FOUNDER images — parallax-lite
   ══════════════════════════════════════════════ */

.story-visual img,
.founder-portrait img {
  transition: transform 600ms var(--ease-out), filter 400ms var(--ease-in-out);
}

.story-visual:hover img {
  transform: scale(1.03);
  filter: brightness(1.03);
}

.founder-portrait:hover img {
  transform: scale(1.02) translateY(-4px);
  filter: brightness(1.02);
}

/* ══════════════════════════════════════════════
   13. WA FLOAT BUTTON — heartbeat on idle
   ══════════════════════════════════════════════ */

.wa-float {
  animation: waHeartbeat 4s var(--ease-in-out) 3s infinite;
  transition: transform 200ms var(--ease-spring), box-shadow 200ms var(--ease-out);
}

.wa-float:hover {
  animation: none;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.35);
}

@keyframes waHeartbeat {
  0%, 85%, 100% { transform: scale(1); }
  90%           { transform: scale(1.07); }
  95%           { transform: scale(1.04); }
}

/* ══════════════════════════════════════════════
   14. @media — disable hover effects on touch
   ══════════════════════════════════════════════ */

@media (hover: none) {
  /* Cards don't lift on touch (no hover state exists)
     but keep transitions for JS-triggered states */
  ul.products.wc-prod-grid li.product:hover,
  .cat-prod-card:hover,
  .usp-card:hover,
  .process-step:hover {
    transform: none;
    box-shadow: none;
  }

  ul.products.wc-prod-grid li.product:hover img,
  .cat-prod-card:hover .cat-prod-img img {
    transform: none;
    filter: none;
  }

  /* Buttons: keep scale on :active (touch feedback) */
  .btn-primary:active,
  .btn-ghost:active {
    transform: scale(0.96);
  }

  /* WA heartbeat slower on mobile */
  .wa-float {
    animation-duration: 6s;
  }
}

/* ══════════════════════════════════════════════════════════
   SECURITY + UX FIXES — v3.0
   ══════════════════════════════════════════════════════════ */

/* 1. prefers-reduced-motion — disable all animations/transitions */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration:   0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration:  0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal],
  [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .slide-bg { animation: none !important; }
  .wa-float  { animation: none !important; }
  .hero-eyebrow,
  .hero-h1,
  .hero-sub,
  .hero-ctas { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* 2. Focus rings — visible keyboard focus on all interactive elements
   Uses :focus-visible to avoid showing ring on mouse clicks */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Nav links — animated underline already shown; add box ring for keyboard */
.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* 3. Skip-to-content link — appears on Tab press */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: #F5F1E8;
  padding: 10px 20px;
  border-radius: 0 0 6px 6px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: top 200ms ease;
}

.skip-to-content:focus {
  top: 0;
  outline: none;
}

/* 4. Auth form field error state */
.form-input.error,
.form-input[aria-invalid="true"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,.08);
}

/* 5. Button disabled state */
.btn-primary:disabled,
.btn-primary[aria-disabled="true"],
.btn-ghost:disabled,
.btn-ghost[aria-disabled="true"] {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* 6. Lucide icons — prevent text cursor on SVG */
[data-lucide],
.usp-icon-lg svg,
.ahimsa-stat-icon svg,
.lifecycle-icon svg {
  pointer-events: none;
  user-select: none;
}

/* 7. Inline style overuse — override hero text spacing via class */
.hero-text-gap { margin-bottom: 10px; }

/* ══════════════════════════════════════════════════════════
   AUTH UX — password strength, submit loading, error states
   ══════════════════════════════════════════════════════════ */

/* Password strength bar */
.pass-strength-bar {
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  margin-top: 6px;
  overflow: hidden;
  transition: opacity 200ms ease;
}

.pass-strength-bar-fill {
  height: 100%;
  border-radius: 2px;
  width: 0%;
  transition: width 300ms ease, background 300ms ease;
}

.pass-strength-bar-fill[data-strength="weak"]   { width: 25%; background: #e74c3c; }
.pass-strength-bar-fill[data-strength="fair"]   { width: 55%; background: #f39c12; }
.pass-strength-bar-fill[data-strength="good"]   { width: 80%; background: #27ae60; }
.pass-strength-bar-fill[data-strength="strong"] { width: 100%; background: #2ecc71; }

.pass-strength-label {
  font-size: 10px;
  letter-spacing: .08em;
  margin-top: 4px;
  display: block;
  transition: color 250ms ease;
}

/* Form submit loading state */
.form-submit-loading {
  position: relative;
  pointer-events: none;
  opacity: .75;
}

.form-submit-loading::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1.5px solid rgba(245,241,232,.5);
  border-top-color: #F5F1E8;
  border-radius: 50%;
  animation: wc-spin 600ms linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

/* Auth alerts — role=alert requires visible state */
.auth-alert[role="alert"],
.auth-alert[role="status"] {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 7px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.auth-alert--error[role="alert"] {
  background: rgba(192,57,43,.06);
  border-color: rgba(192,57,43,.18);
  color: #c0392b;
}

.auth-alert--success {
  background: rgba(47,93,80,.06);
  border-color: rgba(47,93,80,.18);
  color: var(--accent);
}

.auth-alert[role="status"] {
  background: rgba(196,168,130,.1);
  border-color: rgba(196,168,130,.3);
  color: #7a6040;
}

/* Password visibility toggle */
.input-eye-wrap {
  position: relative;
}

.input-eye-wrap .form-input {
  padding-right: 44px;
}

.input-eye-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 200ms ease, transform 200ms ease;
  border-radius: 3px;
}

.input-eye-btn:hover { color: var(--accent); }
.input-eye-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ══════════════════════════════════════════════════════════════
   ERIZON — BEAUTIFICATION LAYER v3.2
   Premium micro-polish for every interactive surface.
   All effects: GPU-safe (transform + opacity + filter only).
   ══════════════════════════════════════════════════════════════ */

/* ── 1. BUTTONS — rounded, shimmer, magnetic depth ─────────────
   Replace border-radius:2px with 6px across all buttons.
   Primary: shimmer sweep + inner glow on hover.
   Ghost: border fill animation from center.
   Both: satisfying press compress on :active.
   ─────────────────────────────────────────────────────────── */

.btn-primary {
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  letter-spacing: .14em;
  transition:
    background   260ms var(--ease-in-out),
    transform    220ms var(--ease-spring),
    box-shadow   240ms var(--ease-out);
}

/* Shimmer sweep on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent    30%,
    rgba(255,255,255,.18) 50%,
    transparent    70%
  );
  transform: translateX(-100%);
  transition: transform 440ms var(--ease-out);
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: #2a5548;
  box-shadow:
    0 4px 16px rgba(47,93,80,.35),
    0 1px 4px rgba(47,93,80,.2),
    inset 0 1px 0 rgba(255,255,255,.1);
  transform: translateY(-2px) scale(1.01);
}

.btn-primary:active {
  transform: translateY(0) scale(0.975);
  box-shadow: 0 1px 4px rgba(47,93,80,.2);
  transition-duration: 90ms;
}

/* Ghost: animated border fill from left */
.btn-ghost {
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  letter-spacing: .14em;
  z-index: 0;
  transition:
    color        240ms var(--ease-in-out),
    border-color 240ms var(--ease-in-out),
    transform    220ms var(--ease-spring),
    box-shadow   240ms var(--ease-out);
}

/* Background fill slides in from left */
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(47,93,80,.06);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease-out);
  z-index: -1;
  pointer-events: none;
}

.btn-ghost:hover::before {
  transform: scaleX(1);
}

.btn-ghost:hover {
  border-color: rgba(47,93,80,.5);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.07);
}

.btn-ghost:active {
  transform: scale(0.975);
  transition-duration: 90ms;
}

/* ── 2. PRODUCT CARDS — gallery overlay, badge polish ──────────
   Add an "Add to Bag" CTA that slides up from the bottom on hover.
   Image gets colour shift + zoom. Card border glows on hover.
   ─────────────────────────────────────────────────────────── */

/* WC grid cards — refine border + shadow system */
ul.products.wc-prod-grid li.product {
  border: 1px solid rgba(226,221,211,.8);
  box-shadow: var(--shadow-xs);
  transition:
    transform  340ms var(--ease-out),
    box-shadow 340ms var(--ease-out),
    border-color 300ms var(--ease-in-out);
}

ul.products.wc-prod-grid li.product:hover {
  border-color: rgba(47,93,80,.2);
  transform: translateY(-7px);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(47,93,80,.06);
}

/* Category row cards */
.cat-prod-card {
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(226,221,211,.8);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform  340ms var(--ease-out),
    box-shadow 340ms var(--ease-out),
    border-color 300ms var(--ease-in-out);
}

.cat-prod-card:hover {
  border-color: rgba(47,93,80,.2);
  transform: translateY(-7px);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(47,93,80,.06);
}

/* Image overlay — gradient + ATC button slides up */
.cat-prod-img {
  position: relative;
  overflow: hidden;
}

.cat-prod-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(26,26,24,.55) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity 300ms var(--ease-in-out);
}

.cat-prod-card:hover .cat-prod-overlay {
  opacity: 1;
}

/* Slide-up CTA inside overlay */
.cat-add-to-cart {
  transform: translateY(12px);
  opacity: 0;
  transition:
    transform 300ms var(--ease-out),
    opacity   300ms var(--ease-out),
    background 200ms var(--ease-in-out),
    box-shadow 200ms var(--ease-out);
  border-radius: 5px;
  background: rgba(245,241,232,.92);
  border: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .12em;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.cat-prod-card:hover .cat-add-to-cart {
  transform: translateY(0);
  opacity: 1;
}

.cat-add-to-cart:hover {
  background: var(--accent);
  color: #F5F1E8;
  box-shadow: 0 4px 16px rgba(47,93,80,.3);
}

/* Product info section inside card */
.cat-prod-info {
  padding: 14px 16px 18px;
  transition: transform 200ms var(--ease-out);
}

.cat-prod-card:hover .cat-prod-info {
  transform: translateY(-2px);
}

.cat-prod-name {
  transition: color 220ms var(--ease-in-out);
}

.cat-prod-card:hover .cat-prod-name {
  color: var(--accent);
}

/* ── 3. USP CARDS — accent border reveal + icon pulse ──────────
   Card gets a 2px accent border that draws in from bottom-left.
   Number watermark scales on hover. Icon gets spin-nudge.
   ─────────────────────────────────────────────────────────── */

.usp-card {
  border-radius: 12px;
  border: 1px solid rgba(226,221,211,.7);
  box-shadow: var(--shadow-xs);
  transition:
    transform  300ms var(--ease-out),
    box-shadow 300ms var(--ease-out),
    border-color 280ms var(--ease-in-out);
  position: relative;
  overflow: hidden;
}

/* Accent corner glow reveals on hover */
.usp-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
  pointer-events: none;
}

.usp-card:hover::after {
  transform: scaleX(1);
}

.usp-card:hover {
  border-color: rgba(47,93,80,.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(47,93,80,.05);
}

/* Number watermark — grows subtly on hover */
.usp-num {
  font-size: 48px;
  opacity: .04;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--accent);
  top: 10px;
  right: 16px;
  transition: opacity 300ms var(--ease-in-out), transform 300ms var(--ease-out);
}

.usp-card:hover .usp-num {
  opacity: .08;
  transform: scale(1.1) translateY(-2px);
}

/* ── 4. PROCESS STEPS — number pulse + connector glow ──────────
   Step number spins slightly on hover (not full rotate — subtle).
   Connector line gets accent fill animation bottom-up.
   ─────────────────────────────────────────────────────────── */

.process-step {
  position: relative;
  transition: transform 280ms var(--ease-out);
}

.process-step:hover { transform: translateY(-4px); }

/* Animated number badge */
.process-line {
  width: 2px;
  height: 40px;
  background: var(--border);
  margin: 20px auto 16px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.process-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: height 400ms var(--ease-out);
}

.process-step:hover .process-line::after {
  height: 100%;
}

/* Data number badge */
.process-step[data-num]::before {
  content: attr(data-num);
  display: block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--accent);
  opacity: .6;
  text-align: center;
  margin-bottom: 4px;
  transition: opacity 240ms var(--ease-in-out), letter-spacing 240ms var(--ease-out);
}

.process-step:hover[data-num]::before {
  opacity: 1;
  letter-spacing: .22em;
}

.process-step h4 {
  transition: color 220ms var(--ease-in-out);
}

.process-step:hover h4 {
  color: var(--accent);
}

/* ── 5. FILTER CHIPS — active indicator dot + fill ─────────────
   Active chip gets a 4px accent dot to the left.
   Hover state uses a deeper fill. Click compresses with spring.
   ─────────────────────────────────────────────────────────── */

.filter-chip {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  padding-left: 18px;
  transition:
    background   220ms var(--ease-in-out),
    border-color 220ms var(--ease-in-out),
    color        220ms var(--ease-in-out),
    transform    200ms var(--ease-spring),
    box-shadow   200ms var(--ease-out),
    padding-left 220ms var(--ease-out);
}

.filter-chip:hover {
  background: rgba(47,93,80,.07);
  border-color: rgba(47,93,80,.22);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.filter-chip:active {
  transform: scale(0.95);
  transition-duration: 80ms;
}

/* Active dot indicator */
.filter-chip.active {
  background: rgba(47,93,80,.1);
  border-color: rgba(47,93,80,.3);
  color: var(--accent);
  padding-left: 26px;
  box-shadow: 0 0 0 3px rgba(47,93,80,.06);
}

.filter-chip.active::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 300ms var(--ease-spring);
}

/* ── 6. ACCOUNT NAVIGATION — left accent bar + icon ────────────
   Active/hover: 2px accent left border slides in.
   Icon scales on hover.
   ─────────────────────────────────────────────────────────── */

.account-nav-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  transition:
    background   220ms var(--ease-in-out),
    color        220ms var(--ease-in-out),
    transform    200ms var(--ease-spring),
    padding-left 220ms var(--ease-out);
}

/* Left accent bar */
.account-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2.5px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 260ms var(--ease-spring);
}

.account-nav-item:hover::before,
.account-nav-item.active::before {
  transform: scaleY(1);
}

.account-nav-item:hover,
.account-nav-item.active {
  background: rgba(47,93,80,.06);
  color: var(--accent);
  padding-left: 20px;
}

/* Icon inside nav item */
.account-nav-item i,
.account-nav-item svg {
  transition: transform 260ms var(--ease-spring);
}

.account-nav-item:hover i,
.account-nav-item:hover svg {
  transform: scale(1.18) translateX(1px);
}

/* ── 7. PAYMENT OPTION CARDS — ripple select + depth ───────────
   Selected card gets elevated shadow and subtle scale.
   Radio: custom styled with smooth transition.
   ─────────────────────────────────────────────────────────── */

.payment-option-inner {
  border-radius: 8px;
  border: 1.5px solid var(--border);
  transition:
    border-color 220ms var(--ease-in-out),
    background   220ms var(--ease-in-out),
    transform    220ms var(--ease-spring),
    box-shadow   220ms var(--ease-out);
}

.payment-option:hover .payment-option-inner {
  border-color: rgba(47,93,80,.3);
  background: rgba(47,93,80,.03);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.payment-option input[type="radio"]:checked + .payment-option-inner {
  border-color: var(--accent);
  background: rgba(47,93,80,.06);
  box-shadow:
    0 0 0 3px rgba(47,93,80,.08),
    0 4px 16px rgba(47,93,80,.12);
  transform: translateY(-1px) scale(1.005);
}

/* ── 8. FORM INPUTS — depth + focus animation ──────────────────
   Input gets subtle inner shadow and lifted label feeling.
   Focus state draws a coloured underline from center.
   ─────────────────────────────────────────────────────────── */

.form-input {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(226,221,211,.9);
  border-radius: 8px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.04);
  transition:
    border-color 220ms var(--ease-in-out),
    box-shadow   220ms var(--ease-out),
    background   220ms var(--ease-in-out);
}

.form-input:hover:not(:focus) {
  border-color: rgba(47,93,80,.25);
  background: rgba(255,255,255,.7);
}

.form-input:focus {
  background: rgba(255,255,255,.9);
  border-color: var(--accent);
  box-shadow:
    inset 0 1px 3px rgba(0,0,0,.02),
    0 0 0 3px rgba(47,93,80,.09),
    0 2px 8px rgba(47,93,80,.08);
}

/* ── 9. WC QUANTITY STEPPER — morphing +/- buttons ─────────────
   Qty buttons get circular hover state with accent fill.
   Input field elevated on focus.
   ─────────────────────────────────────────────────────────── */

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition:
    background   200ms var(--ease-in-out),
    border-color 200ms var(--ease-in-out),
    color        200ms var(--ease-in-out),
    transform    180ms var(--ease-spring),
    box-shadow   200ms var(--ease-out);
}

.qty-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #F5F1E8;
  transform: scale(1.12);
  box-shadow: 0 4px 10px rgba(47,93,80,.28);
}

.qty-btn:active {
  transform: scale(0.9);
  transition-duration: 80ms;
}

.qty-val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  min-width: 32px;
  text-align: center;
}

/* ── 10. ORDER SUMMARY CARD — shimmer border on focus ──────────
   Card gets a very subtle pulsing border while checkout form active.
   Trust items get icon rotation on hover.
   ─────────────────────────────────────────────────────────── */

.order-summary-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-in-out);
}

.order-summary-card:hover {
  border-color: rgba(47,93,80,.18);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  transition: transform 240ms var(--ease-spring), opacity 240ms var(--ease-in-out);
}

.trust-item:hover { transform: translateX(3px); opacity: 1; }

.trust-item-icon {
  transition: transform 320ms var(--ease-spring), background 240ms var(--ease-in-out);
}

.trust-item:hover .trust-item-icon {
  transform: rotate(-12deg) scale(1.2);
  background: rgba(47,93,80,.1);
}

/* ── 11. AUTH CARD — glassmorphism upgrade + entry animation ────
   Card gets a more refined glass treatment.
   Inputs highlight sequentially on focus.
   ─────────────────────────────────────────────────────────── */

.auth-card {
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(0,0,0,.08),
    0 2px 8px rgba(0,0,0,.04),
    inset 0 1px 0 rgba(255,255,255,.8);
  animation: authCardIn 600ms var(--ease-out) both;
}

@keyframes authCardIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── 12. NAV LOGO — scale on hover ─────────────────────────────
   Subtle scale gives life without being distracting.
   ─────────────────────────────────────────────────────────── */

.nav-logo {
  transition: opacity 220ms var(--ease-in-out), transform 240ms var(--ease-spring);
}

.nav-logo:hover {
  opacity: .82;
  transform: scale(1.02);
}

/* ── 13. FOOTER SOCIAL LINKS — bouncy lift ─────────────────────
   Social icons bounce upward with a spring overshoot.
   ─────────────────────────────────────────────────────────── */

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(226,221,211,.5);
  color: var(--muted);
  transition:
    transform    240ms var(--ease-spring),
    background   220ms var(--ease-in-out),
    color        220ms var(--ease-in-out),
    border-color 220ms var(--ease-in-out),
    box-shadow   220ms var(--ease-out);
}

.footer-social-link:hover {
  transform: translateY(-4px) scale(1.12);
  background: var(--accent);
  color: #F5F1E8;
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(47,93,80,.28);
}

/* ── 14. STAT STRIP (ahimsa) — number count-up hint + icon glow */

.ahimsa-stat {
  transition: transform 240ms var(--ease-spring);
}

.ahimsa-stat:hover {
  transform: translateY(-3px);
}

.ahimsa-stat-icon {
  transition: transform 320ms var(--ease-spring), filter 300ms var(--ease-in-out);
}

.ahimsa-stat:hover .ahimsa-stat-icon {
  transform: rotate(-8deg) scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(47,93,80,.2));
}

.ahimsa-stat-num {
  transition: color 220ms var(--ease-in-out), transform 240ms var(--ease-spring);
}

.ahimsa-stat:hover .ahimsa-stat-num {
  color: #264d43;
  transform: scale(1.06);
}

/* ── 15. WC MINI CART — product removal button polish ──────────
   Remove button gets red hover with scale.
   ─────────────────────────────────────────────────────────── */

.erizon-mini-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition:
    background   200ms var(--ease-in-out),
    color        200ms var(--ease-in-out),
    transform    200ms var(--ease-spring);
  font-size: 12px;
}

.erizon-mini-remove:hover {
  background: rgba(192,57,43,.12);
  color: #c0392b;
  transform: scale(1.15) rotate(90deg);
}

/* ── 16. WOOCOMMERCE TABS — underline slide indicator ──────────
   Active tab gets a sliding accent underline.
   Tab content fades in smoothly.
   ─────────────────────────────────────────────────────────── */

.woocommerce-tabs ul.tabs li {
  transition: opacity 220ms var(--ease-in-out);
}

.woocommerce-tabs ul.tabs li a {
  position: relative;
  transition: color 220ms var(--ease-in-out);
}

.woocommerce-tabs ul.tabs li.active a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  animation: tabUnderlineIn 280ms var(--ease-out) both;
}

@keyframes tabUnderlineIn {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── 17. SALE BADGE — gentle pulse ─────────────────────────────
   Sale badge pulses once on page load to draw attention.
   ─────────────────────────────────────────────────────────── */

.wc-sale-badge,
.onsale {
  animation: salePulse 2.4s var(--ease-in-out) 0.8s 2;
}

@keyframes salePulse {
  0%, 100% { transform: scale(1);    box-shadow: none; }
  50%       { transform: scale(1.08); box-shadow: 0 4px 12px rgba(47,93,80,.3); }
}

/* ── 18. CART REMOVE BUTTON — morphing X ───────────────────────
   Cart row remove button rotates on hover.
   ─────────────────────────────────────────────────────────── */

.cart-remove {
  transition:
    color        200ms var(--ease-in-out),
    transform    220ms var(--ease-spring),
    background   200ms var(--ease-in-out);
  border-radius: 4px;
  padding: 2px 6px;
}

.cart-remove:hover {
  color: #c0392b;
  background: rgba(192,57,43,.08);
  transform: scale(1.05);
}

/* ── 19. STORY SECTION QUOTE — accent shimmer on reveal ────────
   blockquote gets an animated left-border on scroll in.
   ─────────────────────────────────────────────────────────── */

.story-quote,
blockquote {
  border-left: 3px solid var(--border);
  padding-left: 20px;
  position: relative;
  transition: border-color 400ms var(--ease-out);
}

.story-grid.is-visible .story-quote,
.story-grid.is-visible blockquote {
  border-color: var(--accent);
}

/* ── 20. WISHLIST HEART BUTTON ─────────────────────────────────
   Bounce on click. Filled state pulses.
   ─────────────────────────────────────────────────────────── */

.wishlist-btn {
  transition: transform 220ms var(--ease-spring), color 220ms var(--ease-in-out);
}

.wishlist-btn:hover {
  transform: scale(1.2);
  color: #e74c3c;
}

.wishlist-btn.active {
  color: #e74c3c;
  animation: heartBeat 300ms var(--ease-spring) both;
}

@keyframes heartBeat {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* ── 21. LUMENOID CREDIT LINK ───────────────────────────────────
   Icon rotates and glows on hover.
   ─────────────────────────────────────────────────────────── */

.lumenoid-credit-link {
  transition: color 240ms var(--ease-in-out), gap 240ms var(--ease-out);
}

.lumenoid-credit-link:hover {
  color: #C4A882;
  gap: 10px;
}

.lumenoid-credit-icon {
  transition: transform 360ms var(--ease-spring), filter 300ms var(--ease-in-out);
}

.lumenoid-credit-link:hover .lumenoid-credit-icon {
  transform: rotate(30deg) scale(1.15);
  filter: drop-shadow(0 0 6px rgba(196,168,130,.5));
}

/* ── 22. PAGE HERO EYEBROW — letter-spacing breathe ────────────
   Eyebrow text spacing expands slightly on section reveal.
   ─────────────────────────────────────────────────────────── */

.page-hero .eyebrow {
  transition: letter-spacing 600ms var(--ease-out), opacity 600ms var(--ease-out);
}

.section-header .eyebrow {
  display: inline-block;
  transition: letter-spacing 500ms var(--ease-out);
}

.section-header.is-visible .eyebrow {
  letter-spacing: .24em;
}

/* ══════════════════════════════════════════════════════════════
   LAYOUT SYSTEM FIX v3.6 — Surgical spacing + grid repair
   Root cause: missing base rules, inconsistent containers,
   no spacing scale. Fixes all 10 issues without redesign.
   ══════════════════════════════════════════════════════════════ */

/* ── ABOVE-FOLD: never start invisible ─────────────────────
   Stat strip and USP are visible on load — skip opacity:0
   to prevent the blank whitespace shown in screenshots.
─────────────────────────────────────────────────────────── */
.ahimsa-strip-inner[data-stagger] > *,
.ahimsa-strip [data-stagger] > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ── 1. SPACING SCALE TOKENS ────────────────────────────────────
   Single source of truth for vertical rhythm.
   All section wrappers use these. Overrides any hardcoded 100px.
─────────────────────────────────────────────────────────────── */
:root {
  --space-xs:  24px;
  --space-sm:  40px;
  --space-md:  64px;
  --space-lg:  80px;
  --space-xl: 100px;

  --container-max: 1320px;
  --container-pad: 80px;   /* desktop */
}

/* ── 2. UNIVERSAL CONTAINER MIXIN ───────────────────────────────
   Applied to every section wrapper that should be centred.
   Overrides the inconsistent mix of padding + max-width.
─────────────────────────────────────────────────────────────── */
.section,
.story-grid,
.founder-section,
.process-section > div,
.page-hero,
.about-values-inner,
.about-stats,
.silk-banner-overlay {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Process-section: the outer strip handles background,
   inner div centres the content */
.process-section {
  padding: var(--space-xl) 0;
}

.process-section > div {
  padding-top: 0;
  padding-bottom: 0;
}

/* ── 3. SECTION VERTICAL SPACING — tighten from 100px flat ─────
   Sections were all 100px top+bottom, causing huge gaps.
   New scale: 80px section gaps, 56px internal element spacing.
─────────────────────────────────────────────────────────────── */
.section          { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.story-grid       { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.founder-section  { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }

/* Page hero: account for fixed nav height */
.page-hero        { padding-top: 120px; padding-bottom: var(--space-md); }

.section-header   { margin-bottom: var(--space-sm); }

/* ── 4. CAT-ROW BASE RULES (were missing entirely) ──────────────
   These only existed in responsive overrides, causing zero
   padding/width on desktop — the "misaligned full-width" bug.
─────────────────────────────────────────────────────────────── */
.cat-row-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-lg) var(--container-pad);
}

.cat-row-section + .cat-row-section,
.cat-row-section + .motif-inline + .cat-row-section {
  padding-top: 0; /* rows separated by motif divider, not double padding */
}

.cat-row-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ── 5. CAT-ROW-SCROLL — horizontal scroll with snapping ────────
   Was only defined in responsive context.
   Desktop: show 4-5 cards; mobile: horizontal scroll.
─────────────────────────────────────────────────────────────── */
.cat-row-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;           /* room for box-shadow */
  margin: 0 -4px;                /* bleed edge so shadow isn't clipped */
  padding-left: 4px;
  padding-right: 4px;
}

.cat-row-scroll::-webkit-scrollbar { display: none; }

/* ── 6. PRODUCT CARD — consistent width + height ────────────────
   Cards were "narrow floating" because min-width was only set
   in mobile media queries. Set a proper responsive width here.
─────────────────────────────────────────────────────────────── */
.cat-prod-card {
  flex: 0 0 240px;          /* desktop: 240px fixed width */
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid rgba(226,221,211,.8);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition:
    transform  320ms var(--ease-out),
    box-shadow 320ms var(--ease-out),
    border-color 260ms var(--ease-in-out);
}

/* Image: fixed 3:4 aspect ratio, consistent across all cards */
.cat-prod-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(47,93,80,.06);
  flex-shrink: 0;
}

.cat-prod-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 550ms var(--ease-out), filter 400ms var(--ease-in-out);
}

/* Info block: consistent internal padding */
.cat-prod-info {
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.cat-prod-badge {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .7;
  font-weight: 400;
}

.cat-prod-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
  transition: color 220ms var(--ease-in-out);
}

.cat-prod-price {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin: 0;
}

/* ── 7. WC PRODUCT GRID — enforce 3-column, consistent cards ────
   Cards were narrow because grid wasn't enforced.
─────────────────────────────────────────────────────────────── */
/* ul.products grid — canonical in woocommerce.css */

/* ul.products li.product — in woocommerce.css */

/* wc-page-wrap — canonical definition in woocommerce.css */

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 var(--container-pad) var(--space-xl);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ── 8. FILTER BAR — clean horizontal, no bad wraps ─────────────
   Was wrapping because padding was 80px but chips had no max-width.
─────────────────────────────────────────────────────────────── */
.filter-bar {
  padding: 14px var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar { display: none; }

.filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-group::-webkit-scrollbar { display: none; }

.filter-chip {
  flex-shrink: 0;        /* never shrink — always full text visible */
  padding: 8px 16px;
  font-size: 10px;
  letter-spacing: .12em;
  white-space: nowrap;
  border-radius: 24px;
}

/* ── 9. USP GRID — consistent 4-col, tight gap ──────────────────
   gap was only 20px; at 1320px width this left huge dead space.
─────────────────────────────────────────────────────────────── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── 10. PROCESS GRID — fix alignment + step width ──────────────
   Was left-drifting because inner div had no centering.
─────────────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  width: 100%;
}

/* ── 11. HERO TEXT — limit width, remove empty right void ────────
   Text was full-width making line lengths too long.
─────────────────────────────────────────────────────────────── */
.hero-h1 { max-width: 600px; }
.hero-sub { max-width: 420px; }

/* ── 12. BUTTONS — anchor to grid, consistent margin ────────────
   "Browse All Collections" was floating without margin.
─────────────────────────────────────────────────────────────── */
.section .btn-primary,
.section .btn-ghost,
.story-content .btn-ghost,
.founder-content .btn-ghost,
.page-hero .btn-primary,
.page-hero .btn-ghost {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── 13. GLOBAL HEADING MARGIN RESET ────────────────────────────
   Browser UA stylesheet adds margin-top to h1-h6 inside sections.
─────────────────────────────────────────────────────────────── */
.section h1, .section h2, .section h3, .section h4,
.page-hero h1, .story-grid h1, .story-grid h2,
.founder-section h1, .founder-section h2,
.process-section h2, .process-section h4,
.cat-row-section h2, .about-values-inner h2 {
  margin-top: 0;
}

/* ── 14. SILK BANNER — full-bleed, no container ─────────────────
   Intentionally full-width, but text overlay needs centering.
─────────────────────────────────────────────────────────────── */
.silk-banner-overlay {
  padding: 0 var(--container-pad);
}

/* ── 15. ABOUT PAGE — value cards grid ──────────────────────────
   Was unset, defaulting to block stacking.
─────────────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — LAYOUT SYSTEM FIX
   All breakpoints unified. No per-component breakpoints
   that contradict the container system.
═══════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  :root {
    --container-pad: 48px;
  }

  .usp-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* ul.products responsive — handled in woocommerce.css */

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  :root {
    --container-pad: 24px;
    --space-lg: 64px;
    --space-xl: 80px;
  }

  .story-grid,
  .founder-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-portrait { aspect-ratio: 4/3; }

  .cat-prod-card { flex: 0 0 200px; }
}

@media (max-width: 600px) {
  :root {
    --container-pad: 16px;
    --space-lg: 48px;
    --space-xl: 64px;
  }

  .usp-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ul.products responsive — handled in woocommerce.css */

  .prod-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .cat-prod-card { flex: 0 0 160px; }

  .page-hero { padding-top: 100px; }

  .filter-bar, .filter-group { gap: 6px; }
  .filter-chip { padding: 7px 13px; font-size: 9px; }
}

/* ══════════════════════════════════════════════════════════════
   CSS-ONLY ENTRANCE ANIMATIONS — no JS dependency, never invisible
   Content is ALWAYS visible. Animation plays on load using
   @keyframes with animation-fill-mode:both. No opacity:0 default.
   ══════════════════════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0.01; transform: translateY(20px); }
  to   { opacity: 1;    transform: translateY(0); }
}

@keyframes fadeScale {
  from { opacity: 0.01; transform: scale(0.97) translateY(12px); }
  to   { opacity: 1;    transform: scale(1) translateY(0); }
}

/* Stagger: each direct child animates in sequentially */
.anim-stagger > * {
  animation: fadeUp 560ms ease both;
}

.anim-stagger > *:nth-child(1)  { animation-delay:  40ms; }
.anim-stagger > *:nth-child(2)  { animation-delay: 120ms; }
.anim-stagger > *:nth-child(3)  { animation-delay: 200ms; }
.anim-stagger > *:nth-child(4)  { animation-delay: 280ms; }
.anim-stagger > *:nth-child(5)  { animation-delay: 360ms; }
.anim-stagger > *:nth-child(6)  { animation-delay: 440ms; }

/* Fade-up: whole element animates as one */
.anim-fade-up {
  animation: fadeUp 640ms ease both;
  animation-delay: 80ms;
}

/* Scale-fade for founder section */
.anim-scale-fade {
  animation: fadeScale 700ms ease both;
  animation-delay: 100ms;
}

/* Disable all animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .anim-stagger > *,
  .anim-fade-up,
  .anim-scale-fade {
    animation: none !important;
  }
}

/* ── FIX: remove opacity:0 default from data-reveal/stagger ────
   These rules made content invisible if JS failed.
   Elements should ALWAYS be visible; animation is enhancement.
─────────────────────────────────────────────────────────────── */
[data-reveal],
[data-stagger] > * {
  opacity: 1 !important;
  transform: none !important;
}

/* ══════════════════════════════════════════════════════════
   VISUAL / UX FIXES v5.0
   ══════════════════════════════════════════════════════════ */

/* ── nav-cart-wrap — was inline style="position:relative" ── */
.nav-cart-wrap { position: relative; }

/* ── cart count hidden class ── */
.cart-count--hidden { display: none; }

/* ── btn--full — replaces inline width/padding styles ── */
.btn--full {
  width: 100% !important;
  text-align: center !important;
  display: block !important;
  padding: 14px !important;
  box-sizing: border-box;
}

/* ── grain — ensure no pointer blocking ── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ── Search overlay ── */
.nav-search-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(245,241,232,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 280ms var(--ease-out);
  pointer-events: none;
}

.nav-search-bar[aria-hidden="false"] {
  transform: translateY(0);
  pointer-events: all;
}

.nav-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.nav-search-input {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 8px 4px;
  font-family: var(--serif, serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 220ms ease;
}

.nav-search-input:focus { border-bottom-color: var(--accent); }
.nav-search-input::placeholder { color: var(--muted); font-weight: 300; }

.nav-search-submit,
.nav-search-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 6px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: color 200ms ease;
  flex-shrink: 0;
}

.nav-search-submit:hover,
.nav-search-close:hover { color: var(--accent); }

/* Search button active state */
.nav-search-btn[aria-expanded="true"] {
  color: var(--accent);
}

/* ── Active nav link state ── */
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a {
  color: var(--accent);
}

.nav-links .current-menu-item > a::after {
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

@media (max-width: 600px) {
  .nav-search-bar { padding: 0 16px; }
}

/* ══════════════════════════════════════════════════════════
   NAV — Sign In button + mobile icon
   ══════════════════════════════════════════════════════════ */

/* Desktop: visible "Sign In" text button */
.nav-signin-btn {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border: 1.5px solid rgba(47,93,80,.35);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.nav-signin-btn:hover {
  background: var(--accent);
  color: #F5F1E8;
  border-color: var(--accent);
}

/* Mobile icon: shown only on small screens */
.nav-icon--mobile-only { display: none; }

@media (max-width: 768px) {
  .nav-signin-btn        { display: none; }
  .nav-icon--mobile-only { display: flex; }
}

/* ── Filter chips universal ── */
.shop-filter-bar {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
  padding: 16px 0 4px;
  scrollbar-width: none;
}
.shop-filter-bar::-webkit-scrollbar { display: none; }

/* ── Button text overflow on mobile ── */
@media (max-width: 480px) {
  ul.products li.product .button,
  ul.products li.product a.button {
    font-size: 9px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 10px 8px !important;
  }
}
