/*
Theme Name:   ikvanya Child
Theme URI:    https://ikvanya.com
Description:  ikvanya Child Theme — Fresh & Modern Ayurveda
Author:       ikvanya
Template:     astra
Version:      2.6.0
*/

/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  /* ── Botanical brand palette ── */
  --ik-navy:        #232E78;
  --ik-navy-dark:   #18214F;
  --ik-cream:       #F4EEDE;
  --ik-cream-deep:  #EBE3CF;
  --ik-white:       #FBF8EF;
  --ik-yellow:      #E4C158;
  --ik-yellow-light:#F2E4C2;
  --ik-periwinkle:  #97A6D6;
  --ik-sage:        #97A375;
  --ik-ink:         #20233A;
  --ik-ink-light:   #3D4055;
  --ik-border:      #E2D9C2;
  --ik-hairline:    rgba(32,35,58,.12);

  /* ── Legacy aliases (old class names still reference these) ── */
  --ik-aqua:        var(--ik-cream-deep);
  --ik-aqua-light:  var(--ik-cream);
  --ik-aqua-deep:   var(--ik-periwinkle);
  --ik-aqua-btn:    var(--ik-navy);
  --ik-forest:      var(--ik-navy);
  --ik-forest-dark: var(--ik-navy-dark);
  --ik-text:        var(--ik-ink);
  --ik-text-light:  var(--ik-ink-light);
  --ik-gold:        var(--ik-yellow);
  --ik-gold-light:  var(--ik-yellow-light);
  --ik-terracotta:  var(--ik-sage);

  --font-brand: 'Cormorant Garamond', Georgia, serif;
  --font-ui:    'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Editorial radii — crisp, restrained, not playful */
  --radius-sm:  2px;
  --radius-md:  4px;
  --radius-lg:  8px;
  --radius-pill:3px;

  /* Soft, low-contrast shadows */
  --shadow-sm: 0 2px 10px rgba(24,30,80,.05);
  --shadow-md: 0 14px 38px rgba(24,30,80,.09);
  --shadow-lg: 0 30px 70px rgba(24,30,80,.13);

  /* Layout + measure */
  --max-w:        1240px;
  --max-w-text:   62ch;
  --gutter:       clamp(1.25rem, 4vw, 3rem);

  /* Spacing rhythm — intentional pacing */
  --space-airy:   clamp(5.5rem, 11vw, 11rem);
  --space-mid:    clamp(4rem, 7vw, 7rem);
  --space-tight:  clamp(2.75rem, 4.5vw, 4.5rem);
  --section-pad:  var(--space-mid) var(--gutter);

  /* Theme asset path for decorative florals */
  --ik-img: '/wp-content/themes/ikvanya-child 3/assets/images';
}

/* ─────────────────────────────────────────────
   GLOBAL RESET / BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  color: var(--ik-ink);
  background: var(--ik-white);
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 450;
  letter-spacing: -.003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--ik-navy); color: var(--ik-white); }

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

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

/* Hide Astra default page title on front page */
.ast-page-builder-template .entry-header,
.home .entry-header,
.ast-single-post .entry-header { display: none !important; }

/* Remove default Astra padding on front page */
.home.page .site-content,
.front-page-content { padding: 0 !important; }

.ast-container { max-width: var(--max-w) !important; }

/* ─────────────────────────────────────────────
   TYPOGRAPHY HELPERS
───────────────────────────────────────────── */
.ik-h1 {
  font-family: var(--font-brand);
  font-size: clamp(2.9rem, 6.4vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ik-navy);
  letter-spacing: -.022em;
}
.ik-h2 {
  font-family: var(--font-brand);
  font-size: clamp(2.05rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.018em;
  color: var(--ik-navy);
}
.ik-h1 em,
.ik-h2 em { font-style: italic; color: var(--ik-sage); }
.ik-h3 {
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.01em;
  color: var(--ik-navy);
}
.ik-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ik-sage);
}
.ik-body {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--ik-ink-light);
  max-width: var(--max-w-text);
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.ik-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1.05rem 2.15rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .28s ease, color .28s ease, border-color .28s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.ik-btn--primary {
  background: var(--ik-navy);
  color: var(--ik-white);
  border-color: var(--ik-navy);
}
.ik-btn--primary:hover {
  background: var(--ik-navy-dark);
  border-color: var(--ik-navy-dark);
}
.ik-btn--ghost {
  background: transparent;
  color: var(--ik-navy);
  border-color: rgba(35,46,120,.4);
}
.ik-btn--ghost:hover {
  background: var(--ik-navy);
  color: var(--ik-white);
  border-color: var(--ik-navy);
}
.ik-btn--ghost-white {
  background: transparent;
  color: var(--ik-white);
  border-color: rgba(255,255,255,.45);
}
.ik-btn--ghost-white:hover {
  background: var(--ik-white);
  color: var(--ik-navy);
  border-color: var(--ik-white);
}
.ik-btn--dark {
  background: var(--ik-navy);
  color: var(--ik-white);
  border-color: var(--ik-navy);
}
.ik-btn--dark:hover { background: var(--ik-navy-dark); }

/* ─────────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────────── */
#masthead,
.site-header,
.ast-primary-header-bar {
  background: var(--ik-forest) !important;
  border-bottom: none !important;
}

.ast-primary-header-bar .ast-primary-header {
  padding: 0 1.25rem;
}

/* Logo */
.ast-logo-container .site-title a,
.ast-logo-container .site-title {
  font-family: var(--font-brand) !important;
  font-size: 1.7rem !important;
  font-weight: 600 !important;
  color: var(--ik-white) !important;
  letter-spacing: .02em !important;
}

/* Nav links */
.main-header-menu .menu-item > a,
.main-navigation .main-header-menu .menu-item > a {
  font-family: var(--font-ui) !important;
  font-size: .82rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,.85) !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  padding: 1.5rem .9rem !important;
  transition: color .18s ease !important;
}
.main-header-menu .menu-item > a:hover,
.main-header-menu .current-menu-item > a {
  color: var(--ik-aqua) !important;
}

/* Cart / account icons */
.ast-header-woo-cart .ast-cart-menu-wrap .count,
.ast-header-woo-cart .count {
  background: var(--ik-aqua-btn) !important;
  color: var(--ik-white) !important;
}

/* Sticky header */
.ast-sticky-header-active #masthead {
  backdrop-filter: blur(12px);
  background: rgba(28,74,71,.96) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}

/* Mobile menu toggle */
.ast-mobile-menu-trigger-fill span,
.ast-mobile-menu-trigger-minimal span {
  background: var(--ik-white) !important;
}

/* ─────────────────────────────────────────────
   SECTION WRAPPER
───────────────────────────────────────────── */
.ik-section {
  padding: var(--section-pad);
}
.ik-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.ik-section--aqua  { background: var(--ik-aqua); }
.ik-section--cream { background: var(--ik-cream); }
.ik-section--white { background: var(--ik-white); }
.ik-section--forest{ background: var(--ik-forest); }

/* ─────────────────────────────────────────────
   HERO BANNER
───────────────────────────────────────────── */
.ik-hero {
  background-color: var(--ik-cream);
  padding: clamp(3.25rem, 6.5vw, 6rem) var(--gutter) clamp(3.5rem, 7vw, 6.5rem);
  overflow: hidden;
  position: relative;
}
/* Oversized wreath watermark — ghosted brand motif behind the hero */
.ik-hero::before {
  content: '';
  position: absolute;
  top: 46%;
  right: -14%;
  width: min(720px, 78vw);
  height: min(720px, 78vw);
  transform: translateY(-50%);
  background: url('assets/images/logo-wreath.jpg') no-repeat center;
  background-size: contain;
  mix-blend-mode: multiply;
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}
/* Optional watercolor sprig accent (uses floral-sprig.png if present) */
.ik-hero::after {
  content: '';
  position: absolute;
  bottom: -6px; left: -14px;
  width: clamp(120px, 15vw, 220px);
  height: clamp(120px, 15vw, 220px);
  background: url('assets/images/floral-sprig.png') no-repeat bottom left;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
  opacity: .92;
}
.ik-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.75rem, 5vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 880px) {
  .ik-hero__inner {
    grid-template-columns: 1.06fr .94fr;
    gap: clamp(3rem, 5.5vw, 5.5rem);
  }
}

.ik-hero__text { max-width: 540px; }

.ik-hero__eyebrow { margin-bottom: 1.5rem; }

.ik-hero__headline {
  font-family: var(--font-brand);
  font-size: clamp(2.9rem, 6.2vw, 5.3rem);
  font-weight: 600;
  line-height: 1.04;
  color: var(--ik-navy);
  letter-spacing: -.024em;
  margin: 0 0 1.5rem;
}
.ik-hero__headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--ik-sage);
}

.ik-hero__sub {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--ik-ink-light);
  max-width: 40ch;
  margin: 0 0 2.25rem;
}

.ik-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Product image/carousel container */
.ik-hero__img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.ik-hero__noise-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.ik-hero__img-wrap::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, rgba(151,166,214,.30) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Hero Carousel */
.ik-hero__carousel {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 480px;
  flex-shrink: 0;
}
.ik-carousel-item {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ik-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ik-hairline);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .6s ease, transform .6s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
}
.ik-carousel-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}
.ik-carousel-item__media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}
.ik-carousel__img {
  max-height: 240px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(24,34,95,.18));
  transition: transform 0.4s ease;
}
.ik-carousel-item:hover .ik-carousel__img {
  transform: scale(1.05);
}
.ik-carousel-item__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ik-carousel-item__title {
  font-family: var(--font-brand);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--ik-navy);
  margin-bottom: 0.4rem;
}
.ik-carousel-item__price {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--ik-ink);
  font-size: .95rem;
  margin-bottom: 0.85rem;
}
.ik-carousel-item__desc {
  font-size: 0.88rem;
  color: var(--ik-ink-light);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ik-btn--small {
  padding: .8rem 1.6rem;
  font-size: .82rem;
}

/* Carousel Controls */
.ik-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 380px;
  flex-shrink: 0;
}
.ik-carousel__nav-btn {
  background: transparent;
  border: 1px solid var(--ik-border);
  color: var(--ik-forest);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--ik-white);
  box-shadow: var(--shadow-sm);
}
.ik-carousel__nav-btn:hover {
  background-color: var(--ik-forest);
  color: var(--ik-white);
  border-color: var(--ik-forest);
}
.ik-carousel__progress {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ik-text);
  letter-spacing: 2px;
}

/* Dot Indicators */
.ik-carousel__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.ik-carousel__dot {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  max-width: 8px;
  max-height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(12,35,33,0.3);
  background: rgba(255,255,255,0.7);
  padding: 0;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.ik-carousel__dot.is-active {
  background: var(--ik-aqua-btn);
  border-color: var(--ik-aqua-btn);
  transform: scale(1.35);
}
.ik-carousel__dot:hover:not(.is-active) {
  border-color: var(--ik-aqua-deep);
  background: var(--ik-aqua-light);
}

/* Hero Carousel — Mobile */
@media (max-width: 767px) {
  .ik-hero__carousel { max-width: 320px; height: 420px; }
  .ik-carousel__controls { max-width: 320px; }
  .ik-carousel__img { max-height: 180px; }
  .ik-carousel-item__desc { display: none; }
  .ik-carousel__progress { font-size: 0.82rem; }
}

/* ─────────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────────── */
.ik-trust {
  background: var(--ik-navy);
  padding: clamp(1.6rem, 3vw, 2.5rem) var(--gutter);
}
.ik-trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 1rem;
}
@media (min-width: 760px) {
  .ik-trust__inner { grid-template-columns: repeat(4, 1fr); }
}

.ik-trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  color: rgba(255,255,255,.9);
  position: relative;
}
@media (min-width: 760px) {
  .ik-trust__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -.5rem; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 32px;
    background: rgba(255,255,255,.14);
  }
}
.ik-trust__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  color: var(--ik-yellow);
  display: flex; align-items: center; justify-content: center;
}
.ik-trust__icon svg { width: 22px; height: 22px; }
.ik-trust__label {
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
  color: rgba(255,255,255,.92);
}

/* ─────────────────────────────────────────────
   HERO PRODUCT SPOTLIGHT
───────────────────────────────────────────── */
.ik-product {
  background: var(--ik-white);
  padding: var(--space-airy) var(--gutter);
}
.ik-product__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.ik-product__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.ik-product__header .ik-eyebrow { margin-bottom: .75rem; }

.ik-product__card {
  background: var(--ik-cream);
  border: 1px solid var(--ik-hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ik-product__card { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .ik-product__card { grid-template-columns: .92fr 1.08fr; }
}

.ik-product__img-side {
  background: var(--ik-cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  min-height: 360px;
}
.ik-product__img-side img {
  max-height: 380px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 36px rgba(24,30,80,.16));
}

.ik-product__details {
  padding: clamp(2.25rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ik-product__name {
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ik-navy);
  margin: .6rem 0 .85rem;
}

.ik-product__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.ik-badge {
  display: inline-block;
  padding: .38rem .8rem;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.ik-badge--aqua {
  background: transparent;
  color: var(--ik-ink-light);
  border: 1px solid var(--ik-border);
}
.ik-badge--forest {
  background: var(--ik-navy);
  color: var(--ik-white);
}

.ik-product__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ik-ink-light);
  max-width: 46ch;
  margin-bottom: 1.75rem;
}

.ik-product__size {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ik-ink-light);
  margin-bottom: 1.75rem;
}

/* Accordion */
.ik-accordion {
  border-top: 1px solid var(--ik-border);
  margin-bottom: 1.75rem;
}
.ik-accordion__item { border-bottom: 1px solid var(--ik-border); }
.ik-accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: .85rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ik-forest);
  text-align: left;
}
.ik-accordion__trigger::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform .2s;
  flex-shrink: 0;
}
.ik-accordion__trigger[aria-expanded="true"]::after { transform: rotate(45deg); }
.ik-accordion__body {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--ik-text-light);
  padding-bottom: 1rem;
  display: none;
}
.ik-accordion__body.is-open { display: block; }

