/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

:root {
  --iza-bg: #080707;
  --iza-surface: #121010;
  --iza-surface-soft: #1d1a18;
  --iza-text: #f7f3ef;
  --iza-muted: #bdb5ac;
  --iza-copper: #b87333;
  --iza-copper-soft: rgba(184, 115, 51, 0.16);
  --iza-accent: #fff1e5;
  --iza-border: rgba(255, 255, 255, 0.08);
  --iza-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --iza-radius: 28px;
  --iza-transition: 180ms ease;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* ── Readability: body paragraph text at regular weight (was 300/light).
   Targets <p> directly so inherited 300 from wrappers is overridden.
   Display headings (h1–h6) are unaffected. ── */
p { font-weight: 400; }

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  background-color: var(--iza-bg) !important;
  color: var(--iza-text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.78;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-top: 0;
}

h1 {
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

p, li, dd, dt {
  color: var(--iza-muted);
  font-size: 1rem;
}

a {
  color: var(--iza-copper);
  text-decoration: none;
  transition: color var(--iza-transition), opacity var(--iza-transition);
}

a:hover, a:focus {
  color: #ffd6a8;
  opacity: 0.92;
}

button, .button, input[type="submit"], .ux-button {
  border-radius: 999px;
  transition: transform var(--iza-transition), box-shadow var(--iza-transition), background-color var(--iza-transition);
}

.button, .ux-button {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.iza-Btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #b87333 0%, #ffca97 100%);
  color: #111111;
  border: none;
  box-shadow: 0 24px 64px rgba(184, 115, 51, 0.2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all var(--iza-transition);
}

.iza-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #b87333 0%, #ffca97 100%);
  color: #111111;
  border: none;
  box-shadow: 0 24px 64px rgba(184, 115, 51, 0.2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all var(--iza-transition);
}

.iza-btn:hover, .iza-btn:focus {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #d18b52 0%, #ffd4aa 100%);
}

.iza-section {
  padding: 100px 0;
}

.iza-section--compact {
  padding: 70px 0;
}

.iza-section--dark {
  background: linear-gradient(180deg, rgba(8, 7, 7, 0.98) 0%, rgba(19, 17, 16, 1) 100%);
}

.iza-section--surface {
  background-color: var(--iza-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.iza-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--iza-border);
  border-radius: var(--iza-radius);
  box-shadow: var(--iza-shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.iza-card__inner {
  padding: 40px;
}

.iza-hero {
  min-height: 84vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 7, 7, 0.98) 0%, rgba(19, 17, 16, 1) 100%);
}

.iza-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(184, 115, 51, 0.12), transparent 28%), radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.06), transparent 16%);
  opacity: 0.85;
  pointer-events: none;
}

.iza-hero__inner {
  position: relative;
  z-index: 1;
}

.iza-hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  max-width: 11ch;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
  color: var(--iza-text);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.iza-hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.95;
  max-width: 640px;
  color: var(--iza-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.iza-hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.iza-hero__actions .button {
  min-width: 220px;
}

.iza-hero__visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 420px;
  background: radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.04), transparent 24%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 45%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.iza-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 10%),
                    radial-gradient(circle at 70% 30%, rgba(184, 115, 51, 0.12), transparent 14%),
                    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.04), transparent 18%);
  opacity: 0.75;
  pointer-events: none;
}

.iza-hero__visual-inner {
  position: relative;
  z-index: 1;
  height: 100%;
}

.iza-section--surface {
  background: linear-gradient(180deg, rgba(18, 17, 16, 0.96), rgba(23, 21, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.iza-top-structure {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.iza-top-structure__intro {
  max-width: 680px;
}

.iza-top-structure__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  border-radius: 28px;
  padding: 2rem;
}

.iza-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--iza-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
}

.iza-divider {
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--iza-copper), transparent);
  margin: 1.5rem 0 2rem;
  border-radius: 999px;
}

.iza-highlight {
  color: var(--iza-copper);
}

.iza-lead {
  max-width: 700px;
  margin-bottom: 2rem;
  color: var(--iza-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.iza-text-strong {
  color: var(--iza-text);
}

.iza-meta {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--iza-muted);
  font-size: 0.82rem;
}

.iza-list--spaced {
  margin: 0;
  padding: 0;
  list-style: none;
}

.iza-list--spaced li {
  margin-bottom: 1rem;
}

.iza-bg-surface {
  background-color: var(--iza-surface);
}

/* ================================================
   ORIGIN CARDS — Duality Section
   ================================================ */

.iza-origin-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--iza-radius);
  overflow: hidden;
  transition: transform var(--iza-transition), box-shadow var(--iza-transition);
  height: 100%;
}

.iza-origin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.iza-origin-card__visual {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.iza-origin-card--nyanza .iza-origin-card__visual {
  background-image: url('/wp-content/uploads/2026/05/branding/Nyanza Estate Product.png');
  background-color: rgba(20, 18, 16, 0.9);
}

.iza-origin-card--highland .iza-origin-card__visual {
  background-image: url('/wp-content/uploads/2026/05/branding/Highland Reserve Product.png');
  background-color: rgba(20, 18, 16, 0.9);
}

.iza-origin-card__content {
  padding: 2rem 2rem 2.5rem;
}

.iza-origin-card__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--iza-text);
  margin-bottom: 0.25rem;
}

.iza-origin-card__description {
  color: var(--iza-muted);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.iza-origin-card__tasting {
  color: var(--iza-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.iza-origin-card__specs {
  color: var(--iza-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.iza-origin-card__link {
  color: var(--iza-copper);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--iza-transition);
}

.iza-origin-card__link:hover {
  color: #ffd6a8;
}

.iza-origin-accent {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--iza-copper), transparent);
  margin-bottom: 1.25rem;
  border-radius: 999px;
}

/* ================================================
   PRODUCT CARDS — Collections Section
   ================================================ */

.iza-collections__title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--iza-text);
}

.iza-collections__divider {
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--iza-copper), transparent);
  margin: 0 auto 3.5rem;
  border-radius: 999px;
}

.iza-product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--iza-radius);
  overflow: hidden;
  transition: transform var(--iza-transition), box-shadow var(--iza-transition);
  height: 100%;
}

.iza-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(184, 115, 51, 0.12);
}

.iza-product-card__visual {
  width: 100%;
  height: 380px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-color: rgba(14, 12, 11, 0.95);
}

.iza-product-visual-placeholder--nyanza {
  background-image: url('/wp-content/uploads/2026/05/branding/Nyanza Estate Product.png');
}

.iza-product-visual-placeholder--highland {
  background-image: url('/wp-content/uploads/2026/05/branding/Highland Reserve Product.png');
}

.iza-product-card__content {
  padding: 2rem 2rem 2.5rem;
}

.iza-product-card__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--iza-text);
  margin-bottom: 0.25rem;
}

.iza-product-card__highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.iza-product-card__highlights li {
  color: var(--iza-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.iza-product-card__highlights li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--iza-copper);
  font-size: 0.75rem;
}

.iza-product-card__tasting {
  color: var(--iza-copper);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.iza-product-card__specs {
  color: var(--iza-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.iza-product-accent {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--iza-copper), transparent);
  margin-bottom: 1.25rem;
  border-radius: 999px;
}

.iza-btn--sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.82rem;
}

