:root {
  color-scheme: light;
  --red: #b42318;
  --red-dark: #7f1d1d;
  --chilli: #f4251b;
  --hot-pink: #f252a7;
  --lime: #b7f500;
  --sun: #ffd41f;
  --sun-soft: #fff1a6;
  --orange: #ff7a1a;
  --green: #176b45;
  --leaf: #d8f2d5;
  --cream: #fff8df;
  --paper: #fffdf8;
  --ink: #1f1f1f;
  --muted: #66615b;
  --line: #eadfce;
  --gold: #c58b16;
  --shadow: 0 22px 60px rgba(72, 35, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 212, 31, 0.24), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(242, 82, 167, 0.16), transparent 22%),
    var(--paper);
  color: var(--ink);
  font-family:
    "Noto Sans Thai",
    "IBM Plex Sans Thai",
    "Prompt",
    "Segoe UI",
    "Arial",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(166, 26, 24, 0.96);
  backdrop-filter: blur(16px);
  color: white;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 24px;
  font-weight: 800;
}

.logo-mark {
  overflow: hidden;
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.76);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.35);
}

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

.brand strong {
  color: white;
  font-size: 18px;
  font-weight: 900;
}

.brand small {
  color: rgba(255, 245, 220, 0.9);
  font-size: 12px;
  font-weight: 650;
}

.desktop-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(18px, 4vw, 56px);
  display: grid;
  min-width: 220px;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(180, 35, 24, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.desktop-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.desktop-nav a {
  border-radius: 6px;
  padding: 11px 12px;
  font-weight: 750;
}

.desktop-nav a:hover {
  background: #fff2c7;
  color: var(--red);
}

.menu-toggle {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(72, 10, 10, 0.2);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--red-dark);
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-toggle span + span {
  margin-top: 0;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 750;
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, var(--chilli), var(--orange));
  color: white;
  box-shadow: 0 10px 24px rgba(244, 37, 27, 0.24);
}

.nav-cta.line-action,
.button.line-action {
  background: #06c755;
  color: white;
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.24);
}

.button.secondary {
  border: 1px solid rgba(180, 35, 24, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: var(--red-dark);
}

.button.facebook-action,
.facebook-action {
  background: #1877f2;
  color: white;
  box-shadow: 0 10px 24px rgba(24, 119, 242, 0.22);
}

.button.full {
  width: 100%;
}

.line-action {
  white-space: nowrap;
}

.line-logo {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 72px);
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 6vw, 72px);
  background: var(--sun);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 248, 223, 0.96) 0%, rgba(255, 248, 223, 0.76) 34%, rgba(255, 248, 223, 0.16) 62%, rgba(255, 248, 223, 0) 100%),
    linear-gradient(0deg, rgba(180, 35, 24, 0.22), transparent 44%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(660px, 52vw);
  color: var(--red-dark);
}

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

.hero .eyebrow {
  color: var(--green);
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(56px, 9vw, 118px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
}

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

p {
  line-height: 1.75;
}

.hero-subtitle {
  max-width: 630px;
  color: #573119;
}

.hero-subtitle strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red-dark);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.1;
}

.hero-subtitle span {
  display: block;
  max-width: 590px;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 650;
  line-height: 1.5;
}

.hero-actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.band {
  background:
    linear-gradient(135deg, rgba(255, 212, 31, 0.28), rgba(255, 248, 223, 0.96) 38%, rgba(242, 82, 167, 0.1)),
    var(--cream);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(40px, 5.8vw, 70px);
  line-height: 1;
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 650;
  line-height: 1.55;
}

.problem-grid,
.quote-grid,
.review-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.problem-grid article,
.product-card,
blockquote,
.review-card,
.steps li,
.offer-panel,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.problem-grid article,
.product-card,
blockquote,
.review-card,
.steps li {
  padding: 20px;
}

.problem-grid span,
.steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--green);
  font-weight: 850;
}

