@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f5f7fb;
  --card: #ffffff;
  --line: #e6ebf2;
  --text: #111827;
  --muted: #6b7280;
  --accent: #16a34a;
  --accent2: #15803d;
  --accent-soft: rgba(22,163,74,.12);
  --warn: #ea580c;
  --warn-soft: rgba(234,88,12,.10);
  --danger: #e11d48;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(17,24,39,.08);
  --font: 'Montserrat', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display:block; width:100%; height:auto; }
a { color: var(--accent2); text-decoration: none; }

.wrap { padding: 18px 16px 24px; background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 42%); }
.pill {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--accent-soft);
  border: 1px solid rgba(22,163,74,.25);
  color: var(--accent2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.h1 {
  font-size: 26px;
  line-height: 1.18;
  margin: 12px 0 8px;
  font-weight: 900;
}
.lead { color: var(--muted); font-size: 14px; margin-bottom: 16px; font-weight: 600; }

.hero-card, .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-media { background: #f8fafc; }
.hero-body { padding: 14px; }

.timer {
  display:grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px; align-items:center; text-align:center;
  background: var(--warn-soft);
  border: 1px solid rgba(234,88,12,.22);
  border-radius: 14px;
  padding: 12px;
  margin: 12px 0;
}
.timer-label { grid-column: 1 / -1; color: var(--warn); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing:.04em; }
.t-box { background: #fff; border: 1px solid rgba(234,88,12,.15); border-radius: 12px; padding: 10px 6px; }
.t-box b { display:block; font-size: 22px; font-weight: 900; color: var(--text); }
.t-box span { color: var(--muted); font-size: 11px; font-weight: 700; }
.colon { font-size: 22px; color: var(--warn); font-weight: 900; }

.price {
  display:grid; grid-template-columns: 1fr auto 1fr;
  gap: 10px; align-items:center; margin: 12px 0;
}
.price .col { text-align:center; }
.price .lbl { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing:.04em; font-weight: 700; }
.price .old { color: var(--muted); text-decoration: line-through; font-size: 17px; font-weight: 800; }
.price .new { color: var(--accent2); font-size: 24px; font-weight: 900; }
.badge {
  background: var(--danger); color:#fff; font-weight:900; border-radius: 999px;
  padding: 8px 10px; font-size: 13px;
}

.stock {
  display:flex; align-items:center; justify-content:center; gap:8px;
  color: var(--danger); font-size: 13px; font-weight: 800; margin-bottom: 12px;
}
.stock i {
  width:8px; height:8px; border-radius:50%; background: var(--danger);
  box-shadow: 0 0 0 4px rgba(225,29,72,.15); display:inline-block;
}

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.form h3 { font-size: 17px; margin-bottom: 2px; font-weight: 900; }
.form p { color: var(--muted); font-size: 13px; margin-bottom: 10px; font-weight: 600; }
.input {
  width:100%; background:#fff; border:1px solid var(--line); color:var(--text);
  border-radius: 12px; padding: 14px; font-size: 15px; margin-bottom: 8px; outline:none; font-weight: 600;
}
.input:focus { border-color: rgba(22,163,74,.55); box-shadow: 0 0 0 3px rgba(22,163,74,.12); }
.btn {
  width:100%; border:0; cursor:pointer; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-weight: 900; font-size: 16px; padding: 15px 16px;
  box-shadow: 0 10px 22px rgba(22,163,74,.28);
}
.btn:disabled { opacity:.65; cursor:wait; }

.section { padding: 26px 16px; }
.section h2 { font-size: 22px; line-height:1.2; margin: 8px 0 6px; font-weight: 900; }
.section .sub { color: var(--muted); margin-bottom: 14px; font-size: 14px; font-weight: 600; }

.grid2 { display:grid; gap: 10px; }
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px; padding: 14px;
}
.feature h4 { margin-bottom: 4px; font-size: 15px; font-weight: 800; }
.feature p { color: var(--muted); font-size: 13px; font-weight: 600; }

.specs { display:grid; gap: 8px; }
.spec {
  display:flex; justify-content:space-between; gap:12px;
  background: var(--surface); border:1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; font-size: 13px; font-weight: 700;
}
.spec span { color: var(--muted); }
.spec b { text-align:right; font-weight: 800; }

.bar-item { margin-bottom: 12px; }
.bar-top { display:flex; justify-content:space-between; font-size: 13px; margin-bottom: 6px; font-weight: 700; }
.bar-track { height: 8px; background: #e8eef5; border-radius: 999px; overflow:hidden; }
.bar-fill { height:100%; width:0; background: linear-gradient(90deg, var(--accent), #4ade80); transition: width 1s ease; }

.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px; padding: 14px; margin-bottom: 10px;
}
.review .meta { display:flex; justify-content:space-between; gap:10px; margin-bottom: 6px; }
.review .name { font-weight: 900; }
.review .date { color: var(--muted); font-size: 12px; font-weight: 700; }
.stars { color: #f59e0b; letter-spacing: 1px; margin-bottom: 6px; }
.review p { color: #374151; font-size: 14px; font-weight: 600; }

.steps { display:grid; gap: 10px; }
.step {
  display:grid; grid-template-columns: 36px 1fr; gap: 12px; align-items:start;
  background: var(--surface); border:1px solid var(--line);
  border-radius: 14px; padding: 12px;
}
.num {
  width:36px; height:36px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--accent-soft); color: var(--accent2); font-weight: 900;
}
.step h4 { font-size: 14px; margin-bottom: 2px; font-weight: 800; }
.step p { color: var(--muted); font-size: 13px; font-weight: 600; }

.footer {
  padding: 22px 16px 36px; color: var(--muted); font-size: 12px; text-align:center; font-weight: 600;
  background: #f8fafc; border-top: 1px solid var(--line);
}
.divider { height: 1px; background: var(--line); margin: 0 16px; }

#order { background: #f0fdf4; }
