/* ============================================================
   ImproWell — All Desktop Pages stylesheet
   Extends the established ImproWell visual system (warm peach
   backdrop, Libre Baskerville serif display, Gantari sans body,
   brand rose #c97070, dark cocoa for science sections).
   ============================================================ */

.iwd-root, .iwd-root *, .iwd-root *::before, .iwd-root *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
html, body { background: #f5ede8; }

.iwd-root {
  background: #f5ede8;
  --iwd-bg: #f5ede8;
  --iwd-bg-deep: #efe3db;
  --iwd-ink: #2d2d2d;
  --iwd-ink-soft: #666;
  --iwd-muted: #999;
  --iwd-line: rgba(160,85,69,0.14);
  --iwd-line-strong: rgba(160,85,69,0.24);
  --iwd-brand: #c97070;
  --iwd-brand-deep: #a05545;
  --iwd-brand-soft: #e8bfaa;
  --iwd-brand-glow: rgba(201,112,112,0.35);
  --iwd-dark-1: #1a1010;
  --iwd-dark-2: #3a2020;
  --iwd-dark-3: #2e1a1a;
  --iwd-ok: #5a9a72;
  --iwd-lav: #9a72b0;
  --iwd-amber: #d4927a;
  --iwd-warn: #c97a3d;

  --iwd-glass-card-bg: rgba(255,255,255,0.72);
  --iwd-glass-card-br: rgba(255,255,255,0.55);

  --iwd-shadow-soft: 0 8px 28px rgba(180,120,100,0.12), 0 1px 4px rgba(0,0,0,0.04);
  --iwd-shadow-card: 0 14px 38px rgba(180,120,100,0.14), 0 2px 6px rgba(0,0,0,0.05);
  --iwd-shadow-btn:  0 8px 22px rgba(201,112,112,0.38);
  --iwd-shadow-deep: 0 24px 60px rgba(40,20,20,0.28);

  --iwd-radius-sm: 10px;
  --iwd-radius-md: 14px;
  --iwd-radius-lg: 20px;
  --iwd-radius-xl: 28px;
  --iwd-radius-pill: 999px;

  --iwd-fz-eyebrow: clamp(10px, 0.72vw, 12px);
  --iwd-fz-body:    clamp(14px, 0.95vw, 16px);
  --iwd-fz-small:   clamp(12px, 0.78vw, 13px);
  --iwd-fz-h3:      clamp(20px, 1.3vw, 24px);
  --iwd-fz-h2:      clamp(28px, 2.2vw, 42px);
  --iwd-fz-h1:      clamp(38px, 4vw, 72px);

  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  color: var(--iwd-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

.iwd-sans { font-family: "Gantari", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif; }

.iwd-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 700px at 50% 30%, #f7e4dc 0%, transparent 55%),
    radial-gradient(900px 700px at 50% 70%, #e8dff0 0%, transparent 55%),
    radial-gradient(1000px 800px at 18% 85%, #dce9e6 0%, transparent 60%),
    radial-gradient(1000px 800px at 82% 12%, #f5e0d6 0%, transparent 60%),
    linear-gradient(160deg, #f5ede8 0%, #f0e4db 100%);
  filter: saturate(1.04);
}
.iwd-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.26; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ======================= PAGE SWITCHER ======================= */
.iwd-switcher {
  position: fixed; bottom: 20px; right: 20px; z-index: 500;
  font-family: "Gantari", -apple-system, BlinkMacSystemFont, sans-serif;
}
.iwd-switcher-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px 10px 14px;
  border-radius: 999px;
  background: #1a1010; color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(40,20,20,0.3);
  font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease;
}
.iwd-switcher-toggle:hover { transform: translateY(-2px); }
.iwd-switcher-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--iwd-brand);
  box-shadow: 0 0 0 3px rgba(201,112,112,0.3);
}
.iwd-switcher-current { font-family: "Gantari", -apple-system, sans-serif; }
.iwd-switcher-panel {
  position: absolute; bottom: calc(100% + 10px); right: 0;
  width: 340px; max-height: 70vh;
  background: rgba(26,16,16,0.97);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.iwd-switcher-panel[hidden] { display: none; }
.iwd-switcher-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 16px 18px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; font-weight: 500; letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.iwd-switcher-head small { color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 1px; }
.iwd-switcher-scroll { overflow-y: auto; padding: 8px 6px 10px; }
.iwd-switcher-group {
  padding: 10px 12px 4px;
  font-size: 11px; font-weight: 500; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--iwd-brand-soft);
}
.iwd-switcher-item {
  display: grid; grid-template-columns: 28px 1fr auto; gap: 8px; align-items: center;
  padding: 9px 12px;
  background: transparent; border: none; cursor: pointer;
  color: rgba(255,255,255,0.78);
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 14px; font-weight: 600;
  width: 100%; text-align: left;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease;
}
.iwd-switcher-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.iwd-switcher-item.is-active { background: rgba(201,112,112,0.18); color: #fff; }
.iwd-switcher-item .n {
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic; font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.iwd-switcher-item .tag {
  font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 2px 7px; border-radius: 999px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
}
.iwd-switcher-item.is-active .tag { background: var(--iwd-brand); color: #fff; }

/* ======================= TOP CHROME ======================= */
.iwd-announce {
  background: var(--iwd-dark-1);
  color: rgba(255,255,255,0.86);
  padding: 9px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.iwd-announce-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: iwdTicker 38s linear infinite;
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase;
}
.iwd-announce-track span { display: inline-flex; align-items: center; gap: 12px; }
.iwd-announce-track .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--iwd-brand); }
@keyframes iwdTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.iwd-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(24px, 4vw, 56px);
  background: rgba(245,237,232,0.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.55);
}
.iwd-logo {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 20px; font-weight: 500; letter-spacing: 4px;
  color: var(--iwd-ink); text-decoration: none; cursor: pointer;
}
.iwd-logo .o { color: var(--iwd-brand); }

.iwd-nav-links { display: flex; gap: 30px; align-items: center; font-family: "Gantari", -apple-system, sans-serif; }
.iwd-nav-link {
  position: relative;
  font-size: 15px; font-weight: 600; letter-spacing: 0.4px;
  color: var(--iwd-ink); text-decoration: none; cursor: pointer;
  padding: 6px 2px;
  background: none; border: none;
}
.iwd-nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--iwd-brand);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1);
}
.iwd-nav-link:hover { color: var(--iwd-brand); }
.iwd-nav-link:hover::after, .iwd-nav-link.is-current::after { transform: scaleX(1); }

.iwd-nav-right { display: flex; gap: 12px; align-items: center; font-family: "Gantari", -apple-system, sans-serif; }
.iwd-icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--iwd-ink);
  transition: background 180ms ease, box-shadow 180ms ease;
  position: relative;
}
.iwd-icon-btn:hover { background: #fff; box-shadow: var(--iwd-shadow-soft); }
.iwd-icon-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.iwd-icon-btn .badge {
  position: absolute; top: -2px; right: -2px;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; background: var(--iwd-brand); color: #fff;
  font-size: 11px; font-weight: 500; line-height: 16px; text-align: center;
  font-family: "Gantari", -apple-system, sans-serif;
}
.iwd-cta-primary {
  padding: 10px 22px; border-radius: var(--iwd-radius-pill);
  background: var(--iwd-brand); color: #fff;
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  text-decoration: none; cursor: pointer; border: none;
  box-shadow: var(--iwd-shadow-btn);
  transition: background 180ms ease, transform 140ms ease;
}
.iwd-cta-primary:hover { background: #d27d7d; transform: translateY(-1px); }

/* ======================= COMMON ======================= */
.iwd-section { padding: clamp(56px, 6vw, 100px) clamp(24px, 4vw, 56px); }
.iwd-container { max-width: 1280px; margin: 0 auto; }
.iwd-container-sm { max-width: 920px; margin: 0 auto; }
.iwd-container-xs { max-width: 560px; margin: 0 auto; }

.iwd-eyebrow {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: var(--iwd-fz-eyebrow);
  font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--iwd-brand-deep);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.iwd-eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--iwd-brand-deep); }