.answer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.answer-points {
  display: grid;
  gap: 16px;
}

.answer-points p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
}

.answer-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--red-dark);
}

.pill,
.save-tag {
  display: inline-flex;
  margin: 0 0 16px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--green);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-product {
  border-color: rgba(180, 35, 24, 0.38);
}

.hot-pill {
  background: var(--sun);
  color: var(--red-dark);
}

.new-pill {
  background: var(--lime);
  color: #11261a;
}

.zing-pill {
  background: #ffe0ef;
  color: #9d174d;
}

.product-heading {
  display: block;
  max-width: none;
}

.product-heading .eyebrow,
.product-heading h2 {
  margin-bottom: 0;
}

.sales-summary {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.7fr);
  gap: 18px;
  margin: 22px 0 24px;
  padding: 18px;
  border: 1px solid rgba(180, 35, 24, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 214, 0, 0.32), rgba(255, 255, 255, 0.86)),
    white;
  box-shadow: var(--shadow);
}

.sales-summary strong {
  display: block;
  color: var(--red-dark);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.sales-summary span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.sales-summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sales-summary li {
  border-radius: 999px;
  background: white;
  color: var(--red-dark);
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 850;
}

.product-image {
  display: grid;
  min-height: 152px;
  margin: -4px -4px 10px;
  place-items: center;
  border-radius: 6px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 216, 61, 0.75), transparent 28%),
    radial-gradient(circle at 70% 65%, rgba(242, 82, 167, 0.22), transparent 32%),
    white;
}

.product-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--chilli) #ffe8a6;
}

.slider-shell {
  position: relative;
}

.slide-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: white;
  color: var(--red-dark);
  box-shadow: 0 16px 30px rgba(72, 35, 18, 0.18);
  cursor: pointer;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
}

.slide-button:hover {
  background: var(--sun);
}

.slide-button.prev {
  left: -22px;
}

.slide-button.next {
  right: -22px;
}

.product-slider::-webkit-scrollbar,
.product-slider::-webkit-scrollbar {
  height: 10px;
}

.product-slider::-webkit-scrollbar-track,
.product-slider::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #ffe8a6;
}

.product-slider::-webkit-scrollbar-thumb,
.product-slider::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--chilli), var(--orange));
}

.product-card {
  display: flex;
  flex: 0 0 clamp(300px, 31vw, 380px);
  min-height: 420px;
  flex-direction: column;
  padding: 18px;
  scroll-snap-align: start;
}

.product-card h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.product-card .pill {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.2;
}

.product-card p {
  margin-bottom: 6px;
  line-height: 1.42;
}

.product-card ul {
  margin-top: 4px;
  margin-bottom: 0;
  padding-left: 18px;
  line-height: 1.3;
}

.product-card li + li {
  margin-top: 2px;
}

.product-image img {
  width: 100%;
  max-width: 250px;
  height: 152px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(65, 32, 18, 0.16));
}

.product-image-wide {
  min-height: 152px;
}

.product-image-wide img {
  max-width: 290px;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
}

ul {
  margin: 12px 0 0;
  padding-left: 20px;
  line-height: 1.55;
}

.trial,
.order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.trial-copy p,
.order p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.offer-panel {
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(244, 37, 27, 0.14), transparent 42%),
    radial-gradient(circle at 88% 16%, rgba(183, 245, 0, 0.38), transparent 24%),
    white;
}

.offer-product-shot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: -8px 0 18px;
}

.offer-product-shot img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 247, 237, 0.72);
  filter: drop-shadow(0 14px 18px rgba(65, 32, 18, 0.14));
}

.offer-panel h3 {
  font-size: 36px;
}

.quote-grid blockquote {
  margin: 0;
}

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

blockquote p {
  margin-bottom: 0;
  color: var(--red-dark);
  font-size: 24px;
  font-weight: 850;
  line-height: 1.35;
}

