@font-face {
  font-family: "Anakotmai";
  src: url("https://cdn.jsdelivr.net/gh/lazywasabi/thai-web-fonts@7.6.0/fonts/Anakotmai/Anakotmai-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anakotmai";
  src: url("https://cdn.jsdelivr.net/gh/lazywasabi/thai-web-fonts@7.6.0/fonts/Anakotmai/Anakotmai-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anakotmai";
  src: url("https://cdn.jsdelivr.net/gh/lazywasabi/thai-web-fonts@7.6.0/fonts/Anakotmai/Anakotmai-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
IMMOR GLOBAL CSS SYSTEM
Design System / Utility / Reusable Components
Based on CI Guide V8 — Green Web (Anakotmai Edition)
========================================================= */

/* =========================================================
1. ROOT TOKENS — Aligned with CI Guide V8
========================================================= */
:root {
  /* Green Palette */
  --immor-color-primary: #527A1F;          /* Forest Mid / Main brand green */
  --immor-color-primary-hover: #476A1B;    /* Hover green */
  --immor-color-primary-dark: #2D5016;     /* Forest Dark / Deep green for headings */
  --immor-color-primary-light: #6B8E23;    /* Olive / Support green */

  /* Blue Palette — CI V8.1 (contrast-safe) */
  --immor-color-secondary: #0080C0;        /* Ocean Blue — ใช้ได้เฉพาะ gradients, icons, borders, UI (4.33:1 ❌ text) */
  --immor-color-secondary-text: #005C99;   /* Ocean Blue Deep — ใช้ทุกครั้งที่เป็น text: links, kickers, labels (7.02:1 ✅ AAA) */
  --immor-color-biotech-blue: #005C99;     /* Alias — backward compat, มาจาก #0A4F80 → ปรับให้ผ่าน WCAG AA */
  --immor-color-teal: #0099DD;             /* Sky Blue — gradients/decorative only (3.18:1 ❌ ไม่ใช้เป็น text) */

  /* Accent Colors */
  --immor-color-accent: rgba(107,142,35,0.12);  /* Olive tint */
  --immor-color-accent-mint: #C8E6A0;           /* Lime Light */
  --immor-color-gold: #A88B52;                  /* Premium line only */

  /* Text & Surface */
  --immor-color-text: #23301B;
  --immor-color-heading: #1F271A;
  --immor-color-text-soft: #607055;
  --immor-color-white: #ffffff;
  --immor-color-border: #DDE6D2;            /* CI V8 standard border */

  /* Ice Blue Theme (Action accents) */
  --immor-color-ice: #0099DD;               /* Sky Blue */
  --immor-color-ice-dark: #005C99;          /* Ocean Blue Deep — CI V8.1 accessible */
  --immor-color-ice-border: rgba(0, 128, 192, 0.24);
  --immor-color-ice-glow: rgba(0, 153, 221, 0.18);

  /* Typography */
  --immor-font-primary: 'Anakotmai', 'Noto Sans Thai', sans-serif;
  --immor-font-body:    var(--immor-font-primary);                /* alias — body text */
  --immor-font-display: 'DM Serif Display', Georgia, serif;       /* italic display — hero h1 highlight */

  /* Backgrounds — CI V8 */
  --immor-bg-soft: linear-gradient(135deg, #F8FBF4 0%, #F2F7EC 100%);
  --immor-bg-soft-2: linear-gradient(135deg, #F8FBF4 0%, #F8FBF4 100%);

  /* Shadows — Soft green-based */
  --immor-shadow-sm: 0 4px 14px rgba(82,122,31,0.04);
  --immor-shadow-md: 0 8px 30px rgba(82,122,31,0.06);
  --immor-shadow-lg: 0 18px 50px rgba(82,122,31,0.08);

  /* Border Radius — CI V8 */
  --immor-radius-xs: 10px;
  --immor-radius-sm: 14px;
  --immor-radius-md: 18px;
  --immor-radius-lg: 24px;
  --immor-radius-pill: 999px;

  /* Container Widths */
  --immor-container: 1200px;
  --immor-container-wide: 1280px;

  /* Spacing Scale */
  --immor-space-2xs: 8px;
  --immor-space-xs: 12px;
  --immor-space-sm: 16px;
  --immor-space-md: 24px;
  --immor-space-lg: 32px;
  --immor-space-xl: 48px;
  --immor-space-2xl: 64px;
  --immor-space-3xl: 88px;

  /* Typography Scale */
  --immor-font-size-xs: 12px;
  --immor-font-size-sm: 14px;
  --immor-font-size-base: 16px;
  --immor-font-size-md: 18px;
  --immor-font-size-lg: 20px;
  --immor-font-size-xl: 28px;
  --immor-font-size-2xl: 36px;
  --immor-font-size-3xl: 46px;

  /* Line Heights */
  --immor-line-tight: 1.2;
  --immor-line-normal: 1.6;
  --immor-line-loose: 1.75;

  /* Transition */
  --immor-transition: all 0.28s ease;
}

body, button, input, textarea, select {
  font-family: var(--immor-font-primary) !important;
}

/* =========================================================
2. BASE RESET
========================================================= */
html {
  scroll-behavior: smooth;
  /* V9.1 flicker prevention — edge-to-edge calc(-50vw + 50%)
     can leak ±0.5px subpixels on mobile when address bar moves.
     "clip" doesn't create a scroll container like "hidden". */
  overflow-x: hidden;   /* fallback < Chrome 90 / Safari 16 */
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  color: var(--immor-color-heading);
  line-height: var(--immor-line-normal);
  word-break: break-word;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  max-width: 100%;       /* NOT 100vw — includes scrollbar on Windows */
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--immor-transition);
}

button,
input,
textarea,
select {
  font: inherit;
}

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

/* =========================================================
3. LAYOUT SYSTEM
========================================================= */
.immor-section {
  position: relative;
  padding: var(--immor-space-3xl) 0;
}

.immor-section--soft {
  background: var(--immor-bg-soft);
}

.immor-section--soft-2 {
  background: var(--immor-bg-soft-2);
}

.immor-section--white {
  background: #fff;
}

.immor-container {
  width: min(100% - 32px, var(--immor-container));
  margin-inline: auto;
}

.immor-container--wide {
  width: min(100% - 32px, var(--immor-container-wide));
  margin-inline: auto;
}

.immor-inner {
  position: relative;
}

.immor-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.immor-head--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.immor-content {
  position: relative;
}

/* =========================================================
4. TYPOGRAPHY
========================================================= */
.immor-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--immor-radius-pill);
  background: var(--immor-color-accent);
  color: var(--immor-color-secondary-text); /* CI V8.1: Ocean Blue Deep #005C99 — ผ่าน WCAG AA */
  font-size: var(--immor-font-size-sm);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}

.immor-title {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, var(--immor-font-size-2xl));
  line-height: var(--immor-line-tight);
  font-weight: 800;
  color: var(--immor-color-primary-dark);  /* Forest Dark #2D5016 — Strong emphasis */
}

/* Qualifier line (span) — CI V8.2 Brand Signature Gradient (Olive → Ocean Blue)
   Unified gradient ใช้เดียวกับ "IMMOR+ by BP Biotech" และ CTA buttons */
.immor-title span {
  color: #005C99; /* Ocean Blue Deep fallback — WCAG AA ✅ (สำหรับ browser ไม่ support background-clip) */
  background: linear-gradient(135deg, #6B8E23 0%, #0080C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.immor-subtitle {
  margin: 0;
  font-size: var(--immor-font-size-md);
  line-height: var(--immor-line-loose);
  color: var(--immor-color-text-soft);
}

.immor-text {
  color: var(--immor-color-text-soft);
  line-height: var(--immor-line-loose);
}

.immor-text p:last-child {
  margin-bottom: 0;
}

/* =========================================================
5. BUTTON SYSTEM
========================================================= */
.immor-button-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.immor-button-wrap--center {
  justify-content: center;
}

.immor-button-wrap--left {
  justify-content: flex-start;
}

.immor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--immor-radius-pill);
  font-size: var(--immor-font-size-base);
  font-weight: 700;
  line-height: 1;
  transition: var(--immor-transition);
  cursor: pointer;
}

.immor-button--primary {
  /* CI V8: Olive → Ocean Blue unified CTA gradient */
  background: linear-gradient(135deg, var(--immor-color-primary-light) 0%, var(--immor-color-secondary) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(82, 122, 31, 0.18), 0 0 0 2px var(--immor-color-ice-glow);
}

.immor-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(82, 122, 31, 0.28), 0 0 0 2px var(--immor-color-ice-glow);
}

.immor-button--outline {
  background: #fff;
  color: var(--immor-color-primary);
  border: 1px solid rgba(0, 128, 192, 0.18); /* Ocean Blue tint — CI V8 */
  box-shadow: var(--immor-shadow-sm);
}

.immor-button--outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--immor-shadow-md);
}

