:root {
  --bg: #fff;
  --bg-soft: #f7f9fb;
  --bg-warm: #f7f9fb;
  --text: #14181f;
  --text-muted: #5b6472;
  --text-light: #a3aab5;
  --accent: #e2231a;
  --accent-dark: #b91912;
  --highlight: #1e9be0;
  --blue-bg: #eaf7fe;
  --border: #e7eaee;
  --border-soft: #e7eaee;
  --dark: #14181f;
  --success: #1f9d55;
  --star: #f5a623;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 28px rgba(20, 24, 31, 0.07);
  --font: 'Poppins', 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
  --max: 1120px;
  --gutter: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; overflow-wrap: break-word; }

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.promo-bar {
  background: var(--dark);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 12px;
}

.bestseller-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto 16px;
  background: var(--blue-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  box-sizing: border-box;
}

.bestseller-badge__pill {
  background: var(--accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.bestseller-badge__side {
  text-align: right;
  line-height: 1.15;
}

.bestseller-badge__stars {
  font-size: 14px;
  font-weight: 800;
  color: var(--star);
  letter-spacing: 1px;
}

.bestseller-badge__label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px 0 8px;
}

.feature-item {
  text-align: center;
  padding: 16px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature-item .ico { font-size: 26px; margin-bottom: 8px; }
.feature-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.feature-item p { font-size: 12.5px; color: var(--text-muted); font-weight: 600; line-height: 1.4; }

.stock-strip {
  background: linear-gradient(180deg, #fff, #fff8f7);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(226, 35, 26, 0.1);
}

.stock-strip__labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.stock-strip__labels .right {
  color: var(--accent);
  font-weight: 800;
  text-align: right;
}

.stock-bar {
  height: 10px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.stock-bar__fill {
  width: 68%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
}

.mid-cta {
  padding: 8px 0 32px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.bottom-repeat {
  padding: 32px 0;
  background: var(--bg-soft);
}

.bottom-repeat__layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
  margin: 0 auto;
}

.bottom-repeat__media {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.bottom-repeat__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.bottom-repeat__stack { width: 100%; }
.bottom-repeat__stack .stock-strip { margin-bottom: 12px; }
.bottom-repeat__stack .benefit-list { margin-bottom: 14px; }

.hero { padding: 20px 0 8px; }
.hero__stack { display: flex; flex-direction: column; gap: 18px; }
.hero__intro { order: 1; text-align: center; }
.hero__intro h1 { font-size: 20px; font-weight: 800; line-height: 1.28; margin-bottom: 8px; }
.hero__intro .subhead { font-size: 14.5px; font-weight: 500; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
.hero__intro .subhead strong { color: var(--highlight); font-weight: 700; }
.hero__intro .subhead b { color: var(--text); font-weight: 700; }

.hero__media { order: 2; max-width: 520px; margin: 0 auto; width: 100%; }
.hero__benefits-block { order: 3; width: 100%; max-width: 520px; margin: 0 auto; }
.hero__benefits-block .benefit-list { margin-bottom: 0; }
.hero__benefits-block .stock-strip { margin-bottom: 12px; }
.hero__purchase { order: 4; width: 100%; max-width: 520px; margin: 0 auto; }

.hero__main-img {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero__main-img img { width: 100%; aspect-ratio: 1; object-fit: contain; }

.hero__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.hero__thumbs--carousel {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero__thumbs--carousel::-webkit-scrollbar { display: none; }

.hero__thumbs--carousel .hero__thumb {
  flex: 0 0 calc((100% - 16px) / 3);
  max-width: calc((100% - 16px) / 3);
  scroll-snap-align: start;
}

.hero__thumb {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
  padding: 0;
  appearance: none;
}

.hero__thumb.is-active {
  border-color: var(--highlight);
  box-shadow: 0 0 0 2px rgba(30, 155, 224, 0.18);
}

.hero__thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.benefit-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
  margin-bottom: 16px;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.order-intro, .order-card {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-list__item {
  display: flex;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  align-items: flex-start;
}

.benefit-list__item + .benefit-list__item { margin-top: 8px; }

.benefit-list__check {
  min-width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-list__check svg { display: block; }
.benefit-list__title { font-size: 13.5px; font-weight: 700; color: var(--text); }
.benefit-list__desc { font-size: 12px; font-weight: 600; color: var(--text-muted); margin-top: 2px; line-height: 1.45; }

.price-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 14px;
  text-align: center;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}

.price-card__offer { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.2px; margin-bottom: 8px; }
.price-card__badge { display: inline-block; background: var(--accent); color: #fff; border-radius: 999px; padding: 4px 12px; font-size: 13px; font-weight: 800; margin-bottom: 10px; }
.price-card__now { font-size: 38px; font-weight: 800; line-height: 1; color: var(--accent); }
.price-card__was { font-size: 16px; font-weight: 600; color: var(--text-light); text-decoration: line-through; margin: 6px 0 14px; }
.price-card__note { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 10px; }

.trust-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.trust-pill { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 6px; background: var(--bg-soft); text-align: center; }
.trust-pill__ico { font-size: 18px; margin-bottom: 4px; }
.trust-pill__title { font-size: 11px; font-weight: 700; color: var(--text); }
.trust-pill__sub { font-size: 10px; font-weight: 600; color: var(--text-muted); margin-top: 2px; }

.cta-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  padding: 17px;
  border-radius: var(--radius-sm);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin-top: 14px;
}

.cta-btn:active { background: var(--accent-dark); }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 10px; font-weight: 600; }

.order-section { padding: 32px 0; background: var(--bg-soft); }

.order-intro {
  max-width: 520px;
  margin: 0 auto 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow);
}

.order-intro h2 { font-size: 21px; font-weight: 800; line-height: 1.3; margin-bottom: 8px; }
.order-intro p { font-size: 14px; font-weight: 600; color: var(--text-muted); line-height: 1.55; }
.order-intro p strong { color: var(--text); }

.ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--highlight);
  background: var(--blue-bg);
  border: 1px solid var(--border);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
}

.order-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.order-card label, .cod-form__field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 5px;
}

.order-card input, .cod-form__input {
  width: 100%;
  padding: 15px 14px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  background: #fff;
}

.order-card input:focus, .cod-form__input:focus {
  outline: none;
  border-color: var(--highlight);
}

.order-card button, .cod-form button[type="submit"] {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  padding: 17px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 4px;
}

.order-card br { display: none; }
.cod-form__field { margin-bottom: 0; }

.features-section { padding: 32px 0; }

.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 22px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  margin-bottom: 22px;
}

.feature-card img { width: 100%; display: block; }

.feature-card__body { padding: 18px; background: var(--bg-soft); }
.feature-card__body h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.feature-card__body p { font-size: 14.5px; line-height: 1.75; font-weight: 600; color: var(--text-muted); }
.feature-card__body strong { color: var(--text); }
.feature-card__body .accent { color: var(--highlight); }

.reviews-section { padding: 34px 0; background: var(--bg-soft); }
.reviews-section .eyebrow { text-align: center; font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; margin-bottom: 6px; letter-spacing: 0.3px; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }

.review-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.review-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; object-position: center; background: #fff; }
.review-card__body { padding: 18px; background: #fff; }
.review-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.review-card__name { font-size: 14px; font-weight: 800; }
.review-card__stars { font-size: 13px; font-weight: 800; color: var(--star); }
.review-card__text { margin-top: 8px; font-size: 14.5px; line-height: 1.65; font-weight: 600; color: var(--text-muted); }
.review-card__text strong { color: var(--text); }

.review-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--highlight);
  background: var(--blue-bg);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
}

.faq-section { padding: 34px 0 40px; }

.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-soft);
  font-family: var(--font);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .faq-ico {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent);
  font-size: 16px;
  font-weight: 800;
  flex: 0 0 auto;
  color: #fff;
}

