/* ===== LOMRON v2 — dark premium sport ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #131418;        /* page ground */
  --panel: #1c1e24;      /* cards / raised surfaces */
  --panel-2: #23262e;    /* inputs, deeper layer */
  --line: #2e323c;
  --paper: #f3f1ec;      /* warm off-white text */
  --muted: #9aa0ac;
  --accent: #ff6b2c;     /* heat orange */
  --accent-press: #e5551a;
  --ok: #35c168;

  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "Manrope", "Segoe UI", Arial, sans-serif;
  --cut: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: #0c0d10;
  color: var(--paper);
  line-height: 1.5;
}

.page {
  max-width: 480px;
  margin: 0 auto;
  background: var(--ink);
  min-height: 100vh;
  overflow: hidden;
}

h1, h2 { font-family: var(--display); font-weight: 700; line-height: 1.15; text-wrap: balance; }
h1 em, h2 em { font-style: normal; color: var(--accent); }

.eyebrow {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 3px; color: var(--accent);
  margin-bottom: 8px;
}

/* ---- topbar ---- */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}
.logo {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  letter-spacing: 1px; color: var(--paper);
}
.logo em {
  font-style: normal; font-weight: 500; font-size: 12px;
  color: var(--accent); letter-spacing: 3px; margin-left: 7px;
}
.topbar-note { font-size: 10px; color: var(--muted); text-align: right; text-transform: uppercase; letter-spacing: 1px; line-height: 1.4; }
.topbar-note b {
  font-family: var(--display); font-size: 13px; font-weight: 700;
  color: var(--accent); font-variant-numeric: tabular-nums; letter-spacing: 1px;
}

/* ---- hero ---- */
.hero { padding: 26px 18px 30px; background: var(--ink); }
.hero h1 { font-size: 26px; margin-bottom: 10px; }
.hero-sub { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.offer2 { border-top: 1px solid var(--line); }
.offer2-title { font-size: 24px; margin-bottom: 18px; }

/* ---- slider ---- */
.slider { position: relative; overflow: hidden; border-radius: 18px; background: var(--panel); }
.slides { position: relative; aspect-ratio: 3 / 4; }
.slides img { width: 100%; height: 100%; object-fit: cover; display: none; vertical-align: top; }
.slides img.active { display: block; }

.badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: var(--accent); color: #16171b;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  padding: 8px 14px; border-radius: 999px;
  transform: rotate(-6deg);
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.badge.sm { font-size: 12px; padding: 6px 11px; top: 12px; left: 12px; }

.nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  background: rgba(19,20,24,.55); color: var(--paper);
  font-size: 15px; cursor: pointer; backdrop-filter: blur(3px);
}
.nav.prev { left: 10px; }
.nav.next { right: 10px; }
.dots { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; z-index: 3; }
.dots span {
  display: inline-block; width: 20px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.35); margin: 0 3px; cursor: pointer;
  transition: background .2s;
}
.dots span.on { background: var(--accent); }

/* ---- price ---- */
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin: 18px 2px 0;
}
.price-block s { display: block; color: var(--muted); font-size: 15px; }
.price-block b {
  font-family: var(--display); font-size: 34px; color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.price-block b span { font-size: 16px; color: var(--accent); }
.price-hint {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent); text-align: right; line-height: 1.5;
  border-right: 3px solid var(--accent); padding-right: 10px;
}

/* ---- form ---- */
.form-wrap {
  margin-top: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 16px;
}
.form-title {
  font-family: var(--display); font-weight: 500; font-size: 14px;
  margin-bottom: 14px;
}
.order-form label {
  display: block;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 12px;
}
.order-form select, .order-form input {
  width: 100%; margin-top: 5px;
  padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 10px;
  font-size: 15px; font-family: var(--body);
  background: var(--panel-2); color: var(--paper);
}
.order-form select:focus, .order-form input:focus { outline: 2px solid var(--accent); border-color: transparent; }
.order-form input::placeholder { color: #6b707c; }

.btn-order {
  display: block; width: 100%;
  background: var(--accent); color: #16171b;
  border: 0; clip-path: var(--cut);
  font-family: var(--display); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 17px 10px; margin-top: 6px;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: background .15s, transform .1s;
}
.btn-order:hover { background: var(--accent-press); }
.btn-order:active { transform: scale(.985); }
.stock { margin-top: 12px; font-size: 13px; color: var(--muted); text-align: center; }
.stock b { color: var(--accent); display: inline-block; font-variant-numeric: tabular-nums; }
@keyframes stock-tick {
  0% { transform: scale(1); }
  40% { transform: scale(1.45); color: #ffd9c4; }
  100% { transform: scale(1); }
}
.stock b.tick { animation: stock-tick .55s ease; }
@media (prefers-reduced-motion: reduce) {
  .stock b.tick { animation: none; }
}

.form-ok {
  background: rgba(53,193,104,.12); border: 1px solid var(--ok); color: #7fe3a8;
  border-radius: 12px; padding: 16px; font-weight: 600; text-align: center;
}

/* ---- description ---- */
.description {
  background: var(--panel);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 28px 18px;
}
.description h2 { font-size: 20px; margin-bottom: 12px; }
.description p { font-size: 14px; color: #c9ccd4; margin-bottom: 14px; }
.specs { display: flex; flex-direction: column; gap: 0; margin-bottom: 14px; }
.specs div {
  display: flex; gap: 12px; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.specs dt {
  flex: none; width: 84px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted);
}
.specs dd { font-size: 13.5px; color: var(--paper); }
.description .note { font-size: 13px; color: var(--accent); margin: 0; }

/* ---- size chart ---- */
.sizes { padding: 28px 18px; background: var(--ink); }
.sizes h2 { font-size: 20px; margin-bottom: 16px; }
.size-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; margin-bottom: 16px;
}
.size-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 14px 16px 10px;
}
.size-head b { font-family: var(--display); font-weight: 700; font-size: 15px; }
.size-head span {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted);
}
.size-card table { width: 100%; border-collapse: collapse; }
.size-card th {
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px;
  color: var(--accent); text-align: center;
  padding: 8px 6px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--panel-2);
}
.size-card td {
  text-align: center; padding: 9px 6px;
  font-size: 14px; color: #c9ccd4;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px solid var(--line);
}
.size-card td:first-child {
  font-family: var(--display); font-weight: 700; font-size: 12px; color: var(--paper);
}
.size-card tr:last-child td { border-bottom: 0; }
.size-legend { padding: 10px 16px 14px; font-size: 11.5px; color: var(--muted); }
.size-note { font-size: 12.5px; color: var(--muted); }
.size-note, .size-legend { line-height: 1.5; }

