:root {
  --green: #124331;
  --green-2: #0f6b49;
  --mint: #dff7ec;
  --mint-2: #bcebd7;
  --lemon: #f3e88c;
  --sky: #dff2ff;
  --gold: #d9aa54;
  --coral: #c65b48;
  --ink: #17241c;
  --muted: #6f766f;
  --line: rgba(20, 64, 45, .14);
  --paper: #fffdf8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(188, 235, 215, .42), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(223, 242, 255, .62), transparent 26%),
    linear-gradient(180deg, #f6fbf5, #eef7ef 48%, #f8fbf2);
}

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

.health-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(16px);
}

.health-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.health-brand img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  object-fit: cover;
}

.health-brand strong {
  display: block;
  font-size: 18px;
}

.health-brand em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.health-header nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.health-header nav a {
  border-radius: 999px;
  padding: 10px 14px;
  background: white;
  color: var(--green);
  text-decoration: none;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px var(--line);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 72px;
}

.health-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: end;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(28px, 5vw, 58px);
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(243, 232, 140, .38), transparent 24%),
    radial-gradient(circle at 92% 76%, rgba(188, 235, 215, .34), transparent 28%),
    linear-gradient(105deg, rgba(8, 35, 25, .96), rgba(15, 107, 73, .76), rgba(112, 186, 132, .28)),
    linear-gradient(135deg, #164d39, #0b251b);
  box-shadow: 0 24px 60px rgba(20, 45, 32, .18);
}

.health-hero::before {
  content: "";
  position: absolute;
  inset: auto 5% 7% auto;
  width: 420px;
  height: 420px;
  border-radius: 42% 58% 48% 52%;
  background:
    linear-gradient(140deg, rgba(255,255,255,.18), rgba(255,255,255,.04)),
    radial-gradient(circle at 34% 28%, rgba(243,232,140,.34), transparent 16%),
    radial-gradient(circle at 64% 62%, rgba(188,235,215,.34), transparent 20%);
  opacity: .9;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: #ffe3a5;
  font-size: 13px;
  font-weight: 1000;
}

.health-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 7vw, 74px);
  line-height: 1.08;
}

.health-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions a,
.hero-actions button,
.trust-note button,
.claim-form button {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 1000;
  cursor: pointer;
}

.hero-actions a {
  background: white;
  color: var(--green);
  text-decoration: none;
}

.hero-actions button {
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .14);
  color: white;
}

.hero-health-stage {
  position: relative;
  min-height: 360px;
}

.wellness-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 26px;
  background: rgba(255,255,255,.16);
  box-shadow: 0 18px 46px rgba(0,0,0,.14);
  backdrop-filter: blur(18px);
}

.wellness-card.main {
  top: 0;
  right: 20px;
  width: 260px;
  min-height: 172px;
  padding: 24px;
}

.wellness-card.main span {
  color: #ffe3a5;
  font-size: 12px;
  font-weight: 1000;
}

.wellness-card.main strong {
  display: block;
  margin-top: 12px;
  font-size: 34px;
}

.wellness-card.main em {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  font-style: normal;
  line-height: 1.55;
}

.wellness-card.small {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  font-weight: 1000;
  color: white;
}

.wellness-card.leaf {
  left: 0;
  top: 104px;
  border-radius: 56% 44% 50% 50%;
  background: rgba(188,235,215,.2);
}

.wellness-card.bottle {
  right: 0;
  bottom: 34px;
  background: rgba(223,242,255,.18);
}

.hero-card {
  position: absolute;
  left: 22px;
  right: 48px;
  bottom: 0;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 24px;
  padding: 26px;
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
}

.hero-card strong {
  color: #ffe3a5;
  font-size: 72px;
  line-height: .9;
}

.hero-card span {
  font-size: 20px;
  font-weight: 1000;
}

.hero-card small {
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 1.7;
}

.health-rules,
.brand-grid {
  display: grid;
  gap: 12px;
}

.health-rules {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0;
}

.health-rules article,
.trust-note,
.brand-card,
.health-brand-card,
.claim-section {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 14px 28px rgba(31, 44, 36, .05);
}

.health-rules article {
  min-height: 92px;
  border-radius: 18px;
  padding: 18px;
}

.health-rules strong {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
}

.health-rules span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 900;
}

.trust-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border-radius: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.trust-note span,
.claim-copy span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: #f5ead1;
  color: #8a5a1e;
  font-size: 13px;
  font-weight: 1000;
}