.ik-product__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.ik-product__price {
  font-family: var(--font-brand);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--ik-navy);
  line-height: 1;
}
.ik-product__price-note {
  font-size: .82rem;
  color: var(--ik-ink-light);
  display: block;
  line-height: 1.3;
  margin-top: .4rem;
}

/* ─────────────────────────────────────────────
   BRAND STORY TEASER
───────────────────────────────────────────── */
.ik-story {
  background: linear-gradient(135deg, var(--ik-aqua) 0%, var(--ik-aqua-light) 100%);
  padding: var(--section-pad);
}
.ik-story__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .ik-story__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.ik-story__etymology {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ik-story__word {
  background: var(--ik-white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ik-story__word-char {
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ik-aqua-btn);
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
  padding-right: 1rem;
  margin-right: .25rem;
  border-right: 1px solid var(--ik-border);
}
.ik-story__word-meaning { min-width: 0; }
.ik-story__word-meaning strong {
  display: block;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ik-text-light);
  margin-bottom: .25rem;
}
.ik-story__word-meaning span {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  color: var(--ik-forest);
}

.ik-story__content .ik-eyebrow { margin-bottom: .75rem; }
.ik-story__content .ik-h2     { margin-bottom: 1rem; }
.ik-story__content .ik-body   { margin-bottom: 1.75rem; }

/* ─────────────────────────────────────────────
   SHOP BY CATEGORY
───────────────────────────────────────────── */
.ik-categories {
  background: var(--ik-cream);
  padding: var(--section-pad);
}
.ik-categories__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.ik-categories__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.ik-categories__header .ik-eyebrow { margin-bottom: .9rem; }

.ik-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 320px));
  gap: clamp(1rem, 2vw, 1.75rem);
  justify-content: center;
}

.ik-cat-card {
  background: var(--ik-white);
  border-radius: var(--radius-md);
  padding: clamp(2.25rem, 3.5vw, 3rem) 1.75rem;
  text-align: center;
  border: 1px solid var(--ik-hairline);
  transition: border-color .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.ik-cat-card:hover { border-color: var(--ik-navy); }
.ik-cat-card--soon { opacity: .6; cursor: default; }
.ik-cat-card--soon:hover { border-color: var(--ik-hairline); }

.ik-cat-card__icon {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--ik-cream);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.6rem;
  font-size: 1.85rem;
  color: var(--ik-navy);
  transition: background .3s ease;
}
.ik-cat-card:hover .ik-cat-card__icon { background: var(--ik-cream-deep); }

.ik-cat-card__name {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ik-navy);
  margin-bottom: .55rem;
}
.ik-cat-card__sub {
  font-size: .86rem;
  color: var(--ik-ink-light);
  margin-bottom: 1.6rem;
  line-height: 1.6;
  flex: 1;
}
.ik-cat-card__link {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ik-navy);
  display: inline-flex; align-items: center; gap: .45rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: .35rem;
  transition: color .25s ease;
}
.ik-cat-card:hover .ik-cat-card__link { color: var(--ik-sage); }

.ik-coming-soon-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  color: var(--ik-ink-light);
  border: 1px solid var(--ik-hairline);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: var(--radius-sm);
}

/* ─────────────────────────────────────────────
   SOCIAL PROOF / REVIEWS
───────────────────────────────────────────── */
.ik-reviews {
  background: var(--ik-white);
  padding: var(--section-pad);
}
.ik-reviews__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.ik-reviews__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.ik-reviews__header .ik-eyebrow { margin-bottom: .9rem; }

/* Hand-drawn three-bloom ornament beneath centred section titles */
.ik-product__header::after,
.ik-categories__header::after,
.ik-reviews__header::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  margin: 1.4rem auto 0;
  background: var(--ik-yellow);
  transform: rotate(45deg);
  box-shadow:
    -22px 0 0 0 var(--ik-periwinkle),
     22px 0 0 0 var(--ik-sage);
}
.ik-reviews__rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: .75rem;
}
.ik-stars { color: var(--ik-yellow); font-size: 1rem; letter-spacing: .14em; }
.ik-rating-num {
  font-family: var(--font-brand);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ik-navy);
}
.ik-rating-label { font-size: .82rem; color: var(--ik-ink-light); }

.ik-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.75rem);
}
@media (min-width: 640px) { .ik-reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ik-reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.ik-review-card {
  background: var(--ik-cream);
  border-radius: var(--radius-md);
  padding: clamp(1.85rem, 3vw, 2.6rem);
  border: none;
  position: relative;
  display: flex;
  flex-direction: column;
}
.ik-review-card::before {
  content: '\201C';
  font-family: var(--font-brand);
  font-size: 3.2rem;
  color: var(--ik-sage);
  opacity: .4;
  position: absolute;
  top: 1rem; right: 1.4rem;
  line-height: 1;
}
.ik-review-card__stars {
  color: var(--ik-yellow);
  font-size: .82rem;
  letter-spacing: .12em;
  margin-bottom: 1.1rem;
}
.ik-review-card__text {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ik-ink);
  margin-bottom: 1.6rem;
  font-style: italic;
  flex: 1;
}
.ik-review-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.ik-review-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ik-aqua-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--ik-white);
  flex-shrink: 0;
}
.ik-review-card__name {
  font-weight: 600;
  font-size: .85rem;
  color: var(--ik-forest);
}
.ik-review-card__location {
  font-size: .82rem;
  color: var(--ik-text-light);
}

/* ─────────────────────────────────────────────
   NEWSLETTER / WHATSAPP STRIP
───────────────────────────────────────────── */
.ik-cta-strip {
  background: var(--ik-navy);
  padding: var(--space-airy) var(--gutter);
}
.ik-cta-strip__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ik-cta-strip .ik-eyebrow {
  color: var(--ik-yellow);
  margin-bottom: 1rem;
}
.ik-cta-strip .ik-h2 { color: var(--ik-white); margin-bottom: 1rem; }
.ik-cta-strip .ik-body {
  color: rgba(255,255,255,.72);
  margin: 0 auto 2.25rem;
  max-width: 44ch;
}

.ik-email-form {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
@media (min-width: 480px) {
  .ik-email-form { flex-direction: row; }
}
.ik-email-form input[type="email"] {
  flex: 1;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: var(--ik-white);
  font-family: var(--font-ui);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
  min-width: 0;
}
.ik-email-form input[type="email"]::placeholder { color: rgba(255,255,255,.5); }
.ik-email-form input[type="email"]:focus { border-color: rgba(255,255,255,.6); }
/* Subscribe button must read on the navy strip */
.ik-cta-strip .ik-btn--primary {
  background: var(--ik-white);
  color: var(--ik-navy);
  border-color: var(--ik-white);
}
.ik-cta-strip .ik-btn--primary:hover {
  background: var(--ik-yellow);
  color: var(--ik-navy);
  border-color: var(--ik-yellow);
}

.ik-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  border-bottom: 1px dashed rgba(255,255,255,.3);
  padding-bottom: .15rem;
  cursor: pointer;
  transition: color .2s;
}
.ik-whatsapp-cta:hover { color: var(--ik-white); }
.ik-whatsapp-cta svg { flex-shrink: 0; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.ik-footer {
  background: var(--ik-navy-dark);
  color: rgba(255,255,255,.7);
  padding: clamp(3.25rem, 6vw, 5rem) 1.25rem 1.5rem;
  position: relative;
}
.ik-footer::before {
  content: '';
  position: absolute;
  top: 30px; left: 50%;
  width: 7px; height: 7px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--ik-yellow);
  box-shadow:
    -22px 0 0 0 var(--ik-periwinkle),
     22px 0 0 0 var(--ik-sage);
}
.ik-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.ik-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 540px) { .ik-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ik-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.ik-footer__brand-name {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ik-white);
  display: block;
  margin-bottom: .5rem;
}
.ik-footer__tagline {
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 240px;
}
.ik-footer__social {
  display: flex;
  gap: .75rem;
}
.ik-footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  transition: background .2s, color .2s;
}
.ik-footer__social-link:hover {
  background: var(--ik-aqua-deep);
  color: var(--ik-white);
}

.ik-footer__col-title {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ik-white);
  margin-bottom: 1rem;
}
.ik-footer__links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .6rem;
}
.ik-footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color .18s;
}
.ik-footer__links a:hover { color: var(--ik-aqua); }

.ik-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
}
.ik-footer__copy { color: rgba(255,255,255,.45); }
.ik-footer__love { color: rgba(255,255,255,.45); }
.ik-footer__love span { color: #E97B7B; }

/* ─────────────────────────────────────────────
   WOOCOMMERCE OVERRIDES
───────────────────────────────────────────── */
/* Product grid cards */
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product a {
  text-decoration: none;
}
.woocommerce ul.products li.product {
  border: none !important;
  border-radius: 0;
  background: transparent;
  text-align: left !important;
  margin: 0 !important;
  position: relative;
}
/* Product image — floated in a soft frame, generous air */
.woocommerce ul.products li.product img {
  width: 100% !important;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--ik-white);
  border: 1px solid var(--ik-hairline);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 2.5vw, 2rem);
  margin: 0 0 1.15rem !important;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.woocommerce ul.products li.product:hover img { transform: scale(1.025); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-brand) !important;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  line-height: 1.22 !important;
  letter-spacing: -.01em !important;
  color: var(--ik-navy) !important;
  padding: 0 !important;
  margin: 0 0 .4rem !important;
}
.woocommerce ul.products li.product .price {
  color: var(--ik-ink) !important;
  font-weight: 600 !important;
  font-family: var(--font-ui) !important;
  font-size: .95rem !important;
  display: block;
  margin-bottom: .85rem;
}
.woocommerce ul.products li.product .price del {
  color: var(--ik-ink-light) !important;
  font-weight: 400 !important;
  opacity: .65;
  margin-right: .35rem;
}
.woocommerce ul.products li.product .price ins { text-decoration: none !important; }
/* Add-to-cart — restrained editorial link, not a heavy button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  background: transparent !important;
  color: var(--ik-navy) !important;
  border: none !important;
  border-bottom: 1px solid var(--ik-navy) !important;
  border-radius: 0 !important;
  font-family: var(--font-ui) !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
  letter-spacing: .13em !important;
  text-transform: uppercase !important;
  padding: .35rem 0 !important;
  margin: 0 !important;
  display: inline-block !important;
  transition: color .2s ease, border-color .2s ease !important;
}
.woocommerce ul.products li.product .button:hover {
  background: transparent !important;
  color: var(--ik-sage) !important;
  border-color: var(--ik-sage) !important;
  transform: none !important;
}
.woocommerce ul.products li.product .added_to_cart {
  display: inline-block;
  margin-left: 1rem;
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ik-sage);
}
/* Sale tag — quiet, editorial */
.woocommerce span.onsale {
  background: var(--ik-navy) !important;
  color: var(--ik-white) !important;
  font-family: var(--font-ui) !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  line-height: 1 !important;
  padding: .45rem .7rem !important;
  top: .9rem !important;
  left: .9rem !important;
  margin: 0 !important;
}

/* Single product add to cart */
.woocommerce .single_add_to_cart_button,
.woocommerce button.button.alt,
.woocommerce button.button.single_add_to_cart_button {
  background: var(--ik-aqua-btn) !important;
  color: var(--ik-white) !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-ui) !important;
  font-weight: 600 !important;
  font-size: .95rem !important;
  letter-spacing: .04em !important;
  border: none !important;
  padding: 1rem 2.5rem !important;
  transition: all .22s ease !important;
}
.woocommerce .single_add_to_cart_button:hover {
  background: var(--ik-forest) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1rem;
  align-items: center;
}

.ik-product-trust {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .85rem;
  margin-top: .35rem;
  color: var(--ik-ink-light);
}

.ik-product-trust span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ik-product-trust span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ik-sage);
}

/* ─────────────────────────────────────────────
   CUSTOM HEADER / NAV
───────────────────────────────────────────── */

/* Hide Astra's own header since we have header.php */
#masthead, .ast-primary-header-bar,
.ast-above-header-bar, .ast-below-header-bar { display: none !important; }

/* Wreath logo banner */
.ik-header__banner {
  background: var(--ik-cream);
  text-align: center;
  padding: clamp(1.5rem, 3.5vw, 2.75rem) 1.25rem clamp(1.25rem, 2.5vw, 2rem);
}
.ik-header__logo {
  display: inline-block;
  transition: opacity .3s ease;
}
.ik-header__logo:hover { opacity: .82; }
.ik-header__logo-img {
  width: min(420px, 74vw);
  height: auto;
  margin: 0 auto;
  display: block;
  mix-blend-mode: multiply;
}

/* Sticky nav bar */
.ik-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ik-cream);
  border-top: 1px solid var(--ik-border);
  border-bottom: 1px solid var(--ik-border);
  transition: background .3s, box-shadow .3s;
}
.ik-nav.is-scrolled {
  background: rgba(245, 240, 225, 0.94);
  box-shadow: 0 6px 28px rgba(24,34,95,.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.ik-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ik-nav__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
@media (max-width: 959px) {
  .ik-nav__list { display: none; }
}
.ik-nav__item { position: relative; }
.ik-nav__link {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem 0;
  font-family: var(--font-ui);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ik-ink-light);
  transition: color .2s ease;
  white-space: nowrap;
  position: relative;
}
.ik-nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ik-navy);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.ik-nav__link:hover,
.ik-nav__item--has-dropdown:hover > .ik-nav__link {
  color: var(--ik-navy);
}
.ik-nav__link:hover::after,
.ik-nav__item--has-dropdown:hover > .ik-nav__link::after {
  transform: scaleX(1);
}
.ik-nav__chevron {
  transition: transform .2s;
  opacity: .6;
}
.ik-nav__item--has-dropdown:hover .ik-nav__chevron { transform: rotate(180deg); }

