:root {
  --green-950: #062f24;
  --green-900: #064e35;
  --green-800: #0b6b3a;
  --green-100: #eaf3e8;
  --cream: #fbfaf3;
  --cream-strong: #f7f3e8;
  --gold: #c9a24a;
  --sky: #6f90a9;
  --ink: #17221b;
  --muted: #5d6a61;
  --line: rgba(23, 34, 27, 0.14);
  --shadow: 0 18px 44px rgba(6, 47, 36, 0.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.page {
  width: min(100%, 480px);
  margin: 0 auto;
  background: #fffdf6;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
}
.section { padding: 34px 20px; }
.hero {
  padding: 0;
  color: #fff;
  background: var(--green-950);
}
.hero-media {
  position: relative;
  overflow: hidden;
  background: #dfe9e1;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #dfe9e1;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,47,36,.28) 0%, rgba(6,47,36,0) 42%, rgba(6,47,36,.2) 100%);
}
.topbar {
  min-height: 72px;
  padding: 12px 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.brand-mark { width: 104px; height: auto; filter: drop-shadow(0 4px 14px rgba(0,0,0,.28)); }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  background: rgba(6,47,36,.46);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.hero-panel {
  padding: 24px 20px 26px;
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-950) 100%);
}
.hero-copy { padding-top: 0; }
.hero h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 span { display: block; color: #f3d37a; white-space: nowrap; }
.hero-sub {
  max-width: 390px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 1.45;
}
.hero-offer { margin-top: 22px; }
.price-row { display: flex; align-items: stretch; gap: 10px; }
.price-box, .sale-box { border-radius: 8px; padding: 12px 14px; }
.price-box { flex: 1; background: rgba(255,255,255,.94); color: var(--ink); }
.sale-box {
  width: 142px;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}
.old-price { color: #778076; font-size: 18px; text-decoration: line-through; }
.new-price { margin-left: 10px; color: var(--green-900); font-size: 34px; line-height: 1; font-weight: 900; }
.date-sale { margin-top: 12px; color: rgba(255,255,255,.82); font-size: 13px; text-align: center; }
.button {
  width: 100%;
  min-height: 64px;
  border: 0;
  border-radius: 8px;
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 12px 26px rgba(11,107,58,.34);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.button:active { transform: translateY(1px); }
.hero .button { margin-top: 14px; }
.benefit-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.benefit-strip div {
  min-height: 78px;
  padding: 10px 8px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
.eyebrow { margin: 0 0 8px; color: var(--green-800); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h2 { margin: 0 0 18px; color: var(--green-950); font-size: 28px; line-height: 1.08; letter-spacing: 0; text-transform: uppercase; }
h3 { margin: 0 0 8px; color: var(--green-900); font-size: 18px; line-height: 1.2; }
p { margin: 0 0 14px; }
.lead { color: var(--muted); font-size: 16px; }
.photo { overflow: hidden; margin: 22px -20px 0; background: var(--green-100); }
.photo img, .photo video { width: 100%; }
.soft { background: var(--green-100); }
.cream { background: var(--cream-strong); }
.features { display: grid; gap: 12px; }
.feature, .scent, .review, .order-step, .formbox {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 24px rgba(6,47,36,.06);
}
.feature { padding: 16px; }
.feature strong { display: block; margin-bottom: 4px; color: var(--green-900); }
.scents, .reviews, .steps { display: grid; gap: 12px; }
.scent { padding: 16px; }
.scent small { color: var(--muted); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.exclusive { border-color: rgba(201,162,74,.64); background: linear-gradient(180deg, #fff9df, #fff); }
.set-callout { margin-top: 16px; padding: 16px; border-radius: 8px; background: var(--green-900); color: #fff; }
.set-callout strong { color: #f3d37a; }
.review { padding: 16px; }
.review-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.review-name { font-weight: 900; }
.stars { color: var(--gold); font-size: 15px; letter-spacing: .06em; }
.order-step { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding: 16px; }
.order-step span { width: 44px; height: 44px; border-radius: 50%; background: var(--green-900); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; }
.final-offer { padding: 0; }
.final-image { background: var(--green-100); }
.final-image img { width: 100%; }
.form-area { padding: 24px 20px 34px; background: var(--cream); }
.formbox { padding: 18px; background: #fff; }
.formbox h2 { margin-bottom: 8px; font-size: 26px; }
.field {
  width: 100%;
  min-height: 62px;
  margin: 0 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf7;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.25;
  padding: 0 16px;
}
select.field {
  appearance: none;
  background: linear-gradient(45deg, transparent 50%, var(--green-900) 50%), linear-gradient(135deg, var(--green-900) 50%, transparent 50%), #fbfbf7;
  background-position: calc(100% - 22px) 27px, calc(100% - 14px) 27px, 0 0;
  background-size: 8px 8px, 8px 8px, 100%;
  background-repeat: no-repeat;
  padding-right: 38px;
}
.hint { margin: 12px 0 0; padding: 12px; border-radius: 8px; background: #fff9df; color: var(--ink); font-size: 13px; line-height: 1.4; }
.footer { padding: 24px 20px 34px; background: var(--green-950); color: rgba(255,255,255,.78); font-size: 13px; text-align: center; }
.footer a { display: inline-block; margin: 4px 0; color: #fff; }
@media (max-width: 360px) {
  .hero h1 { font-size: 31px; }
  .new-price { font-size: 30px; }
  .sale-box { width: 124px; font-size: 14px; }
  .button { font-size: 16px; }
}

.hero .eyebrow {
  color: #f3d37a;
}

.hero-panel .eyebrow,
.hero .eyebrow {
  color: #ffe28a !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  opacity: 1;
}
.exclusive-note {
  margin: 18px 0;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #071f19, #073f2b);
  border: 1px solid rgba(245, 203, 102, .45);
  color: #fff;
}

.exclusive-note strong {
  display: block;
  color: #f3c85b;
  font-size: 18px;
  margin-bottom: 6px;
}

.exclusive-note span {
  color: rgba(255,255,255,.82);
}
/* Compact aromas and bundle offers */
.scents {
  display: grid;
  gap: 10px;
}

.scent {
  position: relative;
  overflow: hidden;
  padding: 14px 15px 14px 18px;
  border-radius: 12px;
  background: #fffef8;
  border: 1px solid rgba(6, 47, 36, 0.12);
  box-shadow: 0 10px 24px rgba(6, 47, 36, 0.07);
}

.scent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 0 99px 99px 0;
  background: var(--gold);
}

.scent small {
  display: block;
  margin-bottom: 4px;
  color: var(--green-800);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scent h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.scent p {
  margin: 0;
  color: #4f5f55;
  font-size: 14px;
  line-height: 1.45;
}

.scent p strong {
  color: var(--green-950);
}

.scent.exclusive {
  background: linear-gradient(145deg, #062f24 0%, #071f19 100%);
  border-color: rgba(243, 211, 122, .42);
  box-shadow: 0 16px 34px rgba(6, 47, 36, 0.18);
}

.scent.exclusive::before {
  background: linear-gradient(180deg, #f3d37a, #b9892e);
}

.scent.exclusive small,
.scent.exclusive h3,
.scent.exclusive p strong {
  color: #f3d37a;
}

.scent.exclusive p {
  color: rgba(255,255,255,.82);
}

.exclusive-note {
  margin: 14px 0;
  padding: 14px 15px;
  border-radius: 12px;
  background: #fff9df;
  border: 1px solid rgba(201, 162, 74, .42);
  color: var(--ink);
}

.exclusive-note strong {
  display: block;
  color: var(--green-950);
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 5px;
}

.exclusive-note span {
  color: #6a5a31;
  font-size: 13px;
  line-height: 1.35;
}

.bundle-row {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
}

.bundle-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 13px;
  border-radius: 14px;
  background: linear-gradient(135deg, #073f2b, #062f24);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  box-shadow: 0 14px 30px rgba(6,47,36,.16);
}

.bundle-card--gold {
  background: linear-gradient(135deg, #0b6b3a, #062f24);
  border-color: rgba(243, 211, 122, .58);
  box-shadow: 0 18px 38px rgba(6,47,36,.24);
}

.bundle-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3d37a;
  color: #062f24;
  font-size: 19px;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 10px 18px rgba(0,0,0,.16);
}

.bundle-info small {
  display: block;
  color: #f3d37a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.bundle-info h3 {
  margin: 3px 0 3px;
  color: #fff;
  font-size: 17px;
  line-height: 1.12;
}

.bundle-info p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.3;
}

.bundle-price {
  min-width: 92px;
  text-align: right;
}

.bundle-price strong {
  display: block;
  color: #f3d37a;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

.bundle-price span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 380px) {
  .bundle-card {
    grid-template-columns: 52px 1fr;
  }

  .bundle-icon {
    width: 52px;
    height: 52px;
    font-size: 17px;
  }

  .bundle-price {
    grid-column: 1 / -1;
    min-width: 0;
    padding-top: 9px;
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: left;
  }
}

/* Light minimal redesign overrides */
.hero-offer { margin-top: 20px; }
.section-note {
  margin: -8px 0 16px;
  color: #66766c;
  font-size: 15px;
  line-height: 1.45;
}

.aroma-section {
  background: linear-gradient(180deg, #fffdf6 0%, #f4f8ef 100%);
}

.scent-mini-grid {
  display: grid;
  gap: 10px;
}

.scent-mini {
  padding: 14px 15px;
  border-radius: 12px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(10, 90, 55, .13);
  box-shadow: 0 8px 20px rgba(10, 80, 50, .05);
}

.scent-mini span {
  display: inline-flex;
  margin-bottom: 5px;
  color: #0b6b3a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
}

.scent-mini strong {
  display: block;
  color: #063f2d;
  font-size: 18px;
  line-height: 1.15;
}

.scent-mini p {
  margin: 6px 0 0;
  color: #5b6b61;
  font-size: 14px;
  line-height: 1.4;
}

.exclusive-light {
  margin: 12px 0;
  padding: 15px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff7dd, #fffdf6);
  border: 1px solid rgba(201, 162, 74, .46);
  box-shadow: 0 10px 24px rgba(120, 90, 30, .07);
}

.exclusive-light small {
  color: #0b6b3a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.exclusive-light h3 {
  margin: 5px 0 8px;
  color: #063f2d;
}

.exclusive-light p {
  margin: 6px 0 0;
  color: #625f4d;
  font-size: 14px;
  line-height: 1.4;
}

.exclusive-light p strong {
  color: #063f2d;
}

.bundle-row {
  gap: 9px;
  margin: 12px 0 18px;
}

.bundle-card {
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  padding: 12px;
  border-radius: 13px;
  background: rgba(255,255,255,.9) !important;
  border: 1px solid rgba(10, 90, 55, .15) !important;
  color: #063f2d !important;
  box-shadow: 0 8px 20px rgba(10, 80, 50, .06) !important;
}

.bundle-card--gold {
  background: linear-gradient(180deg, #fff4cc, #fffdf6) !important;
  border-color: rgba(201, 162, 74, .56) !important;
}

.bundle-icon {
  width: 54px;
  height: 54px;
  background: #f1cf72;
  color: #063f2d;
  font-size: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 8px 16px rgba(80, 70, 30, .12);
}

.bundle-info small {
  color: #0b6b3a;
}

.bundle-info h3 {
  color: #063f2d;
  font-size: 16px;
}

.bundle-info p {
  color: #5b6b61;
}

.bundle-price strong {
  color: #0b6b3a;
  font-size: 17px;
}

.bundle-price span {
  color: #7a735e;
}

.pheromone-section .photo {
  margin-top: 0;
  margin-bottom: 22px;
}

.reviews-section {
  background: linear-gradient(180deg, #eef6ea 0%, #fffdf6 100%);
}

.reviews-highlight {
  display: grid;
  gap: 10px;
}

.review-main {
  position: relative;
  padding: 18px;
  border-radius: 14px;
  background: #063f2d;
  color: #fff;
  box-shadow: 0 16px 34px rgba(6, 47, 36, .18);
}

.review-main::before {
  content: "“";
  position: absolute;
  right: 16px;
  top: 4px;
  color: rgba(243, 211, 122, .28);
  font-size: 72px;
  line-height: 1;
  font-weight: 950;
}

.review-main .review-head,
.review .review-head {
  position: relative;
  z-index: 1;
}

.review-main .review-name {
  color: #fff;
}

.review-main p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.48;
}

.reviews-mini {
  display: grid;
  gap: 10px;
}

.reviews-section .review {
  padding: 14px 15px;
  border-radius: 12px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(10, 90, 55, .12);
  box-shadow: 0 8px 20px rgba(10, 80, 50, .05);
}

.reviews-section .review p {
  margin: 0;
  color: #53645a;
  font-size: 14px;
  line-height: 1.45;
}

.review-head {
  margin-bottom: 8px;
}

.stars {
  color: #d3a93f;
}

@media (max-width: 380px) {
  .bundle-card {
    grid-template-columns: 50px 1fr;
  }

  .bundle-icon {
    width: 50px;
    height: 50px;
  }
}