.trust-note h2,
.brand-toolbar h2,
.claim-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.14;
}

.trust-note p,
.brand-toolbar p,
.claim-copy p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.trust-note button,
.claim-form button {
  background: var(--green);
  color: white;
}

.brand-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 18px;
  align-items: end;
  margin-top: 34px;
}

.search-box input,
.claim-form input,
.claim-form select,
.claim-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: white;
  outline: none;
}

.claim-form textarea {
  min-height: 110px;
  resize: vertical;
}

.type-tabs {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 16px 0;
}

.type-tabs button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: white;
  color: var(--ink);
  font-weight: 1000;
  cursor: pointer;
}

.type-tabs button.active {
  background: var(--green);
  color: white;
}

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

.brand-card,
.health-brand-card {
  display: grid;
  gap: 16px;
  border-radius: 22px;
  padding: 20px;
}

.brand-head,
.brand-card-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.brand-logo {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--mint);
  color: var(--green);
  font-weight: 1000;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  background: #fff;
}

.brand-head h3,
.brand-card-head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.brand-head small,
.brand-card-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.rate-pill,
.brand-card-head em {
  border-radius: 999px;
  padding: 8px 10px;
  background: #fff3e6;
  color: var(--coral);
  font-size: 13px;
  font-weight: 1000;
  font-style: normal;
  white-space: nowrap;
}

.brand-card p,
.health-brand-card .brand-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.tag-row,
.product-list,
.brand-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-row span,
.product-list span,
.brand-tags span {
  border-radius: 999px;
  padding: 7px 10px;
  background: #edf7f1;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
}

.product-list span {
  background: #f7f0df;
  color: #83591d;
}

.sample-products {
  display: grid;
  gap: 8px;
}

.brand-card-showcase {
  display: grid;
  grid-template-columns: minmax(128px, 38%) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  border: 1px solid rgba(18, 67, 49, .1);
  border-radius: 22px;
  padding: 12px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .95), transparent 28%),
    linear-gradient(135deg, #f8fcf8, #eef8f4);
}

.brand-card-packshot {
  display: grid;
  min-height: 154px;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 22%, rgba(255,255,255,.92), transparent 30%),
    linear-gradient(135deg, #eef8f3, #e9f5f8);
}

.brand-card-packshot img {
  width: 100%;
  height: 100%;
  max-height: 176px;
  object-fit: contain;
  padding: 12px;
}

.brand-card-products {
  display: grid;
  gap: 8px;
}

.brand-card-products button {
  display: grid;
  gap: 3px;
  width: 100%;
  border: 1px solid rgba(18, 67, 49, .1);
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .86);
  color: #10281d;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.brand-card-products button:hover {
  border-color: rgba(15, 107, 73, .28);
  background: #fff;
  transform: translateY(-1px);
}

.brand-card-products strong {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-card-products span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.brand-card-product-list {
  display: grid;
  gap: 10px;
  border-radius: 20px;
  padding: 10px;
  background: #f7fbf8;
  box-shadow: inset 0 0 0 1px rgba(18, 67, 49, .08);
}

.health-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(135deg, #ffffff, #f8fcf7);
}

.health-product-img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 68% 24%, rgba(255,255,255,.78), transparent 24%),
    linear-gradient(135deg, rgba(188,235,215,.88), rgba(223,242,255,.92));
}

.health-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.health-product-img.placeholder::before,
.health-product-img.placeholder::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(18, 67, 49, .08);
}

.health-product-img.placeholder::before {
  width: 46px;
  height: 46px;
  left: 12px;
  top: 13px;
}

.health-product-img.placeholder::after {
  width: 28px;
  height: 28px;
  right: 8px;
  bottom: 8px;
  background: rgba(15, 107, 73, .1);
}

.health-product-info {
  min-width: 0;
}

.health-product-info strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.health-product-info span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.health-product-info em {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  border-radius: 999px;
  padding: 5px 8px;
  background: #fff3e6;
  color: var(--coral);
  font-size: 12px;
  font-style: normal;
  font-weight: 1000;
}

.health-product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(92px, auto));
  gap: 8px;
}

.health-product-actions a,
.health-product-actions button {
  border: 0;
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 1000;
  cursor: pointer;
}

.health-product-actions a {
  background: var(--green);
  color: white;
}

.health-product-actions button {
  background: #fff;
  color: var(--green);
  box-shadow: inset 0 0 0 1px var(--line);
}