/* ================================================
   HERO VISUAL — product image display
   ================================================ */

.iza-visual-placeholder {
  /* background-image placeholder removed — hero uses product image inline now */
  /* width: 100%;
  height: 100%;
  min-height: 420px;
  background-image: url('/wp-content/uploads/2026/05/branding/IZA_Ritual_Trademark_Inverted.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85; */
}

/* ================================================
   SENSORY SECTION
   ================================================ */

.iza-sensory__title {
  color: var(--iza-text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.iza-sensory__lead {
  color: var(--iza-muted);
  font-size: 1.1rem;
  line-height: 1.95;
  text-align: center;
  margin-bottom: 1rem;
}

.iza-sensory__accent {
  text-align: center;
  color: var(--iza-muted);
  font-size: 1rem;
}

.iza-bg-surface-soft {
  background-color: var(--iza-surface-soft);
}

.iza-border-top {
  border-top: 1px solid var(--iza-border);
}

.iza-shadow-soft {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

@media only screen and (max-width: 48em) {
  .iza-section {
    padding: 60px 0;
  }

  .iza-section--compact {
    padding: 40px 0;
  }

  .iza-hero {
    min-height: 60vh;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .iza-hero__inner {
    text-align: center;
  }

  .iza-hero__title {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
    max-width: 100%;
  }

  .iza-hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .iza-hero__actions {
    justify-content: center;
  }

  .iza-hero__visual {
    min-height: 320px;
    margin-top: 2rem;
  }

  .iza-hero__visual-inner {
    min-height: 100%;
  }

  .iza-card__inner {
    padding: 24px;
  }

  .iza-lead {
    font-size: 0.98rem;
    line-height: 1.8;
  }
}

/* ===== HERO SECTION ===== */
.iza-hero--dark {
  background: linear-gradient(180deg, rgba(8, 7, 7, 0.98) 0%, rgba(19, 17, 16, 1) 100%);
  position: relative;
  overflow: hidden;
}

/* ===== DUALITY SECTION: ORIGINS ===== */
.iza-duality {
  background: linear-gradient(180deg, rgba(8, 7, 7, 0.98) 0%, rgba(13, 11, 10, 0.96) 50%, rgba(8, 7, 7, 0.98) 100%);
  position: relative;
  gap: 3rem;
  padding-top: 100px;
  padding-bottom: 80px;
}

.iza-origin-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all var(--iza-transition);
}

.iza-origin-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.iza-origin-card__visual {
  width: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -20px 40px rgba(0, 0, 0, 0.3);
}

.iza-origin-card__content {
  padding: 2.5rem;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0.1));
}

.iza-origin-accent {
  width: 48px;
  height: 2px;
  margin-bottom: 1.5rem;
  border-radius: 999px;
}

.iza-origin-accent--nyanza {
  background: #4a9fd8;
}

.iza-origin-accent--highland {
  background: #6b9e5e;
}

.iza-origin-card__title {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  font-weight: 400;
}

.iza-origin-card__description {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--iza-muted);
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.iza-origin-card__tasting {
  font-size: 0.9rem;
  color: var(--iza-muted);
  margin-bottom: 1rem;
  font-style: italic;
}

.iza-origin-card__specs {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--iza-muted);
  margin-bottom: 1.5rem;
}

.iza-origin-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--iza-copper);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  transition: all var(--iza-transition);
}

.iza-origin-card__link:hover {
  color: #ffd6a8;
  transform: translateX(4px);
}

/* ===== SENSORY SECTION ===== */
.iza-sensory {
  background: linear-gradient(180deg, rgba(12, 10, 10, 0.8), rgba(10, 8, 8, 0.85));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 100px 0;
}

.iza-sensory__title {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 720px;
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 400;
}

.iza-sensory__lead {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--iza-muted);
  max-width: 680px;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.iza-sensory__accent {
  font-size: 1rem;
  color: var(--iza-muted);
}

/* ===== COLLECTIONS / PRODUCT SHOWCASE ===== */
.iza-collections {
  background: linear-gradient(180deg, rgba(8, 7, 7, 0.98), rgba(12, 10, 10, 0.95));
  position: relative;
  padding-top: 120px;
  padding-bottom: 100px;
}

.iza-collections__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.iza-collections__divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--iza-copper), transparent);
  margin: 0 auto 4rem;
  border-radius: 999px;
}

.iza-text-center {
  text-align: center;
}

.iza-product-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all var(--iza-transition);
  height: 100%;
}

.iza-product-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.iza-product-card__visual {
  width: 100%;
  min-height: 420px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 60%), radial-gradient(circle at 40% 20%, rgba(184, 115, 51, 0.1), transparent 25%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -20px 40px rgba(0, 0, 0, 0.3);
}

.iza-product-card__content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0.1));
}

.iza-product-accent {
  width: 48px;
  height: 3px;
  margin-bottom: 1.5rem;
  border-radius: 999px;
}

.iza-product-accent--nyanza {
  background: #4a9fd8;
}

.iza-product-accent--highland {
  background: #6b9e5e;
}

.iza-product-card__title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  font-weight: 400;
}

.iza-product-card__highlights {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.iza-product-card__highlights li {
  font-size: 0.95rem;
  color: var(--iza-muted);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 400;
}

.iza-product-card__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 4px;
  height: 4px;
  background: var(--iza-copper);
  border-radius: 50%;
}

.iza-product-card__tasting {
  font-size: 0.9rem;
  color: var(--iza-muted);
  margin: 1.5rem 0 1rem;
  font-style: italic;
}

.iza-product-card__specs {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--iza-muted);
  margin-bottom: 2rem;
  margin-top: auto;
}

.iza-btn--sm {
  padding: 0.85rem 1.8rem;
  font-size: 0.9rem;
  min-width: auto;
}

/* ===== VISUAL PLACEHOLDERS ===== */
.iza-visual-placeholder {
  background-image: url('/wp-content/uploads/2026/05/branding/IZA_Ritual_Trademark_Inverted.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.iza-origin-visual-placeholder {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 70%), radial-gradient(circle at 30% 10%, rgba(184, 115, 51, 0.08), transparent 20%);
}

.iza-origin-card--nyanza .iza-origin-visual-placeholder {
  background-image: url('/wp-content/uploads/2026/05/branding/Nyanza Estate Product.png');
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 8px 24px rgba(74, 159, 216, 0.15));
}

.iza-origin-card--highland .iza-origin-visual-placeholder {
  background-image: url('/wp-content/uploads/2026/05/branding/Highland Reserve Product.png');
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 8px 24px rgba(107, 158, 94, 0.15));
}

.iza-product-visual-placeholder--nyanza {
  background-image: url('/wp-content/uploads/2026/05/branding/Nyanza Estate Product.png');
  background-size: 65%;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 12px 32px rgba(74, 159, 216, 0.18));
}

.iza-product-visual-placeholder--highland {
  background-image: url('/wp-content/uploads/2026/05/branding/Highland Reserve Product.png');
  background-size: 65%;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 12px 32px rgba(107, 158, 94, 0.18));
}

