:root {
  --page-width: 520px;
  --bg-dark: #0d1610;
  --paper: #122018;
  --sand: #1a2e1f;
  --accent: #39b54a;
  --accent-mid: #2a9a38;
  --accent-dark: #1e7a2a;
  --accent-light: #5dcf6a;
  --gold: #7edb88;
  --gold-light: #a8e8b0;
  --ink: #e8f5e9;
  --muted: #8fb89a;
  --line: rgba(57, 181, 74, .22);
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%, rgba(57, 181, 74, .22), transparent 40%),
    linear-gradient(180deg, #0a120c 0%, #0f1a12 100%);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.page-shell {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: 0 0 90px rgba(0, 0, 0, .45);
}

.hero { background: var(--paper); }
.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #1a2e1f;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15) 30%, rgba(10, 20, 12, .75) 100%);
}
.hero-title-wrap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  padding: 18px 18px 19px;
  border: 1px solid rgba(57, 181, 74, .35);
  border-radius: 22px;
  background: rgba(18, 32, 24, .78);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
}
.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .90);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--accent); }
.hero-title-wrap h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
}
.hero-content {
  padding: 22px 20px 28px;
  text-align: center;
}
.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.price {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}
.price.old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 18px;
  font-weight: 600;
}
.price.current { color: var(--accent); }
.discount {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(57, 181, 74, .18);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 800;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: filter .2s, transform .15s;
}
.button:hover { filter: brightness(1.08); transform: translateY(-1px); }
.button-primary {
  width: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-mid));
  color: #fff;
  box-shadow: 0 14px 32px rgba(57, 181, 74, .35);
}
.sold {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 36px 18px 28px;
}
.section-heading {
  margin-bottom: 18px;
}
.section-heading.centered { text-align: center; }
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}
.product-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.product-main-image {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  background: #1a2e1f;
}
.product-copy {
  padding: 20px 18px 22px;
}
.product-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}
.notes-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.notes-list > div {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(57, 181, 74, .08);
  border: 1px solid rgba(57, 181, 74, .12);
}
.notes-list span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.notes-list strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.detail-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0 20px;
}
.detail-strip > div {
  padding: 12px 8px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .25);
  text-align: center;
}
.detail-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}
.detail-strip span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}
.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.image-pair img {
  border-radius: 14px;
  min-height: 140px;
  object-fit: cover;
  background: #1a2e1f;
}
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  border-radius: 14px;
  background: #1a2e1f;
  border: 1px dashed rgba(57, 181, 74, .35);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  padding: 12px;
}

.reviews-section { background: var(--sand); }
.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.carousel-viewport {
  overflow: hidden;
  flex: 1;
}
.carousel-track {
  display: flex;
  transition: transform .35s ease;
}
.review-card {
  flex: 0 0 100%;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(57, 181, 74, .2);
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
}
.review-head h3 { margin: 0; color: var(--accent-light); font-size: 15px; }
.review-head div span { color: var(--muted); font-size: 12px; }
.stars { margin: 13px 0 8px; color: var(--accent); font-size: 14px; letter-spacing: .12em; }
.review-card p { margin-bottom: 0; color: #c8e0d0; font-size: 14px; line-height: 1.58; }
.carousel-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0 0 3px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(18, 32, 24, .9);
  color: var(--accent);
  font-size: 26px;
  cursor: pointer;
}
.carousel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.carousel-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(57, 181, 74, .35);
  transition: width .2s ease, background .2s ease;
}
.carousel-dots button.is-active { width: 21px; background: var(--accent); }

.order-section {
  padding: 47px 16px 42px;
  background:
    radial-gradient(circle at 85% 0%, rgba(57, 181, 74, .25), transparent 35%),
    linear-gradient(155deg, #1a2e1f 0%, #0d1610 100%);
}
.order-card {
  padding: 27px 20px 22px;
  border: 1px solid rgba(57, 181, 74, .28);
  border-radius: 27px;
  background: rgba(18, 32, 24, .96);
  box-shadow: 0 25px 62px rgba(0, 0, 0, .35);
  text-align: center;
}
.order-card .eyebrow { color: var(--accent); }
.order-card h2 { font-size: 33px; color: var(--ink); }
.order-card > p { margin: 11px auto 20px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.order-form { text-align: left; }
.field-group { margin-bottom: 14px; }
.field-group label { display: block; margin: 0 0 7px 3px; color: var(--accent-light); font-size: 12px; font-weight: 750; }
.field-group input {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(57, 181, 74, .3);
  border-radius: 14px;
  outline: none;
  background: #0d1610;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field-group input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(57, 181, 74, .15); }
.field-group.has-error input { border-color: #e05a5a; box-shadow: 0 0 0 4px rgba(224, 90, 90, .12); }
.field-error { min-height: 16px; margin: 5px 3px 0; color: #e05a5a; font-size: 11px; line-height: 1.35; }
.button-submit {
  width: 100%;
  margin-top: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-mid));
  color: #fff;
  box-shadow: 0 13px 28px rgba(57, 181, 74, .35);
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
}
.privacy-note { margin: 11px 5px 0; text-align: center; color: var(--muted); font-size: 10px; line-height: 1.4; }
.privacy-note a { text-decoration: underline; text-underline-offset: 2px; }
.form-status { min-height: 18px; margin: 8px 0 0; text-align: center; color: var(--accent); font-size: 12px; }

.site-footer {
  padding: 30px 20px 35px;
  background: #0a120c;
  color: rgba(200, 230, 210, .7);
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}
.footer-title { margin-bottom: 10px; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .09em; }
.site-footer p { margin-bottom: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 13px; margin: 17px 0 13px; }
.footer-links a { color: var(--gold-light); text-decoration: none; }
.registry-note { margin-bottom: 0 !important; color: rgba(200, 230, 210, .45); }

@media (max-width: 380px) {
  .hero-media, .hero-media img { min-height: 460px; }
  .hero-content { padding-left: 16px; padding-right: 16px; }
  .price { font-size: 22px; }
  .section { padding-left: 12px; padding-right: 12px; }
  h2 { font-size: 28px; }
  .detail-strip span { font-size: 9px; }
}

@media (min-width: 521px) {
  body { padding: 22px 0; }
  .page-shell { border-radius: 28px; }
}

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