blockquote cite {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.review-card {
  position: relative;
  flex: 0 0 clamp(280px, 30vw, 360px);
  min-height: 250px;
  overflow: hidden;
}

.review-shell {
  margin-top: 10px;
}

.review-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) #ffe8a6;
}

.review-slider .review-card {
  scroll-snap-align: start;
}

.review-slider::-webkit-scrollbar {
  height: 10px;
}

.review-slider::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #ffe8a6;
}

.review-slider::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

.review-card::after {
  position: absolute;
  right: -36px;
  bottom: -48px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(255, 212, 31, 0.45);
  content: "";
}

.stars {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.review-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.review-meta img {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(180, 35, 24, 0.12);
  border-radius: 8px;
  background: white;
  object-fit: contain;
}

.review-meta strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.review-meta small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
}

.review-card p {
  position: relative;
  z-index: 1;
  color: var(--red-dark);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.38;
}

.review-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--green);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 850;
}

.market-voice span {
  background: #fff0bd;
  color: #7a3f00;
}

.mild-voice span {
  background: #ffe0ef;
  color: #9d174d;
}

.mushroom-voice span {
  background: #e7f8da;
  color: var(--green);
}

.salmon-voice span {
  background: #ffe3d5;
  color: #a33b10;
}

.chicken-voice span {
  background: #fff0bd;
  color: #7a3f00;
}

.social-proof {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.6fr);
  gap: 22px;
  align-items: start;
  margin-top: 28px;
  border: 1px solid rgba(180, 35, 24, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 16px 36px rgba(105, 49, 16, 0.1);
}

.social-proof h3 {
  margin: 8px 0 8px;
  color: var(--red-dark);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.social-proof p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-proof figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(180, 35, 24, 0.12);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 26px rgba(105, 49, 16, 0.08);
}

.social-proof img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
}

.social-proof figcaption {
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lead-funnel {
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 82, 167, 0.14), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(183, 245, 0, 0.24), transparent 26%),
    white;
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 0;
  color: white;
  transform: translateY(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.step-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 26px 60px rgba(72, 35, 18, 0.2);
}

.step-card::after {
  position: absolute;
  right: -50px;
  bottom: -54px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.step-card span {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red-dark);
}

.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}

.step-card p {
  color: rgba(255, 255, 255, 0.86);
}

.step-hot {
  background: linear-gradient(145deg, var(--chilli), var(--orange));
}