/* ===== MOBILE RESPONSIVE ===== */
@media only screen and (max-width: 48em) {
  .iza-duality {
    gap: 2rem;
    padding: 60px 0;
  }

  .iza-origin-card {
    margin-bottom: 1rem;
  }

  .iza-origin-card__visual {
    min-height: 300px;
  }

  .iza-origin-card__content {
    padding: 1.8rem;
  }

  .iza-origin-card__title {
    font-size: 1.5rem;
  }

  .iza-origin-card__description {
    font-size: 0.95rem;
  }

  .iza-sensory {
    padding: 60px 0;
  }

  .iza-sensory__title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .iza-sensory__lead {
    font-size: 1rem;
  }

  .iza-collections {
    padding: 60px 0;
  }
}

/* ================================================
   IZA RITUAL — FOOTER STYLES
   ================================================ */

#iza-footer {
  background-color: #0a0908;
  border-top: 1px solid #2a2420;
  width: 100%;
}

.iza-footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 0;
}

/* 4-column grid */
.iza-footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr !important;
  gap: 48px;
  padding-bottom: 48px;
}

/* Column label */
.iza-footer-col-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8722a;
  margin-bottom: 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

/* Brand column */
.iza-footer-brand { display: flex; flex-direction: column; }

.iza-footer-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 21px;
  font-weight: 300;
  color: #b8722a;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1;
}

.iza-footer-brand-sub {
  font-size: 13px;
  color: #9a8a7a;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0 0 0 0;
  font-family: 'DM Sans', sans-serif;
}

.iza-footer-brand-rule {
  border: none;
  border-top: 1px solid #2a2420;
  margin: 14px 0;
}

/* Social icons — explicit sizing to prevent blowout */
.iza-social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 0;
}