/* Dropdown */
.ik-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ik-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s, transform .2s;
  border: 1px solid var(--ik-border);
}
/* Invisible bridge to fix hover gap */
.ik-nav__dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.ik-nav__item--has-dropdown:hover .ik-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.ik-nav__dropdown-inner { padding: .75rem; }
.ik-nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 1rem;
  border-radius: 8px;
  transition: background .15s;
  color: var(--ik-text);
}
.ik-nav__dropdown-item:hover { background: var(--ik-aqua-light); }
.ik-nav__dropdown-icon { font-size: 1.3rem; flex-shrink: 0; }
.ik-nav__dropdown-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ik-forest);
  margin-bottom: .1rem;
}
.ik-nav__dropdown-item small {
  font-size: .82rem;
  color: var(--ik-text-light);
}

/* Right actions */
.ik-nav__actions {
  display: flex;
  align-items: center;
  gap: .25rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.ik-nav__action-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ik-ink);
  transition: color .18s, background .18s;
  position: relative;
}
.ik-nav__action-btn:hover { color: var(--ik-navy); background: rgba(35,48,140,.08); }
.ik-nav__cart-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--ik-aqua-btn);
  color: var(--ik-white);
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.ik-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px; height: 40px;
  justify-content: center;
  border-radius: 6px;
  transition: background .18s;
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.ik-nav__hamburger:hover { background: rgba(35,48,140,.08); }
.ik-nav__hamburger span {
  width: 22px; height: 2px;
  background: var(--ik-navy);
  border-radius: 2px;
  transition: all .2s;
  display: block;
}
@media (min-width: 960px) { .ik-nav__hamburger { display: none; } }

/* Mobile drawer */
.ik-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--ik-white);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.ik-mobile-menu.is-open { transform: translateX(0); }
.ik-mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--ik-border);
  background: var(--ik-cream);
}
.ik-mobile-menu__logo {
  display: flex;
  align-items: center;
}
.ik-mobile-menu__logo .ik-nav__logo-img { height: 34px; }
.ik-mobile-menu__close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--ik-ink);
  line-height: 1;
  padding: 0 .25rem;
  transition: color .18s;
}
.ik-mobile-menu__close:hover { color: var(--ik-navy); }
.ik-mobile-menu__nav {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}
.ik-mobile-menu__nav a {
  padding: .9rem 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ik-text);
  border-bottom: 1px solid var(--ik-border);
  transition: background .15s, color .15s;
}
.ik-mobile-menu__nav a:hover { background: var(--ik-aqua-light); color: var(--ik-forest); }
.ik-mobile-menu__nav hr { border: none; border-top: 3px solid var(--ik-border); margin: .5rem 0; }

.ik-mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.ik-mobile-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* ─────────────────────────────────────────────
   PAGE HERO (shared across inner pages)
───────────────────────────────────────────── */
.ik-story-hero,
.ik-shop-header,
.ik-gifting-hero {
  background: linear-gradient(135deg, var(--ik-aqua) 0%, var(--ik-aqua-light) 100%);
  padding: clamp(3rem,7vw,5rem) 1.25rem clamp(2rem,4vw,3.5rem);
}
.ik-story-hero__inner,
.ik-shop-header__inner,
.ik-gifting-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   OUR STORY PAGE
───────────────────────────────────────────── */
.ik-etymology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .ik-etymology-grid { grid-template-columns: 1fr 1fr; }
}
.ik-etymology-card {
  background: var(--ik-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.ik-etymology-card__char {
  font-family: var(--font-brand);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ik-aqua-btn);
  line-height: 1;
  margin-bottom: .75rem;
}
.ik-etymology-card__line {
  width: 40px; height: 2px;
  background: var(--ik-aqua-deep);
  margin-bottom: 1rem;
}
.ik-etymology-card__meaning {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ik-text);
}
.ik-etymology-card__meaning .ik-eyebrow { display: block; margin-bottom: .5rem; }
.ik-etymology-card__meaning strong { color: var(--ik-forest); }

.ik-story-philosophy { }
.ik-story-philosophy > .ik-fade { margin-bottom: 2.5rem; }
.ik-story-philosophy__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .ik-story-philosophy__cols { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 900px) {
  .ik-story-philosophy__cols { grid-template-columns: repeat(3,1fr); }
}
.ik-story-col { }
.ik-story-col__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  width: 56px; height: 56px;
  background: var(--ik-aqua);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ik-story-col .ik-h3 { margin-bottom: .75rem; }
.ik-story-col .ik-body { margin: 0; }

.ik-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .ik-values__grid { grid-template-columns: repeat(3,1fr); }
}
.ik-value-item {
  background: rgba(255,255,255,.6);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(4px);
}
.ik-value-item__num {
  font-family: var(--font-brand);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ik-aqua-deep);
  display: block;
  margin-bottom: .75rem;
  line-height: 1;
}
.ik-value-item h3 {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  color: var(--ik-forest);
  margin-bottom: .5rem;
}
.ik-value-item p {
  font-size: .9rem;
  color: var(--ik-text-light);
  line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────────
   SHOP / ARCHIVE PAGE
───────────────────────────────────────────── */
.ik-shop-filters {
  background: var(--ik-white);
  border-bottom: 1px solid var(--ik-border);
  position: sticky;
  top: 68px;
  z-index: 100;
}
.ik-shop-filters__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ik-shop-filters__inner::-webkit-scrollbar { display: none; }
.ik-filter-tab {
  display: inline-flex;
  align-items: center;
  padding: .85rem 1.25rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ik-text-light);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
}
.ik-filter-tab:hover { color: var(--ik-forest); }
.ik-filter-tab.is-active {
  color: var(--ik-aqua-btn);
  border-bottom-color: var(--ik-aqua-btn);
}

.ik-shop-grid-section {
  background: var(--ik-cream);
  padding: var(--section-pad);
}
.ik-shop-grid-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Override WooCommerce ul.products to match ikvanya grid */
.ik-shop-grid-section .woocommerce ul.products,
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.25rem !important;
  margin: 0 !important;
}
@media (min-width: 640px) {
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (min-width: 900px) {
  .woocommerce ul.products { grid-template-columns: repeat(4, 1fr) !important; }
}

.ik-no-products {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--ik-text-light);
}

/* ─────────────────────────────────────────────
   MOBILE — intentional rhythm, not auto-responsive
───────────────────────────────────────────── */
@media (max-width: 640px) {
  .ik-hero {
    text-align: left;
    padding-top: clamp(2.5rem, 8vw, 3.5rem);
  }
  .ik-hero::before { opacity: .07; right: -34%; }
  .ik-hero__text { max-width: 100%; }
  .ik-hero__sub { max-width: 100%; }
  .ik-hero__ctas { gap: .75rem; }
  .ik-hero__ctas .ik-btn { flex: 1 1 42%; }

  /* Product spotlight stacks cleanly */
  .ik-product__img-side { min-height: 280px; }
  .ik-product__cta-row { gap: 1rem; }
  .ik-product__cta-row .ik-btn { width: 100%; }

  /* Tighter card interiors */
  .ik-review-card__text { font-size: 1.1rem; }

  /* Calmer section ornament spacing */
  .ik-product__header::after,
  .ik-categories__header::after,
  .ik-reviews__header::after { margin-top: 1.1rem; }
}

/* Accessibility — honour reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* WooCommerce pagination */
.woocommerce nav.woocommerce-pagination {
  margin-top: 2.5rem;
  text-align: center;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-ui) !important;
  font-weight: 600 !important;
  color: var(--ik-forest) !important;
  border-color: var(--ik-border) !important;
  transition: all .18s !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--ik-aqua-btn) !important;
  color: var(--ik-white) !important;
  border-color: var(--ik-aqua-btn) !important;
}

/* ─────────────────────────────────────────────
   GIFTING PAGE
───────────────────────────────────────────── */
.ik-gift-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) { .ik-gift-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px) { .ik-gift-grid { grid-template-columns: repeat(3,1fr); } }

.ik-gift-card {
  background: var(--ik-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--ik-border);
  display: flex;
  flex-direction: column;
  transition: all .25s;
}
.ik-gift-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ik-aqua-deep); }
.ik-gift-card__img {
  background: var(--ik-aqua-light);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ik-gift-card__img img { width: 100%; height: 100%; object-fit: cover; }
.ik-gift-card__img-placeholder { width: 100%; height: 100%; background: var(--ik-aqua); }
.ik-gift-card__body {
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: .6rem;
  flex: 1;
}
.ik-gift-card__name {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ik-forest);
}
.ik-gift-card__price { font-weight: 700; color: var(--ik-aqua-btn); }

.ik-gifting-placeholder { text-align: center; padding: 3rem 1rem; }

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */
.ik-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 768px) { .ik-contact-grid { grid-template-columns: 1fr 1.6fr; } }

.ik-contact-channels { display: flex; flex-direction: column; gap: 1.5rem; }
.ik-contact-channel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ik-contact-channel__icon {
  font-size: 1.4rem;
  width: 48px; height: 48px;
  background: var(--ik-aqua);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ik-contact-channel strong { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ik-forest); margin-bottom: .2rem; }
.ik-contact-channel a { display: block; font-size: 1rem; font-weight: 500; color: var(--ik-aqua-btn); margin-bottom: .2rem; }
.ik-contact-channel small { font-size: .82rem; color: var(--ik-text-light); }

.ik-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.ik-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .ik-form-row { grid-template-columns: 1fr 1fr; } }
.ik-form-group { display: flex; flex-direction: column; gap: .4rem; }
.ik-form-group label { font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ik-forest); }
.ik-form-group input,
.ik-form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid var(--ik-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: .9rem;
  color: var(--ik-text);
  background: var(--ik-cream);
  outline: none;
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.ik-form-group input:focus,
.ik-form-group textarea:focus {
  border-color: var(--ik-aqua-deep);
  background: var(--ik-white);
}

/* ─────────────────────────────────────────────
   GENERAL INNER PAGE PADDING
───────────────────────────────────────────── */
.site-content {
  /* Remove any default Astra top padding on inner pages */
  padding-top: 0 !important;
}

/* ─────────────────────────────────────────────
   FADE-IN ANIMATION (via JS observer)
───────────────────────────────────────────── */
.ik-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.ik-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.ik-fade--delay-1 { transition-delay: .1s; }
.ik-fade--delay-2 { transition-delay: .2s; }
.ik-fade--delay-3 { transition-delay: .3s; }


/* ═════════════════════════════════════════════════════════════
   REDESIGN v2.4 — Conversion + Premium Perception Overrides
   - Tighter typographic hierarchy, more confident H1
   - Hero: visually dominant product, single decisive primary CTA,
     scannable microproof line, ratings cue
   - Trust strip: cream parchment with navy ink (warmer, premium),
     single-line labels, tabular rhythm
   - Product spotlight: stronger price hierarchy, badges,
     rating row, scarcity microcopy, sticky-on-mobile ATC
   - Bestsellers: quiet hover-reveal Quick Add, ★ rating cue
   - Categories: editorial circular tiles + product count
   - Reviews: verified badge + tighter cards
   - Newsletter: incentive line ("10% off first order")
   - Mobile: bottom rail "View Cart" cue on long scroll
   ═════════════════════════════════════════════════════════════ */

:root {
  --ik-shadow-card: 0 22px 60px -22px rgba(24,30,80,.18);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
}

/* ── HERO: tighter hierarchy, decisive primary CTA ── */
.ik-hero {
  padding-top: clamp(2.5rem, 5vw, 4.25rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.ik-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.15rem !important;
}
.ik-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--ik-sage);
}
.ik-hero__headline {
  font-size: clamp(2.6rem, 5.8vw, 4.9rem) !important;
  line-height: .98 !important;
  letter-spacing: -.028em !important;
  margin-bottom: 1.25rem !important;
}
.ik-hero__sub {
  font-size: 1.04rem !important;
  max-width: 44ch !important;
  margin-bottom: 1.5rem !important;
}

/* Microproof line under sub-copy */
.ik-hero__microproof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem 1.1rem;
  margin: 0 0 2rem;
  font-size: .82rem;
  color: var(--ik-ink-light);
}
.ik-hero__microproof .ik-stars { font-size: .85rem; letter-spacing: .08em; }
.ik-hero__microproof strong { color: var(--ik-navy); font-weight: 600; }
.ik-hero__microproof-divider {
  width: 1px; height: 12px;
  background: var(--ik-hairline);
}
@media (max-width: 520px) {
  .ik-hero__microproof-divider { display: none; }
}

/* CTA prominence: primary commands attention, secondary recedes */
.ik-hero__ctas .ik-btn--primary {
  padding: 1.15rem 2.4rem !important;
  font-size: .82rem !important;
  letter-spacing: .14em !important;
  box-shadow: 0 12px 28px -10px rgba(35,46,120,.4);
}
.ik-hero__ctas .ik-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -10px rgba(35,46,120,.55);
}
.ik-hero__ctas .ik-btn--ghost {
  background: transparent;
  color: var(--ik-navy);
  border-color: transparent;
  padding-left: .5rem;
  padding-right: .5rem;
  position: relative;
}
.ik-hero__ctas .ik-btn--ghost::after {
  content: '';
  position: absolute;
  left: .5rem; right: .5rem; bottom: .55rem;
  height: 1px;
  background: var(--ik-navy);
  transform: scaleX(.85);
  transform-origin: left;
  transition: transform .3s var(--ease-soft);
}
.ik-hero__ctas .ik-btn--ghost:hover {
  background: transparent;
  color: var(--ik-sage);
}
.ik-hero__ctas .ik-btn--ghost:hover::after { transform: scaleX(1); background: var(--ik-sage); }

/* Hero product — let the product breathe, drop card chrome */
.ik-hero__carousel { max-width: 460px !important; height: 540px !important; }
.ik-carousel-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 1rem !important;
}
.ik-carousel-item__media {
  background: var(--ik-white);
  border-radius: 50%;
  aspect-ratio: 1;
  margin-bottom: 1.5rem !important;
  flex: 0 0 auto !important;
  height: 360px;
  box-shadow: var(--ik-shadow-card);
  position: relative;
  overflow: visible;
}
.ik-carousel__img {
  max-height: 300px !important;
  filter: drop-shadow(0 18px 30px rgba(24,34,95,.22)) !important;
}
.ik-carousel-item__title {
  font-size: 1.35rem !important;
  margin-bottom: .25rem !important;
}
.ik-carousel-item__price { margin-bottom: 1rem !important; }
.ik-carousel-item__desc { display: none !important; }