.iwd-h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: var(--iwd-fz-h1); font-weight: 500;
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--iwd-ink);
  max-width: 16ch; text-wrap: balance;
  margin-bottom: 22px;
}
.iwd-h1 em { font-style: italic; color: var(--iwd-brand); font-weight: 500; }
.iwd-h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: var(--iwd-fz-h2); font-weight: 500;
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--iwd-ink);
  max-width: 22ch; text-wrap: balance;
  margin-bottom: 18px;
}
.iwd-h2 em { font-style: italic; color: var(--iwd-brand); }
.iwd-lede {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: var(--iwd-fz-body);
  color: var(--iwd-ink-soft);
  line-height: 1.75;
  max-width: 60ch;
}

.iwd-btn {
  padding: 14px 26px; border-radius: var(--iwd-radius-pill);
  background: var(--iwd-brand); color: #fff;
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  text-decoration: none; cursor: pointer; border: none;
  box-shadow: var(--iwd-shadow-btn);
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 200ms ease, transform 160ms ease, box-shadow 200ms ease;
}
.iwd-btn:hover { background: #d27d7d; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,112,112,0.5); }
.iwd-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 240ms ease; }
.iwd-btn:hover svg { transform: translateX(4px); }

.iwd-btn-ghost {
  padding: 14px 24px; border-radius: var(--iwd-radius-pill);
  background: transparent; color: var(--iwd-ink);
  border: 1.5px solid rgba(45,45,45,0.18);
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  text-decoration: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}
.iwd-btn-ghost:hover { border-color: var(--iwd-brand); background: rgba(201,112,112,0.06); color: var(--iwd-brand); }

.iwd-btn-sm {
  padding: 9px 18px; border-radius: var(--iwd-radius-pill);
  background: var(--iwd-brand); color: #fff;
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.4px;
  text-decoration: none; cursor: pointer; border: none;
  box-shadow: 0 4px 14px var(--iwd-brand-glow);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 200ms ease;
}
.iwd-btn-sm:hover { background: #d27d7d; }

.iwd-btn-dark {
  padding: 14px 26px; border-radius: var(--iwd-radius-pill);
  background: var(--iwd-dark-1); color: #fff;
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  text-decoration: none; cursor: pointer; border: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 200ms ease, transform 160ms ease;
}
.iwd-btn-dark:hover { background: #2e1a1a; transform: translateY(-1px); }

.iwd-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.6);
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--iwd-ink);
}
.iwd-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--iwd-ok); }

/* ======================= BREADCRUMBS + PAGE HEADER ======================= */
.iwd-page-head {
  padding: clamp(48px, 5vw, 80px) clamp(24px, 4vw, 56px) clamp(30px, 3.5vw, 48px);
  border-bottom: 1px solid var(--iwd-line);
}
.iwd-crumbs {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 13px; color: var(--iwd-ink-soft);
  letter-spacing: 0.4px;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.iwd-crumbs a { color: inherit; text-decoration: none; cursor: pointer; }
.iwd-crumbs a:hover { color: var(--iwd-brand); }
.iwd-crumbs .sep { color: var(--iwd-muted); }
.iwd-crumbs .current { color: var(--iwd-ink); font-weight: 500; }

.iwd-page-head-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: end;
}