.iza-social-icons a {
  color: #b8722a;
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
  line-height: 1;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.iza-social-icons a:hover { color: #d4a96a; }

.iza-social-icons svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}

/* Nav / support links */
.iza-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iza-footer-links li { margin-bottom: 11px; }

.iza-footer-links a {
  color: #9a8a7a;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.03em;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  transition: color 0.25s ease;
}

.iza-footer-links a:hover { color: #b8722a; }

/* Newsletter */
.iza-newsletter-wrap { width: 100%; }

.iza-newsletter-sub {
  font-size: 13px;
  color: #9a8a7a;
  margin: 0 0 14px;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.iza-newsletter-input-row {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
}

.iza-email-input {
  flex: 1;
  min-width: 0;
  background: #1a1714 !important;
  border: 1px solid #2a2420 !important;
  border-right: none !important;
  color: #c8a882 !important;
  padding: 10px 12px !important;
  font-size: 12px !important;
  font-family: 'DM Sans', sans-serif !important;
  outline: none !important;
  transition: border-color 0.25s ease !important;
  border-radius: 2px 0 0 2px !important;
  -webkit-appearance: none;
  box-shadow: none !important;
}

.iza-email-input:focus { border-color: #b8722a !important; }
.iza-email-input::placeholder { color: #7a7070 !important; }

.iza-subscribe-btn {
  background: #b8722a;
  color: #0e0c0b;
  border: none;
  padding: 10px 14px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
  border-radius: 0 2px 2px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.iza-subscribe-btn:hover { background: #d4a96a; }

.iza-newsletter-note {
  font-size: 12px;
  color: #9a8a7a;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
}

/* Divider */
.iza-footer-divider {
  border: none;
  border-top: 1px solid #2a2420;
  margin: 0;
}

/* Bottom bar */
.iza-footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 28px;
  gap: 16px;
}

.iza-footer-legal,
.iza-footer-location {
  font-size: 12px;
  color: #9a8a7a;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.04em;
}

.iza-footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  color: #b8722a;
  font-style: italic;
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 900px) {
  .iza-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .iza-footer-wrap { padding: 40px 24px 0; }
  .iza-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .iza-footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding-bottom: 24px;
  }
}


/* ================================================
   IZA RITUAL — LEGAL PAGES
   ================================================ */

.iza-legal-main {
  background-color: #0a0908 !important;
  min-height: 80vh;
}

.iza-legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  background-color: #0a0908;
}

.iza-legal-hero { margin-bottom: 32px; }

.iza-legal-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(36px, 5vw, 56px) !important;
  color: #b8722a !important;
  letter-spacing: 0.03em !important;
  margin: 0 0 14px !important;
  line-height: 1.1 !important;
  font-weight: 400 !important;
}

.iza-legal-subtitle {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  color: #9a8a7a !important;
  letter-spacing: 0.04em !important;
  margin: 0 0 8px !important;
  font-style: italic !important;
}

.iza-legal-date {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  color: #9a8a7a !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.iza-legal-rule {
  border: none !important;
  border-top: 1px solid #2a2420 !important;
  margin: 28px 0 40px !important;
}

/* Jump nav box */
.iza-legal-nav {
  background: #141210 !important;
  border: 1px solid #2a2420 !important;
  border-radius: 3px !important;
  padding: 20px 24px !important;
  margin-bottom: 48px !important;
}

.iza-legal-nav-label {
  display: block !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #b8722a !important;
  margin-bottom: 14px !important;
  font-weight: 500 !important;
}

.iza-legal-nav ul { list-style: none !important; padding: 0 !important; margin: 0 !important; columns: 2 !important; }
.iza-legal-nav li { margin-bottom: 8px !important; break-inside: avoid !important; }
.iza-legal-nav a { font-family: 'DM Sans', sans-serif !important; font-size: 13px !important; color: #8a7a6a !important; text-decoration: none !important; transition: color 0.2s !important; }
.iza-legal-nav a:hover { color: #b8722a !important; }

/* Sections */
.iza-legal-section { margin-bottom: 44px !important; padding-top: 12px !important; }

.iza-legal-section-title,
.iza-legal-content h2 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #b8722a !important;
  margin: 0 0 18px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #2a2420 !important;
  font-weight: 500 !important;
}

.iza-legal-content h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 20px !important;
  color: #c8a882 !important;
  margin: 24px 0 12px !important;
  font-weight: 400 !important;
}

.iza-legal-content p,
.iza-legal-page p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: #8a7a6a !important;
  line-height: 1.9 !important;
  margin-bottom: 18px !important;
}

.iza-legal-content ul,
.iza-legal-content ol { padding-left: 22px !important; margin-bottom: 20px !important; }

.iza-legal-content li {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: #8a7a6a !important;
  line-height: 1.85 !important;
  margin-bottom: 8px !important;
}
.iza-legal-content li::marker { color: #b8722a !important; }

/* Tables */
.iza-legal-content table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 24px 0 32px !important;
  font-family: 'DM Sans', sans-serif !important;
}
.iza-legal-content table th {
  text-align: left !important;
  color: #b8722a !important;
  font-size: 10px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  padding: 12px 16px !important;
  border-bottom: 1px solid #2a2420 !important;
  font-weight: 500 !important;
  background: #141210 !important;
}
.iza-legal-content table td {
  padding: 12px 16px !important;
  color: #8a7a6a !important;
  border-bottom: 1px solid #1a1816 !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}
.iza-legal-content table tr:last-child td { border-bottom: none !important; }

/* Contact block */
.iza-legal-contact {
  background: #141210 !important;
  border: 1px solid #2a2420 !important;
  border-left: 3px solid #b8722a !important;
  padding: 22px 26px !important;
  margin-top: 16px !important;
  border-radius: 0 3px 3px 0 !important;
}
.iza-legal-contact p { margin-bottom: 8px !important; font-size: 13px !important; }
.iza-legal-contact a { color: #b8722a !important; text-decoration: none !important; }
.iza-legal-contact a:hover { color: #d4a96a !important; }

/* Links */
.iza-legal-content a { color: #b8722a !important; text-decoration: none !important; border-bottom: 1px solid rgba(184,114,42,0.3) !important; transition: color 0.2s, border-color 0.2s !important; }
.iza-legal-content a:hover { color: #d4a96a !important; border-bottom-color: rgba(212,169,106,0.5) !important; }

/* Footer anchor */
.iza-legal-footer-anchor {
  text-align: center !important;
  padding: 40px 0 0 !important;
  border-top: 1px solid #2a2420 !important;
  margin-top: 48px !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 20px !important;
  font-style: italic !important;
  color: #b8722a !important;
  letter-spacing: 0.08em !important;
}

@media (max-width: 768px) {
  .iza-legal-page { padding: 40px 24px 60px !important; }
  .iza-legal-nav ul { columns: 1 !important; }
  .iza-legal-title { font-size: 36px !important; }
  .iza-legal-content table { display: block !important; overflow-x: auto !important; }
}
@media (max-width: 480px) {
  .iza-legal-page { padding: 30px 16px 48px !important; }
}

/* ================================================
   IZA RITUAL — SHIPPING NOTICE BAR (cart progress)
   ================================================ */
.iza-shipping-notice {
  background: #0a0908;
  border: 1px solid #2a2420;
  border-left: 3px solid #b8722a;
  color: #8a7a6a;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  padding: 14px 20px;
  margin-bottom: 20px;
  border-radius: 0 3px 3px 0;
  letter-spacing: 0.03em;
}
.iza-shipping-notice strong {
  color: #b8722a;
  font-weight: 600;
}
.iza-shipping-progress {
  margin-top: 10px;
  height: 4px;
  background: #2a2420;
  border-radius: 2px;
  overflow: hidden;
}
.iza-shipping-progress span {
  display: block;
  height: 100%;
  background: #b8722a;
  transition: width 240ms ease;
}
.iza-shipping-unlocked {
  border-left-color: #4a8a4a;
  background: #0e140e;
}
.iza-shipping-unlocked strong { color: #6aaa6a; }

/* Checkout shipping ETA */
.iza-ship-eta {
  font-size: 12px;
  color: #6a5a4a;
  font-family: 'Jost', sans-serif;
  font-style: italic;
}

/* ================================================
   IZA RITUAL — SUBSCRIPTION PANEL (single product)
   ================================================ */
.iza-subpanel {
  max-width: 1100px;
  margin: 56px auto;
  padding: 44px 28px;
  background: #0a0908;
  border: 1px solid rgba(184,114,42,.22);
  border-radius: 6px;
}
.iza-subpanel__head { text-align: center; margin-bottom: 34px; }
.iza-subpanel__eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: #b8722a; margin-bottom: 12px;
}
.iza-subpanel__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 2rem; line-height: 1.1;
  color: #f0ebe4; margin: 0 0 10px;
}
.iza-subpanel__lede {
  font-family: 'Jost', sans-serif; font-size: 14px;
  color: #8a7a6a; max-width: 520px; margin: 0 auto;
}
.iza-subpanel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.iza-subcard {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 28px 18px 22px;
  background: #131110;
  border: 1px solid rgba(240,235,228,.08);
  border-radius: 4px;
  transition: border-color .2s ease, transform .2s ease;
}
.iza-subcard:hover { border-color: rgba(184,114,42,.45); transform: translateY(-3px); }
.iza-subcard--featured { border-color: #b8722a; }
.iza-subcard__flag {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: #b8722a; color: #0e0c0b;
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px; white-space: nowrap;
}
.iza-subcard__cadence {
  font-family: 'Jost', sans-serif; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  color: #e8e0d5; margin-bottom: 10px;
}
.iza-subcard__price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9rem; color: #b8722a; margin-bottom: 4px;
}
.iza-subcard__price small {
  font-family: 'Jost', sans-serif; font-size: 11px;
  letter-spacing: .1em; color: #6a5a4a; text-transform: uppercase;
}
.iza-subcard__price del { color: #6a5a4a; font-size: 1.1rem; opacity: .7; }
.iza-subcard__btn {
  display: block; width: 100%;
  margin: 18px 0 10px;
  padding: 12px 16px;
  background: #b8722a; color: #0e0c0b !important;
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  text-align: center; border-radius: 3px;
  transition: background .2s ease;
}
.iza-subcard__btn:hover { background: #d4924a; }
.iza-subcard__link {
  font-family: 'Jost', sans-serif; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  color: #6a5a4a; text-decoration: none;
}
.iza-subcard__link:hover { color: #b8722a; }
@media (max-width: 760px) {
  .iza-subpanel__grid { grid-template-columns: 1fr; }
}

/* ================================================
   IZA RITUAL — CURATED SHOP ARCHIVE
   ================================================ */
.iza-shop {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}
.iza-shop__head { text-align: center; margin-bottom: 48px; }
.iza-shop__eyebrow {
  display: inline-block; font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: #b8722a; margin-bottom: 14px;
}
.iza-shop__h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #f0ebe4; margin: 0 0 14px;
}
.iza-shop__lede {
  font-family: 'Jost', sans-serif; font-size: 15px;
  color: #8a7a6a; max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.iza-shop__section { margin-bottom: 56px; }
.iza-shop__subhead {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; margin-bottom: 26px;
}
.iza-shop__subhead h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 1.7rem; color: #e8e0d5; margin: 0 0 6px;
}
.iza-shop__subhead span {
  font-family: 'Jost', sans-serif; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: #6a5a4a;
}
.iza-shop__grid { display: grid; gap: 24px; }
.iza-shop__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
.iza-shop__grid--3 { grid-template-columns: repeat(3, 1fr); }
.iza-shop-card {
  display: flex; flex-direction: column;
  background: #131110;
  border: 1px solid rgba(240,235,228,.08);
  border-radius: 5px; overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.iza-shop-card:hover { border-color: rgba(184,114,42,.4); transform: translateY(-4px); }
.iza-shop-card__img { display: block; background: #0a0908; }
.iza-shop-card__img img { width: 100%; height: auto; display: block; }
.iza-shop-card__body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.iza-shop-card__cadence {
  font-family: 'Jost', sans-serif; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: #b8722a; margin-bottom: 8px;
}
.iza-shop-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400; font-size: 1.45rem; margin: 0 0 8px; line-height: 1.15;
}
.iza-shop-card__title a { color: #f0ebe4; text-decoration: none; }
.iza-shop-card__title a:hover { color: #b8722a; }
.iza-shop-card__desc {
  font-family: 'Jost', sans-serif; font-size: 13px;
  color: #8a7a6a; line-height: 1.6; margin: 0 0 14px;
}
.iza-shop-card__price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; color: #b8722a; margin: auto 0 16px;
}
.iza-shop-card__price del { color: #6a5a4a; font-size: 1rem; opacity: .7; margin-right: 6px; }
.iza-shop-card__btn {
  display: block; text-align: center;
  padding: 13px 16px;
  background: #b8722a; color: #0e0c0b !important;
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  border-radius: 3px; text-decoration: none;
  transition: background .2s ease;
}
.iza-shop-card__btn:hover { background: #d4924a; }
@media (max-width: 760px) {
  .iza-shop__grid--2, .iza-shop__grid--3 { grid-template-columns: 1fr; }
}

/* ================================================
   IZA RITUAL — TASTING NOTES SIDE BY SIDE
   ================================================ */
.iza-tn {
  background: #0a0908;
  padding: 48px 40px;
  border-top: 1px solid rgba(184,114,42,.12);
}
.iza-tn__head {
  max-width: 1160px;
  margin: 0 auto 64px;
  text-align: center;
}
.iza-tn__eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .6rem; letter-spacing: .32em; text-transform: uppercase;
  color: #b8722a; margin-bottom: 16px;
}
.iza-tn__h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #f0ebe4; margin: 0 0 14px; line-height: 1.1;
}
.iza-tn__lede {
  font-family: 'Jost', sans-serif;
  font-size: .88rem; color: #9a8a7a; margin: 0;
}

/* Grid */
.iza-tn__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* Panel */
.iza-tn__panel {
  background: #111009;
  padding: 48px 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
.iza-tn__panel:first-child {
  border-radius: 4px 0 0 4px;
  border-right: 1px solid rgba(240,235,228,.05);
}
.iza-tn__panel:last-child  { border-radius: 0 4px 4px 0; }

/* Panel head */
.iza-tn__badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid; padding: 4px 12px; border-radius: 2px;
  margin-bottom: 12px;
}
.iza-tn__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem; font-weight: 300; line-height: 1.05;
  color: #f0ebe4; margin: 0 0 8px;
  border-bottom: 2px solid var(--iza-tn-accent, #b8722a);
  padding-bottom: 16px;
}
.iza-tn__origin {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: #9a8a7a; display: block; margin-top: 12px;
}

/* Tasting note pills */
.iza-tn__notes {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.iza-tn__pill {
  font-family: 'Jost', sans-serif;
  font-size: .7rem; letter-spacing: .1em;
  border: 1px solid; padding: 5px 13px; border-radius: 20px;
  background: transparent;
}

/* Flavor profile bars */
.iza-tn__bars { display: flex; flex-direction: column; gap: 14px; }
.iza-tn__bar-row {
  display: grid;
  grid-template-columns: 88px 1fr 28px;
  align-items: center; gap: 12px;
}
.iza-tn__bar-label {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .08em;
  color: #9a8a7a; text-align: right;
}
.iza-tn__bar-track {
  height: 3px;
  background: rgba(240,235,228,.07);
  border-radius: 2px;
  overflow: hidden;
}
.iza-tn__bar-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: var(--iza-tn-color, #b8722a);
  transition: width 1.1s cubic-bezier(.16,1,.3,1);
}
.iza-tn--animated .iza-tn__bar-fill {
  width: var(--iza-tn-pct, 0%);
}
.iza-tn__bar-val {
  font-family: 'Jost', sans-serif;
  font-size: .76rem; color: #9a8a7a; text-align: right;
}

/* Specs */
.iza-tn__specs {
  display: flex; flex-direction: column; gap: 10px;
  margin: 0; padding: 20px 0; border-top: 1px solid rgba(240,235,228,.06);
}
.iza-tn__spec {
  display: flex; justify-content: space-between; align-items: baseline;
}
.iza-tn__spec dt {
  font-family: 'Jost', sans-serif;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  color: #9a8a7a;
}
.iza-tn__spec dd {
  font-family: 'Jost', sans-serif;
  font-size: .78rem; color: #8a7a6a; margin: 0;
}

/* CTA */
.iza-tn__cta {
  display: block; text-align: center;
  padding: 13px 20px; border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: #f0ebe4 !important; text-decoration: none;
  margin-top: auto;
  opacity: .88;
  transition: opacity .2s ease;
}
.iza-tn__cta:hover { opacity: 1; }

/* Bar animation trigger */
@media (prefers-reduced-motion: no-preference) {
  .iza-tn__bar-fill { transition: width 1.1s cubic-bezier(.16,1,.3,1); }
}

@media (max-width: 760px) {
  .iza-tn__grid { grid-template-columns: 1fr; gap: 3px; }
  .iza-tn__panel:first-child { border-radius: 4px 4px 0 0; border-right: none; border-bottom: 1px solid rgba(240,235,228,.05); }
  .iza-tn__panel:last-child  { border-radius: 0 0 4px 4px; }
  .iza-tn__panel { padding: 36px 24px; }
  .iza-tn { padding: 64px 24px; }
}


/* ================================================
   IZA RITUAL — JOURNAL PREVIEW (homepage)
   ================================================ */
.iza-jp {
  background: #0a0908;
  padding: 96px 40px 48px;
}
.iza-jp__head {
  max-width: 1160px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.iza-jp__eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .6rem; letter-spacing: .32em; text-transform: uppercase;
  color: #b8722a; margin-bottom: 16px;
  display: inline-block;
}
.iza-jp__h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #f0ebe4;
  margin: 0 0 14px;
  line-height: 1.1;
}
.iza-jp__lede {
  font-family: 'Jost', sans-serif;
  font-size: .88rem; color: #9a8a7a; margin: 0;
}

/* Grid */
.iza-jp__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.iza-jp__card {
  display: flex;
  flex-direction: column;
  background: #111009;
  border: 1px solid rgba(240,235,228,.07);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .25s ease, transform .25s ease;
}
.iza-jp__card:hover {
  border-color: rgba(184,114,42,.35);
  transform: translateY(-4px);
}
.iza-jp__img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0908;
}
.iza-jp__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .55s ease;
}
.iza-jp__card:hover .iza-jp__img-wrap img { transform: scale(1.04); }

.iza-jp__card-body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; flex: 1;
}
.iza-jp__card-meta {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.iza-jp__cat {
  font-family: 'Jost', sans-serif;
  font-size: .62rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.iza-jp__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem; font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,114,42,.2);
  line-height: 1;
}
.iza-jp__card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem; font-weight: 400; line-height: 1.25;
  color: #e8e0d5; margin: 0 0 12px;
}
.iza-jp__card-excerpt {
  font-family: 'Jost', sans-serif;
  font-size: .8rem; line-height: 1.72;
  color: #9a8a7a; margin: 0 0 20px; flex: 1;
}
.iza-jp__read {
  font-family: 'Jost', sans-serif;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: #b8722a; margin-top: auto;
  transition: letter-spacing .2s ease;
}
.iza-jp__card:hover .iza-jp__read { letter-spacing: .24em; }

/* Footer */
.iza-jp__footer {
  max-width: 1160px;
  margin: 44px auto 0;
  text-align: center;
}
.iza-jp__all {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: #9a8a7a; text-decoration: none;
  border-bottom: 1px solid rgba(184,114,42,.4);
  padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.iza-jp__all:hover { color: #b8722a; border-color: #b8722a; }

@media (max-width: 860px) {
  .iza-jp__grid { grid-template-columns: 1fr; max-width: 480px; }
  .iza-jp { padding: 64px 24px; }
}


/* ================================================
   IZA RITUAL — TRUST STRIP (3-column value pillars)
   ================================================ */
.iza-trust {
  background: #0a0908;
  padding: 48px 40px 96px;
  position: relative;
}
.iza-trust__rule {
  max-width: 1160px;
  margin: 0 auto 48px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(184,114,42,.18) 15%,
    rgba(184,114,42,.45) 50%,
    rgba(184,114,42,.18) 85%,
    transparent 100%);
}
.iza-trust__rule--bottom {
  margin: 48px auto 0;
}
.iza-trust__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.iza-trust__col {
  padding: 0 48px;
  border-right: 1px solid rgba(240,235,228,.07);
  display: flex;
  flex-direction: column;
}
.iza-trust__col:first-child { padding-left: 0; }
.iza-trust__col:last-child  { padding-right: 0; border-right: none; }
.iza-trust__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem; font-weight: 300; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,114,42,.55);
  display: block; margin-bottom: 20px;
}
.iza-trust__divider {
  width: 32px; height: 1px;
  background: #b8722a;
  margin-bottom: 20px;
}
.iza-trust__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem; font-weight: 400; line-height: 1.15;
  color: #f0ebe4;
  margin: 0 0 16px;
}
.iza-trust__body {
  font-family: 'Jost', sans-serif;
  font-size: .86rem; line-height: 1.78;
  color: #9a8a7a;
  margin: 0 0 20px;
  flex: 1;
}
.iza-trust__tag {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(184,114,42,.9);
  border-left: 2px solid rgba(184,114,42,.5);
  padding-left: .75rem;
  display: block;
}
@media (max-width: 860px) {
  .iza-trust__grid { grid-template-columns: 1fr; gap: 48px; }
  .iza-trust__col  { padding: 0; border-right: none; border-bottom: 1px solid rgba(240,235,228,.07); padding-bottom: 48px; }
  .iza-trust__col:last-child { border-bottom: none; padding-bottom: 0; }
  .iza-trust { padding: 64px 24px; }
}


/* ================================================
   IZA RITUAL — SUBSCRIPTION TEASER (homepage)
   ================================================ */
.iza-sub-teaser {
  background: #0a0908;
  border-top: 1px solid rgba(184,114,42,.15);
  border-bottom: 1px solid rgba(184,114,42,.15);
  padding: 48px 40px 56px;
  position: relative;
  overflow: hidden;
}

/* Subtle background glow */
.iza-sub-teaser::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(184,114,42,.07) 0%, transparent 70%);
  pointer-events: none;
}

.iza-sub-teaser__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left: copy ── */
.iza-sub-teaser__eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .6rem; letter-spacing: .32em; text-transform: uppercase;
  color: #b8722a; margin-bottom: 20px;
}
.iza-sub-teaser__h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.08;
  color: #f0ebe4;
  margin: 0 0 24px;
}
.iza-sub-teaser__h2 em {
  color: #b8722a;
  font-style: italic;
}
.iza-sub-teaser__body {
  font-family: 'Jost', sans-serif;
  font-size: .94rem; line-height: 1.75;
  color: #8a7a6a;
  max-width: 440px;
  margin: 0 0 32px;
}
.iza-sub-teaser__cta {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: #0e0c0b; background: #b8722a;
  padding: 1.1rem 2.4rem; border-radius: 2px;
  text-decoration: none;
  transition: background .2s ease;
  margin-bottom: 20px;
}
.iza-sub-teaser__cta:hover { background: #d4924a; color: #0e0c0b; }
.iza-sub-teaser__fine {
  font-family: 'Jost', sans-serif;
  font-size: .76rem; letter-spacing: .06em;
  color: #9a8a7a; margin: 0; line-height: 1.8;
}
.iza-sub-teaser__fine strong { color: #9a8a7a; font-weight: 500; }

/* ── Right: cadence cards ── */
.iza-sub-teaser__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.iza-sub-teaser__card {
  position: relative;
  padding: 22px 28px;
  background: #131110;
  border: 1px solid rgba(240,235,228,.07);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .2s ease;
}
.iza-sub-teaser__card:hover { border-color: rgba(184,114,42,.3); }
.iza-sub-teaser__card--mid {
  border-color: rgba(184,114,42,.35);
  background: #161310;
}
.iza-sub-teaser__badge {
  position: absolute; top: -10px; left: 24px;
  background: #b8722a; color: #0e0c0b;
  font-family: 'Jost', sans-serif;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
}
.iza-sub-teaser__freq {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem; font-weight: 400;
  color: #e8e0d5;
}
.iza-sub-teaser__for {
  font-family: 'Jost', sans-serif;
  font-size: .82rem; letter-spacing: .08em;
  color: #9a8a7a;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .iza-sub-teaser__inner { grid-template-columns: 1fr; gap: 48px; }
  .iza-sub-teaser { padding: 64px 24px; }
}
@media (max-width: 500px) {
  .iza-sub-teaser__h2 { font-size: 2.2rem; }
}

/* ====================================================================
   IZA RITUAL — MOBILE DISPLAY FIXES  (max-width: 480px)
   PHONE-ONLY. Desktop CSS is completely untouched.
   ==================================================================== */
@media (max-width: 480px) {

  /* ── HOMEPAGE HERO ── */
  .iza-hp-hero {
    min-height: 100vh;
    min-height: 100svh;
    background-position: center 25%;
    background-size: cover;
    background-attachment: scroll;
  }
  .iza-hp-hero__content { padding: 0 1.2rem; }
  .iza-hp-hero__ghost   { font-size: 19vw; -webkit-text-stroke-width: 1px; }
  .iza-hp-hero__cream,
  .iza-hp-hero__copper  { font-size: 12vw; }
  .iza-hp-hero__sub     { font-size: .78rem; max-width: 90%; }
  .iza-hp-hero__cta     { width: 100%; text-align: center; justify-content: center; }
  .iza-hp-hero__scroll  { left: 1.2rem; }

  /* ── FROM THE JOURNAL ── */
  .iza-jp             { padding: 48px 16px; }
  .iza-jp__grid       { max-width: 100%; }
  .iza-jp__h2         { font-size: 1.9rem; }
  .iza-jp__card-title { font-size: 1.1rem; line-height: 1.3; }
  .iza-jp__card-body  { padding: 18px 16px 22px; }
  .iza-jp__footer     { margin-top: 32px; }

  /* ── TASTING NOTES ── */
  .iza-tn        { padding: 40px 16px; }
  .iza-tn__h2    { font-size: 1.7rem; }
  .iza-tn__lede  { font-size: .82rem; }
  .iza-tn__panel { padding: 28px 16px; gap: 22px; }
  .iza-tn__name  { font-size: 1.5rem; padding-bottom: 14px; }

  /*
   * FIX: bar rows use display:grid which doesn't render on mobile.
   * Switch to flex — keeps label | track | value in one horizontal row.
   * !important ensures it wins over the desktop grid rule above.
   */
  .iza-tn__bar-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
  }
  .iza-tn__bar-label {
    flex: 0 0 70px;
    text-align: right;
    font-size: .64rem;
    white-space: nowrap;
    overflow: hidden;
  }
  .iza-tn__bar-track {
    flex: 1;
    min-width: 0;
    height: 4px;
    background: rgba(240,235,228,.12);
  }
  .iza-tn__bar-val {
    flex: 0 0 20px;
    text-align: right;
    font-size: .58rem;
    color: #6a5a4a;
  }

  .iza-tn__cta { font-size: .64rem; padding: 12px 14px; }

  /* ── SUBSCRIPTION TEASER ── */
  .iza-sub-teaser          { padding: 44px 16px; }
  .iza-sub-teaser__h2      { font-size: 1.9rem; line-height: 1.08; }
  .iza-sub-teaser__body    { font-size: .88rem; }
  .iza-sub-teaser__cta     { display: block; text-align: center; }
  .iza-sub-teaser__fine    { font-size: .66rem; line-height: 1.75; }
  .iza-sub-teaser__cards   { gap: 10px; }

  /*
   * FIX: span elements inside the card are treated as inline by some
   * mobile renderers. Force flex + block to guarantee stacking.
   */
  .iza-sub-teaser__card {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px;
    padding: 16px 18px;
    border-width: 1px !important;
    border-color: rgba(240,235,228,.14) !important;
  }
  .iza-sub-teaser__card--mid {
    border-color: rgba(184,114,42,.38) !important;
  }
  .iza-sub-teaser__freq { display: block !important; font-size: 1.05rem; }
  .iza-sub-teaser__for  { display: block !important; font-size: .7rem;  }

  /* badge: remove absolute positioning — it overflows on narrow screens */
  .iza-sub-teaser__badge {
    position: static !important;
    display: inline-block !important;
    margin: 0 0 8px;
    transform: none !important;
  }

  /* ── TRUST STRIP ── */
  .iza-trust        { padding: 40px 16px 56px; }
  .iza-trust__rule  { margin-bottom: 40px; }
  .iza-trust__rule--bottom { margin-top: 40px; }
  .iza-trust__col   { padding-bottom: 36px; }

  /*
   * FIX: -webkit-text-stroke + color:transparent does not render
   * correctly on mobile WebKit. Replace with a semi-transparent colour.
   */
  .iza-trust__num {
    -webkit-text-stroke: 0 !important;
    color: rgba(184,114,42,.28) !important;
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 16px;
  }
  .iza-trust__title { font-size: 1.3rem; }
  .iza-trust__body  { font-size: .84rem; }

}

/* ====================================================================
   IZA RITUAL — PORTRAIT MOBILE HERO IMAGE
   Fires ONLY when: screen width ≤ 480px AND orientation is portrait.
   Desktop, tablet, and mobile landscape are completely unaffected.
   To revert: remove this block or comment it out.
   Image: WP attachment ID 313 (iza-hero-portrait.jpg, 96KB, 832×1216px)
   Original PNG: magnific__regenerate-teh-reference-photo... (1.3MB)
   ==================================================================== */
@media (max-width: 480px) and (orientation: portrait) {
  .iza-hp-hero {
    background-image: url('https://izaritual.com/wp-content/uploads/2026/05/iza-hero-portrait.jpg');
    background-position: center 30%;
    background-size: cover;
  }
}

/* ====================================================================
   IZA RITUAL — PASS 1 MOBILE OPTIMIZATIONS
   ALL rules in this block are mobile-only (≤900px).
   The desktop/web version is completely unaffected.
   Covers portrait AND landscape phone orientations.
   ==================================================================== */

@media (max-width: 900px) {

  /* ── 1. Fix iOS background-attachment:fixed (broken on Safari) ── */
  .iza-hp-hero {
    background-attachment: scroll !important;
  }

  /* ── 2. Homepage: Nyanza / Highland product sections ── */

  /* Reset ALL inline margins/padding from row and columns */
  .iza-nyanza-section .row,
  .iza-highland-section .row,
  .iza-nyanza-section .section-content,
  .iza-highland-section .section-content {
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Force every col to stack full-width */
  .iza-nyanza-section .col,
  .iza-highland-section .col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Image columns: explicit vw height so image renders (fixes black-box bug) */
  .iza-nyanza-img-col,
  .iza-highland-img-col {
    overflow: hidden !important;
  }
  .iza-nyanza-img-col .img,
  .iza-highland-img-col .img {
    height: 65vw !important;
    max-height: 380px !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
  }
  .iza-nyanza-img-col .img-inner,
  .iza-highland-img-col .img-inner {
    height: 65vw !important;
    max-height: 380px !important;
    padding-top: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
  }
  .iza-nyanza-img-col .img-inner img,
  .iza-highland-img-col .img-inner img {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    max-width: none !important;
    display: block !important;
  }

  /* Text columns: generous padding, centred content */
  .iza-nyanza-section .col:not(.iza-nyanza-img-col),
  .iza-highland-section .col:not(.iza-highland-img-col) {
    padding: 44px 28px !important;
  }
  .iza-nyanza-section .ux-text,
  .iza-nyanza-section .ux-text *,
  .iza-highland-section .ux-text,
  .iza-highland-section .ux-text * {
    text-align: center !important;
  }

  /* ── 3. Hero typography: tighten for narrow screens ── */
  .iza-story .iz-hero-ghost,
  .iza-brew .iz-hero-ghost {
    font-size: clamp(3rem, 20vw, 5rem) !important;
    letter-spacing: .005em !important;
    line-height: .9 !important;
  }
  .iza-story .iz-hero-eyebrow .iz-label,
  .iza-brew .iz-hero-eyebrow .iz-label,
  .iza-origins .iz-hero-eyebrow .iz-label,
  .iza-journal .iz-hero-eyebrow .iz-label,
  .iza-sub .iz-hero-eyebrow .iz-label,
  .iza-contact .iz-hero-eyebrow .iz-label {
    letter-spacing: .14em;
  }
  .iza-sub .iz-hero-sub {
    letter-spacing: .12em;
  }
  .iza-origins .iz-hero-sub {
    letter-spacing: .1em;
    font-size: .78rem;
  }

  /* ── 4. Scroll-reveal entrance animations (replaces parallax on mobile) ── */
  /* Elements reveal as they enter viewport via IntersectionObserver (.in class) */
  /* This is already working — just ensure the transitions are snappy on mobile */
  .iza-story .iz-rt,
  .iza-brew .iz-rt,
  .iza-origins .iz-rt,
  .iza-journal .iz-rt,
  .iza-sub .iz-rt {
    transition: opacity 0.7s ease, transform 0.7s ease !important;
  }

  /* ── 5. Stop text transforms caused by JS parallax on mobile ── */
  /* JS parallax is disabled via matchMedia in the scripts,
     but if it briefly fires, reset transforms cleanly */
  .iza-story .iz-hero-ghost,
  .iza-story .iz-hero-copper,
  .iza-brew .iz-hero-ghost,
  .iza-brew .iz-hero-headline,
  .iza-sub .iz-hero-ghost,
  .iza-sub .iz-hero-cream,
  .iza-sub .iz-hero-copper,
  .iza-origins .iz-hero-title,
  .iza-journal .iz-hero-title {
    will-change: auto;
  }

}

/* ====================================================================
   IZA RITUAL — PRODUCT HERO SECTIONS (custom shortcode layout)
   Desktop: hidden via .iza-mobile-only wrapper (CSS below)
   Mobile:  hidden via .iza-desktop-only wrapper (CSS below)
   Both wrappers controlled by [iza_desktop_only] / [iza_mobile_only] shortcodes.
   ==================================================================== */

/* ── Visibility wrappers ── */
.iza-desktop-only { display: block; }
.iza-mobile-only  { display: none !important; }

@media (max-width: 900px) {
  .iza-desktop-only { display: none !important; }
  .iza-mobile-only  { display: block !important; }
}

/* ── Mobile section layout (inside .iza-mobile-only) ── */
@media (max-width: 900px) {
  .iza-prod {
    display: flex;
    flex-direction: column;
    background: #0a0908;
    overflow: hidden;
  }

  /* Image: full-width, fixed height */
  .iza-prod__img {
    width: 100%;
    background: #0a0908;
    overflow: hidden;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
  }
  .iza-prod__img img {
    width: auto;
    height: auto;
    max-width: 88%;
    max-height: 380px;
    object-fit: contain;
    display: block;
  }

  /* Text: centered with padding */
  .iza-prod__text {
    width: 100%; flex: none;
    padding: 40px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .iza-prod__headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 7vw, 2.8rem);
    font-weight: 300; line-height: .95; color: #ede5df;
    margin: 0 0 .8rem;
    text-align: center !important;
    width: 100%;
  }
  .iza-prod__name, .iza-prod__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(.9rem, 4vw, 1.3rem);
    font-weight: 700; line-height: 1.2; margin: 0;
    text-align: center !important;
    width: 100%;
  }
  .iza-prod__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem; font-weight: 400;
    line-height: 1.72; color: #e8e0d5;
    margin: 1.2rem 0 1.6rem;
    text-align: center !important;
    width: 100%;
  }
  .iza-prod__btn {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    color: #f0ebe4;
    border: 1px solid rgba(240,235,228,.35);
    padding: .9rem 2rem; border-radius: 99px;
    text-decoration: none;
    text-align: center;
  }
}

