:root {
  --pink: #ee4b87;
  --pink-deep: #c62868;
  --pink-soft: #fff0f5;
  --ink: #251820;
  --muted: #705e67;
  --line: #f0d9e3;
  --green: #06c755;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  color: var(--ink);
  background: #fffafc;
  font-family: "Prompt", sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid var(--pink-deep); outline-offset: 2px; }

.skip-link {
  position: absolute;
  z-index: 100;
  top: -50px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--pink-deep);
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(238,75,135,.12);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff8cb5, var(--pink-deep));
  font: 700 20px/1 "Kanit", sans-serif;
}
.brand b { display: block; letter-spacing: .12em; }
.brand small { display: block; margin-top: -5px; color: var(--muted); font-size: 10px; }
.top-cta {
  padding: 9px 18px;
  color: #fff;
  border-radius: 99px;
  background: var(--green);
  font-weight: 600;
  font-size: 13px;
}
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #fff;
}
.lang-btn {
  padding: 6px 14px;
  border: 0;
  border-radius: 99px;
  color: var(--muted);
  background: transparent;
  font: 600 12px/1 "Kanit", sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
}
.lang-btn.active { color: #fff; background: var(--pink-deep); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 690px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 22%, rgba(255,255,255,.85) 0 10%, transparent 30%),
    linear-gradient(135deg, #fff 0 46%, #ffe6f0 46% 100%);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 64px;
}
.eyebrow {
  color: var(--pink-deep);
  font: 600 12px/1.3 "Kanit", sans-serif;
  letter-spacing: .17em;
}
.eyebrow.light { color: #ffc5db; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Kanit", sans-serif; }
h1 {
  margin: 18px 0 22px;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
}
h1 em { color: var(--pink); font-style: normal; }
.lead { max-width: 570px; color: var(--muted); font-size: 18px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px; margin: 12px 0 30px; }
.hero-points span {
  padding: 7px 13px;
  border: 1px solid #f1b8ce;
  border-radius: 99px;
  color: #8f3d5f;
  background: rgba(255,255,255,.72);
  font-size: 12px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.primary-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: min(100%, 340px);
  padding: 16px 20px;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  box-shadow: 0 16px 35px rgba(198,40,104,.22);
  font-weight: 600;
}
.secondary-cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 22px;
  border: 1.5px solid var(--pink-deep);
  border-radius: 14px;
  color: var(--pink-deep);
  background: #fff;
  font-weight: 600;
}
.secondary-cta.on-dark {
  margin-top: 22px;
  border-color: rgba(255,255,255,.6);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.section-cta { display: flex; justify-content: center; margin-top: 40px; }
.hero-visual { position: relative; min-height: 610px; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }

/* Hero variant for wide/landscape collage image — show full image, no crop */
.hero.hero-full {
  display: block;
  min-height: 0;
  overflow: visible;
  padding: 70px 24px 0;
  background: linear-gradient(180deg, #fff 0%, #ffe6f0 100%);
}
.hero.hero-full .hero-copy { padding: 0 0 40px; text-align: center; align-items: center; max-width: 820px; margin: 0 auto; }
.hero.hero-full .hero-points,
.hero.hero-full .hero-actions { justify-content: center; }
.hero.hero-full .hero-visual { min-height: 0; }
.hero.hero-full .hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(90,37,60,.14);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: -30px auto 0;
  position: relative;
  z-index: 3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(90,37,60,.1);
}
.trust-strip article { padding: 24px 20px; text-align: center; border-right: 1px solid var(--line); }
.trust-strip article:last-child { border: 0; }
.trust-strip b { display: block; color: var(--pink-deep); font: 700 24px/1.2 "Kanit"; }
.trust-strip span { color: var(--muted); font-size: 12px; }

.section { max-width: 1180px; margin: 0 auto; padding: 110px 24px; }
.section-heading { max-width: 680px; margin-bottom: 44px; }
.section-heading.centered { margin: 0 auto 50px; text-align: center; }
.section-heading h2, .verify h2, .final-cta h2 {
  margin: 12px 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.story .section-heading { max-width: 900px; }
.section-heading p { color: var(--muted); }

.package-update { text-align: center; }
.package-update .section-heading { margin-inline: auto; }
.tag { display: inline-block; padding: 6px 12px; border-radius: 99px; font-size: 11px; font-weight: 600; }
.tag.status-old { color: #6b4d5e; background: #f3e3ea; }
.tag.status-current { color: var(--pink-deep); background: var(--pink-soft); }
.comparison-photo { max-width: 900px; margin: 0 auto; }
.comparison-photo img { width: 100%; border-radius: 24px; box-shadow: 0 20px 55px rgba(90,37,60,.16); }
.compare-notes { max-width: 620px; margin: 34px auto 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.compare-notes li { position: relative; margin: 9px 0; padding-left: 22px; text-align: left; }
.compare-notes li::before { content: "•"; position: absolute; left: 4px; color: var(--pink); font-weight: 700; }
.reassure { max-width: 760px; margin: 28px auto 0; padding: 15px 20px; border-radius: 14px; color: #86445e; background: var(--pink-soft); text-align: center; }

/* How to Use / Warning — full-section banner images */
.use-image-section,
.warning-image-section {
  max-width: none;
  padding: 60px 24px;
  background: #fff;
}
.use-image-section .container,
.warning-image-section .container {
  max-width: 1280px;
  margin: 0 auto;
}
.info-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
}
@media (max-width: 768px) {
  .info-banner { width: 100%; height: auto; }
}
@media (max-width: 820px) {
  .use-image-section,
  .warning-image-section { padding: 40px 16px; }
}

/* Brand Story */
.story-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.story-photo { width: 100%; border-radius: 24px; box-shadow: 0 20px 55px rgba(90,37,60,.16); }
.story-body { max-width: 640px; color: var(--muted); font-size: 15px; }
.story-body p { margin: 0 0 18px; }
.story-body p:last-child { margin-bottom: 0; }
@media (max-width: 820px) {
  .story-layout { grid-template-columns: 1fr; gap: 26px; }
  .story-body { max-width: none; }
}

/* Package Journey Timeline (now a single real banner image — see .use-image-section / .info-banner) */
.timeline-closing {
  max-width: 700px;
  margin: 50px auto 0;
  padding: 20px 26px;
  border-radius: 16px;
  color: #8f3d5f;
  background: var(--pink-soft);
  text-align: center;
  font-weight: 500;
}

/* Product Information */
.product-info-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; align-items: start; max-width: 1080px; margin: 0 auto; }
.product-info-photo { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(90,37,60,.14); }
@media (max-width: 820px) {
  .product-info-layout { grid-template-columns: 1fr; gap: 24px; }
  .product-info-photo { max-width: 320px; margin: 0 auto; }
}
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 900px; margin: 0; padding: 0; }
.info-grid div { padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.info-grid dt { color: var(--pink-deep); font: 600 12px/1.3 "Kanit"; letter-spacing: .04em; }
.info-grid dd { margin: 6px 0 0; }
.info-note { max-width: 900px; margin: 22px 0 0; padding: 16px 20px; border-radius: 12px; color: #705e67; background: #f7f2f4; font-size: 13px; }

/* Warnings */

/* Related product (different SKU) */
.related-card {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 36px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}
.related-card img { width: 100%; border-radius: 16px; }
.related-copy h3 { margin: 10px 0 8px; font-family: "Kanit", sans-serif; font-size: 22px; }
.related-copy p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
@media (max-width: 820px) {
  .related-card { grid-template-columns: 1fr; padding: 22px; text-align: center; }
  .related-card img { max-width: 260px; margin: 0 auto; }
}

.verify {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 90px;
  max-width: 1180px;
  margin-top: 100px;
  color: #fff;
  border-radius: 32px;
  background: linear-gradient(135deg, #8a164a, #d62d70 60%, #f06c9c);
}
.verify p { color: #ffe7f0; }
.verify ul { padding: 0; list-style: none; }
.verify li { margin: 11px 0; }
.verify li::before { content: "✓"; margin-right: 11px; color: #fff; font-weight: 700; }
.phone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 30px;
  border: 8px solid #fff;
  border-radius: 36px;
  color: var(--ink);
  background: #fff9fc;
  box-shadow: 0 25px 50px rgba(76,7,37,.3);
  text-align: center;
}
.phone-top { margin-bottom: 35px; color: var(--pink-deep); font-weight: 700; letter-spacing: .12em; }
.shield { display: grid; place-items: center; width: 72px; height: 72px; margin-bottom: 16px; border-radius: 50%; color: #fff; background: var(--green); font-size: 38px; }
.phone-card b { color: #077837; font: 600 26px/1.2 "Kanit"; }
.phone-card span { margin: 8px 0 30px; color: var(--muted); font-size: 10px; letter-spacing: .08em; }
.phone-card small { color: #9a7283; }

.faq { max-width: 850px; }
details { margin: 12px 0; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
summary { padding: 19px 22px; cursor: pointer; font-weight: 600; }
details p { padding: 0 22px 20px; margin: 0; color: var(--muted); font-size: 14px; }

.final-cta {
  padding: 95px 24px;
  color: #fff;
  background: #251820;
  text-align: center;
}
.final-cta p { color: #d6c2cb; }
.line-button {
  display: inline-block;
  margin-top: 15px;
  padding: 16px 25px;
  border-radius: 14px;
  color: #fff;
  background: var(--green);
  font-weight: 700;
}
footer { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 35px 20px 100px; color: var(--muted); background: #fff; text-align: center; font-size: 12px; }
footer b { color: var(--pink-deep); font-size: 15px; letter-spacing: .12em; }
footer small { margin-top: 8px; font-size: 10px; }

.floating-line {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 17px 11px 10px;
  border: 3px solid #fff;
  border-radius: 99px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0,95,40,.22);
  font-weight: 600;
  font-size: 13px;
}
.floating-line span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; color: var(--green); background: #fff; font-size: 9px; }

@media (max-width: 820px) {
  .topbar { height: 62px; padding-inline: 16px; }
  .topbar-actions { gap: 8px; }
  .top-cta { padding: 8px 12px; font-size: 12px; }
  .lang-btn { padding: 5px 10px; font-size: 11px; }
  .brand small { display: none; }
  .hero:not(.hero-full) { grid-template-columns: 1fr; min-height: 0; background: linear-gradient(180deg, #fff 0 46%, #ffe6f0 46%); }
  .hero:not(.hero-full) .hero-copy { padding: 55px 22px 36px; text-align: center; align-items: center; }
  .hero:not(.hero-full) .hero-visual { min-height: 460px; }
  .hero:not(.hero-full) .hero-visual img { object-position: 58% center; }
  .hero.hero-full { padding: 44px 16px 0; }
  h1 { font-size: 50px; }
  .lead { font-size: 15px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); margin: 0; border-radius: 0; box-shadow: none; }
  .trust-strip article { border-bottom: 1px solid var(--line); }
  .section { padding: 75px 18px; }
  .verify { grid-template-columns: 1fr; gap: 35px; margin-top: 35px; border-radius: 0; }
  .phone-card { min-height: 340px; }
  .floating-line { right: 12px; bottom: 12px; left: 12px; justify-content: center; }
  .hero-actions { flex-direction: column; width: 100%; }
  .primary-cta, .secondary-cta { width: 100%; justify-content: center; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  h1 { font-size: 40px; }
  .section { padding: 60px 14px; }
}