.faq-item[open] summary .faq-ico::before { content: '−'; }
.faq-item summary .faq-ico::before { content: '+'; }

.faq-item .faq-a {
  padding: 0 16px 16px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--bg-soft);
}

.faq-item .faq-a strong { color: var(--text); }

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 2.5rem 0 1.5rem;
  font-size: 0.875rem;
}

.site-footer .container { width: min(100% - 2rem, 1100px); margin-inline: auto; }
.site-footer .site-logo { display: inline-flex; align-items: center; text-decoration: none; font-family: var(--font); }
.site-footer .site-logo:hover { opacity: 0.85; }
.site-footer .site-logo__text { font-weight: 900; font-size: 1.5rem; letter-spacing: -0.04em; text-transform: lowercase; line-height: 1; }
.site-footer .site-logo__text-primary { color: #fff; }
.site-footer .site-logo__text-accent {
  background: linear-gradient(135deg, #fdba74 0%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.site-footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; margin-bottom: 2rem; }
.site-footer__heading { font-weight: 700; color: #fff; margin-bottom: 0.75rem; font-size: 1rem; }
.site-footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__list a { color: #cbd5e1; text-decoration: none; }
.site-footer__list a:hover { color: #fff; }
.site-footer__blurb { margin-top: 1rem; max-width: 340px; color: #94a3b8; line-height: 1.5; }
.site-footer__bottom { border-top: 1px solid #334155; padding-top: 1rem; text-align: center; font-size: 0.75rem; color: #94a3b8; }
.site-footer__bottom strong { color: #cbd5e1; }
.site-footer__bottom a { color: #cbd5e1; text-decoration: none; font-weight: 700; }
.site-footer__bottom a:hover { color: #fff; text-decoration: underline; }

@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 899px) {
  .hero.wrap { padding-left: 22px; padding-right: 22px; }
  .hero__intro h1 { font-size: 21px; line-height: 1.26; padding-left: 6px; padding-right: 6px; }
  .hero__intro .subhead { font-size: 16px; line-height: 1.55; padding-left: 4px; padding-right: 4px; }
  .hero__purchase .cta-btn, .mid-cta .cta-btn, .bottom-repeat .cta-btn {
    width: calc(100% - 32px);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .benefit-list__title { font-size: 14.5px; }
  .benefit-list__desc { font-size: 15px; line-height: 1.5; }
  .feature-card__body p { font-size: 16px; line-height: 1.7; }
  .review-card__text { font-size: 16px; line-height: 1.65; }
}

@media (min-width: 900px) {
  :root { --gutter: 20px; }
  .hero { padding: 36px 0 20px; }
  .hero__stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "media intro"
      "media benefits"
      "media purchase";
    gap: 16px 40px;
    align-items: start;
  }
  .hero__intro { order: unset; grid-area: intro; text-align: left; }
  .hero__intro h1 { font-size: 26px; text-align: left; }
  .hero__intro .subhead { font-size: 16px; text-align: left; }
  .bestseller-badge { margin: 0; max-width: none; }
  .hero__media { order: unset; grid-area: media; max-width: none; margin: 0; }
  .hero__benefits-block { order: unset; grid-area: benefits; max-width: none; margin: 0; }
  .hero__purchase { order: unset; grid-area: purchase; max-width: none; margin: 0; }
  .section-title { font-size: 28px; margin-bottom: 36px; }
  .feature-card { flex-direction: row; align-items: center; }
  .feature-card:nth-child(even) { flex-direction: row-reverse; }
  .feature-card img, .feature-card__body { width: 50%; }
  .feature-card__body { padding: 32px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .order-intro h2 { font-size: 22px; }
  .feature-row { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .bottom-repeat__layout {
    max-width: var(--max);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
  }
  .bottom-repeat__media { position: sticky; top: 16px; }
}

@media (min-width: 960px) {
  .hero__intro h1 { font-size: 30px; }
}