/* =========================================================
6. CARD SYSTEM
========================================================= */
.immor-card {
  background: var(--immor-color-white);
  border: 1px solid var(--immor-color-border);
  border-bottom: 2px solid var(--immor-color-ice-border); /* Ocean Blue accent — CI V8 */
  border-radius: var(--immor-radius-md);
  box-shadow: var(--immor-shadow-md);
  overflow: hidden;
  transition: var(--immor-transition);
}

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

.immor-card-body {
  padding: 24px;
}

.immor-card-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.immor-card-text {
  margin: 0;
  color: var(--immor-color-text-soft);
  line-height: var(--immor-line-loose);
}

/* =========================================================
7. GRID SYSTEM
========================================================= */
.immor-grid {
  display: grid;
  gap: 28px;
}

.immor-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.immor-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.immor-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.immor-grid--center {
  align-items: center;
}

/* =========================================================
8. MEDIA / IMAGE HELPERS
========================================================= */
.immor-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--immor-radius-md);
}

.immor-media img {
  width: 100%;
  height: auto;
  display: block;
}

.immor-media--shadow {
  box-shadow: var(--immor-shadow-lg);
}

/* =========================================================
9. LIST / ICON LIST
========================================================= */
.immor-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.immor-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--immor-color-text-soft);
}