/* ======================= FOOTER ======================= */
.iwd-footer {
  background: #120c0c;
  color: #fff;
  margin-top: clamp(60px, 7vw, 100px);
  padding: clamp(60px, 6vw, 90px) clamp(24px, 4vw, 56px) 36px;
  border-radius: var(--iwd-radius-xl) var(--iwd-radius-xl) 0 0;
}
.iwd-footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px 28px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
  max-width: 1280px; margin-left: auto; margin-right: auto;
}
.iwd-footer-logo {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 26px; font-weight: 500; letter-spacing: 4px;
  color: var(--iwd-brand-soft); margin-bottom: 14px;
}
.iwd-footer-logo .o { color: var(--iwd-brand); }
.iwd-footer-about {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 15px; color: rgba(255,255,255,0.55);
  line-height: 1.7; max-width: 38ch; margin-bottom: 22px;
}
.iwd-footer-social { display: flex; gap: 10px; }
.iwd-footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
  cursor: pointer;
}
.iwd-footer-social a:hover { background: var(--iwd-brand); color: #fff; border-color: var(--iwd-brand); }
.iwd-footer-social svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.iwd-footer-col h5 {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 1.6px;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.iwd-footer-col a {
  display: block;
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 5px 0; cursor: pointer;
  transition: color 180ms ease, padding-left 220ms ease;
}
.iwd-footer-col a:hover { color: #fff; padding-left: 6px; }

.iwd-footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  max-width: 1280px; margin: 0 auto;
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}
.iwd-footer-bottom .legal { display: flex; gap: 22px; }
.iwd-footer-bottom .legal a { color: inherit; text-decoration: none; cursor: pointer; }
.iwd-footer-bottom .legal a:hover { color: #fff; }

/* ======================= HERO (Home) ======================= */
.iwd-hero {
  position: relative;
  padding: clamp(48px, 5vw, 88px) clamp(24px, 4vw, 56px) clamp(60px, 7vw, 100px);
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  min-height: 78vh;
  overflow: hidden;
}
.iwd-hero-visual {
  position: relative; height: min(64vh, 560px);
  display: flex; align-items: center; justify-content: center;
  perspective: 1400px;
}
.iwd-bottle {
  position: absolute;
  width: 180px; height: 270px;
  border-radius: 26px 26px 20px 20px;
  box-shadow: var(--iwd-shadow-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 24px 16px;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.iwd-bottle::before {
  content: ""; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 24px; border-radius: 6px 6px 2px 2px;
  background: inherit; filter: brightness(0.85);
}
.iwd-bottle::after {
  content: ""; position: absolute; left: 0; right: 0; top: 24px;
  height: 60%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.22) 45%, transparent 60%);
  border-radius: inherit; pointer-events: none;
}
.iwd-bottle .label { font-family: "Libre Baskerville", Georgia, serif; color: #fff; text-align: center; }
.iwd-bottle .label .eyebrow {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; opacity: 0.65; margin-bottom: 8px;
}
.iwd-bottle .label .name { font-size: 26px; font-weight: 500; letter-spacing: -0.01em; line-height: 1; font-family: 'Libre Baskerville', Georgia, serif; }
.iwd-bottle .label .sub {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 12px; font-weight: 600; opacity: 0.7; margin-top: 6px;
}
.iwd-bottle .base {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 500;
}
.iwd-bottle-1 { background: linear-gradient(160deg, #c97070, #8a3d3d); transform: translateX(-130px) translateY(16px) rotateZ(-9deg); z-index: 2; }
.iwd-bottle-2 { background: linear-gradient(160deg, #5a9a72, #2e6a46); transform: translateY(-8px); z-index: 3; box-shadow: 0 40px 80px rgba(40,20,20,0.35); }
.iwd-bottle-3 { background: linear-gradient(160deg, #9a72b0, #5a3e6f); transform: translateX(130px) translateY(16px) rotateZ(9deg); z-index: 2; }

.iwd-hero-orb { position: absolute; inset: 0; pointer-events: none; }
.iwd-hero-orb::before, .iwd-hero-orb::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 1px dashed rgba(160,85,69,0.18);
  animation: iwdSpin 80s linear infinite;
}
.iwd-hero-orb::before { inset: 8%; }
.iwd-hero-orb::after { inset: 22%; animation-direction: reverse; animation-duration: 60s; }
@keyframes iwdSpin { to { transform: rotate(360deg); } }

/* ======================= PILLARS / CATEGORY CARDS ======================= */
.iwd-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.iwd-pillar {
  position: relative;
  border-radius: var(--iwd-radius-xl);
  padding: 30px; min-height: 300px;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--iwd-shadow-soft);
  cursor: pointer; overflow: hidden;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms ease, background 400ms ease, color 400ms ease;
  display: flex; flex-direction: column;
}
.iwd-pillar:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(40,20,20,0.22); }
.iwd-pillar[data-tone="hormonal"]:hover { background: linear-gradient(160deg, #c97070, #8a3d3d); color: #fff; }
.iwd-pillar[data-tone="gut"]:hover { background: linear-gradient(160deg, #5a9a72, #2e6a46); color: #fff; }
.iwd-pillar[data-tone="care"]:hover { background: linear-gradient(160deg, #9a72b0, #5a3e6f); color: #fff; }
.iwd-pillar[data-tone="fertility"]:hover { background: linear-gradient(160deg, #d4927a, #a05545); color: #fff; }
.iwd-pillar .num {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 18px; font-style: italic; opacity: 0.5;
  margin-bottom: auto;
}
.iwd-pillar .swatch {
  width: 68px; height: 68px; border-radius: 18px;
  margin-bottom: 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.iwd-pillar[data-tone="hormonal"] .swatch { background: linear-gradient(160deg, #c97070, #8a3d3d); }
.iwd-pillar[data-tone="gut"] .swatch { background: linear-gradient(160deg, #5a9a72, #2e6a46); }
.iwd-pillar[data-tone="care"] .swatch { background: linear-gradient(160deg, #9a72b0, #5a3e6f); }
.iwd-pillar[data-tone="fertility"] .swatch { background: linear-gradient(160deg, #d4927a, #a05545); }
.iwd-pillar h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 30px; font-weight: 500; line-height: 1.1;
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.iwd-pillar p {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 15px; line-height: 1.6; opacity: 0.75; margin-bottom: 20px;
}
.iwd-pillar .link {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.4px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 260ms ease;
}
.iwd-pillar:hover .link { gap: 14px; }

/* ======================= PRODUCTS GRID ======================= */
.iwd-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.iwd-products.is-3 { grid-template-columns: repeat(3, 1fr); }
.iwd-products.is-2 { grid-template-columns: repeat(2, 1fr); }
.iwd-product {
  position: relative;
  background: var(--iwd-glass-card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-lg);
  overflow: hidden;
  box-shadow: var(--iwd-shadow-soft);
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms ease;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.iwd-product:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(40,20,20,0.2); }
.iwd-product-img {
  position: relative; height: 260px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.iwd-product-img .bt {
  width: 92px; height: 134px;
  border-radius: 18px 18px 14px 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.iwd-product-img .bt::before {
  content: ""; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 13px; border-radius: 4px 4px 2px 2px;
  background: inherit; filter: brightness(0.82);
}
.iwd-product-img .bt::after {
  content: ""; position: absolute; inset: 14px 0 30% 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.25) 50%, transparent 65%);
  border-radius: inherit; pointer-events: none;
}
.iwd-product:hover .bt { transform: translateY(-6px) rotate(-3deg); }

.iwd-product-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 11px; border-radius: var(--iwd-radius-pill);
  background: rgba(255,255,255,0.92);
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--iwd-brand-deep);
  box-shadow: var(--iwd-shadow-soft);
}
.iwd-product-badge.iwd-new { color: var(--iwd-ok); }
.iwd-product-badge.iwd-save { background: var(--iwd-brand); color: #fff; }
.iwd-product-badge.iwd-soldout { color: var(--iwd-muted); }

.iwd-product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; }
.iwd-product-cat {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--iwd-ink-soft);
}
.iwd-product-name {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 24px; font-weight: 500; letter-spacing: -0.01em; color: var(--iwd-ink);
  line-height: 1.1;
}
.iwd-product-desc {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 14px; color: var(--iwd-ink-soft); line-height: 1.55;
  min-height: 34px;
}
.iwd-product-stars { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; color: var(--iwd-ink-soft); display: flex; align-items: center; gap: 8px; }
.iwd-product-stars .stars { color: var(--iwd-brand); letter-spacing: 1.5px; }
.iwd-product-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px; padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.iwd-product-price {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 24px; font-weight: 600; color: var(--iwd-ink); letter-spacing: -0.01em;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.iwd-product-price .old { font-size: 14px; color: var(--iwd-muted); text-decoration: line-through; font-weight: 500; }
.iwd-product-add {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--iwd-brand); color: #fff;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--iwd-shadow-btn);
  transition: background 180ms ease, transform 220ms ease;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 20px;
}
.iwd-product-add:hover { background: #d27d7d; transform: rotate(90deg); }

/* ======================= TABS / FILTERS ======================= */
.iwd-tabs {
  display: inline-flex; gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--iwd-radius-pill);
  box-shadow: var(--iwd-shadow-soft);
  font-family: "Gantari", -apple-system, sans-serif;
}
.iwd-tab {
  padding: 9px 20px;
  border-radius: var(--iwd-radius-pill);
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  color: var(--iwd-ink-soft);
  cursor: pointer; border: none; background: transparent;
  transition: color 220ms ease, background 220ms ease;
}
.iwd-tab.is-active { background: var(--iwd-brand); color: #fff; box-shadow: 0 4px 14px var(--iwd-brand-glow); }

/* ======================= SCIENCE / DARK SECTION ======================= */
.iwd-dark {
  background: linear-gradient(170deg, var(--iwd-dark-1) 0%, var(--iwd-dark-3) 100%);
  color: #fff; position: relative; overflow: hidden;
  border-radius: var(--iwd-radius-xl);
  margin: 0 clamp(24px, 4vw, 56px);
  padding: clamp(60px, 7vw, 100px);
}
.iwd-dark::before {
  content: ""; position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,112,112,0.22), transparent 60%);
  pointer-events: none;
}
.iwd-dark > * { position: relative; z-index: 1; }
.iwd-dark .iwd-eyebrow { color: #d4927a; }
.iwd-dark .iwd-eyebrow::before { background: #d4927a; }
.iwd-dark .iwd-h2 { color: #fff; }
.iwd-dark .iwd-lede { color: rgba(255,255,255,0.7); }

/* ======================= STATS ======================= */
.iwd-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-radius: var(--iwd-radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  box-shadow: var(--iwd-shadow-card);
}
.iwd-stat {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--iwd-line);
}
.iwd-stat:last-child { border-right: none; }
.iwd-stat-val {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(38px, 3vw, 54px);
  font-weight: 500; color: var(--iwd-brand-deep);
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px;
}
.iwd-stat-val em { font-style: italic; }
.iwd-stat-lbl {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--iwd-ink-soft);
}

/* ======================= TESTIMONIALS ======================= */
.iwd-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.iwd-testi {
  background: var(--iwd-glass-card-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-lg);
  padding: 28px;
  box-shadow: var(--iwd-shadow-soft);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.iwd-testi:hover { transform: translateY(-4px); box-shadow: var(--iwd-shadow-card); }
.iwd-testi .stars { color: var(--iwd-brand); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.iwd-testi blockquote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22px; line-height: 1.4; color: var(--iwd-ink);
  font-weight: 500; font-style: italic;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.iwd-testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.06);
}
.iwd-testi-author .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--iwd-brand-soft), var(--iwd-brand));
  color: #fff; font-family: "Gantari", -apple-system, sans-serif;
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center;
}
.iwd-testi-author .n { font-family: "Gantari", -apple-system, sans-serif; font-size: 15px; font-weight: 500; color: var(--iwd-ink); }
.iwd-testi-author .p { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; color: var(--iwd-brand); margin-top: 2px; font-weight: 500; }

/* ======================= CARDS (generic) ======================= */
.iwd-card {
  background: var(--iwd-glass-card-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-lg);
  padding: 28px;
  box-shadow: var(--iwd-shadow-soft);
}

/* ======================= FORMS ======================= */
.iwd-field { display: block; margin-bottom: 16px; }
.iwd-field label {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--iwd-ink-soft);
  display: block; margin-bottom: 8px;
}
.iwd-input, .iwd-select, .iwd-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.08);
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 16px; color: var(--iwd-ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.iwd-input:focus, .iwd-select:focus, .iwd-textarea:focus {
  border-color: var(--iwd-brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,112,112,0.15);
}
.iwd-textarea { min-height: 120px; resize: vertical; font-family: "Gantari", -apple-system, sans-serif; }
.iwd-help { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; color: var(--iwd-ink-soft); margin-top: 6px; }
.iwd-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.iwd-checkbox { display: inline-flex; gap: 10px; align-items: flex-start; font-family: "Gantari", -apple-system, sans-serif; font-size: 15px; color: var(--iwd-ink-soft); cursor: pointer; }
.iwd-checkbox input { accent-color: var(--iwd-brand); margin-top: 3px; }

.iwd-divider {
  text-align: center;
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--iwd-muted);
  margin: 20px 0;
  display: flex; align-items: center; gap: 14px;
}
.iwd-divider::before, .iwd-divider::after {
  content: ""; flex: 1; height: 1px; background: rgba(0,0,0,0.08);
}

.iwd-oauth { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.iwd-oauth button {
  padding: 12px 16px; border-radius: 12px;
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  font-family: "Gantari", -apple-system, sans-serif; font-size: 14px; font-weight: 500;
  color: var(--iwd-ink);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: border-color 180ms ease, background 180ms ease;
}
.iwd-oauth button:hover { border-color: var(--iwd-brand); }
.iwd-oauth svg { width: 16px; height: 16px; }

/* ======================= AUTH SPLIT ======================= */
.iwd-auth-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  max-width: 1180px; margin: 0 auto;
}
.iwd-auth-art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--iwd-radius-xl);
  background: linear-gradient(135deg, #f0e0e0, #e0d0e8, #d0e0d8);
  overflow: hidden;
  box-shadow: var(--iwd-shadow-card);
}
.iwd-auth-art::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,112,112,0.28), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(154,114,176,0.24), transparent 55%);
}
.iwd-auth-art .quote {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  padding: 22px; border-radius: 16px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
}
.iwd-auth-art .quote blockquote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 20px; font-style: italic; color: var(--iwd-ink);
  line-height: 1.4; margin-bottom: 10px;
}
.iwd-auth-art .quote cite {
  font-family: "Gantari", -apple-system, sans-serif; font-style: normal;
  font-size: 13px; font-weight: 500; color: var(--iwd-brand);
  letter-spacing: 0.4px;
}
.iwd-auth-art .bubbles {
  position: absolute; inset: 0; pointer-events: none;
}
.iwd-auth-art .bubble {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--iwd-shadow-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px; font-style: italic; color: var(--iwd-ink);
  text-align: center;
  padding: 14px;
}

/* ======================= BLOG ======================= */
.iwd-blog-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 40px;
  align-items: start;
}
.iwd-blog-list { display: grid; gap: 24px; }
.iwd-blog-card {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 22px; align-items: stretch;
  background: var(--iwd-glass-card-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-lg);
  overflow: hidden;
  box-shadow: var(--iwd-shadow-soft);
  transition: transform 300ms ease, box-shadow 300ms ease;
  cursor: pointer;
}
.iwd-blog-card:hover { transform: translateY(-4px); box-shadow: var(--iwd-shadow-card); }
.iwd-blog-cover {
  position: relative;
  background: linear-gradient(135deg, #f0e0e0, #e8dff0);
  min-height: 160px;
}
.iwd-blog-cover::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,112,112,0.3), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(90,154,114,0.18), transparent 55%);
}
.iwd-blog-cover[data-tone="lifestyle"] { background: linear-gradient(135deg, #f0e0e0, #f5e0d6); }
.iwd-blog-cover[data-tone="pcos"] { background: linear-gradient(135deg, #e8dff0, #dce9e6); }
.iwd-blog-cover[data-tone="nutrition"] { background: linear-gradient(135deg, #dce9e6, #f5e0d6); }
.iwd-blog-cover[data-tone="mental"] { background: linear-gradient(135deg, #e8dff0, #f5e0d6); }
.iwd-blog-cover .glyph {
  position: absolute; top: 14px; left: 14px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic; font-size: 24px;
  color: var(--iwd-brand-deep); opacity: 0.75;
}
.iwd-blog-body { padding: 22px 24px 22px 0; display: flex; flex-direction: column; gap: 8px; }
.iwd-blog-meta {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--iwd-brand-deep);
}
.iwd-blog-meta .dot { opacity: 0.4; padding: 0 6px; }
.iwd-blog-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 24px; font-weight: 500; color: var(--iwd-ink);
  line-height: 1.2; letter-spacing: -0.01em;
}
.iwd-blog-excerpt { font-family: "Gantari", -apple-system, sans-serif; font-size: 15px; color: var(--iwd-ink-soft); line-height: 1.6; }
.iwd-blog-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 8px;
  font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; color: var(--iwd-ink-soft);
}
.iwd-blog-foot .read { color: var(--iwd-brand); font-weight: 500; display: inline-flex; gap: 6px; align-items: center; }

.iwd-blog-aside { display: grid; gap: 20px; position: sticky; top: 100px; }
.iwd-aside-card {
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--iwd-radius-lg);
  padding: 22px;
  backdrop-filter: blur(14px);
}
.iwd-aside-card h4 {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--iwd-ink-soft);
  margin-bottom: 14px;
}
.iwd-aside-card ul { list-style: none; padding: 0; }
.iwd-aside-card li { padding: 8px 0; border-bottom: 1px dashed rgba(0,0,0,0.08); display: flex; justify-content: space-between; font-family: "Gantari", -apple-system, sans-serif; font-size: 14px; color: var(--iwd-ink); }
.iwd-aside-card li:last-child { border-bottom: none; }
.iwd-aside-card li .count { color: var(--iwd-brand); font-weight: 500; }
.iwd-aside-card a { cursor: pointer; color: var(--iwd-ink); text-decoration: none; flex: 1; }
.iwd-aside-card a:hover { color: var(--iwd-brand); }

.iwd-pag {
  display: inline-flex; gap: 6px; margin-top: 28px;
  font-family: "Gantari", -apple-system, sans-serif;
}
.iwd-pag button {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.6);
  font-size: 14px; font-weight: 500; color: var(--iwd-ink);
  cursor: pointer;
}
.iwd-pag button.is-active { background: var(--iwd-brand); color: #fff; border-color: var(--iwd-brand); }

/* ======================= ARTICLE (single blog post) ======================= */
.iwd-article { max-width: 760px; margin: 0 auto; }
.iwd-article .hero-cover {
  position: relative;
  aspect-ratio: 16 / 8;
  border-radius: var(--iwd-radius-xl);
  background: linear-gradient(135deg, #f0e0e0, #e8dff0);
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: var(--iwd-shadow-card);
}
.iwd-article .hero-cover::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,112,112,0.25), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(154,114,176,0.22), transparent 55%);
}
.iwd-article h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(36px, 3.2vw, 54px);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--iwd-ink); text-wrap: balance;
  margin-bottom: 20px;
}
.iwd-article-meta {
  font-family: "Gantari", -apple-system, sans-serif;
  display: flex; gap: 16px; align-items: center;
  font-size: 14px; color: var(--iwd-ink-soft);
  margin-bottom: 24px;
}
.iwd-article-meta .cat { color: var(--iwd-brand); font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase; font-size: 12px; }
.iwd-article-body { font-family: "Gantari", -apple-system, sans-serif; font-size: 17px; line-height: 1.8; color: var(--iwd-ink); }
.iwd-article-body p { margin-bottom: 22px; }
.iwd-article-body h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 32px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--iwd-ink); margin: 36px 0 16px;
}
.iwd-article-body ul { padding-left: 20px; margin-bottom: 22px; }
.iwd-article-body li { margin-bottom: 8px; }
.iwd-article-body blockquote {
  border-left: 3px solid var(--iwd-brand);
  padding-left: 22px; margin: 28px 0;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic; font-size: 24px; color: var(--iwd-ink); line-height: 1.4;
}

/* ======================= TIMELINE ======================= */
.iwd-timeline { position: relative; padding-left: 40px; }
.iwd-timeline::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 16px;
  width: 1px; background: linear-gradient(to bottom, var(--iwd-brand), transparent);
}
.iwd-tl-item { position: relative; padding-bottom: 40px; }
.iwd-tl-item::before {
  content: ""; position: absolute; top: 4px; left: -32px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--iwd-brand);
  box-shadow: 0 0 0 4px var(--iwd-bg), 0 4px 12px var(--iwd-brand-glow);
}
.iwd-tl-year {
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic; font-size: 16px;
  color: var(--iwd-brand-deep);
  margin-bottom: 6px;
}
.iwd-tl-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 26px; font-weight: 500; color: var(--iwd-ink);
  margin-bottom: 8px; line-height: 1.2;
}
.iwd-tl-body { font-family: "Gantari", -apple-system, sans-serif; font-size: 15px; color: var(--iwd-ink-soft); line-height: 1.7; max-width: 60ch; }

/* ======================= FAQ ACCORDION ======================= */
.iwd-faq { display: grid; gap: 10px; }
.iwd-faq-item {
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 16px;
  overflow: hidden;
}
.iwd-faq-q {
  width: 100%; text-align: left;
  padding: 22px 28px;
  background: transparent; border: none;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 24px; font-weight: 500;
  color: var(--iwd-ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.iwd-faq-q .plus { font-size: 20px; color: var(--iwd-brand); transition: transform 260ms ease; font-family: 'Libre Baskerville', Georgia, serif; }
.iwd-faq-item.is-open .iwd-faq-q .plus { transform: rotate(45deg); }
.iwd-faq-a {
  padding: 0 28px 22px;
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 15px; color: var(--iwd-ink-soft); line-height: 1.7;
  display: none;
}
.iwd-faq-item.is-open .iwd-faq-a { display: block; }

/* ======================= PRODUCT DETAIL ======================= */
.iwd-pdp {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.iwd-pdp-gallery {
  position: relative;
  border-radius: var(--iwd-radius-xl);
  background: linear-gradient(160deg, rgba(255,255,255,0.7), rgba(255,255,255,0.45));
  border: 1px solid rgba(255,255,255,0.6);
  padding: 60px; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--iwd-shadow-card);
}
.iwd-pdp-gallery .big-bt {
  width: 180px; height: 280px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(160deg, #c97070, #8a3d3d);
  box-shadow: var(--iwd-shadow-deep);
  position: relative;
}
.iwd-pdp-gallery .big-bt::before {
  content: ""; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 22px; border-radius: 6px 6px 2px 2px;
  background: inherit; filter: brightness(0.85);
}
.iwd-pdp-gallery .big-bt::after {
  content: ""; position: absolute; inset: 18px 0 30% 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.22) 45%, transparent 60%);
  border-radius: inherit;
}
.iwd-pdp-thumbs {
  display: flex; gap: 10px; margin-top: 18px;
}
.iwd-pdp-thumbs button {
  width: 80px; height: 80px; border-radius: 14px;
  background: rgba(255,255,255,0.6); border: 2px solid transparent;
  cursor: pointer; position: relative;
  backdrop-filter: blur(10px);
}
.iwd-pdp-thumbs button.is-on { border-color: var(--iwd-brand); }
.iwd-pdp-thumbs button::after {
  content: ""; position: absolute; inset: 18px 26px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(160deg, #c97070, #8a3d3d);
}
.iwd-pdp-thumbs button[data-c="2"]::after { background: linear-gradient(160deg, #5a9a72, #2e6a46); }
.iwd-pdp-thumbs button[data-c="3"]::after { background: linear-gradient(160deg, #9a72b0, #5a3e6f); }

.iwd-pdp-info h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(36px, 3vw, 50px); font-weight: 500;
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--iwd-ink); margin-bottom: 10px;
}
.iwd-pdp-info .cat {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--iwd-brand-deep);
  margin-bottom: 14px;
}
.iwd-pdp-info .rating {
  display: flex; gap: 10px; align-items: center;
  font-family: "Gantari", -apple-system, sans-serif; font-size: 14px; color: var(--iwd-ink-soft);
  margin-bottom: 18px;
}
.iwd-pdp-info .rating .stars { color: var(--iwd-brand); letter-spacing: 2px; font-size: 16px; }
.iwd-pdp-info .price {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(32px, 2.4vw, 44px); font-weight: 600; color: var(--iwd-ink);
  margin-bottom: 22px;
}
.iwd-pdp-info .price .old { font-size: 20px; color: var(--iwd-muted); text-decoration: line-through; margin-left: 12px; font-weight: 500; font-family: 'Libre Baskerville', Georgia, serif; }
.iwd-pdp-info .desc {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 16px; color: var(--iwd-ink-soft);
  line-height: 1.75; margin-bottom: 28px;
}
.iwd-pdp-opts {
  display: grid; gap: 18px; margin-bottom: 26px;
  padding: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--iwd-radius-lg);
}
.iwd-pdp-opt {
  display: grid; grid-template-columns: 110px 1fr; gap: 14px; align-items: center;
}
.iwd-pdp-opt-label {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--iwd-ink-soft);
}
.iwd-pdp-opt-value {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 15px; font-weight: 500; color: var(--iwd-ink);
}
.iwd-pdp-opt .sizes { display: flex; gap: 8px; }
.iwd-pdp-opt .sizes button {
  padding: 10px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.72); border: 1px solid rgba(0,0,0,0.08);
  font-family: "Gantari", -apple-system, sans-serif; font-size: 14px; font-weight: 500;
  color: var(--iwd-ink); cursor: pointer;
  transition: all 180ms ease;
}
.iwd-pdp-opt .sizes button.is-on { background: var(--iwd-dark-1); color: #fff; border-color: var(--iwd-dark-1); }
.iwd-pdp-opt .qty { display: inline-flex; align-items: center; gap: 2px; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; background: rgba(255,255,255,0.72); padding: 4px; }
.iwd-pdp-opt .qty button { width: 30px; height: 30px; background: transparent; border: none; cursor: pointer; font-size: 16px; color: var(--iwd-ink); }
.iwd-pdp-opt .qty span { padding: 0 14px; font-family: "Gantari", -apple-system, sans-serif; font-weight: 500; font-size: 15px; }
.iwd-pdp-buy { display: flex; gap: 12px; }
.iwd-pdp-buy .iwd-btn { flex: 1; justify-content: center; padding: 16px; }

.iwd-pdp-trust {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin-top: 24px;
  padding: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--iwd-radius-lg);
}
.iwd-pdp-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-family: "Gantari", -apple-system, sans-serif; font-size: 14px; color: var(--iwd-ink);
}
.iwd-pdp-trust-item .ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--iwd-brand-soft), var(--iwd-brand));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.iwd-pdp-trust-item .ic svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.iwd-pdp-trust-item strong { display: block; font-weight: 500; margin-bottom: 2px; }
.iwd-pdp-trust-item span { color: var(--iwd-ink-soft); font-size: 13px; }