/* ── Shared layout (activated on mobile only) ── */
@media (max-width: 900px) {

  /* Hide Flatsome desktop sections, show mobile shortcode versions */
  .iza-nyanza-section,
  .iza-highland-section { display: none !important; }

  .iza-prod {
    display: flex !important;
    flex-direction: column;
    background: #0a0908;
    overflow: hidden;
  }

  /* Image: full-width, 65vw tall */
  .iza-prod__img {
    order: 0;
    width: 100%;
    background: #0a0908;
    overflow: hidden;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
  }
  .iza-prod__img img {
    width: auto;
    height: auto;
    max-width: 88%;
    max-height: 380px;
    object-fit: contain;
    display: block;
  }

  /* Text: centered, padded */
  .iza-prod__text {
    order: 1;
    width: 100%; flex: none;
    padding: 40px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Explicitly center all text children (Flatsome resets headings to left) */
  .iza-prod__headline,
  .iza-prod__name,
  .iza-prod__sub,
  .iza-prod__desc {
    text-align: center !important;
    width: 100%;
  }

  .iza-prod__headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 7vw, 2.8rem);
    font-weight: 300; line-height: .95; color: #ede5df;
    margin: 0 0 1rem;
  }
  .iza-prod__name, .iza-prod__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(.9rem, 4vw, 1.3rem);
    font-weight: 700; line-height: 1.15; margin: 0;
    letter-spacing: .02em;
  }
  .iza-prod__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem; font-weight: 400;
    line-height: 1.72; color: #e8e0d5;
    margin: 1.2rem 0 1.8rem;
  }
  .iza-prod__btn {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    color: #f0ebe4;
    border: 1px solid rgba(240,235,228,.35);
    padding: .9rem 2rem; border-radius: 99px;
    text-decoration: none;
  }
}