.immor-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  /* CI V8: Olive → Forest Mid gradient for bullet */
  background: linear-gradient(135deg, var(--immor-color-primary-light), var(--immor-color-primary));
  flex: 0 0 10px;
}

/* =========================================================
10. SPACING HELPERS
========================================================= */
.immor-mb-0 { margin-bottom: 0 !important; }
.immor-mb-sm { margin-bottom: 16px !important; }
.immor-mb-md { margin-bottom: 24px !important; }
.immor-mb-lg { margin-bottom: 32px !important; }
.immor-mb-xl { margin-bottom: 48px !important; }

.immor-text-center { text-align: center !important; }
.immor-text-left { text-align: left !important; }

/* =========================================================
11. RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .immor-section {
    padding: 72px 0;
  }

  .immor-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .immor-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .immor-title {
    font-size: clamp(28px, 4vw, 34px);
  }
}

@media (max-width: 767px) {
  .immor-section {
    padding: 56px 0;
  }

  .immor-container,
  .immor-container--wide {
    width: min(100% - 24px, var(--immor-container));
  }

  .immor-head {
    margin-bottom: 28px;
  }

  .immor-grid--2,
  .immor-grid--3,
  .immor-grid--4 {
    grid-template-columns: 1fr;
  }

  .immor-card-body {
    padding: 20px;
  }

  .immor-title {
    font-size: 28px;
  }

  .immor-subtitle {
    font-size: 16px;
  }

  .immor-button {
    width: 100%;
  }

  .immor-button-wrap {
    flex-direction: column;
  }
}

/* =========================================================
   PAGE TITLE BAR — CI V8.3 Dark Editorial
   ---------------------------------------------------------
   Background: Forest Deepest gradient (matches V8.3 Hero)
   Pattern:    Inline SVG leaf overlay
   Typography: Anakotmai Bold (Thai), DM Serif italic (Latin)
   Accent:     Gold gradient title — Hero/Footer signature
   ========================================================= */