/* ======================= CART / CHECKOUT TABLES ======================= */
.iwd-cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.iwd-cart-table {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.iwd-cart-row {
  display: grid; grid-template-columns: 90px 1fr 110px 120px 80px 36px;
  gap: 16px; align-items: center;
  padding: 18px 24px;
  border-top: 1px solid var(--iwd-line);
}
.iwd-cart-row.head {
  border-top: none;
  background: rgba(26,16,16,0.04);
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--iwd-ink-soft);
}
.iwd-cart-row .mini-bt {
  width: 62px; height: 86px; border-radius: 10px;
  background: linear-gradient(160deg, #c97070, #8a3d3d);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12); position: relative;
}
.iwd-cart-row[data-c="2"] .mini-bt { background: linear-gradient(160deg, #5a9a72, #2e6a46); }
.iwd-cart-row[data-c="3"] .mini-bt { background: linear-gradient(160deg, #9a72b0, #5a3e6f); }
.iwd-cart-row .nm {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22px; font-weight: 500; color: var(--iwd-ink);
}
.iwd-cart-row .sm {
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 13px; color: var(--iwd-ink-soft); margin-top: 4px;
}
.iwd-cart-row .qbox { display: inline-flex; align-items: center; border: 1px solid rgba(0,0,0,0.08); border-radius: 10px; padding: 2px; background: #fff; }
.iwd-cart-row .qbox button { width: 26px; height: 26px; background: transparent; border: none; cursor: pointer; color: var(--iwd-ink); }
.iwd-cart-row .qbox span { padding: 0 10px; font-family: "Gantari", -apple-system, sans-serif; font-weight: 500; font-size: 14px; }
.iwd-cart-row .pr { font-family: 'Libre Baskerville', Georgia, serif; font-weight: 600; font-size: 20px; color: var(--iwd-ink); text-align: right; }
.iwd-cart-row .total { font-family: 'Libre Baskerville', Georgia, serif; font-weight: 600; font-size: 20px; color: var(--iwd-brand-deep); text-align: right; }
.iwd-cart-row .rm {
  width: 30px; height: 30px; border-radius: 50%;
  background: transparent; border: none; cursor: pointer;
  color: var(--iwd-muted); font-size: 18px;
}
.iwd-cart-row .rm:hover { color: var(--iwd-brand); }

.iwd-summary {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-lg);
  padding: 28px; position: sticky; top: 100px;
  backdrop-filter: blur(14px);
}
.iwd-summary h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 26px; font-weight: 500; color: var(--iwd-ink);
  margin-bottom: 18px;
}
.iwd-summary-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; font-family: "Gantari", -apple-system, sans-serif; font-size: 15px;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.iwd-summary-line:last-of-type { border-bottom: none; }
.iwd-summary-line .lbl { color: var(--iwd-ink-soft); }
.iwd-summary-line .val { color: var(--iwd-ink); font-weight: 600; }
.iwd-summary-line.grand {
  padding-top: 16px; margin-top: 10px;
  border-top: 1px solid var(--iwd-line-strong); border-bottom: none;
}
.iwd-summary-line.grand .lbl { font-family: 'Libre Baskerville', Georgia, serif; font-size: 22px; color: var(--iwd-ink); font-weight: 500; }
.iwd-summary-line.grand .val { font-family: 'Libre Baskerville', Georgia, serif; font-size: 30px; color: var(--iwd-brand-deep); font-weight: 600; }
.iwd-promo-row { display: flex; gap: 8px; margin: 18px 0; }
.iwd-promo-row input { flex: 1; padding: 10px 14px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.08); font-family: "Gantari", -apple-system, sans-serif; font-size: 14px; }
.iwd-promo-row button { padding: 10px 16px; border-radius: 10px; background: var(--iwd-dark-1); color: #fff; border: none; font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.4px; cursor: pointer; }
.iwd-summary .iwd-btn { width: 100%; justify-content: center; margin-top: 18px; }

/* ======================= CHECKOUT ======================= */
.iwd-checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.iwd-checkout-step {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-lg);
  padding: 32px;
  margin-bottom: 16px;
  backdrop-filter: blur(14px);
}
.iwd-checkout-step h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 28px; font-weight: 500; color: var(--iwd-ink);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.iwd-checkout-step h3 .n {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--iwd-brand); color: #fff;
  font-family: "Libre Baskerville", Georgia, serif; font-size: 18px; font-style: italic;
  display: inline-flex; align-items: center; justify-content: center;
}
.iwd-radio-list { display: grid; gap: 10px; }
.iwd-radio-card {
  padding: 16px 20px;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: "Gantari", -apple-system, sans-serif;
  transition: border-color 180ms ease, background 180ms ease;
}
.iwd-radio-card.is-on { border-color: var(--iwd-brand); background: #fff; box-shadow: var(--iwd-shadow-soft); }
.iwd-radio-card .l strong { display: block; font-size: 15px; font-weight: 500; color: var(--iwd-ink); margin-bottom: 3px; }
.iwd-radio-card .l span { font-size: 13px; color: var(--iwd-ink-soft); }
.iwd-radio-card .r { font-family: 'Libre Baskerville', Georgia, serif; font-size: 20px; font-weight: 600; color: var(--iwd-ink); }
.iwd-radio-card .rad { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(0,0,0,0.2); flex-shrink: 0; position: relative; }
.iwd-radio-card.is-on .rad { border-color: var(--iwd-brand); }
.iwd-radio-card.is-on .rad::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--iwd-brand); }

/* ======================= ACCOUNT DASHBOARD ======================= */
.iwd-acct-grid { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
.iwd-acct-side {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-lg);
  padding: 26px 20px;
  position: sticky; top: 100px;
  backdrop-filter: blur(14px);
}
.iwd-acct-me {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 18px; margin-bottom: 12px;
  border-bottom: 1px solid var(--iwd-line);
}
.iwd-acct-me .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--iwd-brand-soft), var(--iwd-brand));
  color: #fff; font-family: "Gantari", -apple-system, sans-serif;
  font-size: 18px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center;
}
.iwd-acct-me .n { font-family: "Gantari", -apple-system, sans-serif; font-size: 16px; font-weight: 500; color: var(--iwd-ink); }
.iwd-acct-me .e { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; color: var(--iwd-ink-soft); margin-top: 2px; }
.iwd-acct-side nav { display: grid; gap: 2px; }
.iwd-acct-side nav button {
  padding: 11px 14px; border-radius: 10px;
  background: transparent; border: none; cursor: pointer;
  font-family: "Gantari", -apple-system, sans-serif;
  font-size: 14px; font-weight: 600; color: var(--iwd-ink);
  text-align: left;
  display: flex; align-items: center; gap: 10px;
  transition: background 160ms ease, color 160ms ease;
}
.iwd-acct-side nav button:hover { background: rgba(201,112,112,0.08); color: var(--iwd-brand); }
.iwd-acct-side nav button.is-on { background: var(--iwd-brand); color: #fff; }
.iwd-acct-side nav button svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.iwd-acct-main { display: grid; gap: 20px; }
.iwd-kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.iwd-kpi {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-md);
  padding: 20px 22px;
  backdrop-filter: blur(14px);
}
.iwd-kpi .l { font-family: "Gantari", -apple-system, sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase; color: var(--iwd-ink-soft); }
.iwd-kpi .v { font-family: 'Libre Baskerville', Georgia, serif; font-size: 34px; font-weight: 600; color: var(--iwd-ink); margin-top: 6px; line-height: 1; letter-spacing: -0.01em; }
.iwd-kpi .d { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; color: var(--iwd-ok); font-weight: 500; margin-top: 4px; }
.iwd-kpi .d.neg { color: var(--iwd-brand); }

