:root {
  --ink: #1b211c;
  --muted: #5f675d;
  --paper: #f7f8f4;
  --surface: #ffffff;
  --line: #d8dfd2;
  --green: #214f36;
  --green-deep: #123624;
  --sage: #eef4e9;
  --maroon: #81343a;
  --clay: #aa6645;
  --gold: #c9a64f;
  --teal: #285862;
  --zalo-blue: #0068ff;
  --zalo-blue-deep: #0052cc;
  --zalo-blue-soft: rgba(0, 104, 255, 0.18);
  --shadow: 0 10px 24px rgba(28, 32, 24, 0.09);
  --radius: 8px;
  --site-header-height: 84px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f3efe4;
  --muted: #c4cbbf;
  --paper: #101912;
  --surface: #18241c;
  --line: #38483b;
  --green: #78a984;
  --sage: #253426;
  --maroon: #d27b80;
  --clay: #c98562;
  --gold: #d8b861;
  --teal: #82b5bc;
  --zalo-blue: #2b8cff;
  --zalo-blue-deep: #0068ff;
  --zalo-blue-soft: rgba(43, 140, 255, 0.24);
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-padding-top: calc(var(--site-header-height) + 18px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--site-header-height);
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(33, 79, 54, 0.04), transparent 36%, rgba(129, 52, 58, 0.04)),
    var(--paper);
  letter-spacing: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: block;
  padding: 0;
  background: rgba(247, 248, 244, 0.94);
  border-bottom: 1px solid rgba(33, 79, 54, 0.14);
  backdrop-filter: blur(14px);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.site-header-inner {
  display: grid;
  grid-template-columns: minmax(238px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 14px 0;
}

.site-header.is-scrolled {
  background: rgba(247, 248, 244, 0.97);
  box-shadow: 0 10px 24px rgba(28, 32, 24, 0.1);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
}

.site-header:focus-within {
  transform: translateY(0);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: cover;
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(28, 32, 24, 0.1);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--green-deep);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.05;
}

.brand small {
  max-width: 320px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #2d3b32;
  font-size: 15.5px;
  font-weight: 850;
  white-space: nowrap;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px 0 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--maroon), #9b4a3f);
  border: 1px solid rgba(129, 52, 58, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(129, 52, 58, 0.18);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 13px 22px rgba(129, 52, 58, 0.24);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.theme-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 30px);
  gap: 2px;
  padding: 3px;
  background: rgba(238, 244, 233, 0.92);
  border: 1px solid rgba(33, 79, 54, 0.16);
  border-radius: 999px;
}

.theme-option {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.theme-option svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.theme-option.is-active {
  color: #fff;
  background: var(--green);
  box-shadow: 0 6px 12px rgba(33, 79, 54, 0.18);
}

.theme-option:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: min(620px, 70svh);
  overflow: hidden;
  background: var(--green-deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 54, 36, 0.92) 0%, rgba(18, 54, 36, 0.76) 48%, rgba(18, 54, 36, 0.32) 100%),
    linear-gradient(0deg, rgba(18, 54, 36, 0.56), transparent 52%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.42fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: end;
  width: min(1180px, calc(100vw - 36px));
  min-height: min(620px, 70svh);
  margin: 0 auto;
  padding: clamp(68px, 10vh, 112px) 0 28px;
  color: #fff;
}

.hero-layout > * {
  min-width: 0;
}

.hero-content {
  min-width: 0;
  max-width: 780px;
  padding-bottom: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.9vw, 60px);
  line-height: 1.02;
  letter-spacing: 0;
}

#hero-title {
  color: #f4dfad;
  text-shadow: 0 3px 18px rgba(18, 54, 36, 0.62);
}