.brand-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-actions a,
.brand-actions button {
  flex: 1 1 132px;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  text-align: center;
  text-decoration: none;
  font-weight: 1000;
  cursor: pointer;
}

.brand-actions a {
  background: var(--green);
  color: white;
}

.brand-actions a.disabled {
  background: #e9ece7;
  color: #7b847c;
  pointer-events: none;
}

.brand-actions button {
  background: white;
  color: var(--green);
  box-shadow: inset 0 0 0 1px var(--line);
}

.claim-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 36px;
  border-radius: 26px;
  padding: clamp(24px, 4vw, 38px);
}

.claim-form {
  display: grid;
  gap: 14px;
}

.claim-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.form-grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-tip {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.advisor-widget {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: 74px;
  z-index: 60;
}

.advisor-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px 10px 10px;
  background: var(--green);
  color: white;
  box-shadow: 0 16px 34px rgba(18, 67, 49, .28);
  cursor: pointer;
  font-weight: 1000;
}

.advisor-toggle span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #ffe1a0;
  color: var(--green);
}

.advisor-toggle em {
  font-style: normal;
}

.advisor-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: 306px;
  border: 1px solid rgba(18, 67, 49, .14);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255, 253, 248, .97);
  box-shadow: 0 24px 58px rgba(28, 43, 35, .2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(.96);
  transform-origin: bottom right;
  transition: opacity .18s ease, transform .18s ease;
  backdrop-filter: blur(18px);
}

.advisor-widget.is-open .advisor-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.advisor-panel[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.advisor-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.advisor-panel strong {
  display: block;
  margin-right: 34px;
  font-size: 22px;
}

.advisor-panel p {
  margin: 10px 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.advisor-panel img {
  display: block;
  width: min(100%, 206px);
  margin: 0 auto;
  border: 10px solid white;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(31, 44, 36, .08);
}

.health-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  max-width: min(360px, calc(100vw - 32px));
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(18, 67, 49, .96);
  color: white;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 16px 34px rgba(18, 67, 49, .24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity .18s ease, transform .18s ease;
}

.health-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  main {
    width: min(100% - 24px, 680px);
  }

  .health-hero,
  .trust-note,
  .brand-toolbar,
  .claim-section {
    grid-template-columns: 1fr;
  }

  .health-rules,
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    right: auto;
    width: min(100%, 320px);
  }
}

@media (max-width: 560px) {
  .health-header {
    padding: 10px 12px;
  }

  .health-header nav a {
    padding: 8px 10px;
    font-size: 12px;
  }

  .health-brand img {
    width: 44px;
    height: 44px;
  }

  main {
    width: calc(100% - 20px);
    padding-top: 12px;
  }

  .health-hero {
    min-height: 720px;
    border-radius: 22px;
    padding: 24px;
  }

  .health-hero h1 {
    font-size: 38px;
  }

  .health-hero p {
    font-size: 16px;
  }

  .health-rules,
  .brand-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .hero-health-stage {
    min-height: 370px;
  }

  .wellness-card.main {
    right: 0;
    width: 240px;
  }

  .wellness-card.leaf {
    top: 118px;
  }

  .hero-card {
    left: 0;
    right: 0;
  }

  .brand-head,
  .brand-card-head {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .rate-pill,
  .brand-card-head em {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .advisor-widget {
    right: 12px;
    bottom: 70px;
  }

  .advisor-panel {
    width: min(326px, calc(100vw - 24px));
  }
}

/* Premium wellness homepage direction:方案 A */
:root {
  --paper: #fffefa;
  --cream: #f7f3e9;
  --wellness-blue: #eaf6f8;
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(224, 245, 237, .78), transparent 24%),
    radial-gradient(circle at 92% 16%, rgba(234, 246, 248, .9), transparent 22%),
    linear-gradient(180deg, #fbfdf9 0%, #f4faf4 46%, #fbfcf7 100%);
}

main {
  width: min(1240px, calc(100% - 32px));
}

.health-header {
  border-bottom-color: rgba(18, 67, 49, .08);
  background: rgba(255, 254, 250, .9);
}

.health-hero {
  min-height: 620px;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  border: 1px solid rgba(18, 67, 49, .1);
  border-radius: 34px;
  padding: clamp(32px, 5vw, 64px);
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 254, 250, .96) 0%, rgba(255, 254, 250, .9) 43%, rgba(224, 245, 237, .54) 100%);
  box-shadow: 0 28px 80px rgba(32, 66, 48, .12);
}