.step-line {
  background: linear-gradient(145deg, #06c755, var(--green));
}

.step-trial {
  background: linear-gradient(145deg, var(--hot-pink), #c026d3);
}

.step-repeat {
  background: linear-gradient(145deg, #233c98, #38bdf8);
}

.steps p,
.product-card p,
.problem-grid p {
  color: var(--muted);
}

.step-card p {
  color: rgba(255, 255, 255, 0.86);
}

.faq {
  max-width: 960px;
  margin: 0 auto;
}

details {
  padding: 22px 24px;
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.platform-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 16px;
  color: white;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.linktree-action {
  background: #111827;
  color: white;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
}

.order-channels {
  background: #fffaf5;
}

.order-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.order-channel-card {
  display: grid;
  min-height: 96px;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(180, 35, 24, 0.12);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 18px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(105, 49, 16, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.order-channel-card:hover,
.order-channel-card:focus-visible {
  border-color: rgba(180, 35, 24, 0.32);
  box-shadow: 0 18px 34px rgba(105, 49, 16, 0.13);
  transform: translateY(-2px);
}

.order-channel-card span {
  font-size: 18px;
  font-weight: 850;
}

.order-channel-card small {
  color: var(--muted);
  font-size: 13px;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 34px clamp(18px, 5vw, 72px) 90px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.footer strong {
  color: var(--ink);
  font-size: 22px;
}

.footer-branding span {
  display: block;
  margin-top: 6px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-actions .button {
  text-align: center;
}

.line-add-friend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 4px 6px;
}

.line-add-friend img {
  display: block;
  width: 116px;
  height: 36px;
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mobile-cta a {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 6px;
  background: #06c755;
  color: white;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.mobile-cta a + a {
  background: #1877f2;
}

.mobile-cta a.line-action {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 980px) {
  .problem-grid,
  .quote-grid,
  .review-grid,
  .steps,
  .answer,
  .trial,
  .order {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 12px;
  }

  .product-heading {
    display: block;
  }

  .sales-summary {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex-basis: min(84vw, 360px);
    min-height: 410px;
  }

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

  .social-proof {
    grid-template-columns: 1fr;
  }

  .slide-button {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .desktop-nav {
    right: 14px;
    left: 14px;
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: calc(100vh - 64px);
    padding: 28px 18px 112px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.88) 0%, transparent 28%);
    clip-path: polygon(0 80%, 100% 70%, 100% 100%, 0 100%);
  }

  .hero-media img {
    object-position: 58% center;
  }

  h1 {
    font-size: 48px;
    line-height: 1;
  }

  .hero-subtitle {
    line-height: 1.45;
    max-width: 340px;
  }

  .hero-subtitle strong {
    font-size: 24px;
  }

  .hero-subtitle span {
    font-size: 16px;
  }

  .hero-actions {
    display: none;
  }

  section {
    padding: 52px 18px;
  }

  .product-image {
    min-height: 146px;
  }

  .product-image img {
    height: 146px;
  }

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

  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .social-proof img {
    max-height: 420px;
  }

  .mobile-cta {
    display: grid;
  }

  .footer {
    padding-bottom: 126px;
  }
}

/* --- ราคา + หลักฐานความน่าเชื่อถือ (เพิ่ม 2 ก.ย. 2026) --- */
.product-card .price {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hero-proof strong {
  color: var(--red);
  font-size: 26px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 560px) {
  .hero-proof { gap: 8px 20px; }
  .hero-proof strong { font-size: 22px; }
  .hero-proof span { font-size: 12px; }
  .product-card .price { font-size: 23px; }
}

/* --- แก้ hero มือถืออ่านไม่ออก: เดิม overlay ถูก clip ไว้แค่ด้านล่าง ตัวหนังสือเลยทับรูปตรง ๆ --- */
@media (max-width: 640px) {
  .hero-copy {
    max-width: 100%;
    padding: 18px 16px 20px;
    border-radius: 20px;
    background: rgba(255, 248, 223, 0.36);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(72, 35, 18, 0.12);
  }

  .hero-subtitle {
    max-width: 100%;
  }
}

/* --- มือถือ: สินค้าเป็นตาราง 2 คอลัมน์ แทนสไลด์ทีละใบ --- */
@media (max-width: 640px) {
  .product-slider {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
  }

  .product-card {
    flex: none;
    min-height: 0;
    padding: 12px;
    scroll-snap-align: none;
  }

  .product-card h3 {
    font-size: 15px;
    line-height: 1.25;
  }

  .product-card .price {
    margin-bottom: 4px;
    font-size: 21px;
  }

  .product-card .pill {
    font-size: 10px;
    padding: 3px 8px;
  }

  .product-card > p:not(.pill):not(.price) {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .product-card ul {
    margin-top: 6px;
    padding-left: 16px;
  }

  .product-card li:nth-child(n + 2) {
    display: none;
  }

  .product-card li {
    font-size: 12px;
    line-height: 1.3;
  }

  .slider-shell .slide-button {
    display: none;
  }
}


/* --- ฟอนต์ไม่มีหัวทั้งหน้า: Kanit สำหรับหัวข้อ / Noto Sans Thai สำหรับเนื้อความ --- */
h1,
h2,
h3,
.hero-subtitle strong,
.product-card .price,
.hero-proof strong,
.button,
.pill,
.eyebrow {
  font-family: "Kanit", "Noto Sans Thai", "Segoe UI", system-ui, sans-serif;
}

h1,
h2 {
  letter-spacing: -0.01em;
}


.brand-line {
  display: block;
}
