:root {
  --berry: #e91f4d;
  --berry-dark: #b91639;
  --ink: #241f23;
  --muted: #675d64;
  --paper: #fffafa;
  --mint: #d7eee2;
  --mint-dark: #326856;
  --rose-soft: #ffe2e9;
  --line: #ead5dc;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(70, 20, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 250, 250, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img,
.site-footer img {
  width: 174px;
}

.top-nav,
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

.top-nav a,
.site-footer a {
  text-decoration: none;
}

.nav-button,
.primary-button,
.secondary-button,
.bundle-card a,
.order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.nav-button,
.primary-button,
.bundle-card a,
.order-button {
  color: var(--white);
  background: var(--berry);
  box-shadow: 0 10px 28px rgba(233, 31, 77, 0.24);
}

.secondary-button {
  color: var(--berry-dark);
  border: 1px solid var(--berry);
}

.section-band {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 78px);
  background:
    linear-gradient(115deg, var(--rose-soft) 0%, var(--paper) 46%, var(--mint) 100%);
}

.hero h1,
.section-heading h2,
.section-copy h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading h2,
.section-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--berry-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(50, 104, 86, 0.3);
  border-radius: 999px;
  color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-media {
  justify-self: center;
}

.hero-media img {
  width: min(520px, 88vw);
  filter: drop-shadow(0 30px 60px rgba(70, 20, 35, 0.22));
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.feature-strip div {
  display: grid;
  gap: 8px;
  padding: 30px clamp(18px, 3vw, 34px);
  background: var(--white);
}

.feature-strip img {
  width: 44px;
  height: 44px;
}

.feature-strip strong {
  font-size: 1.05rem;
}

.feature-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.section-copy p {
  max-width: 820px;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 64px);
}

.two-column p,
.section-copy p {
  margin-top: 0;
  font-size: 1.04rem;
}

.lifestyle,
.quality {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--white);
}

.quality {
  background: #f5fff9;
}

.image-panel img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.ingredients {
  background: var(--ink);
  color: var(--white);
}

.ingredients .eyebrow,
.ingredients .section-heading p {
  color: #ffd5df;
}

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

.ingredient-grid article,
.review-grid article,
.bundle-card,
.price-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.ingredient-grid article {
  color: var(--ink);
  box-shadow: none;
}

.ingredient-grid h3,
.review-grid h3,
.bundle-card h3,
.price-card h3 {
  margin: 0 0 10px;
  line-height: 1.15;
}

.ingredient-grid p,
.review-grid p,
.bundle-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.choose {
  background: linear-gradient(120deg, #ffffff, #fff0f4);
}

.shop {
  background: var(--white);
}

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

.bundle-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.bundle-card.featured {
  border-color: var(--berry);
  transform: translateY(-10px);
}

.bundle-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: contain;
}

.bundle-card a {
  width: fit-content;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  overflow: hidden;
}

.price-card.featured {
  border: 2px solid var(--berry);
  transform: translateY(-12px);
}

.price-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  padding: 8px;
}

.deal-badge {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pack-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.pack-heading h3 {
  font-size: 1.6rem;
}

.pack-heading span {
  max-width: 150px;
  color: var(--berry-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: right;
}

.price-row {
  display: grid;
  gap: 2px;
}

.regular-price {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: line-through;
}

.price-row strong {
  color: var(--berry-dark);
  font-size: clamp(2.35rem, 4vw, 3.4rem);
  line-height: 1;
}

.price-row span:last-child {
  color: var(--muted);
  font-weight: 800;
}

.offer-list {
  display: grid;
  gap: 8px;
  min-height: 150px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 750;
}

.offer-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint-dark);
}

.order-button {
  min-height: 50px;
  width: 100%;
  border-radius: 8px;
}

.selected-card .order-button {
  background: var(--mint-dark);
  box-shadow: 0 10px 28px rgba(50, 104, 86, 0.22);
}

.payment-note {
  text-align: center;
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.payment-row span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: #fff8fa;
  font-size: 0.76rem;
  font-weight: 800;
}

.reviews {
  background: #f5fff9;
}

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

.stars {
  margin-bottom: 10px;
  color: var(--berry);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.seo {
  background: linear-gradient(120deg, var(--rose-soft), var(--white) 48%, var(--mint));
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(70, 20, 35, 0.06);
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
}

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

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  max-width: 420px;
  color: #f2dce2;
}

.site-footer nav {
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .ingredient-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .top-nav {
    display: none;
  }

  .hero,
  .lifestyle,
  .quality,
  .two-column,
  .bundle-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality .image-panel {
    order: -1;
  }

  .bundle-card.featured {
    transform: none;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .brand img {
    width: 144px;
  }

  .nav-button {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 0.9rem;
  }

  .feature-strip,
  .ingredient-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .section-band {
    padding-inline: 16px;
  }
}
