:root {
  --page-width: 520px;
  --cream: #fff8ef;
  --paper: #fffdf9;
  --sand: #f2dfc9;
  --amber: #d97721;
  --amber-dark: #a94418;
  --wine: #7d211d;
  --wine-deep: #571714;
  --ink: #32251f;
  --muted: #77645a;
  --line: rgba(100, 53, 32, .13);
  --shadow: 0 24px 70px rgba(105, 45, 19, .16);
}

* { 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(255, 190, 106, .34), transparent 38%),
    linear-gradient(180deg, #f3e6d8 0%, #ead8c7 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(88, 43, 24, .16);
}

.hero { background: var(--paper); }
.hero-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #bc5b1d;
}
.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(46, 17, 7, .05) 35%, rgba(48, 14, 8, .82) 100%);
}
.hero-title-wrap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  padding: 18px 18px 19px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 22px;
  background: rgba(74, 22, 13, .61);
  box-shadow: 0 16px 42px rgba(45, 12, 4, .24);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  color: #fff;
}
.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--amber-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: #59473f;
  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: #ad9a8f; text-decoration: line-through; text-decoration-thickness: 2px; }
.price.current { color: var(--wine); }
.discount {
  padding: 7px 9px;
  border-radius: 999px;
  background: #f2e0ce;
  color: var(--wine);
  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, #9b3525 0%, var(--wine-deep) 100%);
  box-shadow: 0 13px 28px rgba(112, 28, 21, .24);
}
.button:hover { filter: brightness(1.04); }
.button:disabled { opacity: .68; cursor: wait; }
.sold {
  margin: 10px 0 0;
  text-align: center;
  color: #9c887d;
  font-size: 12px;
}

.section { padding: 48px 16px 0; }
.product-section {
  background: linear-gradient(180deg, #fff8ef 0%, #f7eadc 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: #3e2820;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.product-card {
  overflow: hidden;
  border: 1px solid rgba(119, 66, 39, .11);
  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: #66534a;
  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: #9a8174; font-size: 12px; }
.notes-list strong { color: #4f3329; 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: #f8ede2;
  text-align: center;
}
.detail-strip strong { display: block; color: var(--wine); font-size: 13px; }
.detail-strip span { display: block; margin-top: 4px; color: #8c7569; 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, #f7eadc 0%, #fff8ef 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(119, 66, 39, .11);
  border-radius: 22px;
  background: rgba(255, 253, 249, .96);
  box-shadow: 0 18px 45px rgba(105, 45, 19, .10);
}
.review-head { display: flex; align-items: center; gap: 11px; }
.avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0d9c5;
  color: var(--wine);
  font-weight: 800;
}
.review-head h3 { margin: 0; color: #493027; font-size: 15px; }
.review-head div span { color: #9a8174; font-size: 12px; }
.stars { margin: 13px 0 8px; color: #c76622; font-size: 14px; letter-spacing: .12em; }
.review-card p { margin-bottom: 0; color: #69554b; 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(119, 66, 39, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .76);
  color: var(--wine);
  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: #cfb7a8;
  transition: width .2s ease, background .2s ease;
}
.carousel-dots button.is-active { width: 21px; background: var(--wine); }

.order-section {
  padding: 47px 16px 42px;
  background:
    radial-gradient(circle at 85% 0%, rgba(235, 133, 49, .38), transparent 35%),
    linear-gradient(155deg, #862c20 0%, #4e1513 100%);
}
.order-card {
  padding: 27px 20px 22px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 27px;
  background: rgba(255, 249, 241, .96);
  box-shadow: 0 25px 62px rgba(50, 8, 6, .32);
  text-align: center;
}
.order-card .eyebrow { color: var(--amber-dark); }
.order-card h2 { font-size: 33px; }
.order-card > p { margin: 11px auto 20px; color: #796257; 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: #634a3f; font-size: 12px; font-weight: 750; }
.field-group input {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border: 1px solid #dbc8bb;
  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: #ae4b34; box-shadow: 0 0 0 4px rgba(157, 53, 37, .10); }
.field-group.has-error input { border-color: #b62f2f; box-shadow: 0 0 0 4px rgba(182, 47, 47, .08); }
.field-error { min-height: 16px; margin: 5px 3px 0; color: #b22323; font-size: 11px; line-height: 1.35; }
.button-submit { margin-top: 3px; }
.privacy-note { margin: 11px 5px 0; text-align: center; color: #917b70; 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: #9c281f; font-size: 12px; }

.site-footer {
  padding: 30px 20px 35px;
  background: #2b1c18;
  color: rgba(255, 245, 237, .66);
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}
.footer-title { margin-bottom: 10px; color: #fff8f2; 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: #f1d4c4; text-decoration: none; }
.registry-note { margin-bottom: 0 !important; color: rgba(255, 245, 237, .48); }

@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; }
}