@media (max-width: 880px) {
  .ik-hero__carousel { max-width: 360px !important; height: 460px !important; }
  .ik-carousel-item__media { height: 280px; }
  .ik-carousel__img { max-height: 220px !important; }
}

/* ── TRUST STRIP: warm parchment, premium ── */
.ik-trust {
  background: var(--ik-cream-deep) !important;
  border-top: 1px solid var(--ik-border);
  border-bottom: 1px solid var(--ik-border);
  padding: clamp(1.5rem, 2.8vw, 2.25rem) var(--gutter) !important;
}
.ik-trust__item { color: var(--ik-navy) !important; }
.ik-trust__icon { color: var(--ik-sage) !important; }
.ik-trust__item:not(:last-child)::after {
  background: rgba(35,46,120,.14) !important;
}
.ik-trust__label {
  color: var(--ik-ink) !important;
  font-size: .88rem !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  white-space: normal;
  line-height: 1.35 !important;
}
/* Force single-line labels via br removal */
.ik-trust__label br { display: none; }
.ik-trust__label br + * { display: inline; }

/* ── PRODUCT SPOTLIGHT: stronger conversion cues ── */
.ik-product__card {
  background: var(--ik-cream) !important;
  box-shadow: var(--ik-shadow-card);
  border: 1px solid var(--ik-border) !important;
}
.ik-product__img-side {
  background: linear-gradient(180deg, var(--ik-cream-deep) 0%, var(--ik-cream) 100%) !important;
  position: relative;
}
.ik-product__img-side::before {
  content: '';
  position: absolute;
  inset: 8% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9) 0%, transparent 70%);
  pointer-events: none;
}
.ik-product__img-side img {
  position: relative;
  z-index: 1;
  max-height: 440px !important;
}

/* Rating row above name */
.ik-product__rating {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: .6rem 0 .85rem;
  font-size: .82rem;
  color: var(--ik-ink-light);
}
.ik-product__rating .ik-stars {
  font-size: .92rem;
  color: var(--ik-yellow);
  letter-spacing: .08em;
}
.ik-product__rating strong { color: var(--ik-navy); font-weight: 600; }

.ik-product__name {
  font-size: clamp(1.85rem, 3vw, 2.7rem) !important;
  margin-top: 0 !important;
}

/* Benefit chips */
.ik-product__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1.5rem;
}
.ik-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--ik-white);
  border: 1px solid var(--ik-border);
  border-radius: 999px;
  padding: .4rem .85rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ik-navy);
}
.ik-chip::before {
  content: '✓';
  color: var(--ik-sage);
  font-size: .85rem;
  font-weight: 700;
}

/* Price hierarchy — anchor + sale */
.ik-product__cta-row {
  gap: 1.25rem 1.75rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ik-border);
}
.ik-product__price {
  font-size: 2.4rem !important;
  display: inline-flex;
  align-items: baseline;
  gap: .65rem;
}
.ik-product__price del {
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  color: var(--ik-ink-light) !important;
  text-decoration: line-through;
  opacity: .6;
}
.ik-product__price ins { text-decoration: none !important; }
.ik-product__price-note {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .55rem !important;
}
.ik-product__price-note::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ik-sage);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(151,163,117,.18);
}

.ik-product__cta-row .ik-btn--primary {
  padding: 1.15rem 2.4rem !important;
  flex: 1 1 auto;
  min-width: 200px;
}
.ik-product__cta-row .ik-btn--ghost {
  border: none !important;
  padding: 0 !important;
  text-decoration: none;
  border-bottom: 1px solid var(--ik-navy) !important;
  border-radius: 0 !important;
  padding-bottom: .4rem !important;
  letter-spacing: .12em !important;
}
.ik-product__cta-row .ik-btn--ghost:hover {
  background: transparent !important;
  color: var(--ik-sage) !important;
  border-color: var(--ik-sage) !important;
}

/* First accordion item open by default — sharper trigger */
.ik-accordion__trigger { padding: 1rem 0 !important; }

/* ── CATEGORIES: editorial circular tiles ── */
.ik-categories__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  max-width: 920px;
  margin: 0 auto;
}
.ik-cat-card {
  background: transparent !important;
  border: none !important;
  padding: 1rem !important;
  transition: transform .35s var(--ease-soft);
}
.ik-cat-card:hover {
  transform: translateY(-4px);
  border: none !important;
}
.ik-cat-card__icon {
  width: 168px !important;
  height: 168px !important;
  border-radius: 50% !important;
  background: var(--ik-white) !important;
  margin-bottom: 1.5rem !important;
  font-size: 2.8rem !important;
  box-shadow: var(--ik-shadow-card);
  transition: transform .5s var(--ease-soft), box-shadow .35s ease;
}
.ik-cat-card:hover .ik-cat-card__icon {
  transform: scale(1.04);
  box-shadow: 0 30px 70px -22px rgba(24,30,80,.28);
}
.ik-cat-card__name {
  font-size: 1.3rem !important;
  margin-bottom: .35rem !important;
}
.ik-cat-card__sub {
  font-size: .82rem !important;
  margin-bottom: 1rem !important;
}
.ik-cat-card__count {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ik-ink-light);
  margin-bottom: .85rem;
}

/* ── BESTSELLERS: hover quick-add reveal + rating cue ── */
.ik-shop-grid-section .woocommerce ul.products li.product {
  padding: .5rem;
  border-radius: var(--radius-md);
  transition: background .25s ease;
}
.ik-shop-grid-section .woocommerce ul.products li.product:hover {
  background: rgba(255,255,255,.6);
}
.ik-shop-grid-section .woocommerce ul.products li.product img {
  background: var(--ik-cream) !important;
  aspect-ratio: 1 !important;
  border: 1px solid var(--ik-border) !important;
}
.ik-shop-grid-section .woocommerce ul.products li.product .price {
  font-size: 1.05rem !important;
}
.ik-shop-grid-section .woocommerce ul.products li.product .price del {
  font-size: .85rem !important;
}

/* Inline rating cue */
.ik-shop-grid-section .woocommerce ul.products li.product .woocommerce-loop-product__title::after {
  content: none;
  display: block;
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--ik-yellow);
  margin-top: .3rem;
  margin-bottom: .15rem;
}

/* Quick-add button: emerges on hover (desktop), always-on (mobile) */
.ik-shop-grid-section .woocommerce ul.products li.product .button {
  background: var(--ik-navy) !important;
  color: var(--ik-white) !important;
  border: 1px solid var(--ik-navy) !important;
  border-radius: 999px !important;
  padding: .65rem 1.25rem !important;
  text-align: center;
  margin-top: .25rem !important;
  opacity: 1;
  transition: background .2s, color .2s, transform .25s var(--ease-soft);
}
.ik-shop-grid-section .woocommerce ul.products li.product .button:hover {
  background: var(--ik-navy-dark) !important;
  color: var(--ik-white) !important;
  border-color: var(--ik-navy-dark) !important;
  transform: translateY(-1px) !important;
}
@media (min-width: 900px) {
  .ik-shop-grid-section .woocommerce ul.products li.product .button {
    opacity: 0;
    transform: translateY(6px);
  }
  .ik-shop-grid-section .woocommerce ul.products li.product:hover .button {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── REVIEWS: verified badge + tighter cards ── */
.ik-review-card { padding: clamp(1.65rem, 2.6vw, 2.25rem) !important; }
.ik-review-card__text {
  font-size: 1.08rem !important;
  line-height: 1.55 !important;
  margin-bottom: 1.25rem !important;
}
.ik-review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .25rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ik-sage);
}
.ik-review-card__verified::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ik-sage);
  color: var(--ik-white);
  font-size: .82rem;
  font-weight: 700;
}

/* ── NEWSLETTER: incentive line ── */
.ik-cta-strip .ik-h2 { font-size: clamp(2rem, 4vw, 3rem) !important; }
.ik-cta-strip__incentive {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: -.25rem auto 1.85rem;
  padding: .45rem 1rem;
  border: 1px dashed rgba(228,193,88,.55);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ik-yellow);
}
.ik-cta-strip__incentive::before { content: '🎁'; font-size: .9rem; }
.ik-email-form input[type="email"] {
  padding: 1.05rem 1.35rem !important;
  font-size: .92rem !important;
}
.ik-cta-strip .ik-btn--primary {
  padding: 1.05rem 2.1rem !important;
  font-weight: 700 !important;
}

/* ── NAV: add primary Shop CTA in actions (desktop) ── */
.ik-nav__shop-cta {
  display: none;
  align-items: center;
  background: var(--ik-navy);
  color: var(--ik-white) !important;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-right: .4rem;
  transition: background .2s ease, transform .2s var(--ease-soft);
}
.ik-nav__shop-cta:hover {
  background: var(--ik-navy-dark);
  transform: translateY(-1px);
}
@media (min-width: 960px) {
  .ik-nav__shop-cta { display: inline-flex; }
}

/* ── MOBILE: tighter hero, sticky bottom Shop bar ── */
@media (max-width: 640px) {
  .ik-hero__inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .ik-hero__headline {
    font-size: clamp(2.4rem, 9vw, 3.4rem) !important;
  }
  .ik-hero__ctas { gap: .85rem; }
  .ik-hero__ctas .ik-btn { flex: 0 0 auto; }
  .ik-hero__ctas .ik-btn--primary { width: 100%; }

  .ik-product__cta-row { flex-direction: column; align-items: stretch; }
  .ik-product__cta-row .ik-btn { width: 100%; }
  .ik-product__cta-row > div:first-child { text-align: left; }

  .ik-cat-card__icon { width: 132px !important; height: 132px !important; }

  /* Trust strip: 2-col with airier rhythm */
  .ik-trust__inner { gap: 1.25rem .75rem !important; }
  .ik-trust__item { flex-direction: column; text-align: center; gap: .45rem; }
}

/* Sticky homepage Shop bar (mobile only, appears after scroll past hero) */
.ik-home-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: rgba(251,248,239,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--ik-border);
  padding: .85rem 1.15rem;
  display: flex;
  gap: .85rem;
  align-items: center;
  justify-content: space-between;
  transform: translateY(110%);
  transition: transform .35s var(--ease-soft);
  box-shadow: 0 -8px 24px rgba(24,30,80,.08);
}
.ik-home-sticky.is-visible { transform: translateY(0); }
.ik-home-sticky__text {
  flex: 1;
  min-width: 0;
}
.ik-home-sticky__title {
  display: block;
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ik-navy);
  line-height: 1.2;
}
.ik-home-sticky__sub {
  display: block;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ik-ink-light);
  margin-top: .15rem;
}
.ik-home-sticky__btn {
  background: var(--ik-navy);
  color: var(--ik-white);
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .ik-home-sticky { display: none !important; }
}

/* Pad page bottom on mobile so footer isn't covered */
@media (max-width: 767px) {
  body.home { padding-bottom: 72px; }
}

/* Hand-drawn ornament tweak — slightly larger, more confident */
.ik-product__header::after,
.ik-categories__header::after,
.ik-reviews__header::after {
  width: 8px !important;
  height: 8px !important;
}

/* Section eyebrow alignment for visibility */
.ik-categories__header,
.ik-reviews__header,
.ik-product__header { padding-top: .25rem; }

/* WooCommerce Sale tag — refined ribbon corner */
.woocommerce span.onsale {
  border-radius: 0 !important;
  padding: .5rem .9rem !important;
  font-size: .82rem !important;
  background: var(--ik-yellow) !important;
  color: var(--ik-navy) !important;
}

/* ═════════════════════════════════════════════════════════════
   REDESIGN v2.5 — Navy-dominant, no review elements (new brand)
   - New handwritten logo: transparent PNG, drop mix-blend-mode
   - Trust strip flips back to NAVY for stronger brand presence
   - Brand story section becomes full NAVY with cream cards
   - Hero gets navy editorial accents (number badge, divider)
   - Bestsellers: rating cue removed (brand has no reviews yet)
   - Reviews CSS retained but section won't render
   - Categories: deeper navy hover state
   ═════════════════════════════════════════════════════════════ */

/* ── New handwritten logo (transparent PNG, no multiply blend) ── */
.ik-header__logo-img {
  width: min(360px, 68vw) !important;
  mix-blend-mode: normal !important;
}
.ik-header__banner {
  background: var(--ik-cream) !important;
  padding: clamp(1.75rem, 3vw, 2.5rem) 1.25rem clamp(1rem, 2vw, 1.5rem) !important;
}
.ik-mobile-menu__logo .ik-nav__logo-img {
  height: 38px !important;
  width: auto !important;
}

/* ── HERO: cream base, but navy editorial accents ── */
.ik-hero {
  background: var(--ik-cream) !important;
}
.ik-hero::before {
  /* Hide the old wreath JPG watermark (logo file replaced) */
  display: none !important;
}
.ik-hero::after {
  /* Subtle navy corner ornament instead of floral sprig */
  display: none !important;
}
.ik-hero__inner { position: relative; }
.ik-hero__headline em {
  color: var(--ik-navy) !important;
  font-style: italic;
  position: relative;
  display: inline-block;
}
.ik-hero__headline em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4%;
  height: 8px;
  background: rgba(228,193,88,.5);
  z-index: -1;
  transform: skewX(-8deg);
}

/* Microproof dot indicator */
.ik-hero__microproof-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ik-navy);
  box-shadow: 0 0 0 3px rgba(35,46,120,.16);
}
.ik-hero__microproof strong { color: var(--ik-navy); }

/* Hero product plinth — navy ring accent */
.ik-carousel-item__media {
  background: var(--ik-white) !important;
  border: 1px solid var(--ik-border);
  position: relative;
}
.ik-carousel-item__media::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(35,46,120,.18);
  border-radius: 50%;
  pointer-events: none;
}

/* ── TRUST STRIP: navy-forward, gold icons, white labels ── */
.ik-trust {
  background: var(--ik-navy) !important;
  border-top: none !important;
  border-bottom: 1px solid var(--ik-navy-dark) !important;
}
.ik-trust__item { color: rgba(255,255,255,.92) !important; }
.ik-trust__icon { color: var(--ik-yellow) !important; }
.ik-trust__item:not(:last-child)::after {
  background: rgba(255,255,255,.16) !important;
}
.ik-trust__label {
  color: rgba(255,255,255,.92) !important;
  font-size: .82rem !important;
  font-weight: 500 !important;
  letter-spacing: .06em !important;
}

