/* Spoko HM-1288 — mobile-first landing page */
:root {
  --bg: #f4f6fa;
  --card: #ffffff;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --red: #ef1f24;
  --red-dark: #be1117;
  --blue: #1769e0;
  --green: #8ad300;
  --shadow: 0 16px 42px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #dfe4ec; }
body {
  margin: 0;
  color: var(--ink);
  background: #dfe4ec;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.site {
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 0 40px rgba(15,23,42,.18);
}

.m-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 12px 18px;
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(229,231,235,.9);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 19px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: white;
  font-weight: 900;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), #ff7b34);
  box-shadow: 0 8px 22px rgba(239,31,36,.28);
}
.mini-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red), #ff5442);
  box-shadow: 0 10px 26px rgba(239,31,36,.28);
  cursor: pointer;
}
.mini-cta { min-height: 42px; padding: 0 16px; font-size: 14px; }
.btn.full { width: 100%; }

.hero { background: #fff; }
.hero-visual {
  position: relative;
  min-height: 500px;
  padding: 22px 16px 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 7%, rgba(239,31,36,.15), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f6f7fa 72%, #eef1f6 100%);
}
.hero-visual::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: 40px;
  width: 280px;
  height: 280px;
  border: 60px solid rgba(239,31,36,.045);
  border-radius: 50%;
}
.hero-copy { position: relative; z-index: 2; padding: 2px 6px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: 1px solid #ffd4d6;
  border-radius: 999px;
  background: #fff5f5;
}
h1 {
  max-width: 410px;
  margin: 13px 0 7px;
  font-size: clamp(34px, 9vw, 48px);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero-copy p { margin: 0; color: #475569; font-size: 16px; line-height: 1.45; }
.hero-product {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 12px;
  width: 96%;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 22px rgba(15,23,42,.19));
}
.hero-price {
  position: absolute;
  z-index: 4;
  right: 18px;
  top: 180px;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  padding: 10px;
  color: #fff;
  text-align: center;
  border: 5px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff6c3d);
  box-shadow: 0 16px 30px rgba(239,31,36,.3);
}
.hero-price small { display: block; opacity: .88; font-size: 11px; }
.hero-price strong { display: block; font-size: 22px; line-height: 1; }
.hero-body { padding: 20px 18px 26px; }
.quick-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.quick-spec {
  min-width: 0;
  padding: 12px 7px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15,23,42,.06);
}
.quick-spec b { display: block; font-size: 16px; }
.quick-spec span { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }
.hero-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 14px; }
.hero-actions .ghost {
  display: grid;
  place-items: center;
  min-width: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  font-size: 22px;
}

