:root {
  --page: #f4efe5;
  --surface: #fffdf8;
  --surface-soft: #f7f2e8;
  --ink: #252c26;
  --muted: #6d746d;
  --line: rgba(36, 54, 40, 0.12);
  --green: #176c42;
  --green-dark: #0c4f30;
  --orange: #d96b22;
  --orange-soft: #fff0e2;
  --error: #b33a32;
  --shadow: 0 22px 55px rgba(35, 46, 37, 0.11);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--page); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(224, 139, 57, 0.12), transparent 30rem),
    linear-gradient(180deg, #f8f3ea 0%, #eee7db 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
button, input { font: inherit; }
a { color: inherit; }

.page-shell {
  width: min(100%, 480px);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--surface);
  box-shadow: 0 0 70px rgba(36, 43, 37, 0.13);
  overflow: hidden;
}

.page { width: 100%; }

.hero { padding-bottom: 34px; }
.hero-image-wrap {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #181715;
}
.hero-image {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center top;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 9, 0.50) 0%, transparent 28%, transparent 72%, rgba(8, 12, 9, 0.36) 100%);
  pointer-events: none;
}
.hero-heading {
  position: absolute;
  top: 24px;
  left: 20px;
  right: 20px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 22px;
  background: rgba(16, 25, 18, 0.58);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
}
.hero-heading h1 {
  margin: 5px 0 0;
  font-size: clamp(42px, 13vw, 61px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.hero-content { padding: 26px 22px 0; }
.lead {
  margin: 0;
  color: #4d554e;
  font-size: 16px;
  line-height: 1.62;
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow-light { color: rgba(255,255,255,0.82); }

.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 12px;
  margin: 22px 0 18px;
}
.price-old,
.price-current {
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.price-old {
  color: #999d98;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.price-current { color: var(--ink); }
.discount {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: #a84a16;
  font-size: 13px;
  font-weight: 800;
}

.button {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.button-primary {
  background: linear-gradient(180deg, #1d7a4b 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 13px 28px rgba(12, 79, 48, 0.22);
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:disabled { cursor: wait; opacity: .68; transform: none; }
.sold-note {
  margin: 11px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.section { padding: 58px 20px; }
.product-section {
  background:
    linear-gradient(180deg, var(--surface) 0, var(--surface-soft) 10%, var(--surface-soft) 92%, var(--surface) 100%);
}
.section-heading { margin: 0 2px 24px; }
.section-heading h2,
.order-card h2 {
  margin: 7px 0 0;
  font-size: 33px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.story-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.story-content { padding: 24px 20px 22px; }
.story-content > p {
  margin: 0 0 15px;
  color: #505850;
  font-size: 15px;
  line-height: 1.66;
}
.story-content > p:last-of-type { margin-bottom: 21px; }

.spec-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-item {
  min-height: 53px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.spec-item:last-child { border-bottom: 0; }
.spec-item strong {
  max-width: 190px;
  color: var(--ink);
  text-align: right;
  font-size: 13px;
}

.feature-ribbon {
  margin: 18px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
}
.feature-ribbon i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.media-stack { display: grid; gap: 16px; }
.media-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(42, 50, 43, 0.08);
}
.media-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.media-card figcaption {
  padding: 16px 17px 18px;
  color: #5d655d;
  font-size: 13px;
  line-height: 1.52;
}

.reviews-section { padding-top: 50px; }
.reviews-carousel { position: relative; }
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex;
  transition: transform .38s cubic-bezier(.22,.72,.2,1);
  will-change: transform;
}
.review-card {
  min-width: 100%;
  min-height: 260px;
  padding: 24px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #fffdfa 0%, #f4eee3 100%);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 13px;
}
.review-avatar {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e0eee4;
  color: var(--green-dark);
  font-weight: 850;
}
.review-head h3 { margin: 0 0 3px; font-size: 15px; }
.review-head span:not(.review-avatar) { color: var(--muted); font-size: 12px; }
.stars { margin: 18px 0 11px; color: var(--orange); letter-spacing: .08em; }
.review-card p { margin: 0; color: #4f574f; font-size: 15px; line-height: 1.62; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 67, 40, .12);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(31, 47, 36, .13);
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}
.carousel-arrow-prev { left: -10px; }
.carousel-arrow-next { right: -10px; }
.carousel-dots {
  min-height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding-top: 15px;
}
.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9cec9;
  cursor: pointer;
  transition: width .2s ease, border-radius .2s ease, background .2s ease;
}
.carousel-dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--green);
}

.order-section {
  padding: 20px 20px 58px;
  background: linear-gradient(180deg, var(--surface) 0%, #efe5d5 100%);
}
.order-card {
  padding: 28px 22px 24px;
  border: 1px solid rgba(32, 74, 47, .12);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  text-align: center;
}
.order-lead {
  margin: 12px auto 22px;
  max-width: 330px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.order-form { text-align: left; }
.field-group { margin-bottom: 15px; }
.field-group label {
  display: block;
  margin: 0 0 7px 3px;
  color: #4d554e;
  font-size: 13px;
  font-weight: 700;
}
.field-group input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(36, 54, 40, .16);
  border-radius: 15px;
  outline: none;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field-group input:focus {
  border-color: rgba(23, 108, 66, .7);
  box-shadow: 0 0 0 4px rgba(23, 108, 66, .09);
}
.field-group.has-error input {
  border-color: rgba(179, 58, 50, .72);
  box-shadow: 0 0 0 4px rgba(179, 58, 50, .08);
}
.field-error {
  min-height: 17px;
  margin: 5px 3px 0;
  color: var(--error);
  font-size: 11px;
  line-height: 1.4;
}
.privacy-note {
  margin: 11px 3px 0;
  color: #7d837d;
  text-align: center;
  font-size: 10px;
  line-height: 1.45;
}
.form-success {
  min-height: 18px;
  margin: 8px 3px 0;
  color: var(--green-dark);
  text-align: center;
  font-size: 12px;
}
.form-success.is-error { color: var(--error); }

.site-footer {
  padding: 30px 22px calc(32px + env(safe-area-inset-bottom));
  background: #202721;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.65;
}
.footer-title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
}
.site-footer p { margin: 0 0 11px; }
.footer-links {
  display: grid;
  gap: 6px;
  margin: 14px 0;
}
.footer-links a { color: #fff; text-decoration-color: rgba(255,255,255,.38); }
.registry-note { color: rgba(255,255,255,.55); }

@media (max-width: 380px) {
  .hero-image-wrap,
  .hero-image { min-height: 535px; height: 535px; }
  .hero-heading { left: 15px; right: 15px; top: 16px; }
  .hero-content, .section, .order-section { padding-left: 16px; padding-right: 16px; }
  .section-heading h2, .order-card h2 { font-size: 30px; }
  .price-old, .price-current { font-size: 20px; }
  .spec-item { grid-template-columns: minmax(0, 1fr) minmax(110px, auto); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