/* ── BRAND STORY: NAVY background, cream/white cards ── */
.ik-story {
  background: var(--ik-navy) !important;
  position: relative;
  overflow: hidden;
}
.ik-story::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: min(620px, 60vw);
  height: min(620px, 60vw);
  background: radial-gradient(circle, rgba(228,193,88,.08) 0%, transparent 60%);
  pointer-events: none;
}
.ik-story__inner { position: relative; z-index: 1; }
.ik-story__word {
  background: var(--ik-white) !important;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.35);
}
.ik-story__word-char { color: var(--ik-navy) !important; border-right-color: var(--ik-border) !important; }
.ik-story__word-meaning strong { color: var(--ik-ink-light) !important; }
.ik-story__word-meaning span { color: var(--ik-navy) !important; }

/* Final etymology card stays navy-dark to show contrast progression */
.ik-story__word[style*="background:var(--ik-forest)"],
.ik-story__word[style*="background: var(--ik-forest)"] {
  background: var(--ik-navy-dark) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}

.ik-story .ik-eyebrow { color: var(--ik-yellow) !important; }
.ik-story .ik-h2 { color: var(--ik-white) !important; }
.ik-story .ik-h2 em { color: var(--ik-yellow) !important; font-style: italic; }
.ik-story .ik-body { color: rgba(255,255,255,.78) !important; }
.ik-story .ik-btn--dark {
  background: var(--ik-white) !important;
  color: var(--ik-navy) !important;
  border-color: var(--ik-white) !important;
}
.ik-story .ik-btn--dark:hover {
  background: var(--ik-yellow) !important;
  color: var(--ik-navy) !important;
  border-color: var(--ik-yellow) !important;
}

/* ── CATEGORIES: deeper navy hover state ── */
.ik-cat-card__icon {
  border: 1px solid var(--ik-border) !important;
}
.ik-cat-card:hover .ik-cat-card__icon {
  background: var(--ik-navy) !important;
  color: var(--ik-yellow) !important;
}
.ik-cat-card__count { color: var(--ik-navy); opacity: .55; }

/* ── BESTSELLERS: remove the artificial review cue (brand is new) ── */
.ik-shop-grid-section .woocommerce ul.products li.product .woocommerce-loop-product__title::after {
  content: none !important;
  display: none !important;
}
/* Add a quiet "New" tag instead */
.ik-shop-grid-section .woocommerce ul.products li.product .woocommerce-loop-product__title::before {
  content: 'New ·';
  display: inline;
  margin-right: .35rem;
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ik-yellow);
  vertical-align: middle;
}

/* ── PRODUCT SPOTLIGHT: stronger navy framing ── */
.ik-product__card {
  background: var(--ik-cream) !important;
  border: 1px solid var(--ik-border) !important;
}
.ik-product__img-side {
  background: linear-gradient(180deg, var(--ik-navy) 0%, var(--ik-navy-dark) 100%) !important;
  position: relative;
}
.ik-product__img-side::before {
  content: '';
  position: absolute;
  inset: 12% 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  pointer-events: none;
}
.ik-product__img-side::after {
  content: 'Bestseller';
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--ik-yellow);
  color: var(--ik-navy);
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .5rem .85rem;
  z-index: 2;
}
.ik-product__img-side img {
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.35)) !important;
}

/* ── CTA STRIP newsletter — stronger navy gradient ── */
.ik-cta-strip {
  background: linear-gradient(180deg, var(--ik-navy) 0%, var(--ik-navy-dark) 100%) !important;
  position: relative;
  overflow: hidden;
}
.ik-cta-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(228,193,88,.08) 0%, transparent 60%);
  pointer-events: none;
}
.ik-cta-strip__inner { position: relative; z-index: 1; }

/* ── Sticky homepage shop bar ── */
.ik-home-sticky__title {
  font-family: var(--font-ui);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.ik-home-sticky__sub {
  color: var(--ik-sage);
  font-weight: 600;
}

/* Mobile micropad */
@media (max-width: 640px) {
  .ik-hero__microproof { font-size: .82rem; gap: .45rem .8rem; }
  .ik-trust__label { font-size: .82rem !important; letter-spacing: .04em !important; }
  .ik-product__img-side::after {
    top: 1rem; left: 1rem;
    font-size: .82rem;
    padding: .4rem .7rem;
  }
}

/* Hide any review-related stragglers (defensive) */
.ik-reviews { display: none !important; }


/* ═════════════════════════════════════════════════════════════
   REDESIGN v2.6 — Elegant Hero Carousel
   - Soft cream plinth (no harsh navy ring)
   - Product blends via mix-blend-mode (kills white WC bg)
   - Line-indicator pagination (replaces dots + progress + arrows clutter)
   - Slim text-link "Buy Now" (was a heavy navy pill)
   - Tighter typographic hierarchy below the plinth
   ═════════════════════════════════════════════════════════════ */

/* Reset carousel container size + remove background chrome */
.ik-hero__carousel {
  max-width: 480px !important;
  height: 600px !important;
  background: transparent !important;
}

/* Each slide is just a vertical stack */
.ik-carousel-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* The plinth — a soft cream disc, no harsh ring */
.ik-carousel-item__media {
  position: relative;
  width: min(420px, 88%);
  height: auto;
  aspect-ratio: 1;
  margin-bottom: 1.75rem !important;
  flex: 0 0 auto !important;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,255,255,.95) 0%, rgba(244,238,222,.6) 60%, rgba(228,219,197,.4) 100%);
  box-shadow:
    0 60px 100px -40px rgba(24,30,80,.22),
    0 0 0 1px rgba(35,46,120,.05);
  border: none;
  overflow: visible;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* Drop the hard ring overlay */
.ik-carousel-item__media::before {
  content: none !important;
  display: none !important;
}

/* Product image — multiply blend removes the white WC background, so
   the product itself appears resting directly on the cream disc */
.ik-carousel__img {
  position: relative;
  max-height: 320px !important;
  max-width: 78% !important;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 36px rgba(24,34,95,.14)) !important;
  transition: transform .6s cubic-bezier(.22,.61,.36,1) !important;
}
.ik-carousel-item:hover .ik-carousel__img {
  transform: scale(1.025);
}

/* Tight, editorial product info below the disc */
.ik-carousel-item__content {
  padding: 0 1rem;
}
.ik-carousel-item__title {
  font-family: var(--font-brand) !important;
  font-size: 1.6rem !important;
  font-weight: 500 !important;
  line-height: 1.18 !important;
  letter-spacing: -.012em !important;
  color: var(--ik-navy) !important;
  margin: 0 0 .35rem !important;
}
.ik-carousel-item__price {
  font-family: var(--font-ui) !important;
  font-size: .9rem !important;
  font-weight: 600 !important;
  color: var(--ik-ink) !important;
  margin: 0 0 1.1rem !important;
  letter-spacing: .01em;
}
.ik-carousel-item__price del {
  color: var(--ik-ink-light) !important;
  opacity: .55 !important;
  font-weight: 400 !important;
  margin-right: .4rem;
  text-decoration: line-through;
}
.ik-carousel-item__price ins {
  text-decoration: none !important;
  color: var(--ik-navy) !important;
}
.ik-carousel-item__desc { display: none !important; }

/* Slim text-link Buy Now — no heavy pill */
.ik-carousel-item .ik-btn--small,
.ik-carousel-item .ik-btn--primary.ik-btn--small {
  background: transparent !important;
  color: var(--ik-navy) !important;
  border: none !important;
  border-bottom: 1px solid var(--ik-navy) !important;
  border-radius: 0 !important;
  padding: .4rem 0 !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
  letter-spacing: .22em !important;
  box-shadow: none !important;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease !important;
}
.ik-carousel-item .ik-btn--small:hover {
  background: transparent !important;
  color: var(--ik-sage) !important;
  border-color: var(--ik-sage) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ── CONTROLS: line indicators, no clutter ── */
.ik-carousel__controls {
  margin-top: 2rem !important;
  gap: 1.5rem !important;
  max-width: 280px !important;
}

/* Naked icon-only nav buttons (no white circles!) */
.ik-carousel__nav-btn {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: 28px !important;
  height: 28px !important;
  color: rgba(35,46,120,.55) !important;
  padding: 0 !important;
  transition: color .25s ease, transform .25s ease !important;
}
.ik-carousel__nav-btn:hover {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  color: var(--ik-navy) !important;
  transform: translateX(0) !important;
}
.ik-carousel__nav-btn:first-child:hover { transform: translateX(-2px) !important; }
.ik-carousel__nav-btn:last-child:hover  { transform: translateX(2px) !important; }
.ik-carousel__nav-btn svg {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 1.4 !important;
}

/* Hide the loud numeric progress text */
.ik-carousel__progress { display: none !important; }

/* Dots → elegant horizontal line indicators */
.ik-carousel__dots {
  gap: 10px !important;
}
.ik-carousel__dot {
  width: 24px !important;
  height: 2px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  min-height: 2px !important;
  max-height: 2px !important;
  border: none !important;
  border-radius: 0 !important;
  background: rgba(35,46,120,.18) !important;
  padding: 0 !important;
  transition: background .3s ease, width .3s ease, max-width .3s ease !important;
}
.ik-carousel__dot.is-active {
  background: var(--ik-navy) !important;
  width: 44px !important;
  max-width: 44px !important;
  transform: none !important;
}
.ik-carousel__dot:hover:not(.is-active) {
  background: rgba(35,46,120,.45) !important;
  border-color: transparent !important;
}

/* ── MOBILE: keep elegant proportions ── */
@media (max-width: 880px) {
  .ik-hero__carousel { max-width: 380px !important; height: 520px !important; }
  .ik-carousel-item__media { width: min(320px, 84%); margin-bottom: 1.5rem !important; }
  .ik-carousel__img { max-height: 240px !important; }
  .ik-carousel-item__title { font-size: 1.4rem !important; }
}
@media (max-width: 480px) {
  .ik-hero__carousel { max-width: 320px !important; height: 480px !important; }
  .ik-carousel-item__media { width: min(280px, 82%); }
  .ik-carousel__img { max-height: 200px !important; }
}

/* Kill any old hero __img-wrap radial circle behind the carousel —
   the new plinth replaces it. */
.ik-hero__img-wrap::before { display: none !important; }
.ik-hero__noise-overlay { display: none !important; }

/* ==========================================================================
   REDESIGN v3.0 - Strategy-led launch experience
   ========================================================================== */

:root {
  --ik-cream: #F4EEDE;
  --ik-white: #FFFCF4;
  --ik-navy: #071C6B;
  --ik-navy-dark: #04134A;
  --ik-sage: #7F8B64;
  --ik-yellow: #D8B84E;
  --ik-ink: #172033;
  --ik-ink-light: #596172;
  --ik-border: rgba(7,28,107,.16);
  --ik-hairline: rgba(7,28,107,.11);
}

body {
  background: var(--ik-cream) !important;
  color: var(--ik-ink);
  letter-spacing: 0;
}

.ik-header__banner {
  padding: clamp(1.35rem, 2.5vw, 2.1rem) 1.25rem 1rem !important;
}

.ik-header__logo-img {
  width: min(340px, 66vw) !important;
}

.ik-nav {
  background: rgba(244,238,222,.95) !important;
}

.ik-nav__dropdown-icon {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--ik-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-size: 1rem !important;
  color: var(--ik-navy);
}

.ik-hero-v3 {
  min-height: calc(100vh - 154px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(244,238,222,1) 0%, rgba(244,238,222,.94) 52%, rgba(7,28,107,.08) 100%) !important;
  padding-top: clamp(2rem, 5vw, 4.75rem) !important;
  padding-bottom: clamp(3rem, 6vw, 5.5rem) !important;
}

.ik-hero-v3 .ik-hero__inner {
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  align-items: center;
}

.ik-hero-v3 .ik-hero__text {
  max-width: 650px;
}

.ik-hero-v3 .ik-hero__headline {
  font-size: clamp(3.25rem, 7vw, 6.8rem) !important;
  line-height: .93 !important;
  max-width: 9.5ch;
}

.ik-hero-v3 .ik-hero__headline em {
  display: block;
}

.ik-hero-v3 .ik-hero__sub {
  max-width: 50ch !important;
  font-size: clamp(1.02rem, 1.4vw, 1.15rem) !important;
  color: rgba(23,32,51,.85);
}

.ik-hero-duo {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: center;
}

.ik-hero-duo::before {
  content: '';
  position: absolute;
  inset: 8% 2% 6% 18%;
  background: var(--ik-navy);
  border-radius: 2px;
  z-index: 0;
}

.ik-hero-duo__item {
  position: relative;
  z-index: 1;
  min-height: 420px;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--ik-border);
  background: var(--ik-white);
  overflow: hidden;
}

.ik-hero-duo__item--signature {
  transform: translateY(-26px);
}

.ik-hero-duo__item--essential {
  transform: translateY(38px);
  background: var(--ik-cream);
}

.ik-hero-duo__tag,
.ik-launch-card__label,
.ik-need-card__num {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ik-sage);
}

.ik-hero-duo__img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  margin: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 26px 32px rgba(7,28,107,.18));
}

.ik-hero-duo__item strong {
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ik-navy);
}

.ik-section-heading {
  max-width: 760px;
  margin: 0 auto clamp(2.3rem, 5vw, 4.25rem);
  text-align: center;
}

.ik-section-heading--left {
  margin-left: 0;
  text-align: left;
}

.ik-section-heading .ik-body {
  margin: 1rem auto 0;
}

.ik-launch {
  background: var(--ik-cream);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}

.ik-launch__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  background: transparent;
}

.ik-launch__grid.ik-fade,
.ik-hero__image.ik-fade,
.ik-dual .ik-fade,
.ik-need-grid .ik-fade,
.ik-story .ik-fade,
.ik-section-heading.ik-fade {
  opacity: 1;
  transform: none;
}

