:root {
  --page-width: 520px;
  --cream: #f0fbf9;          /* Очень светлый бирюзовый фон */
  --paper: #f6fffd;          /* Почти белый с бирюзовым оттенком */
  --sand: #d9f3ef;           /* Нежный мятно-бирюзовый */
  --rose-light: #4dd3c1;     /* Яркий бирюзовый */
  --rose-medium: #2ab3a1;    /* Глубокий бирюзовый */
  --rose-dark: #1a8f80;      /* Тёмный изумрудный */
  --rose-deep: #0f6b5e;      /* Глубокий зелёно-бирюзовый */
  --gold: #d4af37;           /* Золотой акцент */
  --gold-light: #f0d78c;     /* Светлый золотой */
  --silver: #e0f2f0;         /* Жемчужно-бирюзовый */
  --ink: #1a3a36;            /* Тёмный зелёно-бирюзовый текст */
  --muted: #6e9e97;          /* Приглушённый бирюзовый */
  --line: rgba(42, 179, 161, .18);  /* Бирюзовая линия */
  --shadow: 0 24px 70px rgba(42, 179, 161, .15);
}

* { 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(77, 211, 193, .30), transparent 38%),
    linear-gradient(180deg, #e0f7f4 0%, #c8f0eb 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(--cream);
  box-shadow: 0 0 90px rgba(42, 179, 161, .15);
}

.hero { background: var(--paper); }
.hero-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #2ab3a1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .10) 35%, rgba(15, 107, 94, .60) 100%);
}
.hero-title-wrap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  padding: 18px 18px 19px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 22px;
  background: rgba(26, 143, 128, .55);
  box-shadow: 0 16px 42px rgba(15, 107, 94, .25);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  color: #fff;
}
.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .90);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--rose-dark); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 10vw, 48px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}
.hero-content { padding: 25px 20px 30px; }
.lead {
  margin-bottom: 21px;
  color: #2e5b52;
  font-size: 16px;
  line-height: 1.58;
}
.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 13px;
  margin: 0 0 17px;
}
.price {
  font-size: 25px;
  font-weight: 790;
  line-height: 1;
  letter-spacing: -.045em;
}
.price.old { color: #6e9e97; text-decoration: line-through; text-decoration-thickness: 2px; }
.price.current { color: var(--gold); }
.discount {
  padding: 7px 9px;
  border-radius: 999px;
  background: #d9f3ef;
  color: #0f6b5e;
  font-size: 12px;
  font-weight: 800;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 55px;
  border: 0;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}
.button:active { transform: translateY(1px); }
.button-primary, .button-submit {
  color: #fff;
  background: linear-gradient(180deg, #4dd3c1 0%, #1a8f80 100%);
  box-shadow: 0 13px 28px rgba(26, 143, 128, .30);
}
.button:hover { filter: brightness(1.1); }
.button:disabled { opacity: .68; cursor: wait; }
.sold {
  margin: 10px 0 0;
  text-align: center;
  color: #6e9e97;
  font-size: 12px;
}

.section { padding: 48px 16px 0; }
.product-section {
  background: linear-gradient(180deg, #f0fbf9 0%, #d9f3ef 100%);
}
.section-heading { padding: 0 5px 18px; }
.section-heading.centered { text-align: center; }
h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #0f6b5e;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.product-card {
  overflow: hidden;
  border: 1px solid rgba(42, 179, 161, .18);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.product-main-image { aspect-ratio: 1154 / 1343; object-fit: cover; }
.product-copy { padding: 22px 18px 19px; }
.product-copy > p {
  color: #2e5b52;
  font-size: 15px;
  line-height: 1.66;
}
.product-copy > p + p { margin-top: 12px; }
.notes-list {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.notes-list div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 12px;
  padding: 13px 0;
}
.notes-list div + div { border-top: 1px solid var(--line); }
.notes-list span { color: #6e9e97; font-size: 12px; }
.notes-list strong { color: #0f6b5e; font-size: 14px; line-height: 1.35; }
.detail-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 18px 0;
}
.detail-strip div {
  min-width: 0;
  padding: 12px 8px;
  border-radius: 14px;
  background: #d9f3ef;
  text-align: center;
}
.detail-strip strong { display: block; color: #1a8f80; font-size: 13px; }
.detail-strip span { display: block; margin-top: 4px; color: #3d7a70; font-size: 10px; line-height: 1.25; }
.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.image-pair img {
  height: 100%;
  min-height: 205px;
  object-fit: cover;
  border-radius: 15px;
}

.reviews-section {
  padding-bottom: 48px;
  background: linear-gradient(180deg, #d9f3ef 0%, #f0fbf9 100%);
}
.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 5px;
}
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform .42s ease; }
.review-card {
  min-width: 100%;
  padding: 21px 20px;
  border: 1px solid rgba(42, 179, 161, .18);
  border-radius: 22px;
  background: rgba(246, 255, 253, .96);
  box-shadow: 0 18px 45px rgba(42, 179, 161, .10);
}
.review-head { display: flex; align-items: center; gap: 11px; }
.avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d9f3ef;
  color: #1a8f80;
  font-weight: 800;
}
.review-head h3 { margin: 0; color: #0f6b5e; font-size: 15px; }
.review-head div span { color: #6e9e97; font-size: 12px; }
.stars { margin: 13px 0 8px; color: #d4af37; font-size: 14px; letter-spacing: .12em; }
.review-card p { margin-bottom: 0; color: #2e5b52; 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 rgba(42, 179, 161, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  color: #1a8f80;
  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: #8cd3c8;
  transition: width .2s ease, background .2s ease;
}
.carousel-dots button.is-active { width: 21px; background: #1a8f80; }

.order-section {
  padding: 47px 16px 42px;
  background:
    radial-gradient(circle at 85% 0%, rgba(77, 211, 193, .40), transparent 35%),
    linear-gradient(155deg, #4dd3c1 0%, #0f6b5e 100%);
}
.order-card {
  padding: 27px 20px 22px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 27px;
  background: rgba(246, 255, 253, .97);
  box-shadow: 0 25px 62px rgba(15, 107, 94, .25);
  text-align: center;
}
.order-card .eyebrow { color: #1a8f80; }
.order-card h2 { font-size: 33px; }
.order-card > p { margin: 11px auto 20px; color: #3d7a70; 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: #0f6b5e; font-size: 12px; font-weight: 750; }
.field-group input {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border: 1px solid #8cd3c8;
  border-radius: 14px;
  outline: none;
  background: #fff;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field-group input:focus { border-color: #1a8f80; box-shadow: 0 0 0 4px rgba(26, 143, 128, .12); }
.field-group.has-error input { border-color: #1a8f80; box-shadow: 0 0 0 4px rgba(26, 143, 128, .12); }
.field-error { min-height: 16px; margin: 5px 3px 0; color: #1a8f80; font-size: 11px; line-height: 1.35; }
.button-submit { margin-top: 3px; }
.privacy-note { margin: 11px 5px 0; text-align: center; color: #6e9e97; 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: #1a8f80; font-size: 12px; }

.site-footer {
  padding: 30px 20px 35px;
  background: #0f6b5e;
  color: rgba(255, 255, 255, .75);
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}
.footer-title { margin-bottom: 10px; color: #f0d78c; 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: #d4af37; text-decoration: none; }
.registry-note { margin-bottom: 0 !important; color: rgba(255, 255, 255, .55); }

@media (max-width: 380px) {
  .hero-media, .hero-media img { min-height: 530px; }
  .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; }
}