
:root {
  --ink: #2f2c32;
  --muted: #6c6570;
  --line: #e7e0e8;
  --blush: #f5bcc9;
  --lavender: #c9b9f2;
  --mint: #b7ded0;
  --teal: #23756f;
  --teal-dark: #174f4b;
  --butter: #f8dc88;
  --soft: #fff7fb;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - 1200px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--butter), var(--blush) 58%, var(--mint));
  font-family: "Fraunces", serif;
  font-size: 14px;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}
nav a { text-decoration: none; color: var(--muted); }
.cart-button, .icon-button {
  border: 0;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
}
.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 4px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-size: 12px;
}

main > section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: start;
  gap: 44px;
  padding-top: 38px;
}
.gallery-main {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.gallery-strip img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: 6px;
}
.buy-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(47, 44, 50, 0.08);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.08;
  letter-spacing: 0;
}
h1 { max-width: 560px; font-size: 40px; }
h2 { font-size: 34px; }
h3 { font-size: 20px; }
.lede {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 18px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0;
  font-size: 30px;
  font-weight: 800;
}
.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.product-facts span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(183, 222, 208, 0.34);
  font-size: 13px;
  font-weight: 800;
}
.swatches { margin: 16px 0; }
.swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 7px 12px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}
.swatch span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111111;
}
.benefits {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}
.benefits li {
  position: relative;
  padding-left: 26px;
  color: #3f3942;
}
.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: inset 0 0 0 4px var(--white);
  border: 2px solid var(--teal);
}
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0;
  font-weight: 800;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
}
.qty-row input, .cart-line input {
  max-width: 88px;
}
.primary, .secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}
.primary {
  width: 100%;
  color: var(--white);
  background: var(--teal);
}
.primary:hover { background: var(--teal-dark); }
.secondary {
  color: var(--ink);
  background: var(--butter);
}
.reassurance, .cart-note, .support-note, .form-status {
  color: var(--muted);
  font-size: 14px;
}
.band {
  max-width: none;
  background: linear-gradient(90deg, rgba(245,188,201,0.22), rgba(183,222,208,0.22));
}
.band > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.problem, .solution, .features, .guarantee, .final-buy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.problem img, .solution img, .guarantee img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 8px;
}
.section-copy p:not(.eyebrow), .section-heading + p {
  color: var(--muted);
  font-size: 18px;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.steps, .use-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.steps article, .use-grid article, details {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--lavender);
  font-weight: 900;
}
.use-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  position: relative;
}
.feature-card img {
  border: 1px solid var(--line);
  border-radius: 8px;
}
.callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.callouts span {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--soft);
  font-weight: 800;
}
.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
th, td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th { color: var(--teal-dark); }
tr:last-child td { border-bottom: 0; }
details summary {
  cursor: pointer;
  font-weight: 900;
}
details p { color: var(--muted); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.final-buy {
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.final-buy img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  border-radius: 8px;
}
.page-hero.narrow, .info-list.narrow, .contact-form.narrow {
  max-width: 820px;
}
.page-hero h1 { max-width: none; }
.info-list {
  display: grid;
  gap: 20px;
  padding-top: 0;
}
.info-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.contact-form form {
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.text-link {
  color: var(--teal-dark);
  font-weight: 900;
}
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  justify-content: flex-end;
  background: rgba(47, 44, 50, 0.32);
}
.cart-drawer[aria-hidden="false"] { display: flex; }
.cart-panel {
  width: min(420px, 100%);
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  box-shadow: -20px 0 60px rgba(47, 44, 50, 0.18);
}
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cart-line {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cart-line img {
  width: 88px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}
.cart-line span, .cart-line label { display: block; color: var(--muted); font-size: 14px; }
.subtotal {
  display: flex;
  justify-content: space-between;
  margin: 18px 0;
  font-size: 20px;
}
.full { width: 100%; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  main > section { padding: 44px 18px; }
  .hero, .problem, .solution, .features, .guarantee, .final-buy {
    grid-template-columns: 1fr;
  }
  .buy-box { padding: 22px; }
  .steps, .use-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .gallery-strip { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer {
    flex-direction: column;
  }
  .footer-links { justify-content: flex-start; }
}