/* ── Origins page: hero anchor labels on mobile ──
   On desktop: side-by-side (Nyanza left / Highland right)
   On mobile:  stacked vertically, centred, smaller letter-spacing ── */
@media (max-width: 900px) {
  .iza-origins .iz-hero-anchors {
    flex-direction: column !important;
    align-items: center !important;
    gap: .35rem;
    padding: 0 1.5rem !important;
    bottom: 2rem;
  }
  .iza-origins .iz-hero-anch {
    text-align: center !important;
    letter-spacing: .14em !important;
    font-size: .78rem !important;
  }
}

/* ====================================================================
   IZA RITUAL — WooCommerce page title headers (My Account, Cart, etc.)
   Override Flatsome's default white/light page header background.
   Flatsome generates .page-title-bg as the background wrapper.
   ==================================================================== */
/* Flatsome's actual background wrapper */
.woocommerce-account .page-title-bg,
.woocommerce-cart .page-title-bg,
.woocommerce-checkout .page-title-bg,
.woocommerce-order-received .page-title-bg,
.woocommerce .page-title-bg {
  background: #0a0908 !important;
  background-image: none !important;
}
.woocommerce-account .page-title,
.woocommerce-account .page-title-inner,
.woocommerce-cart .page-title,
.woocommerce-cart .page-title-inner,
.woocommerce-checkout .page-title,
.woocommerce-checkout .page-title-inner,
.woocommerce-order-received .page-title,
.woocommerce-order-received .page-title-inner,
.woocommerce .page-title,
.woocommerce .page-title-inner {
  background-color: #0a0908 !important;
  background-image: none !important;
}