.iwd-orders-table {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.iwd-orders-table .hd {
  padding: 18px 24px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--iwd-line);
}
.iwd-orders-table .hd h3 { font-family: 'Libre Baskerville', Georgia, serif; font-size: 24px; font-weight: 500; }
.iwd-orders-row {
  display: grid; grid-template-columns: 120px 1fr 120px 110px 100px;
  gap: 16px; align-items: center;
  padding: 18px 24px;
  border-top: 1px solid var(--iwd-line);
  font-family: "Gantari", -apple-system, sans-serif; font-size: 14px;
}
.iwd-orders-row.head { border-top: none; background: rgba(26,16,16,0.04); font-size: 12px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase; color: var(--iwd-ink-soft); padding-top: 14px; padding-bottom: 14px; }
.iwd-orders-row .id { font-weight: 500; color: var(--iwd-ink); }
.iwd-orders-row .items { color: var(--iwd-ink); }
.iwd-orders-row .items small { color: var(--iwd-ink-soft); display: block; margin-top: 2px; }
.iwd-orders-row .total { font-family: 'Libre Baskerville', Georgia, serif; font-size: 20px; font-weight: 600; color: var(--iwd-ink); }
.iwd-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}
.iwd-status.deliv { background: rgba(90,154,114,0.15); color: var(--iwd-ok); }
.iwd-status.ship { background: rgba(201,122,61,0.15); color: var(--iwd-warn); }
.iwd-status.proc { background: rgba(154,114,176,0.15); color: var(--iwd-lav); }
.iwd-status.cncl { background: rgba(160,85,69,0.15); color: var(--iwd-brand-deep); }
.iwd-status .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ======================= CONTACT ======================= */
.iwd-contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.iwd-contact-info { display: grid; gap: 14px; }
.iwd-contact-item {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center;
  padding: 22px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--iwd-radius-lg);
  backdrop-filter: blur(12px);
}
.iwd-contact-item .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--iwd-brand-soft), var(--iwd-brand));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.iwd-contact-item .ic svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.iwd-contact-item h4 { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase; color: var(--iwd-ink-soft); margin-bottom: 4px; }
.iwd-contact-item p { font-family: 'Libre Baskerville', Georgia, serif; font-size: 22px; color: var(--iwd-ink); font-weight: 500; }