.hero-title-chunk {
  display: inline;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

p {
  line-height: 1.68;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.primary-action svg,
.secondary-action svg,
.call-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.primary-action {
  color: #fff;
  background: linear-gradient(135deg, var(--maroon), #a15445);
  border: 1px solid rgba(129, 52, 58, 0.18);
  box-shadow: 0 12px 22px rgba(129, 52, 58, 0.18);
}

.secondary-action {
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(33, 79, 54, 0.2);
  box-shadow: 0 8px 16px rgba(28, 32, 24, 0.08);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible,
.call-action:hover,
.call-action:focus-visible,
.card-action:hover,
.card-action:focus-visible,
.choice-grid a:hover,
.choice-grid a:focus-visible {
  transform: translateY(-1px);
}

.primary-action:hover,
.primary-action:focus-visible {
  box-shadow: 0 15px 26px rgba(129, 52, 58, 0.24);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  border-color: rgba(33, 79, 54, 0.32);
  box-shadow: 0 11px 20px rgba(28, 32, 24, 0.12);
}

a[href*="zalo.me"].primary-action,
a[href*="zalo.me"].secondary-action {
  color: #fff;
  background: linear-gradient(135deg, var(--zalo-blue), var(--zalo-blue-deep));
  border: 1px solid rgba(0, 104, 255, 0.28);
  box-shadow: 0 10px 20px var(--zalo-blue-soft);
}

a[href*="zalo.me"].primary-action:hover,
a[href*="zalo.me"].primary-action:focus-visible,
a[href*="zalo.me"].secondary-action:hover,
a[href*="zalo.me"].secondary-action:focus-visible {
  border-color: rgba(0, 104, 255, 0.34);
  box-shadow: 0 14px 24px var(--zalo-blue-soft);
}

.call-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  color: var(--maroon);
  background: rgba(255, 245, 240, 0.94);
  border: 1px solid rgba(129, 52, 58, 0.22);
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
  box-shadow: 0 8px 16px rgba(129, 52, 58, 0.09);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.primary-action.full,
.secondary-action.full,
.call-action.full {
  width: 100%;
}

.primary-action.full {
  border: 0;
  cursor: pointer;
}

.primary-action:disabled,
.primary-action.is-loading {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.secondary-action.full {
  cursor: pointer;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  scrollbar-width: none;
}

.trust-strip::-webkit-scrollbar {
  display: none;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
}

.decision-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.decision-card a {
  display: block;
  padding: 13px 14px;
  background: var(--sage);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.25;
}

.decision-card a:hover,
.decision-card a:focus-visible {
  border-color: var(--gold);
}

.decision-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.decision-kicker {
  color: var(--maroon);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.conversion-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  width: min(1180px, calc(100vw - 36px));
  margin: -34px auto 0;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.conversion-promise {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 8px 4px;
}

.promise-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green);
  background: var(--sage);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: 50%;
}

.promise-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.promise-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.conversion-band strong {
  color: var(--green-deep);
}

.conversion-band span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.conversion-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 44px;
  padding: 10px 16px;
  color: #fff;
  background: var(--clay);
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.section-shell {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
  padding: clamp(28px, 3.5vw, 42px) 0;
}

.section-shell + .section-shell {
  padding-top: clamp(12px, 1.8vw, 22px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 18px;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading p,
.choose-copy p,
.order-copy p,
.story-copy p,
.trust-copy p {
  color: var(--muted);
}

.question-grid,
.beginner-grid,
.process-grid,
.product-grid,
.choice-grid,
.content-columns,
.proof-grid,
.daily-cost-grid {
  display: grid;
  gap: 14px;
}

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

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

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

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

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

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

.question-grid article,
.beginner-grid article,
.daily-cost-grid article,
.process-grid article,
.choice-grid article,
.content-columns article,
.product-card,
.order-card,
.faq-list details,
.contact-card,
.trust-details article,
.compare-table,
.proof-panel,
.proof-grid article {
  background: var(--surface);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.question-grid article,
.beginner-grid article,
.daily-cost-grid article,
.process-grid article,
.choice-grid article,
.content-columns article,
.trust-details article {
  padding: 20px;
}

.question-grid strong,
.beginner-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 0 11px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  font-size: 12px;
  text-transform: uppercase;
}

.daily-cost-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.daily-cost-grid strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--maroon);
  font-size: 23px;
  line-height: 1.15;
}

.daily-cost-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.beginner-grid h3 {
  font-size: 20px;
}

.question-grid p,
.beginner-grid p,
.daily-cost-grid p,
.process-grid p,
.choice-grid p,
.content-columns p {
  margin-bottom: 0;
  color: var(--muted);
}

.beginner-section .section-heading {
  margin-bottom: 24px;
}

.beginner-grid {
  gap: 16px;
  align-items: stretch;
}

.beginner-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-color: rgba(33, 79, 54, 0.15);
  box-shadow: 0 16px 32px rgba(33, 79, 54, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.beginner-grid article:nth-child(1) {
  background: linear-gradient(180deg, #f2f8ee 0%, #fbfdf8 100%);
}

.beginner-grid article:nth-child(2) {
  background: linear-gradient(180deg, #fff7df 0%, #fffdf6 100%);
}

.beginner-grid article:nth-child(3) {
  background: linear-gradient(180deg, #eef7f1 0%, #fbfdf9 100%);
}

.beginner-grid article:nth-child(4) {
  background: linear-gradient(180deg, #fbf1ec 0%, #fffaf7 100%);
}

.beginner-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.beginner-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 79, 54, 0.28);
  box-shadow: 0 22px 42px rgba(33, 79, 54, 0.13);
}

.beginner-grid span {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  margin-bottom: 14px;
  padding: 0;
  color: #14281a;
  background: linear-gradient(135deg, #f4d56a, #e4b741);
  border: 1px solid rgba(117, 82, 26, 0.2);
  border-radius: 50%;
  box-shadow: 0 9px 18px rgba(201, 166, 79, 0.3);
  font-size: 13px;
  font-weight: 950;
}

.beginner-grid h3 {
  margin-bottom: 10px;
  line-height: 1.18;
}

.beginner-grid p {
  flex: 1;
  font-size: 16px;
  line-height: 1.72;
}

.beginner-grid .read-more-link {
  align-items: center;
  min-height: 36px;
  margin-top: 16px;
  padding: 0 12px;
  color: var(--maroon);
  background: rgba(129, 52, 58, 0.06);
  border: 1px solid rgba(129, 52, 58, 0.18);
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.beginner-grid .read-more-link:hover,
.beginner-grid .read-more-link:focus-visible {
  color: #fff;
  background: var(--maroon);
  transform: translateY(-1px);
}

.read-more-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--maroon);
  border-bottom: 2px solid rgba(129, 52, 58, 0.22);
  font-weight: 900;
  line-height: 1.35;
}

.trust-order-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 18px auto 0;
  padding: 10px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--maroon), #a15445);
  border: 1px solid rgba(129, 52, 58, 0.2);
  border-bottom: 0;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(129, 52, 58, 0.18);
  line-height: 1.2;
}

.trust-order-button:hover,
.trust-order-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 15px 26px rgba(129, 52, 58, 0.24);
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.product-card.featured {
  border: 2px solid rgba(216, 184, 97, 0.82);
  box-shadow: 0 22px 42px rgba(129, 52, 58, 0.15), 0 0 0 4px rgba(216, 184, 97, 0.14);
}

.product-card.featured::after {
  position: absolute;
  inset: 7px;
  z-index: 1;
  content: "";
  border: 1px dashed rgba(216, 184, 97, 0.72);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.product-card.featured .product-tag {
  color: #172619;
  background: #f1d276;
  border: 1px solid rgba(129, 52, 58, 0.16);
  box-shadow: 0 10px 20px rgba(129, 52, 58, 0.16);
}

.product-card img {
  width: 100%;
  height: clamp(190px, 19vw, 226px);
  object-fit: cover;
}

#nam-lim-xanh-trong img {
  object-position: center 44%;
}

#nam-lim-xanh-loai-1 img,
#nam-lim-xanh-dac-biet img {
  object-position: center 45%;
}

.product-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.product-body h3 {
  margin-bottom: 8px;
  line-height: 1.16;
}

.product-body p,
.product-summary {
  color: var(--muted);
}

.product-summary {
  margin: 0 0 12px;
  font-size: 15.5px;
  line-height: 1.62;
}

.product-body ul {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding-left: 20px;
  color: #3c463e;
  line-height: 1.5;
}

.product-note {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-top: 12px;
  color: var(--muted);
  border-top: 1px solid rgba(33, 79, 54, 0.1);
  font-size: 14px;
  line-height: 1.5;
}

.product-note span {
  display: block;
}

.product-note strong {
  color: var(--green-deep);
  font-weight: 900;
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 28px);
  margin: 0;
  padding: 7px 10px;
  color: var(--green-deep);
  background: var(--gold);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(28, 32, 24, 0.12);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.price {
  display: block;
  margin: 0 0 14px;
  color: var(--maroon);
  font-size: 28px;
  line-height: 1.1;
}

.compare-table {
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.85fr) minmax(120px, 0.55fr) minmax(220px, 1.25fr) minmax(220px, 1.35fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-top: 1px solid rgba(33, 79, 54, 0.1);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-head {
  color: #fff;
  background: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-row strong {
  color: var(--green-deep);
}

.compare-row span {
  color: var(--muted);
  line-height: 1.5;
}

.compare-row span:nth-child(2) {
  color: var(--maroon);
  font-weight: 900;
}

.compare-row.is-highlight {
  background: #fbf8ef;
}

.card-action,
.choice-grid a,
.text-link {
  font-weight: 900;
}

.card-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 11px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  border: 1px solid rgba(33, 79, 54, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(33, 79, 54, 0.14);
  line-height: 1.24;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.card-action:hover,
.card-action:focus-visible {
  box-shadow: 0 13px 24px rgba(33, 79, 54, 0.2);
}

.choose-section,
.order-section,
.guide-section,
.trust-section,
.composition-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--maroon);
  border-bottom: 2px solid rgba(129, 52, 58, 0.22);
}

.choice-grid article {
  display: grid;
  gap: 10px;
}

.order-section {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: start;
}

.order-copy {
  max-width: 680px;
}

.choice-grid span {
  width: fit-content;
  padding: 6px 9px;
  color: var(--green-deep);
  background: var(--sage);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.choice-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 8px;
  padding: 10px 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  border: 1px solid rgba(33, 79, 54, 0.16);
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(33, 79, 54, 0.12);
  line-height: 1.24;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.choice-grid a:hover,
.choice-grid a:focus-visible {
  box-shadow: 0 11px 20px rgba(33, 79, 54, 0.18);
}

.choice-featured {
  border-color: rgba(129, 52, 58, 0.32);
}

.composition-section {
  grid-template-columns: 1fr;
  gap: clamp(22px, 3.4vw, 34px);
  align-items: stretch;
}

.composition-copy,
.composition-map {
  min-width: 0;
}

.composition-copy {
  display: grid;
  justify-items: start;
  gap: 12px;
  max-width: 880px;
  margin: 0;
  text-align: left;
}

.composition-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.composition-map {
  position: relative;
  min-height: 660px;
  padding: clamp(18px, 2.6vw, 26px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(216, 184, 97, 0.18), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(255, 248, 223, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(33, 79, 54, 0.98), rgba(18, 54, 36, 0.94));
  border: 1px solid rgba(216, 184, 97, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(18, 54, 36, 0.2);
}

.composition-map::before {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px solid rgba(216, 184, 97, 0.12);
  border-radius: 14px;
  pointer-events: none;
}

.composition-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.composition-lines path {
  fill: none;
  stroke: rgba(216, 184, 97, 0.68);
  stroke-width: 2.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.composition-lines circle {
  fill: var(--gold);
  opacity: 0.92;
}

.mushroom-core {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: 340px;
  margin: 0;
  transform: translate(-50%, -50%);
}

.mushroom-core::before {
  position: absolute;
  inset: 4px -22px 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle, rgba(216, 184, 97, 0.22), transparent 66%);
  filter: blur(6px);
}

.mushroom-core img {
  width: min(340px, 100%);
  height: auto;
  filter: drop-shadow(0 22px 24px rgba(5, 16, 10, 0.34));
}

.compound-callout {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px 12px;
  width: 318px;
  min-height: 128px;
  padding: 16px;
  color: rgba(247, 244, 231, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(216, 184, 97, 0.62);
  border-radius: var(--radius);
  box-shadow: 0 18px 30px rgba(4, 17, 9, 0.18), inset 0 0 0 1px rgba(255, 248, 223, 0.035);
  backdrop-filter: blur(10px);
}

.compound-callout span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #18241c;
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.compound-callout h3 {
  margin: 0;
  color: #fff8df;
  font-size: 18px;
  line-height: 1.2;
}

.compound-callout p {
  grid-column: 2;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.compound-callout-1 {
  top: 46px;
  left: 42px;
}

.compound-callout-2 {
  top: 46px;
  right: 42px;
}

.compound-callout-3 {
  top: 314px;
  left: 42px;
}

.compound-callout-4 {
  top: 314px;
  right: 42px;
}

.compound-callout-5 {
  bottom: 38px;
  left: 50%;
  width: 430px;
  min-height: 118px;
  transform: translateX(-50%);
}

.composition-map-note {
  max-width: 780px;
  margin: -12px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.composition-detail-cta {
  display: flex;
  justify-content: center;
  margin-top: -4px;
}

.composition-detail-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  border: 1px solid rgba(33, 79, 54, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(33, 79, 54, 0.14);
  font-weight: 900;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.composition-detail-cta a:hover,
.composition-detail-cta a:focus-visible {
  box-shadow: 0 14px 26px rgba(33, 79, 54, 0.22);
  transform: translateY(-1px);
}

.composition-map-note strong {
  color: var(--green-deep);
}

.process-grid strong {
  color: var(--maroon);
  font-size: 13px;
  text-transform: uppercase;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(22px, 3.2vw, 32px);
  background:
    linear-gradient(120deg, rgba(238, 244, 233, 0.92), rgba(255, 255, 255, 0.96)),
    #fff;
}

.proof-panel p {
  color: var(--muted);
}

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

.proof-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  box-shadow: none;
}

.proof-grid strong {
  color: var(--maroon);
  font-size: 13px;
}

.proof-grid span {
  color: #334138;
  line-height: 1.5;
}

.customer-proof-panel {
  display: grid;
  gap: 18px;
}

.customer-proof-copy {
  display: grid;
  gap: 10px;
  max-width: 820px;
  padding: 20px;
  color: var(--green-deep);
  background:
    linear-gradient(120deg, rgba(238, 244, 233, 0.92), rgba(255, 255, 255, 0.98)),
    var(--surface);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.customer-proof-copy > strong {
  width: fit-content;
  padding: 6px 9px;
  color: var(--green-deep);
  background: #f4e4b2;
  border: 1px solid rgba(201, 166, 79, 0.42);
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
}

.customer-proof-copy h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
}

.customer-proof-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.customer-proof-copy ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding-left: 20px;
  color: #334138;
  line-height: 1.55;
}

.zalo-proof-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.zalo-proof-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  min-width: 0;
  margin: 0;
  padding: 10px;
  background: var(--surface);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.zalo-proof-card img {
  display: block;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  border-radius: 6px;
}

.zalo-proof-card figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  min-height: 58px;
}

.support-box {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 16px;
  color: var(--green-deep);
  background: var(--sage);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
}

.support-box span {
  color: var(--muted);
  line-height: 1.5;
}

.order-section .process-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.order-section .process-grid article {
  display: grid;
  gap: 7px;
  padding: 14px 16px;
  background: rgba(238, 244, 233, 0.72);
  border-color: rgba(33, 79, 54, 0.12);
  box-shadow: 0 10px 22px rgba(28, 32, 24, 0.07);
}

.order-section .process-grid h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.18;
}

.order-section .process-grid p {
  line-height: 1.6;
}

.order-card {
  display: grid;
  justify-self: end;
  width: 100%;
  max-width: 520px;
  gap: 13px;
  padding: 20px;
  border: 1.5px dashed rgba(201, 166, 79, 0.62);
}

.order-actions {
  display: grid;
  gap: 10px;
}

.order-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}

.order-card label {
  display: grid;
  gap: 6px;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 900;
}

.order-card select,
.order-card input,
.order-card textarea {
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.order-card input:invalid:not(:placeholder-shown) {
  border-color: rgba(129, 52, 58, 0.55);
  box-shadow: 0 0 0 3px rgba(129, 52, 58, 0.1);
}

.order-card select,
.order-card input {
  min-height: 44px;
}

.quick-quantities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.quick-quantities button {
  min-height: 42px;
  padding: 9px 10px;
  color: var(--green-deep);
  background: var(--sage);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.quick-quantities button.is-active,
.quick-quantities button:hover,
.quick-quantities button:focus-visible {
  color: #fff;
  background: var(--green);
  border-color: rgba(33, 79, 54, 0.24);
  box-shadow: 0 8px 14px rgba(33, 79, 54, 0.13);
}

.recommendation {
  min-height: 44px;
  padding: 12px 14px;
  color: var(--green-deep);
  background: var(--sage);
  border: 1px solid rgba(33, 79, 54, 0.12);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.45;
}

.estimate {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 4px 0;
  padding: 14px 16px;
  color: var(--green-deep);
  background: transparent;
  border: 1px solid rgba(33, 79, 54, 0.16);
  border-radius: var(--radius);
}

.estimate span {
  min-width: 0;
  color: var(--muted);
  font-weight: 800;
}

.estimate strong {
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1.1;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12.5px;
}

.order-status {
  margin: 0;
  padding: 12px 14px;
  color: var(--green-deep);
  background: var(--sage);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.order-status.is-error {
  color: #583338;
  background: #fff5f0;
  border-color: rgba(129, 52, 58, 0.22);
}

body.order-modal-open {
  overflow: hidden;
}

.order-success-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}

.order-success-modal[hidden] {
  display: none;
}

.order-success-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(18, 54, 36, 0.48);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.order-success-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 30px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(18, 28, 20, 0.22);
}

.order-success-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--green-deep);
  background: var(--sage);
  border: 1px solid rgba(33, 79, 54, 0.12);
  border-radius: 999px;
  cursor: pointer;
}

.order-success-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.order-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(33, 79, 54, 0.18);
}

.order-success-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.order-success-card .eyebrow {
  margin: 0 0 8px;
}

.order-success-card h2 {
  max-width: 360px;
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
}

.order-success-card p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.order-success-actions {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
  margin-top: 22px;
}

.story-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-media img {
  width: 100%;
  height: clamp(260px, 32vw, 420px);
  object-fit: cover;
  object-position: center 45%;
}

.guide-section .story-media img {
  height: clamp(340px, 42vw, 500px);
  object-position: center 58%;
}

.story-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.story-list span {
  padding: 14px;
  color: var(--green-deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.health-note {
  margin-top: 14px;
  padding: 16px;
  color: #583338;
  background: #fff5f0;
  border: 1px solid rgba(129, 52, 58, 0.2);
  border-radius: var(--radius);
  line-height: 1.58;
}

.trust-section {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.trust-details {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.trust-badge-large {
  width: 100%;
  display: flex;
  justify-content: center;
}

.trust-badge-large img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge-large img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.trust-promises-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.promise-card {
  padding: 12px 14px;
  background: var(--sage);
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 4px;
}

.promise-card span {
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

.promise-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.52;
  color: var(--text);
  margin: 4px 0 0;
}

.promise-highlight {
  color: var(--maroon);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(129, 52, 58, 0.34);
}

.promise-highlight:hover,
.promise-highlight:focus-visible {
  color: #a15445;
  border-bottom-color: currentColor;
}

html[data-theme="dark"] .promise-highlight {
  color: #f0cd78;
  border-bottom-color: rgba(240, 205, 120, 0.42);
}

html[data-theme="dark"] .promise-highlight:hover,
html[data-theme="dark"] .promise-highlight:focus-visible {
  color: #ffe4a3;
  border-bottom-color: currentColor;
}

.article-page {
  background:
    linear-gradient(90deg, rgba(33, 79, 54, 0.04), transparent 40%, rgba(129, 52, 58, 0.04)),
    var(--paper);
}

.article-hero,
.article-layout {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
}

.article-hero {
  padding: clamp(46px, 7vw, 78px) 0 clamp(24px, 4vw, 40px);
}

.article-hero h1 {
  max-width: 900px;
  color: var(--green-deep);
}

.article-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  padding: 0 0 clamp(42px, 7vw, 72px);
}

.article-toc,
.article-content {
  background: var(--surface);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-toc {
  grid-column: 1;
  position: sticky;
  top: calc(var(--site-header-height) + 18px);
  display: grid;
  gap: 8px;
  align-self: start;
  max-height: calc(100svh - var(--site-header-height) - 38px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 18px;
  transition:
    top 220ms ease,
    max-height 220ms ease;
  scrollbar-width: thin;
}

.article-content {
  grid-column: 2;
}

body.header-hidden .article-toc {
  top: 18px;
  max-height: calc(100svh - 36px);
}

body.article-toc-fixed .article-toc {
  position: fixed;
  left: var(--article-toc-left);
  top: calc(var(--site-header-height) + 18px);
  width: var(--article-toc-width);
  z-index: 12;
}

body.header-hidden.article-toc-fixed .article-toc {
  top: 18px;
}

@media (max-width: 1060px) {
  body.article-toc-fixed .article-toc {
    top: calc(var(--site-header-height) + 18px);
  }

  body.header-hidden.article-toc-fixed .article-toc {
    top: 18px;
  }
}

.article-toc strong {
  color: var(--green-deep);
  font-size: 13px;
  text-transform: uppercase;
}

.article-toc a {
  padding: 9px 10px;
  color: #334138;
  background: var(--sage);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.article-content {
  padding: clamp(24px, 4vw, 42px);
}

.article-content section + section {
  margin-top: clamp(26px, 4vw, 38px);
  padding-top: clamp(22px, 3.4vw, 32px);
  border-top: 1px solid rgba(33, 79, 54, 0.12);
}

.article-content h2 {
  max-width: 820px;
  font-size: clamp(25px, 3vw, 34px);
}

.article-content p,
.article-content li {
  color: var(--muted);
  line-height: 1.72;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.article-content strong {
  color: var(--green-deep);
}

.article-summary {
  background: var(--sage);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 26px);
}

.article-summary h2 {
  margin-bottom: 10px;
}

.article-cover {
  margin: clamp(22px, 4vw, 34px) 0;
}

.article-cover img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 1px solid rgba(33, 79, 54, 0.14);
  box-shadow: var(--shadow);
}

.article-cover figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.fact-grid,
.article-related {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.fact-grid article,
.article-related article {
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fact-grid strong,
.article-related span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 9px;
  color: var(--maroon);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-grid p,
.article-related p {
  margin-bottom: 0;
}

.article-related h3 {
  margin-bottom: 8px;
}

.article-related a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green-deep);
  border-bottom: 2px solid rgba(33, 79, 54, 0.22);
  font-weight: 900;
}

.evidence-table {
  overflow: hidden;
  margin-top: 16px;
  background: #fff;
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.evidence-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(240px, 1.25fr) minmax(220px, 1fr);
  gap: 16px;
  align-items: start;
  padding: 17px 18px;
  border-top: 1px solid rgba(33, 79, 54, 0.1);
}

.evidence-row:first-child {
  border-top: 0;
}

.evidence-head {
  color: #fff;
  background: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.evidence-row strong {
  color: var(--green-deep);
}

.evidence-row span {
  color: var(--muted);
  line-height: 1.55;
}

.article-note,
.article-cta-panel {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
}

.article-note {
  color: #583338;
  background: #fff5f0;
  border: 1px solid rgba(129, 52, 58, 0.2);
  line-height: 1.58;
}

.article-cta-panel {
  background: var(--sage);
  border: 1px solid rgba(33, 79, 54, 0.14);
}

.article-cta-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 32px);
}

.article-cta-panel p {
  margin-bottom: 0;
}

.source-list {
  background: #f8faf5;
  border-radius: var(--radius);
}

.source-list a {
  color: var(--green-deep);
  border-bottom: 1px solid rgba(33, 79, 54, 0.24);
  font-weight: 800;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(0, 6fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.faq-media {
  position: sticky;
  top: calc(var(--site-header-height) + 24px);
  align-self: start;
  margin: clamp(62px, 5vw, 76px) 0 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-media img {
  width: 100%;
  height: clamp(420px, 52vw, 640px);
  object-fit: cover;
  object-position: 50% 62%;
}

.faq-content {
  min-width: 0;
}

.faq-content .section-heading {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--green-deep);
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: clamp(42px, 7vw, 76px) clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--green-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer h2 {
  max-width: 760px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  color: var(--green-deep);
}

.contact-card a {
  min-height: 42px;
  padding: 10px 12px;
  background: #f5f1e5;
  border-radius: 6px;
  font-weight: 900;
}

.footer-note {
  max-width: 1180px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(33, 79, 54, 0.14);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(27, 33, 28, 0.18);
  transform: translateY(130%);
  transition: transform 180ms ease;
  backdrop-filter: blur(12px);
}

body.show-floating .floating-contact {
  transform: translateY(0);
}

.floating-contact > span {
  padding: 0 8px 0 10px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.floating-contact a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 40px;
  padding: 0 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 9px 18px rgba(33, 79, 54, 0.16);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.floating-contact a[href*="zalo.me"] {
  background: linear-gradient(135deg, var(--zalo-blue), var(--zalo-blue-deep));
  box-shadow: 0 9px 18px var(--zalo-blue-soft);
}

.floating-contact a:hover,
.floating-contact a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(33, 79, 54, 0.22);
}

.floating-contact a[href*="zalo.me"]:hover,
.floating-contact a[href*="zalo.me"]:focus-visible {
  box-shadow: 0 12px 22px var(--zalo-blue-soft);
}

.floating-contact svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

html[data-theme="dark"] body,
html[data-theme="dark"] .article-page {
  background:
    linear-gradient(90deg, rgba(120, 169, 132, 0.08), transparent 38%, rgba(210, 123, 128, 0.07)),
    var(--paper);
}

html[data-theme="dark"] .site-header {
  background: rgba(16, 25, 18, 0.94);
  border-bottom-color: rgba(216, 184, 97, 0.18);
}

html[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(16, 25, 18, 0.98);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .brand-logo {
  border-color: rgba(216, 184, 97, 0.26);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .brand strong,
html[data-theme="dark"] .nav-links,
html[data-theme="dark"] .decision-card,
html[data-theme="dark"] .conversion-band strong,
html[data-theme="dark"] .product-tag,
html[data-theme="dark"] .compare-row strong,
html[data-theme="dark"] .choice-grid span,
html[data-theme="dark"] .support-box,
html[data-theme="dark"] .order-card label,
html[data-theme="dark"] .quick-quantities button,
html[data-theme="dark"] .recommendation,
html[data-theme="dark"] .story-list span,
html[data-theme="dark"] .promise-card span,
html[data-theme="dark"] .customer-proof-copy,
html[data-theme="dark"] .customer-proof-copy h3,
html[data-theme="dark"] .article-hero h1,
html[data-theme="dark"] .article-toc strong,
html[data-theme="dark"] .article-content strong,
html[data-theme="dark"] .article-related a,
html[data-theme="dark"] .evidence-row strong,
html[data-theme="dark"] .source-list a,
html[data-theme="dark"] .faq-list summary,
html[data-theme="dark"] .contact-card {
  color: #edf4e9;
}

html[data-theme="dark"] .theme-switch {
  background: rgba(37, 52, 38, 0.9);
  border-color: rgba(216, 184, 97, 0.2);
}

html[data-theme="dark"] .theme-option {
  color: #cdd7c9;
}

html[data-theme="dark"] .theme-option.is-active {
  color: #18241c;
  background: var(--gold);
  box-shadow: 0 6px 14px rgba(216, 184, 97, 0.16);
}

html[data-theme="dark"] .decision-card,
html[data-theme="dark"] .conversion-band,
html[data-theme="dark"] .fact-grid article,
html[data-theme="dark"] .article-related article,
html[data-theme="dark"] .evidence-table,
html[data-theme="dark"] .story-list span {
  background: var(--surface);
  border-color: rgba(216, 184, 97, 0.14);
}

html[data-theme="dark"] .question-grid article,
html[data-theme="dark"] .beginner-grid article,
html[data-theme="dark"] .daily-cost-grid article,
html[data-theme="dark"] .process-grid article,
html[data-theme="dark"] .choice-grid article,
html[data-theme="dark"] .content-columns article,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .customer-proof-copy,
html[data-theme="dark"] .zalo-proof-card,
html[data-theme="dark"] .order-card,
html[data-theme="dark"] .faq-list details,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .trust-details article,
html[data-theme="dark"] .compare-table,
html[data-theme="dark"] .proof-panel,
html[data-theme="dark"] .proof-grid article,
html[data-theme="dark"] .article-toc,
html[data-theme="dark"] .article-content {
  border-color: rgba(216, 184, 97, 0.14);
}

html[data-theme="dark"] .faq-media {
  background: var(--surface);
  border-color: rgba(216, 184, 97, 0.16);
}

html[data-theme="dark"] .product-card.featured {
  border-color: rgba(216, 184, 97, 0.78);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22), 0 0 0 4px rgba(216, 184, 97, 0.13);
}

html[data-theme="dark"] .decision-card a,
html[data-theme="dark"] .support-box,
html[data-theme="dark"] .promise-card,
html[data-theme="dark"] .article-summary,
html[data-theme="dark"] .article-cta-panel,
html[data-theme="dark"] .source-list,
html[data-theme="dark"] .article-toc a {
  background: var(--sage);
  border-color: rgba(216, 184, 97, 0.13);
}

html[data-theme="dark"] .beginner-grid article {
  border-color: rgba(216, 184, 97, 0.16);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

html[data-theme="dark"] .beginner-grid article:nth-child(1) {
  background: linear-gradient(180deg, rgba(25, 55, 37, 0.98), rgba(16, 38, 26, 0.98));
}

html[data-theme="dark"] .beginner-grid article:nth-child(2) {
  background: linear-gradient(180deg, rgba(55, 48, 25, 0.98), rgba(28, 38, 23, 0.98));
}

html[data-theme="dark"] .beginner-grid article:nth-child(3) {
  background: linear-gradient(180deg, rgba(22, 52, 43, 0.98), rgba(15, 37, 29, 0.98));
}

html[data-theme="dark"] .beginner-grid article:nth-child(4) {
  background: linear-gradient(180deg, rgba(53, 35, 32, 0.98), rgba(31, 37, 24, 0.98));
}

html[data-theme="dark"] .beginner-grid article:hover {
  border-color: rgba(216, 184, 97, 0.28);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .beginner-grid span {
  color: #17261c;
  background: var(--gold);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .beginner-grid .read-more-link {
  color: #f0cd78;
  background: rgba(216, 184, 97, 0.1);
  border-color: rgba(216, 184, 97, 0.24);
}

html[data-theme="dark"] .beginner-grid .read-more-link:hover,
html[data-theme="dark"] .beginner-grid .read-more-link:focus-visible {
  color: #17261c;
  background: var(--gold);
}

html[data-theme="dark"] .secondary-action {
  color: #edf4e9;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

html[data-theme="dark"] .product-tag {
  color: #18241c;
  background: var(--gold);
}

html[data-theme="dark"] .call-action,
html[data-theme="dark"] .health-note,
html[data-theme="dark"] .article-note {
  color: #f1d9d0;
  background: rgba(129, 52, 58, 0.18);
  border-color: rgba(210, 123, 128, 0.24);
}

html[data-theme="dark"] .proof-panel {
  background:
    linear-gradient(120deg, rgba(37, 52, 38, 0.94), rgba(24, 36, 28, 0.96)),
    var(--surface);
}

html[data-theme="dark"] .order-section .process-grid article {
  background:
    linear-gradient(135deg, rgba(37, 52, 38, 0.96), rgba(18, 29, 22, 0.98)),
    #18241c;
  border-color: rgba(216, 184, 97, 0.2);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .order-section .process-grid strong {
  color: #f0a7a2;
}

html[data-theme="dark"] .order-section .process-grid h3 {
  color: #f7f4e7;
}

html[data-theme="dark"] .order-section .process-grid p {
  color: #cdd7c9;
}

html[data-theme="dark"] .composition-map-note strong {
  color: #f7f4e7;
}

html[data-theme="dark"] .customer-proof-copy {
  background:
    linear-gradient(120deg, rgba(37, 52, 38, 0.94), rgba(24, 36, 28, 0.96)),
    var(--surface);
}

html[data-theme="dark"] .compare-row {
  border-top-color: rgba(216, 184, 97, 0.12);
}

html[data-theme="dark"] .compare-row.is-highlight {
  background: rgba(216, 184, 97, 0.08);
}

html[data-theme="dark"] .product-summary {
  color: var(--muted);
}

html[data-theme="dark"] .product-note {
  color: var(--muted);
  border-top-color: rgba(216, 184, 97, 0.14);
}

html[data-theme="dark"] .product-note strong {
  color: #f0cd78;
}

html[data-theme="dark"] .product-body ul,
html[data-theme="dark"] .customer-proof-copy ul,
html[data-theme="dark"] .proof-grid span,
html[data-theme="dark"] .article-toc a,
html[data-theme="dark"] .evidence-row span {
  color: var(--muted);
}

html[data-theme="dark"] .order-card select,
html[data-theme="dark"] .order-card input,
html[data-theme="dark"] .order-card textarea {
  color: var(--ink);
  background: #111a14;
  border-color: var(--line);
}

html[data-theme="dark"] .order-success-backdrop {
  background: rgba(5, 12, 7, 0.72);
}

html[data-theme="dark"] .order-success-card {
  background: var(--surface);
  border-color: rgba(216, 184, 97, 0.16);
}

html[data-theme="dark"] .order-success-close {
  color: #edf4e9;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(216, 184, 97, 0.16);
}

html[data-theme="dark"] .quick-quantities button.is-active,
html[data-theme="dark"] .quick-quantities button:hover,
html[data-theme="dark"] .quick-quantities button:focus-visible {
  color: #111a14;
  background: var(--gold);
}

html[data-theme="dark"] .site-footer {
  background: #0b2115;
}

html[data-theme="dark"] .contact-card a {
  color: #172118;
  background: #e8dcc0;
}

html[data-theme="dark"] a[href*="zalo.me"].primary-action,
html[data-theme="dark"] a[href*="zalo.me"].secondary-action,
html[data-theme="dark"] .floating-contact a[href*="zalo.me"] {
  color: #fff;
  background: linear-gradient(135deg, var(--zalo-blue), var(--zalo-blue-deep));
  border-color: rgba(43, 140, 255, 0.32);
  box-shadow: 0 10px 20px var(--zalo-blue-soft);
}

html[data-theme="dark"] .floating-contact {
  background: rgba(11, 33, 21, 0.94);
  border-color: rgba(216, 184, 97, 0.2);
}

html[data-theme="dark"] .floating-contact > span {
  color: #edf4e9;
}

@media (max-width: 1060px) {
  .site-header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-layout,
  .question-grid,
  .beginner-grid,
  .daily-cost-grid,
  .process-grid,
  .product-grid,
  .choose-section,
  .order-section,
  .guide-section,
  .composition-section,
  .trust-section,
  .content-columns,
  .footer-grid,
  .conversion-band,
  .proof-panel {
    grid-template-columns: 1fr;
  }

  .composition-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: 0;
  }

  .composition-map::before,
  .composition-lines {
    display: none;
  }

  .mushroom-core,
  .compound-callout,
  .compound-callout-5 {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 0;
    transform: none;
  }

  .mushroom-core {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(280px, 100%);
  }

  .compound-callout-5 {
    grid-column: 1 / -1;
  }

  .article-toc {
    top: calc(var(--site-header-height) + 18px);
    max-height: calc(100svh - var(--site-header-height) - 38px);
  }

  .conversion-band {
    margin-top: 18px;
  }

  .order-copy,
  .order-card {
    max-width: none;
  }

  .order-card {
    justify-self: stretch;
  }

  .compare-row {
    grid-template-columns: 1fr 0.62fr;
  }

  .compare-head {
    display: none;
  }

  .compare-row strong,
  .compare-row span {
    display: grid;
    gap: 4px;
  }

  .compare-row strong::before {
    content: "Loại nấm";
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
  }

  .compare-row span:nth-child(2)::before {
    content: "Giá";
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
  }

  .compare-row span:nth-child(3)::before {
    content: "Giá trị chính";
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
  }

  .compare-row span:nth-child(4)::before {
    content: "Phù hợp khi";
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
  }

  .hero-layout {
    align-items: start;
    min-height: 690px;
    padding-bottom: 32px;
  }

  .decision-card {
    max-width: 560px;
  }

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

  .trust-details,
  .story-list,
  .proof-grid,
  .fact-grid,
  .article-related {
    grid-template-columns: 1fr;
  }

  .evidence-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) and (max-width: 1060px) {
  .beginner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc,
  .article-content {
    grid-column: 1;
  }

  .article-toc {
    position: static;
    max-height: none;
    overflow: visible;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-media {
    position: static;
    width: min(100%, 520px);
    margin-top: 0;
    justify-self: center;
  }

  .faq-media img {
    height: min(620px, 96vw);
  }

  .composition-map {
    grid-template-columns: 1fr;
  }

  .beginner-grid article {
    padding: 18px;
  }

  .beginner-grid p {
    font-size: 15.5px;
    line-height: 1.68;
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    width: calc(100% - 24px);
    padding: 10px 0 9px;
  }

  .brand {
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand strong {
    font-size: clamp(14.8px, 4vw, 16.5px);
    line-height: 1.05;
    white-space: nowrap;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    gap: 5px;
    width: auto;
    min-width: max-content;
  }

  .theme-switch {
    justify-self: end;
    grid-template-columns: repeat(2, 28px);
    padding: 2px;
  }

  .theme-option {
    width: 28px;
    height: 28px;
  }

  .header-cta {
    width: auto;
    min-height: 34px;
    padding: 0 10px 0 9px;
    font-size: 12.3px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 4px;
    font-size: 13.2px;
    font-weight: 850;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 5px 0;
  }

  .hero {
    min-height: 540px;
  }

  .hero-layout {
    width: calc(100% - 28px);
    max-width: 1180px;
    min-height: 540px;
    padding-top: 38px;
    padding-bottom: 20px;
  }

  .hero-content,
  .hero-copy {
    width: min(100%, 430px);
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.08;
  }

  #hero-title {
    margin-bottom: 12px;
    font-size: clamp(29px, 7.2vw, 34px);
    line-height: 1.12;
  }

  .hero-title-chunk {
    display: block;
  }

  .hero-copy {
    font-size: clamp(15.2px, 3.9vw, 16.8px);
    line-height: 1.58;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-strip {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .trust-strip span {
    flex: 0 1 auto;
  }

  .conversion-band {
    width: calc(100vw - 28px);
    max-width: 1180px;
    padding: 14px;
  }

  .zalo-proof-gallery {
    grid-auto-columns: minmax(238px, 78vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding: 0 2px 10px;
    scroll-snap-type: x proximity;
  }

  .zalo-proof-card {
    scroll-snap-align: start;
  }

  .article-hero,
  .article-layout {
    width: calc(100vw - 28px);
    max-width: 1180px;
  }

  .article-hero {
    padding-top: 34px;
  }

  .article-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .conversion-band a {
    width: 100%;
  }

  .decision-card {
    display: none;
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .quick-quantities {
    grid-template-columns: 1fr;
  }

  .order-row {
    grid-template-columns: 1fr;
  }

  .order-success-card {
    padding: 26px 18px 20px;
  }

  .order-success-card h2 {
    max-width: 300px;
    font-size: 26px;
  }

  .order-success-actions {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .story-media img {
    height: 240px;
  }

  .guide-section .story-media img {
    height: 320px;
    object-position: center 58%;
  }

  .section-shell {
    width: calc(100vw - 28px);
    max-width: 1180px;
    padding: 28px 0;
  }

  .section-shell + .section-shell {
    padding-top: 16px;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr 64px 64px;
  }

  .floating-contact > span {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .site-header-inner {
    width: calc(100% - 20px);
    gap: 8px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand strong {
    font-size: 14.4px;
  }

  .header-cta {
    width: 34px;
    min-width: 34px;
    padding: 0;
  }

  .header-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .header-cta svg {
    width: 16px;
    height: 16px;
  }

  .theme-switch {
    grid-template-columns: repeat(2, 27px);
  }

  .theme-option {
    width: 27px;
    height: 27px;
  }
}