/* Page title text colour */
.woocommerce-account .page-title h1,
.woocommerce-account .page-title-inner h1,
.woocommerce-cart .page-title h1,
.woocommerce-checkout .page-title h1,
.woocommerce .page-title h1 {
  color: rgba(240,235,228,.12) !important;
  -webkit-text-stroke: 1px rgba(240,235,228,.18) !important;
}

/* Also target the Flatsome section wrapper if used */
body.woocommerce-account #main .section.page-title-section,
body.woocommerce-cart #main .section.page-title-section,
body.woocommerce-checkout #main .section.page-title-section,
body.woocommerce #main .section.page-title-section {
  background: #0a0908 !important;
}

/* Breadcrumb on WooCommerce pages */
.woocommerce-account .breadcrumbs,
.woocommerce-cart .breadcrumbs,
.woocommerce-checkout .breadcrumbs,
.woocommerce .breadcrumbs {
  background: #0a0908 !important;
}

/* ====================================================================
   IZA RITUAL — Top bar refinements (web + mobile)
   ==================================================================== */
#top-bar,
#top-bar .flex-row {
  background-color: #b8722a !important;
  min-height: 34px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
}
#top-bar .flex-col,
#top-bar .flex-row > div {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 34px !important;
}
#top-bar .top-bar-text,
#top-bar .html-block,
#top-bar p,
#top-bar strong,
#top-bar span {
  font-size: 12px !important;
  letter-spacing: .16em !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  line-height: 34px !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.35) !important;
}
/* Social icons */
#top-bar .social-icons a,
#top-bar .social-icons svg {
  color: #ffffff !important;
  fill: #ffffff !important;
  opacity: .95;
}
#top-bar .social-icons a:hover { opacity: 1; }
/* Mobile: hide top bar entirely */
@media (max-width: 900px) {
  #top-bar { display: none !important; }
}
