:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --ink: #171717;
  --muted: #6c6963;
  --line: #e5dfd5;
  --accent: #d7332f;
  --accent-dark: #b92724;
  --green: #2f7b55;
  --shadow: 0 24px 70px rgba(35, 31, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(229, 223, 213, 0.9);
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 900;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  min-height: calc(100svh - 68px);
  padding: clamp(38px, 7vw, 86px) clamp(18px, 5vw, 72px) clamp(32px, 5vw, 62px);
}

.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.15;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.45;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 30px 0 18px;
}

.price-row div {
  display: grid;
  min-width: 210px;
}

.price-row span,
.gift-card span,
.details span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row strong {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1;
}

.hero-old-price {
  width: max-content;
  margin-top: 4px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: white;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(215, 51, 47, 0.2);
}

.button:hover {
  background: var(--accent-dark);
}

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

.chips span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-gift {
  display: inline-grid;
  gap: 3px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(47, 123, 85, 0.24);
  border-radius: 10px;
  background: #f2f7f1;
  color: var(--green);
}

.hero-gift strong {
  color: var(--green);
  font-size: 0.98rem;
}

.hero-gift span {
  color: #54705f;
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-media {
  margin: 0;
  padding: clamp(18px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 54%, rgba(215, 51, 47, 0.08), transparent 46%),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: min(720px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.1));
}

.stock-section,
.bonus,
.details,
.checkout,
.faq {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.stock-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfaf7;
}

.stock-section p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.55;
}

.stock-card {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: 0 16px 50px rgba(35, 31, 28, 0.08);
}

.stock-meter {
  display: grid;
  gap: 10px;
}

.stock-meter > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.stock-meter span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stock-meter strong {
  color: var(--green);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}

.stock-meter em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.meter-track {
  height: 10px;
  border-radius: 999px;
  background: #ebe5db;
  overflow: hidden;
}

.meter-track span {
  display: block;
  width: 15%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.stock-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stock-points li {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.stock-points strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.stock-points span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.bonus {
  background: var(--surface);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.gift-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}

.gift-card {
  display: grid;
  align-content: space-between;
  min-height: 360px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfaf7;
}

.gift-card img {
  width: min(300px, 100%);
  max-height: 250px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.gift-card.main-gift {
  background: #f2f7f1;
}

.gift-card.main-gift img {
  width: min(440px, 100%);
}

.gift-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.gift-meta {
  display: grid;
  gap: 8px;
  margin: 0;
}

.gift-meta div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.gift-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gift-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.gift-meta em {
  color: var(--green);
  font-style: normal;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.details article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.details h3 {
  margin-top: 26px;
}

.details p,
.small {
  color: var(--muted);
  line-height: 1.5;
}

.checkout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(620px, 820px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  justify-content: center;
  background: var(--surface);
}

.checkout h2 {
  font-size: clamp(2.2rem, 3vw, 3.8rem);
}

.checkout .small {
  max-width: 420px;
  margin-top: 18px;
  font-size: 0.95rem;
}

.faq {
  background: var(--bg);
}

.faq h2 {
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 20px 0;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.confirmation-page {
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 72px);
}

.confirmation-hero {
  max-width: 920px;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.confirmation-hero h1 {
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.confirmation-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.confirmation-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(320px, 1fr);
  gap: 18px;
}

.confirmation-card,
.next-steps,
.confirmation-help {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.confirmation-card,
.next-steps {
  padding: clamp(20px, 3vw, 28px);
}

.confirmation-card > span,
.next-steps > span {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confirmation-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.confirmation-card dl div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.confirmation-card dt {
  color: var(--muted);
  font-weight: 850;
}

.confirmation-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.next-steps ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 20px;
}

.next-steps p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.confirmation-help {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: clamp(18px, 3vw, 24px);
}

.confirmation-help p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.order-card {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfaf7;
  box-shadow: var(--shadow);
}

.cart-summary {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.cart-summary span,
.total-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-summary small {
  color: var(--muted);
  font-weight: 750;
}

s {
  color: #9a948a;
  text-decoration-thickness: 2px;
}

.included-items {
  display: grid;
  gap: 8px;
}

.included-item {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 8px 42px 8px 8px;
  border: 1px solid rgba(47, 123, 85, 0.22);
  border-radius: 8px;
  background: #f2f7f1;
}

.included-item::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.included-item img {
  width: 68px;
  height: 58px;
  border-radius: 7px;
  background: #fbfaf7;
  object-fit: contain;
  padding: 4px;
}

.included-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.96rem;
}

.included-item small {
  line-height: 1.3;
}

.gift-choice {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.gift-choice legend {
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 900;
}

.choice-card {
  display: grid;
  grid-template-columns: auto 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  border-color: rgba(47, 123, 85, 0.55);
  background: #f2f7f1;
}

.choice-card input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.choice-card > img {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  background: #f7f4ee;
  object-fit: contain;
  padding: 6px;
}

.choice-card span {
  display: grid;
  gap: 4px;
}

.choice-card strong {
  font-size: 0.98rem;
}

.choice-card small {
  color: var(--muted);
  line-height: 1.35;
}

.choice-card em {
  color: var(--green);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 900;
}

.choice-card em s {
  margin-right: 4px;
  color: #8d867b;
}

.bundle-note {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f2f7f1;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.35;
}

@media (min-width: 1180px) {
  .gift-choice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gift-choice legend,
  .bundle-note {
    grid-column: 1 / -1;
  }

  .choice-card {
    grid-template-columns: auto 70px 1fr;
    min-height: 104px;
  }

  .choice-card > img {
    width: 70px;
    height: 70px;
  }
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.total-row div {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.total-row s {
  font-size: 0.95rem;
  font-weight: 850;
}

.total-row strong {
  color: var(--accent);
  font-size: 1.8rem;
  line-height: 1;
}

.receipt {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.receipt > strong {
  font-size: 0.9rem;
}

.receipt ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.receipt li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.9rem;
}

.receipt li strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.receipt li em {
  color: var(--green);
  font-style: normal;
  font-weight: 850;
}

.receipt li s {
  margin-right: 6px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
}

input:focus,
select:focus {
  outline: 3px solid rgba(215, 51, 47, 0.15);
  border-color: var(--accent);
}

.full {
  width: 100%;
}

.paypal-area {
  display: grid;
  gap: 8px;
}

.paypal-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.secure-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

.secure-notes span {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.25;
}

.secure-notes span::before {
  content: "✓";
  display: grid;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #f2f7f1;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
}

.status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

@media (max-width: 980px) {
  .hero,
  .stock-section,
  .checkout,
  .confirmation-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .gift-grid,
  .details {
    grid-template-columns: 1fr;
  }

  .gift-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .header {
    height: 62px;
  }

  nav {
    display: none;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.8rem);
  }

  .confirmation-hero h1 {
    font-size: clamp(2.4rem, 13vw, 4.3rem);
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-media {
    padding: 14px;
  }

  .secure-notes {
    grid-template-columns: 1fr;
  }

  .confirmation-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