.ik-launch-card {
  min-width: 0;
  background: var(--ik-white);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 8px rgba(0,0,0,.05), 0 1px 3px rgba(0,0,0,.04);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.ik-launch-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.ik-launch-card__media {
  min-height: 260px;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,238,222,.62);
}

.ik-launch-card__image {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .45s var(--ease-soft);
}

.ik-launch-card:hover .ik-launch-card__image {
  transform: translateY(-4px) scale(1.025);
}

.ik-launch-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ik-launch-card__title {
  font-family: var(--font-brand);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.13;
  color: var(--ik-navy);
  margin: .5rem 0 .7rem;
}

.ik-launch-card__desc {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--ik-ink-light);
  margin: 0 0 1.1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ik-launch-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--ik-hairline);
  padding-top: 1rem;
}

.ik-launch-card__price {
  font-weight: 700;
  color: var(--ik-ink);
  font-size: .95rem;
}

.ik-launch-card__price del {
  opacity: .52;
  font-weight: 400;
  margin-right: .35rem;
}

.ik-launch-card__price ins {
  text-decoration: none;
  color: var(--ik-navy);
}

.ik-text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--ik-navy);
  border-bottom: 1px solid currentColor;
  padding-bottom: .25rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ── Launch card action buttons ── */
.ik-launch-card__actions {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-top: .75rem;
}
.ik-launch-card__actions .ik-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.ik-btn--sm {
  padding: .55rem .8rem;
  font-size: .82rem;
  letter-spacing: .06em;
}
.ik-btn--outline {
  background: transparent;
  border: 1.5px solid var(--ik-navy);
  color: var(--ik-navy);
}
.ik-btn--outline:hover {
  background: var(--ik-navy);
  color: var(--ik-white);
}

/* ── Our Story: Ranges Grid ── */
.ik-ranges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .ik-ranges-grid { grid-template-columns: repeat(3, 1fr); }
}
.ik-range-card {
  background: var(--ik-white);
  border-radius: var(--radius-card, 12px);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
}
.ik-range-card__icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.ik-range-card .ik-h3 { margin-bottom: .75rem; }
.ik-range-card .ik-body { margin: 0; }
.ik-range-card--coming-soon {
  opacity: .85;
  border-style: dashed;
}
.ik-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: .35rem .85rem;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ik-badge--soon {
  background: var(--ik-yellow);
  color: var(--ik-forest);
}

/* ── Harmful Chemicals Table ── */
.ik-harm-table-wrap {
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ik-harm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  line-height: 1.6;
}
.ik-harm-table thead th {
  background: var(--ik-navy);
  color: var(--ik-white);
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: left;
}
.ik-harm-table tbody td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
  vertical-align: top;
}
.ik-harm-table tbody tr:nth-child(even) td {
  background: var(--ik-cream);
}
.ik-harm-table tbody tr:hover td {
  background: rgba(151,163,117,.08);
}
.ik-harm-table tbody td strong {
  color: var(--ik-forest);
}
.ik-harm-table tbody td:last-child {
  color: var(--ik-sage);
  font-weight: 600;
}

.ik-story-v3 {
  padding-top: clamp(4rem, 8vw, 7rem) !important;
  padding-bottom: clamp(4rem, 8vw, 7rem) !important;
}

.ik-story-proof {
  display: grid;
  gap: 1rem;
}

.ik-story-proof__item {
  background: rgba(255,252,244,.96);
  border: 1px solid rgba(255,255,255,.25);
  padding: clamp(1.35rem, 2vw, 1.75rem);
}

.ik-story-proof__item span {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--ik-yellow);
  margin-bottom: .75rem;
}

.ik-story-proof__item strong {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ik-navy);
  margin-bottom: .55rem;
}

.ik-story-proof__item p {
  margin: 0;
  color: var(--ik-ink-light);
  line-height: 1.6;
  font-size: .93rem;
}

.ik-need-section {
  background: var(--ik-cream) !important;
  padding-top: clamp(4rem, 8vw, 7rem) !important;
}

.ik-need-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ik-border);
  border-left: 1px solid var(--ik-border);
}

.ik-need-card {
  min-height: 280px;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border-right: 1px solid var(--ik-border);
  border-bottom: 1px solid var(--ik-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,252,244,.36);
  transition: background .25s ease, color .25s ease;
}

.ik-need-card:hover {
  background: var(--ik-navy);
  color: var(--ik-white);
}

.ik-need-card strong {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--ik-navy);
}

.ik-need-card p {
  color: var(--ik-ink-light);
  line-height: 1.6;
  margin: 1rem 0 2rem;
}

.ik-need-card:hover strong,
.ik-need-card:hover p,
.ik-need-card:hover .ik-text-link {
  color: var(--ik-white);
}

.ik-dual {
  background: var(--ik-white);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}

.ik-dual__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.ik-dual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.2vw, 1.5rem);
}

.ik-dual-card {
  min-height: 620px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ik-border);
}

.ik-dual-card--cream {
  background: var(--ik-cream);
}

.ik-dual-card--navy {
  background: var(--ik-navy);
  color: var(--ik-white);
}

.ik-dual-card__img {
  height: 320px;
  width: 100%;
  object-fit: contain;
  margin: 1.5rem auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 25px 36px rgba(7,28,107,.16));
}

.ik-dual-card--navy .ik-dual-card__img {
  mix-blend-mode: normal;
  filter: drop-shadow(0 28px 42px rgba(0,0,0,.35));
}

.ik-dual-card h3 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  color: inherit;
  margin: 0 0 1rem;
}

.ik-dual-card p:not(.ik-eyebrow) {
  color: inherit;
  opacity: .76;
  max-width: 48ch;
  line-height: 1.7;
}

.ik-dual-card__bottom {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ik-dual-card__bottom span {
  font-size: 1.2rem;
  font-weight: 800;
}

.ik-dual-card__bottom ins {
  text-decoration: none;
}

.ik-dual-card--navy .ik-text-link,
.ik-dual-card--navy .ik-eyebrow {
  color: var(--ik-yellow);
}

.ik-support-strip .ik-body {
  max-width: 56ch;
}

.ik-support-strip__points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 0 auto 2rem;
}

.ik-support-strip__points span {
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.82);
  padding: .55rem .85rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ik-footer__brand-name {
  font-family: var(--font-ui);
  letter-spacing: .02em;
}

@media (max-width: 1120px) {
  .ik-launch__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .ik-hero-v3 {
    min-height: auto;
  }

  .ik-hero-v3 .ik-hero__inner {
    grid-template-columns: 1fr !important;
  }

  .ik-hero-duo {
    min-height: 460px;
    max-width: 620px;
    margin: 0 auto;
  }

  .ik-hero-duo__item {
    min-height: 360px;
  }

  .ik-need-grid,
  .ik-dual__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .ik-header__logo-img {
    width: min(260px, 72vw) !important;
  }

  .ik-nav__inner {
    height: 58px;
  }

  .ik-hero-v3 {
    padding-top: 2.2rem !important;
  }

  .ik-hero-v3 .ik-hero__headline {
    font-size: clamp(3rem, 16vw, 4.7rem) !important;
    max-width: 8ch;
  }

  .ik-hero__microproof {
    align-items: flex-start;
  }

  .ik-hero-duo {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1rem;
  }

  .ik-hero-duo::before {
    inset: 12% -1rem 10% 16%;
  }

  .ik-hero-duo__item,
  .ik-hero-duo__item--signature,
  .ik-hero-duo__item--essential {
    min-height: 300px;
    transform: none;
  }

  .ik-hero-duo__img {
    max-height: 210px;
  }

  .ik-launch__grid,
  .ik-need-grid,
  .ik-dual__grid {
    grid-template-columns: 1fr;
  }

  .ik-launch-card__media {
    min-height: 230px;
  }

  .ik-need-card {
    min-height: 220px;
  }

  .ik-dual-card {
    min-height: 520px;
  }

  .ik-dual-card__img {
    height: 250px;
  }

  .ik-dual-card__bottom,
  .ik-launch-card__meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ─────────────────────────────────────────────
   BOTANICAL DECORATIONS
───────────────────────────────────────────── */

/* Hero — top-right corner vine */
.ik-hero-v3 {
  position: relative;
  overflow: hidden;
}
.ik-hero-v3 .ik-hero__text {
  position: relative;
  z-index: 1;
}
.ik-hero-v3 .ik-hero__text::after {
  content: '';
  position: absolute;
  top: -1.5rem;
  right: -3rem;
  width: clamp(160px, 18vw, 280px);
  height: clamp(160px, 18vw, 280px);
  background: url('assets/images/botanicals/branch-tall.svg') no-repeat center / contain;
  opacity: .18;
  pointer-events: none;
  transform: rotate(25deg);
}

/* Hero — bottom-left flourish */
.ik-hero-v3 .ik-hero__inner::before {
  content: '';
  position: absolute;
  bottom: -8%;
  left: -5%;
  width: clamp(200px, 22vw, 360px);
  height: clamp(200px, 22vw, 360px);
  background: url('assets/images/botanicals/vine-sprawl.svg') no-repeat center / contain;
  opacity: .16;
  pointer-events: none;
  transform: rotate(-15deg) scaleX(-1);
  z-index: 0;
}

/* Section divider sprig — between launch and support strip */
.ik-launch::after {
  content: '';
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: url('assets/images/botanicals/sprig-compact.svg') no-repeat center / contain;
  opacity: .24;
  transform: translateY(2.5rem);
}

/* CTA / support strip — botanical accents on sides */
.ik-cta-strip::after {
  content: '';
  position: absolute;
  bottom: -5%;
  right: -3%;
  width: clamp(200px, 22vw, 360px);
  height: clamp(200px, 22vw, 360px);
  background: url('assets/images/botanicals/floral-spread.svg') no-repeat center / contain;
  opacity: .14;
  pointer-events: none;
  transform: rotate(15deg);
  z-index: 0;
  filter: brightness(0) invert(1);
}

/* Footer — subtle vine near brand name */
.ik-footer::after {
  content: '';
  position: absolute;
  top: 1rem;
  right: clamp(1rem, 6vw, 5rem);
  width: clamp(140px, 16vw, 240px);
  height: clamp(140px, 16vw, 240px);
  background: url('assets/images/botanicals/branch-tall.svg') no-repeat center / contain;
  opacity: .15;
  pointer-events: none;
  transform: rotate(-20deg);
  filter: brightness(0) invert(1);
}

/* Contact page — decorative accent on channels section */
.ik-contact-grid {
  position: relative;
}
.ik-contact-grid::before {
  content: '';
  position: absolute;
  top: -2rem;
  right: -1rem;
  width: 140px;
  height: 140px;
  background: url('assets/images/botanicals/sprig-compact.svg') no-repeat center / contain;
  opacity: .08;
  pointer-events: none;
  transform: rotate(30deg);
}

/* Our Story page — botanical accent on sections */
.page-template-page-our-story .ik-section:nth-child(odd)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3%;
  width: clamp(120px, 14vw, 220px);
  height: clamp(120px, 14vw, 220px);
  background: url('assets/images/botanicals/vine-sprawl.svg') no-repeat center / contain;
  opacity: .06;
  pointer-events: none;
  transform: rotate(10deg);
}

/* ── PNG FLORAL ACCENTS (watercolor with brand colors) ── */

/* Hero — watercolor bloom behind text */
.ik-hero-v3 .ik-hero__text::before {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: -4rem;
  width: clamp(160px, 18vw, 280px);
  height: clamp(160px, 18vw, 280px);
  background: url('assets/images/botanicals/bloom-yellow.png') no-repeat center / contain;
  opacity: .08;
  pointer-events: none;
  transform: rotate(-15deg);
}

/* Brand story / philosophy — floral branch accent right */
.ik-story-v3 {
  position: relative;
  overflow: hidden;
}
.ik-story-v3::before {
  content: '';
  position: absolute;
  top: 5%;
  right: -2%;
  width: clamp(220px, 24vw, 420px);
  height: clamp(220px, 24vw, 420px);
  background: url('assets/images/botanicals/floral-branch-square.png') no-repeat center / contain;
  opacity: .14;
  pointer-events: none;
  transform: rotate(10deg);
  mix-blend-mode: screen;
}

/* Brand story / philosophy — bloom accent bottom-left */
.ik-story-v3 .ik-story-proof {
  position: relative;
}
.ik-story-v3 .ik-story-proof::after {
  content: '';
  position: absolute;
  bottom: -3rem;
  left: -4rem;
  width: clamp(140px, 16vw, 240px);
  height: clamp(140px, 16vw, 240px);
  background: url('assets/images/botanicals/bloom-yellow.png') no-repeat center / contain;
  opacity: .10;
  pointer-events: none;
  transform: rotate(-10deg);
  mix-blend-mode: screen;
}

/* Brand story / philosophy — leaf cluster accent */
.ik-story-v3 .ik-story__content {
  position: relative;
}
.ik-story-v3 .ik-story__content::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -2rem;
  width: clamp(100px, 12vw, 180px);
  height: clamp(100px, 12vw, 180px);
  background: url('assets/images/botanicals/leaf-cluster.svg') no-repeat center / contain;
  opacity: .08;
  pointer-events: none;
  transform: rotate(30deg);
  filter: brightness(0) invert(1);
}

/* Shop by need — leaf cluster accent */
.ik-need-section {
  position: relative;
  overflow: hidden;
}
.ik-need-section::before {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -2%;
  width: clamp(140px, 16vw, 260px);
  height: clamp(140px, 16vw, 260px);
  background: url('assets/images/botanicals/leaf-cluster.svg') no-repeat center / contain;
  opacity: .06;
  pointer-events: none;
  transform: rotate(-20deg) scaleX(-1);
}

/* Dual cards section — wreath accent */
.ik-dual {
  position: relative;
  overflow: hidden;
}
.ik-dual::after {
  content: '';
  position: absolute;
  top: 8%;
  left: -3%;
  width: clamp(160px, 18vw, 300px);
  height: clamp(160px, 18vw, 300px);
  background: url('assets/images/botanicals/wreath-open.svg') no-repeat center / contain;
  opacity: .05;
  pointer-events: none;
  transform: rotate(15deg);
}