.health-hero::before {
  inset: auto auto -18% -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(188, 235, 215, .55), transparent 66%);
}

.eyebrow {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  background: #e7f5ee;
  color: var(--green-2);
  letter-spacing: .08em;
}

.health-hero h1 {
  max-width: 680px;
  margin-top: 18px;
  color: #10281d;
  font-size: clamp(44px, 6vw, 78px);
  letter-spacing: 0;
}

.health-hero p {
  max-width: 610px;
  color: #526157;
  font-size: 19px;
}

.hero-actions a {
  background: var(--green);
  color: white;
  box-shadow: 0 16px 30px rgba(18, 67, 49, .18);
}

.hero-actions button {
  border: 1px solid rgba(18, 67, 49, .16);
  background: white;
  color: var(--green);
}

.hero-product-photo {
  position: relative;
  min-height: 460px;
}

.hero-product-photo img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 12px solid white;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(19, 55, 39, .18);
}

.hero-glass-card {
  position: absolute;
  left: -22px;
  bottom: 28px;
  display: grid;
  gap: 8px;
  min-width: 220px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 24px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  box-shadow: 0 20px 48px rgba(18, 67, 49, .16);
  backdrop-filter: blur(18px);
}

.hero-glass-card strong {
  color: var(--green);
  font-size: 58px;
  line-height: .86;
}

.hero-glass-card span {
  font-size: 18px;
  font-weight: 1000;
}

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

.health-rules {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 22px 0 30px;
}

.health-rules article {
  min-height: 104px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
}

.health-rules strong {
  width: auto;
  height: auto;
  place-items: start;
  border-radius: 0;
  background: transparent;
  color: #b8995e;
  font-size: 13px;
  letter-spacing: .12em;
}

.health-rules span {
  color: #23392e;
  font-size: 16px;
}

.wellness-section {
  margin-top: 34px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.section-heading span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  background: #edf7f1;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .08em;
}

.section-heading h2 {
  margin: 10px 0 0;
  color: #12291f;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.section-heading p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.rail-controls {
  display: flex;
  gap: 10px;
}

.rail-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(18, 67, 49, .14);
  border-radius: 50%;
  background: white;
  color: var(--green);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(31, 44, 36, .06);
}

.brand-rail,
.product-rail {
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 2px 0 14px;
  scrollbar-width: none;
}

.brand-rail::-webkit-scrollbar,
.product-rail::-webkit-scrollbar,
.type-tabs::-webkit-scrollbar {
  display: none;
}

.brand-rail {
  grid-auto-columns: minmax(230px, 260px);
}

.product-rail {
  grid-auto-columns: minmax(360px, 420px);
}

.hot-brand-card,
.featured-product-card,
.health-brand-card {
  border: 1px solid rgba(18, 67, 49, .1);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 42px rgba(31, 44, 36, .07);
}

.hot-brand-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 138px auto auto auto;
  gap: 12px;
  align-content: start;
  min-height: 316px;
  border-radius: 24px;
  overflow: hidden;
  padding: 0 18px 18px;
}

.hot-brand-visual {
  display: grid;
  place-items: center;
  margin: 0 -18px;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, .95), transparent 30%),
    linear-gradient(135deg, #f2fbf6, #e8f5f7);
}

.hot-brand-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.hot-brand-visual.logo-only {
  padding: 20px;
}

.hot-brand-visual.logo-only .brand-logo {
  width: 104px;
  height: 104px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(18, 67, 49, .1);
}

.hot-brand-visual.logo-only .brand-logo img {
  padding: 16px;
}

.hot-brand-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  align-items: center;
  padding-top: 2px;
}

.hot-brand-card .brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.hot-brand-card .brand-logo img {
  padding: 9px;
}

.hot-brand-card strong {
  display: block;
  color: #10281d;
  font-size: 20px;
  line-height: 1.18;
}

.hot-brand-info span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hot-brand-card > em,
.featured-product-body em {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff2e7;
  color: var(--coral);
  font-style: normal;
  font-size: 13px;
  font-weight: 1000;
}

.mini-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-product-tags small {
  border-radius: 999px;
  padding: 6px 8px;
  background: #edf7f1;
  color: var(--green-2);
  font-weight: 900;
}

.featured-product-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: 26px;
  min-height: 226px;
}

.featured-product-visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.9), transparent 28%),
    linear-gradient(135deg, #eef8f3, #eaf6f8);
}