/* ======================= SUCCESS / EMPTY ======================= */
.iwd-success {
  max-width: 560px; margin: 0 auto; text-align: center;
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 48px);
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-xl);
  box-shadow: var(--iwd-shadow-card);
  backdrop-filter: blur(14px);
}
.iwd-success .big-icon {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--iwd-ok), #2e6a46);
  color: #fff; font-size: 42px;
  margin: 0 auto 22px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 32px rgba(90,154,114,0.35); font-family: 'Libre Baskerville', Georgia, serif; }
.iwd-success h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.iwd-success h1 em { font-style: italic; color: var(--iwd-brand); }
.iwd-success p { font-family: "Gantari", -apple-system, sans-serif; font-size: 16px; color: var(--iwd-ink-soft); line-height: 1.7; margin-bottom: 24px; }
.iwd-order-ref {
  display: inline-flex; gap: 10px; align-items: center;
  padding: 14px 24px;
  background: rgba(26,16,16,0.04);
  border: 1px dashed var(--iwd-line-strong);
  border-radius: 12px;
  font-family: "Gantari", -apple-system, sans-serif; font-size: 14px; color: var(--iwd-ink);
  margin-bottom: 24px;
}
.iwd-order-ref strong { font-family: 'Libre Baskerville', Georgia, serif; font-size: 20px; color: var(--iwd-brand-deep); letter-spacing: 1px; }