/* Product spotlight — leaf spray accent top-right */
.ik-launch {
  position: relative;
  overflow: hidden;
}
.ik-launch::before {
  content: '';
  position: absolute;
  top: 4%;
  right: -1%;
  width: clamp(160px, 18vw, 280px);
  height: clamp(160px, 18vw, 280px);
  background: url('assets/images/botanicals/leaf-spray.svg') no-repeat center / contain;
  opacity: .07;
  pointer-events: none;
  transform: rotate(-25deg);
}

/* Product spotlight — floral sprig PNG bottom-left */
.ik-launch .ik-launch__grid {
  position: relative;
}
.ik-launch .ik-launch__grid::before {
  content: '';
  position: absolute;
  bottom: -3rem;
  left: -3%;
  width: clamp(200px, 24vw, 400px);
  height: clamp(100px, 12vw, 200px);
  background: url('assets/images/botanicals/floral-sprig.png') no-repeat center / contain;
  opacity: .10;
  pointer-events: none;
  transform: rotate(5deg);
  z-index: 1;
}

/* Product spotlight — wreath-open SVG behind heading */
.ik-launch .ik-section-heading {
  position: relative;
}
.ik-launch .ik-section-heading::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  width: clamp(180px, 20vw, 320px);
  height: clamp(180px, 20vw, 320px);
  background: url('assets/images/botanicals/wreath-open.svg') no-repeat center / contain;
  opacity: .05;
  pointer-events: none;
}

/* Trust strip — leaf cluster accents on edges */
.ik-trust {
  position: relative;
  overflow: hidden;
}
.ik-trust::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -2%;
  width: clamp(80px, 10vw, 140px);
  height: clamp(80px, 10vw, 140px);
  background: url('assets/images/botanicals/leaf-cluster.svg') no-repeat center / contain;
  opacity: .06;
  pointer-events: none;
  transform: rotate(20deg);
}
.ik-trust::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -2%;
  width: clamp(80px, 10vw, 140px);
  height: clamp(80px, 10vw, 140px);
  background: url('assets/images/botanicals/leaf-cluster.svg') no-repeat center / contain;
  opacity: .06;
  pointer-events: none;
  transform: rotate(-20deg) scaleX(-1);
}

/* Hero — floral sprig across product cards area */
.ik-hero-duo {
  position: relative;
}
.ik-hero-duo::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: -5%;
  width: clamp(200px, 24vw, 400px);
  height: clamp(100px, 12vw, 200px);
  background: url('assets/images/botanicals/floral-sprig.png') no-repeat center / contain;
  opacity: .08;
  pointer-events: none;
  transform: rotate(-8deg) scaleX(-1);
  z-index: 2;
}

/* CTA strip — floral branch PNG on left (blend on dark bg) */
.ik-cta-strip { overflow: hidden; }
.ik-cta-strip .ik-cta-strip__inner::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -4%;
  width: clamp(200px, 22vw, 360px);
  height: clamp(200px, 22vw, 360px);
  background: url('assets/images/botanicals/floral-branch-long.png') no-repeat center / contain;
  opacity: .12;
  pointer-events: none;
  transform: rotate(-30deg) scaleX(-1);
  mix-blend-mode: screen;
}
.ik-cta-strip .ik-cta-strip__inner {
  position: relative;
}

/* CTA strip — bloom accent right side */
.ik-cta-strip .ik-support-strip__points {
  position: relative;
}
.ik-cta-strip .ik-support-strip__points::after {
  content: '';
  position: absolute;
  top: -4rem;
  right: -8rem;
  width: clamp(140px, 16vw, 240px);
  height: clamp(140px, 16vw, 240px);
  background: url('assets/images/botanicals/bloom-yellow.png') no-repeat center / contain;
  opacity: .10;
  pointer-events: none;
  transform: rotate(25deg);
  mix-blend-mode: screen;
}

/* Footer — bloom accent on left side */
.ik-footer::before {
  content: '';
  position: absolute;
  bottom: 2rem;
  left: clamp(1rem, 5vw, 4rem);
  width: clamp(100px, 12vw, 180px);
  height: clamp(100px, 12vw, 180px);
  background: url('assets/images/botanicals/bloom-yellow.png') no-repeat center / contain;
  opacity: .06;
  pointer-events: none;
  transform: rotate(20deg);
  mix-blend-mode: screen;
}

/* Footer — stem simple accent bottom-right */
.ik-footer .ik-footer__bottom {
  position: relative;
}
.ik-footer .ik-footer__bottom::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: 10%;
  width: 80px;
  height: 80px;
  background: url('assets/images/botanicals/stem-simple.svg') no-repeat center / contain;
  opacity: .06;
  pointer-events: none;
  transform: rotate(45deg);
  filter: brightness(0) invert(1);
}

/* Contact page — floral branch accent */
.ik-contact-grid::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: -2rem;
  width: clamp(160px, 18vw, 280px);
  height: clamp(160px, 18vw, 280px);
  background: url('assets/images/botanicals/floral-branch-square.png') no-repeat center / contain;
  opacity: .07;
  pointer-events: none;
  transform: rotate(-20deg) scaleX(-1);
}

/* Our Story even sections — floral accent right side */
.page-template-page-our-story .ik-section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 5%;
  right: -2%;
  width: clamp(140px, 16vw, 240px);
  height: clamp(140px, 16vw, 240px);
  background: url('assets/images/botanicals/floral-branch-square.png') no-repeat center / contain;
  opacity: .06;
  pointer-events: none;
  transform: rotate(15deg);
}

/* Product page — bloom accent near trust badges */
.single-product .ik-product-trust {
  position: relative;
}
.single-product .ik-product-trust::after {
  content: '';
  position: absolute;
  top: -1rem;
  right: -2rem;
  width: 100px;
  height: 100px;
  background: url('assets/images/botanicals/bloom-yellow.png') no-repeat center / contain;
  opacity: .08;
  pointer-events: none;
  transform: rotate(15deg);
}

/* ── INLINE BOTANICAL IMAGES ── */