.featured-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.health-product-img.has-image {
  background:
    radial-gradient(circle at 75% 20%, rgba(255,255,255,.95), transparent 28%),
    linear-gradient(135deg, #f1fbf6, #e9f5f8);
}

.health-product-img.has-image img {
  object-fit: contain;
  padding: 10px;
}

.supplement-pack-shot {
  position: relative;
  width: 126px;
  height: 148px;
}

.supplement-pack-shot::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 12px;
  width: 64px;
  height: 118px;
  border-radius: 14px 14px 20px 20px;
  background:
    linear-gradient(#f8fbfb 0 30%, #ffffff 30% 70%, #dff2ff 70% 100%);
  box-shadow: inset 0 0 0 1px rgba(18, 67, 49, .09), 0 18px 34px rgba(19, 55, 39, .12);
}

.supplement-pack-shot::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 0;
  width: 48px;
  height: 18px;
  border-radius: 8px 8px 4px 4px;
  background: #f1f4f2;
  box-shadow: inset 0 0 0 1px rgba(18, 67, 49, .08);
}

.supplement-pack-shot span,
.supplement-pack-shot i {
  position: absolute;
  border-radius: 50%;
  background: rgba(217, 170, 84, .78);
  box-shadow: 0 8px 16px rgba(217, 170, 84, .2);
}

.supplement-pack-shot span {
  width: 34px;
  height: 22px;
  left: 14px;
  bottom: 8px;
}

.supplement-pack-shot i {
  width: 24px;
  height: 16px;
  right: 8px;
  bottom: 18px;
}

.featured-product-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.featured-brand-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.featured-brand-line .brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.featured-brand-line .brand-logo img {
  padding: 4px;
}

.featured-product-body h3 {
  min-height: 52px;
  margin: 0;
  color: #10281d;
  font-size: 22px;
  line-height: 1.18;
}

.featured-product-body p {
  min-height: 40px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.featured-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 18px 18px;
}

.featured-product-actions button {
  border: 0;
  border-radius: 14px;
  padding: 12px 10px;
  background: white;
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(18, 67, 49, .14);
  cursor: pointer;
  font-weight: 1000;
}

.featured-product-actions button:first-child {
  background: var(--green);
  color: white;
  box-shadow: none;
}

.trust-note {
  margin-top: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(247,243,233,.82));
}

.brand-toolbar {
  margin-top: 42px;
}

.type-tabs {
  padding: 18px 0;
}

.type-tabs button {
  background: rgba(255, 255, 255, .9);
}

.brand-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.health-brand-card {
  align-content: start;
  border-radius: 24px;
  padding: 22px;
}

.brand-card-head {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #f7fbf8;
  box-shadow: inset 0 0 0 1px rgba(18, 67, 49, .08);
}

.brand-logo img {
  padding: 12px;
  object-fit: contain;
}

.brand-logo span {
  padding: 0 8px;
  text-align: center;
  font-size: 16px;
}

.brand-card-head em {
  grid-column: 1 / -1;
  justify-self: start;
}

.brand-card-head h3 {
  font-size: 24px;
}

.sample-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sample-products span {
  border-radius: 999px;
  padding: 8px 10px;
  background: #f3f8f5;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .health-hero {
    grid-template-columns: 1fr;
  }

  .hero-product-photo img {
    height: 420px;
  }

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

@media (max-width: 620px) {
  main {
    width: calc(100% - 20px);
  }

  .health-hero {
    min-height: auto;
    border-radius: 26px;
    padding: 24px;
  }

  .health-hero h1 {
    font-size: 40px;
  }

  .health-hero p {
    font-size: 16px;
  }

  .hero-product-photo {
    min-height: 310px;
  }

  .hero-product-photo img {
    height: 320px;
    border-width: 8px;
    border-radius: 24px;
  }

  .hero-glass-card {
    left: 12px;
    right: 12px;
    bottom: 14px;
    min-width: 0;
  }

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

  .section-heading {
    align-items: start;
  }

  .rail-controls {
    display: none;
  }

  .brand-rail {
    grid-auto-columns: minmax(216px, 74vw);
  }

  .product-rail {
    grid-auto-columns: minmax(304px, 86vw);
  }

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

  .brand-card-head {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .health-product-card {
    grid-template-columns: 1fr;
  }

  .health-product-actions {
    grid-template-columns: 1fr 1fr;
  }
}