.section { padding: 30px 16px; }
.section.white { background: #fff; }
.section.dark {
  color: #fff;
  background: linear-gradient(160deg, #101726, #202b43);
}
.section-head { margin-bottom: 17px; }
.section-head .label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-head h2 {
  margin: 6px 0 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-head p { margin: 9px 0 0; color: var(--muted); line-height: 1.5; }
.dark .section-head p { color: #cbd5e1; }

.static-benefits { display: grid; gap: 10px; }
.static-benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.static-benefit i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  font-style: normal;
  font-size: 25px;
  border-radius: 16px;
  background: #fff1f1;
}
.static-benefit b { display: block; font-size: 16px; }
.static-benefit span { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; line-height: 1.35; }

.video-shell {
  overflow: hidden;
  border-radius: 24px;
  background: #0d1320;
  box-shadow: var(--shadow);
}
.video-shell video { display: block; width: 100%; aspect-ratio: 9 / 12; object-fit: cover; background: #0d1320; }
.video-note { padding: 12px 14px; color: #cbd5e1; font-size: 12px; line-height: 1.45; }

.product-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}
.product-media {
  position: relative;
  min-height: 390px;
  background: #fff;
}
.product-slider {
  height: 390px;
  overflow: hidden;
  touch-action: pan-y;
  background: #fff;
}
.product-track {
  display: flex;
  height: 100%;
  transition: transform .38s cubic-bezier(.2,.8,.2,1);
}
.product-slide {
  min-width: 100%;
  display: grid;
  place-items: center;
  padding: 18px 16px 12px;
  background: #fff;
}
.product-slide img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 332px;
  object-fit: contain;
  object-position: center center;
  background: #fff;
  filter: none;
}
.slider-arrow {
  position: absolute;
  z-index: 7;
  top: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 20px rgba(15,23,42,.13);
  transform: translateY(-50%);
  cursor: pointer;
}
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }
.slider-arrow:disabled { opacity: .35; }
.slide-dots {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 12px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}
.slide-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: #cbd5e1; }
.slide-dot.active { width: 23px; background: var(--red); }
.product-body { padding: 18px; }
.product-title-row { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.product-title-row h3 { margin: 0; font-size: 25px; }
.stock-badge { padding: 7px 9px; color: #1f7a38; font-size: 11px; font-weight: 900; border-radius: 999px; background: #eaf8ee; }
.product-body > p { margin: 7px 0 14px; color: var(--muted); line-height: 1.45; }
.color-tabs { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.color-tab {
  min-height: 48px;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.color-tab.active { border-color: currentColor; box-shadow: inset 0 0 0 1px currentColor; }
.color-tab[data-color="red"] { color: var(--red); }
.color-tab[data-color="blue"] { color: var(--blue); }
.color-tab[data-color="green"] { color: #69a900; }
.price-row { display: flex; align-items: end; gap: 10px; margin: 18px 0 12px; }
.price-row b { color: var(--red-dark); font-size: 31px; line-height: 1; }
.price-row s { color: #94a3b8; font-weight: 700; }
.product-note { margin-top: 9px; color: var(--muted); font-size: 12px; line-height: 1.4; }

/* Generic manual image slider */
.manual-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  touch-action: pan-y;
}
.manual-track { display: flex; transition: transform .38s cubic-bezier(.2,.8,.2,1); }
.manual-slide { min-width: 100%; }
.manual-slide img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.manual-slider.review .manual-slide img { aspect-ratio: 3/4; }
.manual-slider .slide-dots { bottom: 13px; }
.manual-slider .slider-arrow { top: 50%; }
.slider-caption {
  padding: 13px 15px 17px;
  border-top: 1px solid var(--line);
}
.slider-caption b { display: block; font-size: 17px; }
.slider-caption span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.spec {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(255,255,255,.07);
}
.spec small { display: block; color: #a8b4c8; }
.spec b { display: block; margin-top: 5px; font-size: 16px; }
.safety {
  margin-top: 14px;
  padding: 14px;
  color: #ffe7a8;
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid rgba(250,204,21,.25);
  border-radius: 16px;
  background: rgba(250,204,21,.09);
}

.review-card { padding: 14px 16px 17px; background: #fff; }
.review-meta { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.review-meta b { font-size: 17px; }
.stars { color: #f59e0b; letter-spacing: 2px; }
.verified { margin-top: 4px; color: #1f8b4c; font-size: 11px; font-weight: 800; }
.review-card p { margin: 10px 0 0; color: #475569; line-height: 1.5; }

.faq { display: grid; gap: 9px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  color: var(--ink);
  font-weight: 850;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.faq-q span:last-child { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #f1f5f9; transition: transform .25s; }
.faq-item.open .faq-q span:last-child { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 16px 16px; color: var(--muted); line-height: 1.5; }
.faq-item.open .faq-a { display: block; }

.order-card {
  overflow: hidden;
  border-radius: 27px;
  background: #fff;
  box-shadow: var(--shadow);
}
.order-summary { padding: 18px; color: #fff; background: linear-gradient(135deg, #131b2b, #263653); }
.order-summary h2 { margin: 0; font-size: 27px; }
.order-summary p { margin: 7px 0 0; color: #cbd5e1; }
.summary-line { display: flex; justify-content: space-between; gap: 12px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.15); }
.summary-line strong { font-size: 24px; }
.order-form { display: grid; gap: 12px; padding: 18px; }
.field label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 850; }
.field input, .field select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid #dbe1ea;
  border-radius: 15px;
  background: #f8fafc;
  outline: none;
}
.field input:focus, .field select:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(239,31,36,.1); }
.consent { color: var(--muted); font-size: 11px; line-height: 1.45; }

.footer { padding: 24px 16px 34px; color: #94a3b8; text-align: center; background: #101726; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 16px; margin-top: 12px; }
.footer a { color: #dce4f0; font-size: 12px; }

@media (max-width: 370px) {
  .hero-visual { min-height: 465px; }
  .hero-price { top: 190px; width: 92px; height: 92px; }
  .product-media, .product-slider { min-height: 340px; height: 340px; }
  .quick-spec b { font-size: 14px; }
}

/* ===== Final conversion-focused refinements ===== */
.hero-visual {
  min-height: 0;
  padding: 0;
  background: #fff;
}
.hero-visual::before { display: none; }
.hero-poster {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #fff;
}
.hero-body {
  padding: 14px 18px 26px;
  background: #fff;
}
.hero-actions { margin-top: 13px; }

.offer-price {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  overflow: hidden;
  border: 4px solid #172033;
  border-radius: 18px;
  background: #172033;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .16);
}
.offer-price > div {
  position: relative;
  min-width: 0;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 11px 8px;
  text-align: center;
}
.offer-old {
  color: #1f2937;
  background: #eef1f5;
  clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
}
.offer-today {
  margin-left: -12px;
  padding-left: 20px !important;
  color: #fff;
  background: linear-gradient(135deg, #ef1f24 0%, #ff5b3f 55%, #ff7a3d 100%);
}
.offer-price span {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 900;
}
.offer-old s {
  color: #334155;
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--red);
}
.offer-today strong {
  font-size: 29px;
  line-height: 1;
  white-space: nowrap;
}
.product-offer-price { margin: 18px 0 13px; }
.hero-offer-price { margin: 0; }

.slider-arrow {
  width: 58px;
  height: 58px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  border: 2px solid rgba(239, 31, 36, .18);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .20), 0 0 0 5px rgba(255,255,255,.35);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }
.slider-arrow:not(:disabled):hover {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 32px rgba(239, 31, 36, .30), 0 0 0 5px rgba(239,31,36,.12);
  transform: translateY(-50%) scale(1.07);
}
.slider-arrow:not(:disabled):active { transform: translateY(-50%) scale(.94); }
.slider-arrow:disabled { opacity: .28; }

.premium-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(110deg, #e9161d 0%, #ff4d3d 38%, #ff7a3d 62%, #e9161d 100%);
  background-size: 220% 100%;
  animation: premiumGradient 5s ease-in-out infinite, premiumPulse 2.8s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .25s ease, filter .25s ease;
}
.premium-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -80%;
  left: -45%;
  width: 34%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  transform: rotate(18deg);
  animation: premiumShine 3.4s ease-in-out infinite;
}
.premium-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 16px 34px rgba(239,31,36,.38), 0 0 0 5px rgba(239,31,36,.09);
}
.premium-btn:active {
  transform: translateY(1px) scale(.98);
  box-shadow: 0 7px 18px rgba(239,31,36,.26);
}
@keyframes premiumGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes premiumShine {
  0%, 58% { left: -45%; opacity: 0; }
  66% { opacity: 1; }
  88%, 100% { left: 125%; opacity: 0; }
}
@keyframes premiumPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(239,31,36,.28); }
  50% { box-shadow: 0 14px 34px rgba(239,31,36,.38), 0 0 0 5px rgba(239,31,36,.06); }
}
.ghost {
  transition: transform .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.ghost:hover {
  color: var(--red);
  border-color: rgba(239,31,36,.35);
  box-shadow: 0 10px 24px rgba(239,31,36,.12);
  transform: translateY(-2px);
}
.ghost:active { transform: scale(.95); }

@media (max-width: 370px) {
  .slider-arrow { width: 52px; height: 52px; font-size: 34px; }
  .offer-price span { font-size: 11px; }
  .offer-old s { font-size: 21px; }
  .offer-today strong { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .premium-btn, .premium-btn::after { animation: none; }
  .premium-btn, .slider-arrow, .ghost { transition: none; }
}


/* Small tactile feedback for secondary controls */
.premium-btn::after { z-index: 0; pointer-events: none; opacity: .62; }
.color-tab, .faq-q {
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.color-tab:hover { transform: translateY(-2px); box-shadow: 0 9px 20px rgba(15,23,42,.09); }
.color-tab:active, .faq-q:active { transform: scale(.98); }

/* ===== Slider controls below creatives =====
   Keeps every product/benefit/review image fully visible. */
.manual-slider,
.product-slider {
  position: relative;
  box-sizing: border-box;
}

.manual-slider {
  padding-bottom: 78px;
}

.product-media,
.product-slider {
  min-height: 462px;
  height: 462px;
  background: #fff;
}

.product-slider {
  padding-bottom: 78px;
  background: #fff;
  box-shadow: inset 0 -78px 0 #fff;
}

.product-slider .product-track {
  position: relative;
  z-index: 1;
}

.product-slider .slide-dots {
  z-index: 8;
}

.product-slider .slider-arrow {
  position: absolute;
  z-index: 9;
}

.product-track {
  height: 100%;
}

.manual-slider .slider-arrow,
.product-slider .slider-arrow {
  top: auto;
  bottom: 10px;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
  line-height: 1;
}

.manual-slider .slider-arrow.prev,
.product-slider .slider-arrow.prev {
  left: 14px;
}

.manual-slider .slider-arrow.next,
.product-slider .slider-arrow.next {
  right: 14px;
}

.slider-arrow span {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(-2px);
}

.manual-slider .slide-dots,
.product-slider .slide-dots {
  bottom: 34px;
}

.slider-arrow:not(:disabled):hover {
  transform: scale(1.07);
}

.slider-arrow:not(:disabled):active {
  transform: scale(.94);
}

@media (max-width: 370px) {
  .manual-slider {
    padding-bottom: 72px;
  }

  .product-media,
  .product-slider {
    min-height: 418px;
    height: 418px;
  }

  .product-slider {
    padding-bottom: 72px;
  }

  .manual-slider .slider-arrow,
  .product-slider .slider-arrow {
    bottom: 9px;
  }

  .manual-slider .slide-dots,
  .product-slider .slide-dots {
    bottom: 31px;
  }
}