/* ---- catalog ---- */
.catalog { padding: 28px 18px 10px; background: var(--ink); }
.catalog h2 { font-size: 20px; margin-bottom: 18px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
  margin-bottom: 20px;
}
.card .slider { border-radius: 0; background: var(--panel-2); }
.card-body { padding: 16px; }
.card h3 {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 800; font-size: 15px;
  margin-bottom: 6px;
}
.swatch {
  width: 14px; height: 14px; border-radius: 50%; flex: none;
  background: var(--c); border: 1px solid rgba(255,255,255,.3);
}
.card-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.card-price s { color: var(--muted); font-size: 14px; }
.card-price b { font-family: var(--display); font-size: 21px; color: var(--accent); }
.btn-card { padding: 15px 10px; }

/* ---- reviews ---- */
.reviews { padding: 28px 18px; background: var(--ink); border-top: 1px solid var(--line); }
.reviews h2 { font-size: 20px; margin-bottom: 16px; }
.shots-slider { background: #fff; border-radius: 16px; }
.shots-slider .slides { aspect-ratio: 10 / 11; }
.shots-slider .slides img { object-fit: contain; background: #fff; }
.shots-slider .dots span { background: rgba(0,0,0,.18); }
.shots-slider .dots span.on { background: var(--accent); }
.review-list { display: flex; flex-direction: column; gap: 12px; }
.review {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px;
  position: relative;
}
.review::before {
  content: "\201C";
  position: absolute; top: 2px; right: 14px;
  font-family: Georgia, serif; font-size: 44px; line-height: 1;
  color: var(--accent); opacity: .5;
}
.review p { font-size: 13.5px; color: #c9ccd4; margin-bottom: 10px; padding-right: 26px; }
.review-foot { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.review-foot b { color: var(--paper); }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 12px; }

/* ---- how ---- */
.how { padding: 28px 18px; background: var(--panel); border-top: 1px solid var(--line); }
.how h2 { font-size: 20px; margin-bottom: 18px; }
.steps { list-style: none; counter-reset: step; display: flex; flex-direction: column; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 20px 52px;
}
.steps li::before {
  content: "0" counter(step);
  position: absolute; left: 0; top: 0;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  color: var(--accent);
}
.steps li::after {
  content: ""; position: absolute; left: 13px; top: 26px; bottom: 4px;
  width: 1px; background: var(--line);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps b { display: block; font-size: 15px; margin-bottom: 2px; }
.steps p { font-size: 13px; color: var(--muted); }

/* ---- footer ---- */
.footer {
  background: #0c0d10; color: var(--muted);
  text-align: center; padding: 28px 18px;
  border-top: 1px solid var(--line);
}
.footer .logo { display: block; margin-bottom: 10px; }
.footer a { color: var(--paper); }
.footer-mail { margin-bottom: 14px; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.footer-links a { font-size: 13px; text-decoration: none; border-bottom: 1px solid var(--line); display: inline-block; margin: 0 auto; }
.footer-links a:hover { color: var(--accent); }
.copy { font-size: 12px; opacity: .6; }

/* ---- policy pages ---- */
.policy-page { background: var(--ink); min-height: 100vh; font-family: var(--body); }
.policy-page .page-head {
  background: var(--panel); border-bottom: 1px solid var(--line);
  padding: 16px; text-align: center;
}
.policy-page .page-head a { color: var(--paper); font-size: 13px; }
.policy-body { padding: 24px 20px 40px; max-width: 480px; margin: 0 auto; color: #c9ccd4; }
.policy-body h1 { font-family: var(--display); font-size: 19px; color: var(--paper); margin-bottom: 16px; }
.policy-body h2 { font-family: var(--display); font-weight: 500; font-size: 15px; color: var(--paper); margin: 20px 0 8px; }
.policy-body p, .policy-body li { font-size: 14px; margin-bottom: 10px; }
.policy-body ul { padding-left: 20px; }
.policy-body a { color: var(--accent); }
.policy-body b { color: var(--paper); }

@media (max-width: 380px) {
  .hero h1 { font-size: 22px; }
  .offer2-title { font-size: 20px; }
  .price-block b { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn-order { transition: none; }
}