/* ======================= MAINTENANCE ======================= */
.iwd-maint {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
}
.iwd-maint .inner { max-width: 520px; }
.iwd-maint .glyph {
  width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 30px;
  background: radial-gradient(circle at 35% 35%, var(--iwd-brand-soft), var(--iwd-brand-deep));
  box-shadow: 0 30px 60px rgba(160,85,69,0.35);
  position: relative;
}
.iwd-maint .glyph::before {
  content: ""; position: absolute; inset: 10%; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.5);
  animation: iwdSpin 20s linear infinite;
}
.iwd-maint h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.iwd-maint h1 em { font-style: italic; color: var(--iwd-brand); }
.iwd-maint p { font-family: "Gantari", -apple-system, sans-serif; font-size: 17px; color: var(--iwd-ink-soft); line-height: 1.7; margin-bottom: 26px; }
.iwd-countdown { display: inline-flex; gap: 10px; margin-bottom: 28px; }
.iwd-countdown-box {
  min-width: 70px; padding: 14px 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  text-align: center;
}
.iwd-countdown-box .n { font-family: 'Libre Baskerville', Georgia, serif; font-size: 32px; font-weight: 600; color: var(--iwd-brand-deep); line-height: 1; }
.iwd-countdown-box .l { font-family: "Gantari", -apple-system, sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 1.6px; text-transform: uppercase; color: var(--iwd-ink-soft); margin-top: 6px; }

/* ======================= VERIFY ======================= */
.iwd-verify {
  max-width: 680px; margin: 0 auto;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-xl);
  padding: 48px;
  box-shadow: var(--iwd-shadow-card);
  backdrop-filter: blur(14px);
}

/* ======================= EVENTS CARD ======================= */
.iwd-events { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.iwd-event {
  display: grid; grid-template-columns: 100px 1fr; gap: 20px;
  padding: 26px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-lg);
  box-shadow: var(--iwd-shadow-soft);
  align-items: start;
}
.iwd-event-date {
  text-align: center;
  padding: 16px 0; border-radius: 14px;
  background: var(--iwd-dark-1); color: #fff;
}
.iwd-event-date .d { font-family: 'Libre Baskerville', Georgia, serif; font-size: 36px; font-weight: 600; line-height: 1; }
.iwd-event-date .m { font-family: "Gantari", -apple-system, sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--iwd-brand-soft); margin-top: 6px; }
.iwd-event h3 { font-family: 'Libre Baskerville', Georgia, serif; font-size: 26px; font-weight: 500; color: var(--iwd-ink); margin-bottom: 8px; }
.iwd-event-meta { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; color: var(--iwd-brand-deep); font-weight: 500; letter-spacing: 0.4px; margin-bottom: 10px; }
.iwd-event-body { font-family: "Gantari", -apple-system, sans-serif; font-size: 15px; color: var(--iwd-ink-soft); line-height: 1.65; }

/* ======================= CAREER JOBS ======================= */
.iwd-jobs { display: grid; gap: 12px; }
.iwd-job {
  padding: 24px 28px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-lg);
  display: grid; grid-template-columns: 1fr auto auto; gap: 20px; align-items: center;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.iwd-job:hover { transform: translateX(4px); box-shadow: var(--iwd-shadow-card); }