.page-title-default {
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(212, 184, 129, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(107, 142, 35, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #1A2E0E 0%, #0E1A07 100%) !important;
  border-bottom: 1px solid rgba(212, 184, 129, 0.25) !important;
  position: relative;
  overflow: hidden;
  padding: 64px 24px !important;
}

/* Decorative leaf SVG pattern (matches V8.3 Hero) */
.page-title-default::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M50 50 Q70 30 90 50 Q70 70 50 50' fill='%23ffffff' opacity='0.04'/%3E%3Cpath d='M130 80 Q150 60 170 80 Q150 100 130 80' fill='%23ffffff' opacity='0.03'/%3E%3Cpath d='M30 130 Q50 110 70 130 Q50 150 30 130' fill='%23ffffff' opacity='0.04'/%3E%3Cpath d='M150 160 Q170 140 190 160 Q170 180 150 160' fill='%23ffffff' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 280px 280px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

/* Ensure content stays above pattern */
.page-title-default > * {
  position: relative;
  z-index: 2;
}

/* Title — sage cream solid (CI V8.3 dark hero text) */
/* =========================================================
   PAGE TITLE BAR — CI V8.3 Dark Editorial (Refined)
   ---------------------------------------------------------
   Background: Forest Mid (lighter than menu bar for contrast)
   Pattern:    Inline SVG leaf overlay
   Typography: Anakotmai Bold, Sage Cream — larger scale
   ========================================================= */

.page-title-default {
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(212, 184, 129, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(107, 142, 35, 0.15) 0%, transparent 55%),
    linear-gradient(180deg, #2D5016 0%, #1F3812 100%) !important;
  border-bottom: 1px solid rgba(212, 184, 129, 0.25) !important;
  position: relative;
  overflow: hidden;
  padding: 80px 24px !important;
}

/* Decorative leaf SVG pattern */
.page-title-default::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M50 50 Q70 30 90 50 Q70 70 50 50' fill='%23ffffff' opacity='0.04'/%3E%3Cpath d='M130 80 Q150 60 170 80 Q150 100 130 80' fill='%23ffffff' opacity='0.03'/%3E%3Cpath d='M30 130 Q50 110 70 130 Q50 150 30 130' fill='%23ffffff' opacity='0.04'/%3E%3Cpath d='M150 160 Q170 140 190 160 Q170 180 150 160' fill='%23ffffff' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 280px 280px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

/* Ensure content stays above pattern */
.page-title-default > * {
  position: relative;
  z-index: 2;
}

/* Title — sage cream solid, LARGER scale */
.page-title-default .entry-title {
  font-family: 'Anakotmai', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(32px, 5vw, 56px) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
  color: #F8FBF4 !important;
  -webkit-text-fill-color: #F8FBF4 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35) !important;
  padding: 0.1em 0.05em 0.05em !important;
  margin: 0 !important;
}

/* Breadcrumbs — cream/gold soft tone */
.page-title-default .breadcrumbs {
  margin-top: 16px !important;
}

.page-title-default .breadcrumbs,
.page-title-default .breadcrumbs a,
.page-title-default .breadcrumbs span {
  font-family: 'Anakotmai', sans-serif !important;
  font-size: 14px !important;
  color: rgba(248, 251, 244, 0.7) !important;
  text-shadow: none !important;
  letter-spacing: 0.3px !important;
}

.page-title-default .breadcrumbs a {
  color: #D4B881 !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.page-title-default .breadcrumbs a:hover {
  color: #E8D8A8 !important;
}

.page-title-default .breadcrumbs .delimiter,
.page-title-default .breadcrumbs > span + span::before {
  color: rgba(212, 184, 129, 0.4) !important;
}

/* Mobile */
@media (max-width: 768px) {
  .page-title-default {
    padding: 56px 20px !important;
  }
  .page-title-default .entry-title {
    font-size: clamp(26px, 7vw, 38px) !important;
  }
  .page-title-default .breadcrumbs {
    font-size: 13px !important;
    margin-top: 12px !important;
  }
}
/* =========================================================
IMMOR SINGLE PRODUCT LANDING PAGE
========================================================= */

.immor-product-landing {
  font-family: 'Anakotmai', sans-serif;
  color: #607055;
  line-height: 1.8;
}

/* --- Typography --- */
.immor-product-landing h2,
.immor-product-landing h3,
.immor-product-landing h4 {
  color: #2D5016;   /* Forest Dark — Strong title emphasis */
  font-weight: 800; /* Heavy weight */
  margin-top: 0;
}

.immor-product-landing .immor-kicker {
  display: inline-block;
  color: #005C99; /* CI V8.1: Ocean Blue Deep — ผ่าน WCAG AA */
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.immor-product-landing .immor-title {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.immor-product-landing .immor-title-sm {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.immor-product-landing .immor-title span,
.immor-product-landing .immor-title-sm span {
  color: #005C99;   /* CI V8.2: fallback — WCAG AA ✅ */
  background: linear-gradient(135deg, #6B8E23 0%, #0080C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.immor-product-landing .immor-subtitle {
  font-size: 18px;
  color: #607055;
}

/* --- Sections --- */
.immor-pl-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 20px 0;
}

.immor-pl-section {
  margin-bottom: 40px;
}

.immor-pl-content-box {
  background: #ffffff;
  border: 1px solid rgba(82, 122, 31, 0.08);
  border-top: 2px solid rgba(0,128,192,0.26); /* Ocean Blue accent — CI V8 */
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(82, 122, 31, 0.03);
}

.immor-product-landing .bg-light-green {
  background: #F8FBF4;
  border-color: rgba(107, 142, 35, 0.15); /* Olive tint — CI V8 */
}

/* --- Grids --- */
.immor-pl-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.immor-pl-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* --- Feature Cards --- */
.immor-pl-feature-card {
  background: #FBFDF9;
  border: 1px solid rgba(82, 122, 31, 0.08);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.immor-pl-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(82, 122, 31, 0.06);
}

.immor-pl-feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.immor-pl-feature-card h4 {
  font-size: 18px;
  color: #2D5016; /* Forest Dark — CI V8 */
  margin-bottom: 8px;
}

.immor-pl-feature-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* --- Images --- */
.immor-pl-img {
  width: 100%;
  height: auto;
  display: block;
}

.immor-radius {
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(82,122,31,0.05);
}

/* --- Lists & Bullets --- */
.immor-trust-list ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.immor-trust-list li {
  background: rgba(0, 128, 192, 0.08); /* CI V8.1: Ocean Blue tint — แทน #D9F1FF ที่ไม่อยู่ใน palette */
  color: #2D5016;      /* Forest Dark — Strong emphasis */
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 15px;
}

.immor-pl-bullet {
  padding-left: 20px;
  margin-bottom: 20px;
}

.immor-pl-bullet li {
  margin-bottom: 8px;
}

/* --- How to use Box --- */
.immor-howto-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 128, 192, 0.18); /* Ocean Blue tint — CI V8 */
  padding: 20px;
  border-radius: 16px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(10, 79, 128, 0.05); /* Deep Blue shadow — CI V8 */
}

.immor-howto-icon {
  font-size: 36px;
}

.immor-howto-details p {
  margin: 0;
  line-height: 1.5;
}

.immor-howto-details strong {
  color: #005C99; /* CI V8.1: Ocean Blue Deep — ผ่าน WCAG AA */
  font-size: 18px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .immor-pl-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .immor-product-landing .immor-title { font-size: 28px; }
  .immor-product-landing .immor-title-sm { font-size: 24px; }

  .immor-pl-grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .immor-pl-content-box {
    padding: 24px;
  }

  /* สลับให้รูปภาพขึ้นก่อนตัวหนังสือในมือถือ */
  .reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
  .reverse-mobile .immor-pl-image {
    margin-bottom: 20px;
  }
}

/* ============================================================
   TOP BAR — V9.1 Compound Gradient (Deep Botanical → Cerulean Dark)
   Mirrors logo's yin-yang leaf→water transition
   ใช้ specificity สูงเพื่อ override class combinations ของ WoodMart
   เช่น .whb-row.whb-top-bar.whb-with-bg.whb-color-dark
   ============================================================ */
.whb-top-bar,
.whb-top-bar .whb-row,
.whb-top-bar .whb-flex-row,
.whb-row.whb-top-bar,
.whb-row.whb-top-bar.whb-with-bg,
.whb-top-bar.whb-with-bg,
.whb-top-bar.whb-color-dark,
.whb-top-bar.whb-color-light,
body .whb-top-bar,
body .whb-row.whb-top-bar,
html body .whb-top-bar {
    background: linear-gradient(90deg, #1F4E36 0%, #0F5C8F 100%) !important;
    background-color: #1F4E36 !important;
    background-image: linear-gradient(90deg, #1F4E36 0%, #0F5C8F 100%) !important;
}

/* Top bar text + links + social icons */
.whb-top-bar a,
.whb-top-bar p,
.whb-top-bar .wd-header-text,
.whb-top-bar .wd-header-text * {
    color: #F8F6F0 !important;
}

.whb-top-bar .wd-social-icons a,
.whb-top-bar .wd-social-icons i,
.whb-top-bar .social-icons a,
.whb-top-bar .social-icons i {
    color: #F8F6F0 !important;
}

.whb-top-bar a:hover,
.whb-top-bar .wd-social-icons a:hover,
.whb-top-bar .wd-social-icons a:hover i,
.whb-top-bar .social-icons a:hover,
.whb-top-bar .social-icons a:hover i {
    color: #A8BFA0 !important;
}

/* ============================================================
   HEADER BOTTOM (Menu Zone) — Dark Forest · Full Bleed
   ใช้ specificity สูงเหมือน top bar เพื่อ override WoodMart
   ============================================================ */
.whb-header-bottom,
.whb-row.whb-header-bottom,
.whb-row.whb-header-bottom.whb-with-bg,
.whb-header-bottom.whb-with-bg,
.whb-header-bottom.whb-color-dark,
.whb-header-bottom.whb-color-light,
body .whb-header-bottom,
body .whb-row.whb-header-bottom,
html body .whb-header-bottom {
    background: #1A2E0E !important;
    background-color: #1A2E0E !important;
    background-image: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
}

/* Gold gradient hairline ที่ขอบบน — แบ่งจาก main header */
.whb-header-bottom::before,
.whb-row.whb-header-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(184, 146, 75, 0.35) 20%,
        rgba(212, 184, 129, 0.55) 50%,
        rgba(184, 146, 75, 0.35) 80%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Inner flex row คงให้ transparent — เพื่อให้ outer dark bg แสดงผ่าน */
.whb-header-bottom .whb-flex-row,
.whb-header-bottom > .whb-flex-row {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Navigation menu links — สีขาว 88% บนพื้น dark */
.whb-header-bottom .menu > .menu-item > a,
.whb-header-bottom .navigation-style-default > .menu-item > a,
.whb-header-bottom .navigation > .menu > .menu-item > a {
    color: rgba(255, 255, 255, 0.88) !important;
    background: transparent !important;
    padding: 10px 20px !important;
    margin: 0 4px !important;
    border-radius: 999px !important;
    transition: all 0.25s ease !important;
}
.whb-header-bottom .menu > .menu-item > a:hover,
.whb-header-bottom .navigation-style-default > .menu-item:hover > a {
    background: rgba(212, 184, 129, 0.12) !important;
    color: #D4B881 !important;
}

/* Active/Current menu — gradient olive pill (เพิ่ม padding ให้สมส่วน) */
.whb-header-bottom .menu > .menu-item.current-menu-item > a,
.whb-header-bottom .menu > .menu-item.current-menu-ancestor > a,
.whb-header-bottom .navigation-style-default > .menu-item.current-menu-item > a,
.whb-header-bottom .navigation-style-default > .menu-item.current-menu-ancestor > a {
    background: linear-gradient(135deg, #527A1F 0%, #6B8E23 100%) !important;
    color: #FFFFFF !important;
    padding: 10px 24px !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 12px rgba(82, 122, 31, 0.30) !important;
}

/* Submenu — slightly lighter forest */
.whb-header-bottom .sub-menu,
.whb-header-bottom .menu-item .sub-menu {
    background: #213B0F !important;
    border: 1px solid rgba(212, 184, 129, 0.18) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45) !important;
}
.whb-header-bottom .sub-menu .menu-item > a {
    color: rgba(255, 255, 255, 0.88) !important;
}
.whb-header-bottom .sub-menu .menu-item > a:hover,
.whb-header-bottom .sub-menu .menu-item.current-menu-item > a {
    background: rgba(212, 184, 129, 0.12) !important;
    color: #D4B881 !important;
}

/* Sticky state — translucent + blur */
.whb-sticked .whb-header-bottom {
    background: rgba(26, 46, 14, 0.94) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}

/* Remove white flicker/outline on menu links (hover/focus first time) */
.whb-header-bottom .menu > .menu-item > a,
.whb-header-bottom .menu > .menu-item > a:focus,
.whb-header-bottom .menu > .menu-item > a:focus-visible,
.whb-header-bottom .menu > .menu-item > a:active,
.whb-header-bottom .navigation > .menu > .menu-item > a,
.whb-header-bottom .navigation > .menu > .menu-item > a:focus,
.whb-header-bottom .navigation-style-default > .menu-item > a,
.whb-header-bottom .navigation-style-default > .menu-item > a:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    text-decoration: none !important;
}

/* Remove WoodMart's underline-on-hover effect (which appears as white line) */
.whb-header-bottom .navigation-style-default > .menu-item > a::before,
.whb-header-bottom .navigation-style-default > .menu-item > a::after,
.whb-header-bottom .menu > .menu-item > a::before,
.whb-header-bottom .menu > .menu-item > a::after {
    background: transparent !important;
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    display: none !important;
}

/* Restore the active/current pill styling explicitly */
.whb-header-bottom .menu > .menu-item.current-menu-item > a::before,
.whb-header-bottom .menu > .menu-item.current-menu-item > a::after,
.whb-header-bottom .menu > .menu-item.current-menu-ancestor > a::before,
.whb-header-bottom .menu > .menu-item.current-menu-ancestor > a::after {
    display: none !important;
}

/* ============================================================
   PROMO PRICE — Premium Red Override (#B71C1C)
   เปลี่ยนสีราคาที่ลดแล้วจากเขียวเป็นแดงลึก เพื่อดู premium
   ============================================================ */

/* ราคา promo ของ plugin IMMOR Discount */
.immor-price-stack .immor-price-regular,
.immor-price-stack .immor-price-regular bdi,
.immor-price-stack .immor-price-regular .amount,
.immor-price-stack .immor-price-regular .woocommerce-Price-amount,
.immor-price-stack .immor-price-regular .woocommerce-Price-currencySymbol,
.immor-price-stack .immor-price-promo,
.immor-price-stack .immor-price-promo bdi,
.immor-price-stack .immor-price-promo .amount,
.immor-price-stack .immor-price-promo .woocommerce-Price-currencySymbol {
    color: #B71C1C !important;
    font-weight: 700 !important;
}

/* WC native sale price (ไม่ใช่จาก plugin) */
.product .price ins,
.product .price ins bdi,
.product .price ins .amount,
.product .price ins .woocommerce-Price-amount,
.product .price ins .woocommerce-Price-currencySymbol {
    color: #B71C1C !important;
    text-decoration: none !important;
}

/* หน้า single product page */
.single-product .product .price ins,
.single-product .product .price ins bdi,
.single-product .product .price ins .amount {
    color: #B71C1C !important;
}

/* Cart row total (ราคารวมต่อแถว) ในตะกร้า — ถ้าต้องการ */
.woocommerce-cart .product-subtotal .amount,
.woocommerce-cart-form__cart-item .product-subtotal {
    /* ไม่บังคับ — เก็บไว้เป็นทางเลือก */
    /* color: #B71C1C !important; */
}

/* ============================================================
   MOBILE EDGE-TO-EDGE — kill horizontal padding ของ sections
   ทำให้ section cards ติดขอบจอทั้งซ้าย-ขวา ใน mobile
   เฉพาะ < 768px (mobile + small tablet)
   ============================================================ */
@media (max-width: 767px) {

    /* Page-level wrappers — full width */
    .main-page-wrapper,
    .wd-page-content,
    .wd-content-area,
    .wd-content-layout,
    .wd-page-content > .container,
    .main-page-wrapper > .container,
    article.entry-content,
    .entry-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Elementor section/container — kill horizontal padding/margin */
    .elementor-section.elementor-section-boxed > .elementor-container,
    .elementor-section,
    .elementor-container,
    .e-con,
    .e-con-full,
    .e-con-boxed {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    /* Inner Elementor widget content — เอา padding default ของ container ออก */
    .elementor-widget-wrap > .elementor-element,
    .elementor-element-populated {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Generic IMMOR sections (รักษา content padding ภายในตัวเอง) */
    section.immor-product-showcase,
    section.immor-trust-standards,
    section[class*="immor-"] {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    /* ป้องกัน horizontal scroll — V9.1 anti-flicker
       overflow: clip > hidden (no scroll container created)
       max-width: 100% > 100vw (100vw includes scrollbar on Windows) */
    html, body {
        overflow-x: hidden !important;
        overflow-x: clip !important;
        max-width: 100% !important;
    }
}

/* ============================================================
   IMMOR LIGHT EDITORIAL SECTIONS — Utility System
   ใช้สำหรับทุก section ที่อยู่ใต้ Hero ใน home + landing pages
   
   ✦ Hero = dark + gold (luxury impact)
   ✦ Sections อื่น = light + forest dark headings + brand gradient spans
   ✦ ไม่ใช้สีทองใน light sections — ใช้ olive deep แทน
   ✦ Reusable utility classes สร้าง section ใหม่ได้เร็ว

   Usage:
   <section class="immor-section immor-section-cream">
     <div class="immor-section-inner">
       <div class="immor-section-eyebrow">Section Label</div>
       <h2 class="immor-section-title">
         Title Line 1<br>
         <span class="immor-title-brand">Italic Span</span>
       </h2>
       <p class="immor-section-desc">Description...</p>
       <!-- content here -->
     </div>
   </section>
   ============================================================ */

/* === Section containers — Cool sage tones (no orange/beige) === */
.immor-section {
    padding: clamp(64px, 10vh, 120px) 24px;
    text-align: center;
    position: relative;
    /* Force edge-to-edge full width — kills border-radius/margin from theme/Elementor wrappers */
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    /* Default section background variable for ornament reference */
    --section-bg: #F8FBF4;
}
/* Primary 2 backgrounds — สลับกันสร้าง rhythm */
.immor-section-cream {
    background: #F8FBF4;
    --section-bg: #F8FBF4;
}
.immor-section-soft {
    background: #F2F7EC;
    --section-bg: #F2F7EC;
}

/* Backward compatibility — both alias to sage soft (no warm/orange tones) */
.immor-section-warm {
    background: #F2F7EC;
    --section-bg: #F2F7EC;
}
.immor-section-deep {
    background: #F2F7EC;
    --section-bg: #F2F7EC;
}
.immor-section-white {
    background: #FFFFFF;
    --section-bg: #FFFFFF;
}

.immor-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* === Eyebrow — Olive Deep text + Subtle Gold hairlines (V8.3+) === */
.immor-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--immor-font-primary, 'Anakotmai', sans-serif);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #527A1F;
    margin-bottom: 24px;
}
.immor-section-eyebrow::before,
.immor-section-eyebrow::after {
    content: "";
    width: 32px;
    height: 1px;
    background: rgba(184, 146, 75, 0.7);
}

/* === Section title — Forest Dark === */
.immor-section-title {
    font-family: var(--immor-font-display, 'DM Serif Display'), Georgia, serif;
    font-weight: 400;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #2D5016;
    margin: 0 auto 24px;
    max-width: 820px;
    /* Thai 3-stacked diacritics (พยัญชนะ+สระบน+วรรณยุกต์) เช่น "มั่" need extra top space */
    padding-top: 0.15em;
    overflow: visible;
}

/* Brand gradient italic spans — extra line-height for Thai stacked diacritics in italic */
.immor-title-brand,
.immor-title-olive {
    line-height: 1.45;
    padding-top: 0.1em;
    padding-bottom: 0.05em;
    overflow: visible;
}

/* === Brand gradient span — Olive → Ocean Blue === */
.immor-title-brand {
    font-style: italic;
    background: linear-gradient(135deg, #6B8E23 0%, #0080C0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* === Olive gradient span — เขียวล้วน (สำหรับ section ติด Hero ที่ไม่มีฟ้า) === */
.immor-title-olive {
    font-style: italic;
    background: linear-gradient(135deg, #6B8E23 0%, #2D5016 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* === Section description === */
.immor-section-desc {
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.85;
    color: #3A4A2E;
    max-width: 680px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* === Section Buttons === */
.immor-section-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #527A1F 0%, #6B8E23 100%);
    color: #FFFFFF !important;
    font-family: var(--immor-font-primary, 'Anakotmai', sans-serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 28px rgba(82, 122, 31, 0.30);
    border: none;
    cursor: pointer;
}
.immor-section-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(82, 122, 31, 0.40);
    color: #FFFFFF !important;
}
.immor-section-btn-primary::after {
    content: "→";
    transition: transform 0.3s;
}
.immor-section-btn-primary:hover::after { transform: translateX(4px); }

.immor-section-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid #527A1F;
    color: #2D5016 !important;
    font-family: var(--immor-font-primary, 'Anakotmai', sans-serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.immor-section-btn-outline:hover {
    background: #527A1F;
    color: #FFFFFF !important;
}

/* === Card utility — for grids of features/products/articles === */
.immor-section-card {
    background: #FFFFFF;
    border: 1px solid rgba(45, 80, 22, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}
.immor-section-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.10);
    border-color: #6B8E23;
}
.immor-section-card h3 {
    font-family: var(--immor-font-primary, 'Anakotmai', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 12px;
    line-height: 1.4;
}
.immor-section-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #5A6B47;
}

/* === Mobile responsive === */
@media (max-width: 768px) {
    .immor-section { padding: 48px 16px; }
    .immor-section-eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
        gap: 10px;
        margin-bottom: 18px;
    }
    .immor-section-eyebrow::before,
    .immor-section-eyebrow::after { width: 20px; }
    .immor-section-card { padding: 24px; }
    .immor-section-btn-primary,
    .immor-section-btn-outline {
        padding: 13px 24px;
        font-size: 13px;
    }
}

/* ============================================================
   SECTION SEAM RESET — Sharp Edge-to-Edge Transitions (V8.3)
   ป้องกันไม่ให้ Elementor wrapper หรือ WoodMart theme
   ใส่ border-radius / margin / padding ที่ทำให้ section ดูเป็น "card ลอย"
   ============================================================ */

/* Kill Elementor wrapper styling around our sections */
.elementor-section:has(> .elementor-container .immor-section),
.elementor-section:has(.immor-section),
.elementor-element:has(> .immor-section) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-radius: 0 !important;
}

/* Kill Elementor HTML widget container padding/margin */
.elementor-widget-html:has(.immor-section) {
    margin: 0 !important;
    padding: 0 !important;
}
.elementor-widget-html:has(.immor-section) > .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
}

/* Kill WoodMart container constraints if any */
.elementor-column:has(.immor-section),
.elementor-element-populated:has(.immor-section) {
    padding: 0 !important;
    border-radius: 0 !important;
}

/* ============================================================
   SECTION DIVIDER — Eyebrow as Editorial Punctuation
   ใช้ .immor-section-eyebrow (มี hairlines ในตัวอยู่แล้ว)
   ทำหน้าที่ทั้ง section punctuation + content label พร้อมกัน
   ============================================================ */

/* No floating ornament — eyebrow does the divider work */
.immor-section::before,
.immor-section::after {
    display: none !important;
}

/* Tighter section top — eyebrow sits closer to the seam */
.immor-section {
    padding-top: clamp(48px, 7vh, 80px) !important;
}

/* Eyebrow — more space below to separate from title */
.immor-section-eyebrow {
    margin-bottom: 32px;
}

/* Mobile — slightly tighter */
@media (max-width: 768px) {
    .immor-section {
        padding-top: 40px !important;
    }
    .immor-section-eyebrow {
        margin-bottom: 24px;
    }
}

/* ============================================================
   AGGRESSIVE SECTION SEAM RESET (V8.3 fix)
   Targets all Elementor/WoodMart wrappers around .immor-section
   เพื่อกำจัด white gap ระหว่าง sections
   ============================================================ */

/* Find Elementor section/column/widget wrappers that contain .immor-section
   และ kill ทุก spacing + background ที่อาจ leak มา */
.elementor-section:has(.immor-section),
.elementor-section.elementor-section-boxed:has(.immor-section),
.elementor-column:has(.immor-section),
.elementor-widget-wrap:has(.immor-section),
.elementor-element:has(> .immor-section),
.elementor-element:has(> div > .immor-section),
.elementor-widget-html:has(.immor-section),
.elementor-widget-html:has(.immor-section) > .elementor-widget-container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Stretch Elementor section wrappers to full width */
.elementor-section:has(.immor-section) {
    max-width: 100vw !important;
    width: 100vw !important;
}

/* If WoodMart/theme adds container max-width, override it */
.elementor-container:has(.immor-section) {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

/* ============================================================
   CI V8.3 — Hub Page (32435): Kill WoodMart main wrapper padding
   เพื่อให้ Block 1 dark hero ชน header แบบ edge-to-edge
============================================================ */
.page-id-32435 main#main-content,
.page-id-32435 main.wd-content-layout,
.page-id-32435 .content-layout-wrapper {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* คง padding-bottom: 40px ไว้เผื่อ section สุดท้ายชน footer */
  max-width: 100% !important;
}
/* ============================================================
   FOOTER PREP — Kill WoodMart main wrapper bottom padding
   ตัวการ: .wd-content-layout มี padding-block: 40px
============================================================ */
body main#main-content.wd-content-layout,
body main.wd-content-layout {
  padding-bottom: 0 !important;
  padding-block-end: 0 !important;  /* ชน padding-block shorthand */
  margin-bottom: 0 !important;
}

/* ============================================================
   TOP BAR — Big Bold Text Edition (CI V8.3)
   ------------------------------------------------------------
   Clean, readable, premium — ตัวหนังสือใหญ่ + gold accent
============================================================ */

/* Background — V9.1 Compound Gradient (mirrors logo leaf→water) */
.whb-row.whb-top-bar {
  background: linear-gradient(90deg, #1F4E36 0%, #0F5C8F 100%) !important;
  border-bottom: 1px solid rgba(168, 191, 160, 0.20) !important;
  min-height: 48px !important;
  position: relative;
}

.whb-row.whb-top-bar .whb-top-bar-inner {
  min-height: 48px;
  align-items: center;
}

/* Text container — center alignment */
.whb-row.whb-top-bar .wd-header-text p {
  margin: 0 !important;
  padding: 8px 0;
  line-height: 1.4;
}

/* === MAIN TEXT — Anakotmai Bold + Cream Bone === */
.whb-row.whb-top-bar .wd-header-text span,
.whb-row.whb-top-bar .wd-header-text p span[style] {
  font-family: 'Anakotmai', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #F8F6F0 !important;
  letter-spacing: 0.4px !important;
}

/* === Social icons — Cream Bone with Sage Mist hover === */
.whb-row.whb-top-bar .wd-social-icons a,
.whb-row.whb-top-bar .wd-social-icons svg,
.whb-row.whb-top-bar .wd-social-icons span {
  color: rgba(248, 246, 240, 0.75) !important;
  transition: all 0.25s ease;
}
.whb-row.whb-top-bar .wd-social-icons a:hover,
.whb-row.whb-top-bar .wd-social-icons a:hover svg,
.whb-row.whb-top-bar .wd-social-icons a:hover span {
  color: #A8BFA0 !important;
}

/* === Mobile === */
@media (max-width: 768px) {
  .whb-row.whb-top-bar .wd-header-text span,
  .whb-row.whb-top-bar .wd-header-text p span[style] {
    font-size: 14px !important;
    letter-spacing: 0.2px !important;
  }
  
  .whb-row.whb-top-bar,
  .whb-row.whb-top-bar .whb-top-bar-inner {
    min-height: 42px !important;
  }
}
/* V9.1 — Hero italic accent (uniform light sage) */
.immor-title-mist {
  background: linear-gradient(135deg, #E8EFE3 0%, #A8BFA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-weight: inherit;
  display: inline-block;
}