:root {
  --teal: #0f6659;
  --teal-deep: #0b4a41;
  --teal-soft: #e3f2ee;
  --coral: #ff6b5b;
  --coral-deep: #e2543f;
  --bg: #f5f7f7;
  --surface: #ffffff;
  --ink: #17231f;
  --muted: #62726c;
  --edge: #e2e8e5;
  --radius: 16px;
  --shadow: 0 18px 44px rgba(15, 102, 89, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Inter", "Segoe UI", Arial, sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; }
h1, h2, h3 { font-family: "Sora", "Inter", sans-serif; font-weight: 700; line-height: 1.2; margin: 0 0 12px; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

.box { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-soft); color: var(--teal-deep);
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 12px;
}
.tc { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 12px; padding: 15px 26px;
  font-size: 15.5px; font-weight: 700; cursor: pointer; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 10px 24px rgba(255,107,91,0.32); }
.btn-coral:hover { background: var(--coral-deep); transform: translateY(-1px); }
.btn-block { width: 100%; }

.utility {
  background: var(--teal-deep); color: #cfe4de; font-size: 12.5px; font-weight: 600;
  padding: 8px 0; text-align: center; letter-spacing: 0.01em;
}
.utility span { margin: 0 10px; }

.nav { position: sticky; top: 0; z-index: 50; background: rgba(245,247,247,0.94); backdrop-filter: blur(6px); border-bottom: 1px solid var(--edge); }
.nav .box { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-family: "Sora", sans-serif; font-weight: 800; font-size: 20px; color: var(--teal-deep); text-decoration: none; }
.brand i { font-style: normal; color: var(--coral); }
.nav-links { display: flex; gap: 22px; }
.nav-links a { text-decoration: none; color: var(--ink); font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.nav-links a:hover { color: var(--teal); }
@media (max-width: 860px) {
  .nav .box { justify-content: flex-start; gap: 20px; }
  .nav-links { overflow-x: auto; gap: 18px; padding-bottom: 2px; -webkit-overflow-scrolling: touch; }
  .nav-links::-webkit-scrollbar { display: none; }
}

.intro { padding: 46px 0 10px; }
.intro-h1 { font-size: clamp(28px, 4vw, 40px); max-width: 780px; margin: 0 auto 14px; }
.intro .sub { max-width: 620px; }
.intro-points { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-top: 22px; }
.intro-points div { font-size: 13.5px; font-weight: 600; color: var(--teal-deep); display: flex; align-items: center; gap: 7px; }

.shop { padding: 30px 0 30px; }
.shop-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 44px; align-items: start; }

.gallery { position: sticky; top: 90px; }
.gallery-frame {
  background: var(--teal-soft); border-radius: 22px; padding: 30px; position: relative;
  display: flex; align-items: center; justify-content: center; min-height: 380px;
}
.gallery-frame svg, .gallery-frame img { width: 60%; max-width: 260px; filter: drop-shadow(0 18px 26px rgba(15,102,89,0.22)); }
.callout {
  position: absolute; background: var(--surface); border-radius: 12px; box-shadow: var(--shadow);
  padding: 9px 13px; font-size: 12px; font-weight: 700; color: var(--teal-deep);
  display: flex; align-items: center; gap: 7px;
}
.callout .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
.callout--top { top: 10%; left: 4%; }
.callout--bottom { bottom: 12%; right: 4%; }
.rating-strip { display: flex; align-items: center; gap: 9px; justify-content: center; margin-top: 18px; font-size: 13.5px; }
.rating-strip .stars { color: #f5a623; letter-spacing: 1px; }
.rating-strip b { font-size: 14px; }
.rating-strip span { color: var(--muted); }

.buybox {
  background: var(--surface); border: 1px solid var(--edge); border-radius: var(--radius);
  padding: 30px 30px 26px; box-shadow: var(--shadow);
}
.buybox .pill { margin-bottom: 10px; }
.buybox-title { font-size: 18px; margin-bottom: 4px; }
.buybox p.lead { color: var(--muted); font-size: 13.5px; margin: 0 0 18px; }

.pack-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.pack {
  border: 1.5px solid var(--edge); border-radius: 12px; padding: 12px 10px; text-align: center;
  cursor: pointer; position: relative; background: var(--bg);
}
.pack input { position: absolute; opacity: 0; }
.pack .qty { font-weight: 700; font-size: 13.5px; display: block; }
.pack .unit { font-size: 11.5px; color: var(--muted); display: block; margin-top: 2px; }
.pack .price { font-family: "Sora", sans-serif; font-weight: 800; font-size: 15px; color: var(--teal-deep); display: block; margin-top: 6px; }
.pack.selected { border-color: var(--teal); background: var(--teal-soft); }
.pack .badge {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff; font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 999px; white-space: nowrap;
}

.buy-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.buy-price-row .old { color: var(--muted); text-decoration: line-through; font-size: 15px; }
.buy-price-row .new { font-family: "Sora", sans-serif; font-size: 26px; font-weight: 800; color: var(--coral-deep); }
.buy-price-row .off { background: var(--teal); color: #fff; font-size: 11.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }

.f-row { margin-bottom: 13px; }
.f-row label { display: block; font-size: 12.5px; font-weight: 700; margin-bottom: 5px; }
.f-row input { width: 100%; padding: 11px 13px; border: 1px solid var(--edge); border-radius: 10px; font-size: 14.5px; font-family: inherit; background: var(--bg); }
.f-row input:focus { outline: 2px solid var(--teal); outline-offset: 1px; }
.f-row .err { color: #c0432f; font-size: 12px; margin-top: 4px; display: none; }
.f-row.bad input { border-color: #c0432f; }
.f-row.bad .err { display: block; }
.f-consent { display: flex; gap: 8px; align-items: flex-start; margin: 12px 0 16px; font-size: 11.5px; color: var(--muted); }
.f-consent.bad { color: #c0432f; }
.f-consent input { margin-top: 3px; }

.buy-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; font-size: 12px; color: var(--muted); }

.order-done { display: none; text-align: center; padding: 10px 0; }
.order-done.show { display: block; }
.order-done .ok { font-size: 34px; color: var(--teal); margin-bottom: 8px; }
.order-form.hide { display: none; }

@media (max-width: 900px) {
  .shop-grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
}

.block { padding: 56px 0; }
.block-alt { background: var(--surface); border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge); }

.desc-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.desc-grid ul { list-style: none; padding: 0; margin: 16px 0 0; }
.desc-grid li { padding: 10px 0; border-top: 1px solid var(--edge); font-size: 14.5px; display: flex; gap: 10px; }
.desc-grid li:first-child { border-top: none; }

.spec-table { border: 1px solid var(--edge); border-radius: var(--radius); overflow: hidden; background: var(--surface); max-width: 760px; }
.spec-row { display: grid; grid-template-columns: 1fr 1.6fr; border-top: 1px solid var(--edge); }
.spec-row:first-child { border-top: none; }
.spec-row .k { padding: 15px 18px; font-weight: 700; font-size: 14px; background: var(--teal-soft); color: var(--teal-deep); }
.spec-row .v { padding: 15px 18px; font-size: 13.5px; color: var(--muted); }
.spec-note { font-size: 12px; color: var(--muted); margin-top: 14px; }

.flow-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; max-width: 820px; }
.flow-step { text-align: left; padding: 0 20px 0 0; position: relative; }
.flow-step .ico { width: 54px; height: 54px; border-radius: 14px; background: var(--teal-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.flow-step .ico svg { width: 26px; height: 26px; }
.flow-step h3 { font-size: 14.5px; margin-bottom: 4px; }
.flow-step p { font-size: 13px; color: var(--muted); margin: 0; }
@media (max-width: 760px) { .flow-row, .desc-grid { grid-template-columns: 1fr; gap: 22px; } }

.carousel { max-width: 620px; }
.slide { display: none; background: var(--surface); border: 1px solid var(--edge); border-radius: var(--radius); padding: 26px 30px; }
.slide.active { display: block; }
.slide-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.slide img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.slide p.quote { font-size: 15px; margin: 0 0 10px; }
.slide .who { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.dots { display: flex; gap: 8px; margin-top: 16px; }
.dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--edge); cursor: pointer; padding: 0; }
.dots button.active { background: var(--teal); width: 22px; border-radius: 4px; }

.faq-list { max-width: 760px; }
.faq-line { border-bottom: 1px solid var(--edge); padding: 16px 0; }
.faq-line .q { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; cursor: pointer; background: none; border: none; width: 100%; text-align: left; font-family: inherit; }
.faq-line .q .n { font-family: "Sora", sans-serif; color: var(--teal); font-weight: 800; font-size: 13px; flex-shrink: 0; }
.faq-line .q .t { flex: 1; font-size: 15px; font-weight: 700; }
.faq-line .q .plusminus { color: var(--muted); font-size: 19px; }
.faq-line .a { max-height: 0; overflow: hidden; transition: max-height 0.22s ease; }
.faq-line.open .a { max-height: 200px; }
.faq-line .a p { margin: 8px 0 0 28px; font-size: 13.5px; color: var(--muted); }

.legal-wrap { padding: 46px 0 66px; max-width: 780px; margin: 0 auto; }
.legal-wrap h1 { font-size: 28px; margin-bottom: 20px; }
.legal-wrap h2 { font-size: 17px; margin: 26px 0 8px; }
.legal-wrap p, .legal-wrap li { color: var(--muted); font-size: 14.5px; }
.legal-wrap ul { padding-left: 18px; }

.foot { background: var(--teal-deep); color: #cfe4de; padding: 44px 0 26px; font-size: 13.5px; }
.foot-cols { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.1fr; gap: 28px; margin-bottom: 28px; }
.foot-cols h4 { color: #fff; font-family: "Sora", sans-serif; font-size: 14px; margin: 0 0 12px; }
.foot-cols ul { list-style: none; padding: 0; margin: 0; }
.foot-cols li { margin-bottom: 8px; }
.foot-cols a { color: #cfe4de; text-decoration: none; }
.foot-cols a:hover { color: #fff; }
.foot-legal { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 18px; color: #9dbdb4; line-height: 1.7; }
.foot-bottom { margin-top: 14px; color: #7fa89d; }
@media (max-width: 860px) { .foot-cols { grid-template-columns: 1fr; } }