.iwd-job h4 { font-family: 'Libre Baskerville', Georgia, serif; font-size: 24px; font-weight: 500; color: var(--iwd-ink); margin-bottom: 6px; }
.iwd-job-meta { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; color: var(--iwd-ink-soft); display: flex; gap: 16px; }
.iwd-job-meta span { display: inline-flex; align-items: center; gap: 6px; }
.iwd-job-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--iwd-brand); }
.iwd-job-tag { padding: 5px 12px; border-radius: 999px; background: rgba(201,112,112,0.12); color: var(--iwd-brand-deep); font-family: "Gantari", -apple-system, sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; }

/* ======================= INGREDIENT PANEL ======================= */
.iwd-ing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.iwd-ing-card {
  display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: center;
  padding: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: background 220ms ease;
}
.iwd-ing-card:hover { background: rgba(255,255,255,0.1); }
.iwd-ing-card .ic {
  width: 64px; height: 64px; border-radius: 12px;
  background: linear-gradient(135deg, var(--iwd-brand-soft), var(--iwd-brand));
  color: #fff; font-family: 'Libre Baskerville', Georgia, serif; font-style: italic; font-size: 22px;
  display: inline-flex; align-items: center; justify-content: center;
}
.iwd-ing-card h4 { font-family: "Gantari", -apple-system, sans-serif; font-size: 15px; font-weight: 500; color: var(--iwd-brand-soft); margin-bottom: 4px; }
.iwd-ing-card p { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ======================= PCOS symptom cards ======================= */
.iwd-symptoms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.iwd-symptom {
  padding: 24px 22px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--iwd-radius-lg);
  backdrop-filter: blur(12px);
}
.iwd-symptom .n {
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic; font-size: 14px; color: var(--iwd-brand-deep);
}
.iwd-symptom h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 24px; font-weight: 500; color: var(--iwd-ink);
  margin: 8px 0 10px; line-height: 1.15;
}
.iwd-symptom p { font-family: "Gantari", -apple-system, sans-serif; font-size: 14px; color: var(--iwd-ink-soft); line-height: 1.6; }

/* ======================= PARTNERS / BRANDS ======================= */
.iwd-partners { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.iwd-partner {
  aspect-ratio: 1.4 / 1;
  border-radius: var(--iwd-radius-lg);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 26px; font-weight: 500; color: var(--iwd-ink);
  text-align: center; padding: 20px;
  letter-spacing: 0.02em;
  transition: transform 240ms ease, box-shadow 240ms ease;
  cursor: pointer;
}
.iwd-partner:hover { transform: translateY(-4px); box-shadow: var(--iwd-shadow-card); }
.iwd-partner em { font-style: italic; color: var(--iwd-brand); font-weight: 500; }

/* ======================= STUDIES ======================= */
.iwd-studies { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.iwd-study {
  padding: 28px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--iwd-glass-card-br);
  border-radius: var(--iwd-radius-lg);
  backdrop-filter: blur(14px);
}
.iwd-study .tag {
  display: inline-block; padding: 5px 11px; border-radius: 999px;
  background: rgba(90,154,114,0.15); color: var(--iwd-ok);
  font-family: "Gantari", -apple-system, sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase;
  margin-bottom: 14px;
}
.iwd-study h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 26px; font-weight: 500;
  line-height: 1.15; color: var(--iwd-ink);
  margin-bottom: 12px;
}
.iwd-study p { font-family: "Gantari", -apple-system, sans-serif; font-size: 15px; color: var(--iwd-ink-soft); line-height: 1.65; margin-bottom: 14px; }
.iwd-study .src { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; font-weight: 500; color: var(--iwd-brand); letter-spacing: 0.4px; }

/* ======================= LEGAL / LONG COPY ======================= */
.iwd-legal-wrap { max-width: 820px; margin: 0 auto; background: rgba(255,255,255,0.72); border: 1px solid var(--iwd-glass-card-br); border-radius: var(--iwd-radius-xl); padding: clamp(36px, 4vw, 56px); backdrop-filter: blur(14px); }
.iwd-legal h2 { font-family: 'Libre Baskerville', Georgia, serif; font-size: 28px; font-weight: 500; color: var(--iwd-ink); margin-top: 32px; margin-bottom: 12px; }
.iwd-legal h2:first-child { margin-top: 0; }
.iwd-legal p, .iwd-legal li { font-family: "Gantari", -apple-system, sans-serif; font-size: 15px; color: var(--iwd-ink-soft); line-height: 1.8; margin-bottom: 12px; }
.iwd-legal ul { padding-left: 20px; }
.iwd-legal .updated { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; color: var(--iwd-muted); letter-spacing: 0.4px; margin-bottom: 28px; text-transform: uppercase; font-weight: 500; }

/* ======================= LOCATION HERO ======================= */
.iwd-loc {
  position: relative;
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 56px);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
}
.iwd-loc-map {
  aspect-ratio: 1.2 / 1;
  border-radius: var(--iwd-radius-xl);
  background: linear-gradient(135deg, #dce9e6, #f5e0d6);
  border: 1px solid rgba(255,255,255,0.55);
  position: relative; overflow: hidden;
  box-shadow: var(--iwd-shadow-card);
}
.iwd-loc-map::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(160,85,69,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,85,69,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.iwd-loc-pin {
  position: absolute; top: 40%; left: 42%;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--iwd-brand);
  box-shadow: 0 0 0 6px rgba(201,112,112,0.25), 0 0 0 14px rgba(201,112,112,0.12);
}
.iwd-loc-pin::before, .iwd-loc-pin::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(201,112,112,0.4); }
.iwd-loc-pin::before { inset: -20px; animation: iwdPulse 2.5s ease-out infinite; }
.iwd-loc-pin::after  { inset: -30px; animation: iwdPulse 2.5s ease-out infinite 1s; }
@keyframes iwdPulse { 0% { opacity: 0.7; transform: scale(0.5); } 100% { opacity: 0; transform: scale(1.3); } }

.iwd-stockists { display: grid; gap: 10px; margin-top: 24px; }
.iwd-stockist {
  display: grid; grid-template-columns: 1fr auto; gap: 16px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 14px;
  align-items: center;
  backdrop-filter: blur(12px);
}
.iwd-stockist h5 { font-family: 'Libre Baskerville', Georgia, serif; font-size: 20px; font-weight: 500; color: var(--iwd-ink); margin-bottom: 2px; }
.iwd-stockist p { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; color: var(--iwd-ink-soft); }
.iwd-stockist .dist { font-family: "Gantari", -apple-system, sans-serif; font-size: 13px; font-weight: 500; color: var(--iwd-brand); letter-spacing: 0.4px; }

/* ======================= RESPONSIVE ======================= */
@media (max-width: 1100px) {
  .iwd-hero, .iwd-pdp, .iwd-cart-grid, .iwd-checkout-grid, .iwd-blog-grid, .iwd-acct-grid, .iwd-contact-grid, .iwd-auth-split, .iwd-loc { grid-template-columns: 1fr; }
  .iwd-pillars, .iwd-products, .iwd-products.is-3 { grid-template-columns: repeat(2, 1fr); }
  .iwd-testi-grid, .iwd-studies, .iwd-events { grid-template-columns: 1fr; }
  .iwd-stats { grid-template-columns: repeat(2, 1fr); }
  .iwd-symptoms, .iwd-partners { grid-template-columns: repeat(2, 1fr); }
  .iwd-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .iwd-footer-grid { grid-template-columns: 1fr 1fr; }
  .iwd-nav-links { display: none; }
}