.ik-botanical {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Hero — floral branch top-right corner */
.ik-botanical--hero-top {
  top: 2%;
  right: -2%;
  width: clamp(200px, 22vw, 380px);
  opacity: .18;
  transform: rotate(15deg);
}

/* Hero — bloom bottom-left */
.ik-botanical--hero-bottom {
  bottom: 5%;
  left: 2%;
  width: clamp(120px, 14vw, 220px);
  opacity: .16;
  transform: rotate(-20deg);
}

/* Product spotlight — floral sprig right edge */
.ik-botanical--launch-right {
  top: 15%;
  right: -3%;
  width: clamp(220px, 26vw, 440px);
  opacity: .14;
  transform: rotate(-15deg);
}

/* Product spotlight heading — bloom accent */
.ik-botanical--heading-bloom {
  position: absolute;
  top: -2rem;
  right: -1rem;
  width: clamp(80px, 10vw, 140px);
  opacity: .18;
  transform: rotate(20deg);
}
.ik-section-heading { position: relative; }

/* Philosophy — floral branch left side */
.ik-botanical--story-left {
  bottom: 10%;
  left: -4%;
  width: clamp(240px, 28vw, 460px);
  opacity: .16;
  transform: rotate(160deg);
  mix-blend-mode: screen;
}

/* CTA strip — branches on both sides */
.ik-botanical--cta-left {
  top: 10%;
  left: -3%;
  width: clamp(200px, 24vw, 400px);
  opacity: .18;
  transform: rotate(-25deg) scaleX(-1);
  mix-blend-mode: screen;
}
.ik-botanical--cta-right {
  bottom: 5%;
  right: -2%;
  width: clamp(180px, 20vw, 340px);
  opacity: .16;
  transform: rotate(20deg);
  mix-blend-mode: screen;
}

/* Our Story hero — branch right + bloom left */
.ik-story-hero { position: relative; overflow: hidden; }
.ik-botanical--story-hero-right {
  top: 5%;
  right: -3%;
  width: clamp(220px, 24vw, 400px);
  opacity: .16;
  transform: rotate(10deg);
}
.ik-botanical--story-hero-bloom {
  bottom: 5%;
  left: 3%;
  width: clamp(100px, 12vw, 180px);
  opacity: .16;
  transform: rotate(-15deg);
}

/* Section bloom accent — reusable */
.ik-botanical--section-bloom-left {
  top: 10%;
  left: -3%;
  width: clamp(120px, 14vw, 220px);
  opacity: .14;
  transform: rotate(-10deg);
}

/* ── FLORAL DIVIDER ── */

.ik-floral-divider {
  text-align: center;
  padding: 2rem 0;
  overflow: hidden;
}
.ik-floral-divider__img {
  width: clamp(200px, 30vw, 400px);
  opacity: .30;
  display: inline-block;
}

/* Ensure positioned parent for pseudo-elements */
.ik-section { position: relative; overflow: hidden; }

/* Hide botanicals on very small screens to avoid clutter */
@media (max-width: 480px) {
  .ik-botanical { display: none; }
  .ik-floral-divider__img { width: 140px; opacity: .14; }
  .ik-hero-v3::after,
  .ik-hero-v3 .ik-hero__text::before,
  .ik-hero-v3 .ik-hero__inner::before,
  .ik-hero-duo::after,
  .ik-trust::before,
  .ik-trust::after,
  .ik-launch::before,
  .ik-launch .ik-launch__grid::before,
  .ik-launch .ik-section-heading::before,
  .ik-story-v3::before,
  .ik-story-v3 .ik-story-proof::after,
  .ik-story-v3 .ik-story__content::after,
  .ik-cta-strip::after,
  .ik-cta-strip .ik-cta-strip__inner::after,
  .ik-cta-strip .ik-support-strip__points::after,
  .ik-footer::after,
  .ik-footer::before,
  .ik-footer .ik-footer__bottom::before,
  .ik-contact-grid::before,
  .ik-contact-grid::after,
  .ik-need-section::before,
  .ik-dual::after,
  .single-product .ik-product-trust::after,
  .page-template-page-our-story .ik-section:nth-child(odd)::after,
  .page-template-page-our-story .ik-section:nth-child(even)::before {
    display: none;
  }
  .ik-launch::after {
    width: 50px;
    height: 50px;
  }
}

/* ═════════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS — Comprehensive optimizations
   ═════════════════════════════════════════════════════════════ */

/* ── Touch targets: minimum 44px for all interactive elements ── */
.ik-btn {
  min-height: 44px;
}
.ik-btn--sm {
  min-height: 44px;
  padding: .65rem 1rem;
}
.ik-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ── Launch grid: 2-col intermediate (was jumping 3→1) ── */
@media (max-width: 880px) and (min-width: 481px) {
  .ik-launch__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ── Launch cards: tighter on mobile ── */
@media (max-width: 480px) {
  .ik-launch__grid {
    gap: 0 !important;
    border: 1px solid var(--ik-border);
  }
  .ik-launch-card__media {
    min-height: 200px;
    padding: 1rem;
  }
  .ik-launch-card__image {
    max-height: 170px;
  }
  .ik-launch-card__body {
    padding: 1rem;
  }
  .ik-launch-card__title {
    font-size: 1.2rem;
  }
  .ik-launch-card__desc {
    font-size: .84rem;
    -webkit-line-clamp: 2;
  }
  .ik-launch-card__actions {
    gap: .35rem;
    margin-top: .6rem;
  }
}

/* ── Hero v3: better mobile proportions ── */
@media (max-width: 480px) {
  .ik-hero-v3 {
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
  }
  .ik-hero-v3 .ik-hero__headline {
    font-size: clamp(2.6rem, 13vw, 3.8rem) !important;
  }
  .ik-hero__sub {
    font-size: .95rem !important;
  }
  .ik-hero__ctas {
    flex-direction: column;
    gap: .6rem;
  }
  .ik-hero__ctas .ik-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── Hero duo cards: mobile polish ── */
@media (max-width: 480px) {
  .ik-hero-duo__item,
  .ik-hero-duo__item--signature,
  .ik-hero-duo__item--essential {
    min-height: 260px;
    padding: 1rem;
  }
  .ik-hero-duo__img {
    max-height: 180px;
  }
  .ik-hero-duo__item strong {
    font-size: 1.15rem;
  }
  .ik-hero-duo__tag {
    font-size: .72rem;
  }
  .ik-hero-duo::before {
    inset: 8% -0.5rem 8% 10%;
  }
}

/* ── Trust strip: stack vertically on smallest screens ── */
@media (max-width: 400px) {
  .ik-trust__inner {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .ik-trust__item {
    flex-direction: row !important;
    text-align: left !important;
    justify-content: flex-start !important;
    gap: .65rem !important;
  }
}

/* ── Harmful chemicals table → stacked cards on mobile ── */
@media (max-width: 640px) {
  .ik-harm-table thead {
    display: none;
  }
  .ik-harm-table,
  .ik-harm-table tbody,
  .ik-harm-table tr,
  .ik-harm-table td {
    display: block;
    width: 100%;
  }
  .ik-harm-table tr {
    background: var(--ik-white);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: .75rem;
  }
  .ik-harm-table tbody tr:nth-child(even) td {
    background: transparent;
  }
  .ik-harm-table td {
    padding: .3rem 0 !important;
    border-bottom: none !important;
  }
  .ik-harm-table td:first-child {
    font-size: 1rem;
    padding-bottom: .5rem !important;
  }
  .ik-harm-table td:nth-child(2) {
    font-size: .88rem;
    color: var(--ik-ink-light);
    padding-bottom: .5rem !important;
  }
  .ik-harm-table td:last-child {
    padding-top: .5rem !important;
    border-top: 1px solid rgba(0,0,0,.06) !important;
    font-size: .86rem;
  }
  .ik-harm-table td:last-child::before {
    content: 'Our alternative: ';
    font-weight: 700;
    color: var(--ik-navy);
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
}

/* ── Our Story page mobile ── */
@media (max-width: 640px) {
  .ik-story-hero {
    padding: clamp(2rem, 5vw, 3rem) 1.25rem clamp(1.5rem, 3vw, 2rem) !important;
    text-align: left;
  }
  .ik-story-hero .ik-h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .ik-etymology-card {
    padding: 1.5rem;
  }
  .ik-etymology-card__char {
    font-size: 2.5rem;
  }
}

/* ── Ranges grid: 2-col intermediate (was 1→3) ── */
@media (min-width: 481px) and (max-width: 767px) {
  .ik-ranges-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ik-range-card--coming-soon {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .ik-range-card {
    padding: 1.5rem 1.25rem;
  }
}

/* ── Values grid: 2-col first, then 3 (was 1→3) ── */
@media (min-width: 481px) and (max-width: 639px) {
  .ik-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .ik-value-item {
    padding: 1.25rem 1rem;
  }
  .ik-value-item__num {
    font-size: 2rem;
  }
}

/* ── Philosophy columns: 2-col intermediate ── */
@media (min-width: 481px) and (max-width: 639px) {
  .ik-story-philosophy__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Need grid: single col earlier with less min-height ── */
@media (max-width: 480px) {
  .ik-need-card {
    min-height: 180px;
    padding: 1.1rem;
  }
  .ik-need-card strong {
    font-size: 1.4rem;
  }
  .ik-need-card p {
    margin: .75rem 0 1.25rem;
    font-size: .88rem;
  }
}

/* ── Dual cards: better mobile proportions ── */
@media (max-width: 480px) {
  .ik-dual-card {
    min-height: 420px;
    padding: 1.25rem;
  }
  .ik-dual-card__img {
    height: 200px;
  }
  .ik-dual-card h3 {
    font-size: 1.7rem;
  }
}

/* ── Typography: better mobile scaling ── */
@media (max-width: 480px) {
  .ik-h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .ik-h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .ik-h3 {
    font-size: clamp(1.15rem, 4vw, 1.5rem);
  }
  .ik-body {
    font-size: .93rem;
    line-height: 1.7;
  }
  .ik-section {
    padding: clamp(2.5rem, 6vw, 4rem) 1rem;
  }
  .ik-section__inner {
    padding: 0;
  }
}

/* ── Section headings: tighter on mobile ── */
@media (max-width: 640px) {
  .ik-section-heading {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }
  .ik-product__header {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }
}

/* ── Footer: tighter mobile spacing ── */
@media (max-width: 480px) {
  .ik-footer {
    padding: 2.5rem 1rem 1.25rem;
  }
  .ik-footer__grid {
    gap: 1.5rem;
    margin-bottom: 1.75rem;
  }
  .ik-footer__brand-name {
    font-size: 1.5rem;
  }
  .ik-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }
}

/* ── Contact page mobile ── */
@media (max-width: 480px) {
  .ik-contact-channel__icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ── WooCommerce product grid: better mobile card proportions ── */
@media (max-width: 480px) {
  .woocommerce ul.products {
    gap: .85rem !important;
  }
  .woocommerce ul.products li.product img {
    padding: .75rem !important;
    aspect-ratio: 1 !important;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.05rem !important;
    margin-bottom: .25rem !important;
  }
  .woocommerce ul.products li.product .price {
    font-size: .85rem !important;
  }
}

/* ── Nav mobile: ensure hamburger and actions don't overlap ── */
@media (max-width: 959px) {
  .ik-nav__inner {
    justify-content: center;
    padding: 0 3.5rem;
  }
}
@media (max-width: 400px) {
  .ik-nav__actions {
    gap: .1rem;
    right: .75rem;
  }
  .ik-nav__action-btn {
    width: 36px;
    height: 36px;
  }
  .ik-nav__hamburger {
    left: .75rem;
    width: 36px;
    height: 36px;
    padding: 6px;
  }
}

/* ── Carousel mobile: prevent overflow ── */
@media (max-width: 380px) {
  .ik-hero__carousel {
    max-width: 280px !important;
    height: 440px !important;
  }
  .ik-carousel-item__media {
    width: min(250px, 78%);
  }
  .ik-carousel__img {
    max-height: 170px !important;
  }
  .ik-carousel-item__title {
    font-size: 1.2rem !important;
  }
  .ik-carousel__controls {
    max-width: 240px !important;
  }
}

/* ── Story proof cards: stack on mobile ── */
@media (max-width: 480px) {
  .ik-story-proof__item {
    padding: 1rem;
  }
  .ik-story-proof__item strong {
    font-size: 1.25rem;
  }
}

/* ── Product spotlight: better stacking on mobile ── */
@media (max-width: 480px) {
  .ik-product__img-side {
    min-height: 240px;
    padding: 1.5rem;
  }
  .ik-product__img-side img {
    max-height: 280px !important;
  }
  .ik-product__details {
    padding: 1.5rem 1.25rem;
  }
  .ik-product__name {
    font-size: 1.5rem !important;
  }
  .ik-product__price {
    font-size: 1.8rem !important;
  }
  .ik-product__img-side::after {
    top: .75rem;
    left: .75rem;
    font-size: .72rem;
    padding: .35rem .6rem;
  }
}

/* ── CTA strip mobile ── */
@media (max-width: 480px) {
  .ik-cta-strip {
    padding: clamp(3rem, 7vw, 5rem) 1rem !important;
  }
  .ik-cta-strip .ik-h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem) !important;
  }
  .ik-support-strip__points {
    gap: .5rem;
  }
  .ik-support-strip__points span {
    padding: .4rem .65rem;
    font-size: .72rem;
  }
  .ik-email-form input[type="email"] {
    padding: .9rem 1rem !important;
  }
}

/* ── Our Story CTA section mobile ── */
@media (max-width: 480px) {
  .ik-section--forest {
    padding: 3rem 1rem !important;
  }
}

/* ── Mobile drawer: fuller width on small screens ── */
@media (max-width: 380px) {
  .ik-mobile-menu {
    width: 100vw;
  }
}

/* ── Smooth horizontal scroll hint for overflow containers ── */
.ik-harm-table-wrap,
.ik-shop-filters__inner {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ik-harm-table-wrap::-webkit-scrollbar {
  display: none;
}

/* ── Prevent horizontal overflow globally ── */
html, body {
  overflow-x: hidden;
}
.ik-hero, .ik-hero-v3, .ik-trust, .ik-launch,
.ik-story, .ik-cta-strip, .ik-dual, .ik-footer,
.ik-section {
  overflow-x: hidden;
}

/* ═════════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE — Full UX overhaul
   ═════════════════════════════════════════════════════════════ */

/* ── Container: constrain width + add horizontal padding ── */
.single-product .ast-woocommerce-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ── Product layout: proper 2-column grid ── */
.single-product div.product {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3.5rem;
  align-items: start;
  padding-top: 1.5rem;
}
.single-product .woocommerce-product-gallery {
  float: none !important;
  width: 100% !important;
  position: sticky;
  top: 2rem;
}
.single-product .summary.entry-summary {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding-top: .5rem;
}
.single-product .woocommerce-tabs,
.single-product .related.products {
  grid-column: 1 / -1;
}

/* ── Breadcrumb ── */
.single-product .woocommerce-breadcrumb {
  grid-column: 1 / -1;
  font-family: var(--font-ui) !important;
  font-size: .82rem !important;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ik-ink-light) !important;
  padding: .75rem 0;
  margin: 0 !important;
  border-bottom: 1px solid var(--ik-hairline);
}
.single-product .woocommerce-breadcrumb a {
  color: var(--ik-navy) !important;
  text-decoration: none;
  transition: color .2s ease;
}
.single-product .woocommerce-breadcrumb a:hover {
  color: var(--ik-sage) !important;
}

/* ── Sale badge ── */
.single-product span.onsale {
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  z-index: 2;
  background: var(--ik-navy) !important;
  color: var(--ik-white) !important;
  font-family: var(--font-ui) !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: .4rem .75rem !important;
  min-height: 0 !important;
  min-width: 0 !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}

/* ── Product gallery image — softer frame ── */
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  border-radius: var(--radius-md);
  border: 1px solid var(--ik-hairline);
  background: var(--ik-white);
}

/* ── Category label above title ── */
.single-product .summary .posted_in {
  display: block;
  margin-bottom: .5rem;
}
.single-product .summary .posted_in a,
.single-product .product_meta .posted_in a {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ik-sage) !important;
  text-decoration: none;
}

/* ── Product title ── */
.single-product .summary .product_title {
  font-family: var(--font-brand) !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  color: var(--ik-navy) !important;
  margin: 0 0 .75rem !important;
  letter-spacing: -.01em;
}

/* ── Price ── */
.single-product .summary .price {
  font-family: var(--font-ui) !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: var(--ik-ink) !important;
  margin-bottom: 1.25rem !important;
  display: block;
}
.single-product .summary .price del {
  font-weight: 400 !important;
  color: var(--ik-ink-light) !important;
  opacity: .6;
  margin-right: .5rem;
  font-size: 1.1rem !important;
}
.single-product .summary .price ins {
  text-decoration: none !important;
}

/* ── Short description ── */
.single-product .summary .woocommerce-product-details__short-description,
.single-product .summary > p:not(.price) {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ik-ink);
  margin-bottom: 1.5rem;
  max-width: 520px;
}

/* ── Quantity + Add to Cart row ── */
.single-product .summary form.cart {
  margin-top: .5rem !important;
  margin-bottom: 1.5rem !important;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ik-hairline);
}
.single-product .summary .quantity {
  border: 1px solid var(--ik-hairline);
  border-radius: var(--radius-pill);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}
.single-product .summary .quantity input[type="number"] {
  border: none !important;
  width: 3rem;
  text-align: center;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .95rem;
  -moz-appearance: textfield;
  appearance: textfield;
}
.single-product .summary .quantity input::-webkit-outer-spin-button,
.single-product .summary .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-product .summary .quantity button,
.single-product .summary .quantity .minus,
.single-product .summary .quantity .plus {
  background: transparent !important;
  border: none !important;
  font-size: 1.1rem;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  color: var(--ik-ink);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Trust badges — visual separation ── */
.single-product .ik-product-trust {
  margin-top: 1.25rem !important;
  padding: 1rem 0;
  border-top: 1px solid var(--ik-hairline);
  border-bottom: 1px solid var(--ik-hairline);
}

/* ── Product meta (category, tags, brand) ── */
.single-product .product_meta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  font-family: var(--font-ui);
  font-size: .85rem;
  line-height: 1.8;
  color: var(--ik-ink-light);
  display: flex;
  flex-wrap: wrap;
  gap: .25rem 1.5rem;
}
.single-product .product_meta > span {
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
}
.single-product .product_meta a {
  color: var(--ik-navy);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}
.single-product .product_meta a:hover {
  color: var(--ik-sage);
}

/* ── Tabs — brand-consistent styling ── */
.single-product .woocommerce-tabs {
  margin-top: 1rem;
  padding-top: 0;
  border-top: 1px solid var(--ik-hairline);
}
.single-product .woocommerce-tabs ul.wc-tabs {
  padding: 0 !important;
  margin: 0 0 2rem !important;
  list-style: none;
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--ik-hairline) !important;
}
.single-product .woocommerce-tabs ul.wc-tabs::before,
.single-product .woocommerce-tabs ul.wc-tabs::after {
  display: none !important;
}
.single-product .woocommerce-tabs ul.wc-tabs li {
  border: none !important;
  background: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.single-product .woocommerce-tabs ul.wc-tabs li a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: var(--font-ui) !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--ik-ink-light) !important;
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .2s ease, border-color .2s ease;
}
.single-product .woocommerce-tabs ul.wc-tabs li a:hover {
  color: var(--ik-navy) !important;
}
.single-product .woocommerce-tabs ul.wc-tabs li.active a {
  color: var(--ik-navy) !important;
  border-bottom-color: var(--ik-navy);
}

/* ── Tab content panel ── */
.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
  padding: 0 !important;
  margin: 0 0 2rem !important;
  max-width: 720px;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-family: var(--font-brand) !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  color: var(--ik-navy) !important;
  margin-bottom: 1rem !important;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel p,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel li {
  font-family: var(--font-ui);
  font-size: .95rem;
  line-height: 1.8;
  color: var(--ik-ink);
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel table th,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel table td {
  padding: .65rem .85rem;
  text-align: left;
  font-size: .9rem;
  border-bottom: 1px solid var(--ik-hairline);
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel table th {
  font-weight: 700;
  color: var(--ik-navy);
  background: rgba(0,0,0,.02);
}

/* ── Related Products ── */
.single-product .related.products {
  margin-top: 1rem;
  padding: 3rem 0;
  border-top: 1px solid var(--ik-hairline);
}
.single-product .related.products > h2 {
  font-family: var(--font-brand) !important;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem) !important;
  font-weight: 600 !important;
  color: var(--ik-navy) !important;
  margin-bottom: 2rem !important;
  letter-spacing: -.01em;
}
.single-product .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
}
.single-product .related.products li.product {
  background: var(--ik-white) !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  border-radius: 10px !important;
  padding: 1rem !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: box-shadow .3s ease, transform .3s ease;
}
.single-product .related.products li.product:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.single-product .related.products li.product img {
  border-radius: 8px !important;
  margin-bottom: .85rem !important;
}
.single-product .related.products li.product .button,
.single-product .related.products li.product a.button {
  margin-top: .5rem !important;
}

/* ── Mobile: single product responsive ── */
@media (max-width: 768px) {
  .single-product div.product {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding-top: 1rem;
  }
  .single-product .woocommerce-product-gallery {
    position: relative !important;
    top: auto !important;
  }
  .single-product .woocommerce-tabs ul.wc-tabs li a {
    padding: .85rem 1rem;
    font-size: .78rem !important;
  }
  .single-product .related.products ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}
@media (max-width: 480px) {
  .single-product .related.products ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* ── Landscape phone: tighten hero height ── */
@media (max-height: 500px) and (orientation: landscape) {
  .ik-hero-v3 {
    min-height: auto !important;
    padding: 1.5rem var(--gutter) !important;
  }
  .ik-hero-duo__item,
  .ik-hero-duo__item--signature,
  .ik-hero-duo__item--essential {
    min-height: 200px;
  }
  .ik-hero-duo__img {
    max-height: 140px;
  }
}
