:root {
  --blue: #0067c7;
  --blue-dark: #0056b3;
  --blue-ink: #082a4d;
  --yellow: #ffd600;
  --red: #e5271c;
  --green: #006344;
  --ink: #10243a;
  --wrap: 1152px;
  --gutter: 32px;
  --section-gap: 20px;
}

*, *::before, *::after { box-sizing: border-box; }

html { background: #e8edf2; }

body {
  margin: 0 auto;
  max-width: var(--wrap);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  line-height: 1.4;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}

.wrap {
  width: min(var(--wrap), 100%);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ── Header ── */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e4ebf0;
}

.header-inner {
  width: min(var(--wrap), 100%);
  margin: 0 auto;
}

.header-brand {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.brand-name {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #0966c3;
  line-height: 1;
}

.header-brand i,
.footer-brand i {
  width: 22px;
  height: 7px;
  background: var(--yellow);
  border-radius: 6px;
  display: block;
}

.top-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dce5ed;
  height: 54px;
}

.top-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--blue-ink);
  font-size: 13px;
  font-weight: 700;
  border-right: 1px solid #e7eef3;
}

.top-nav a:first-child { border-left: 1px solid #e7eef3; }
.top-nav a:hover { background: #f7fbff; color: var(--blue); }
.top-nav a:hover .icon-ring {
  background: #e3f0ff;
  border-color: #b8d9f5;
}

/* ── SVG Icons ── */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--blue);
  display: block;
  stroke-width: 1.75;
}

.icon-sm { width: 17px; height: 17px; }
.icon-xs { width: 14px; height: 14px; }
.icon-white { color: #fff; }
.icon-flame { color: #e85a2c; }

.icon-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f4f9ff 0%, #e8f2fb 100%);
  border: 1px solid #d4e5f4;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(8, 42, 77, 0.06);
}

.icon-ring .icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.icon-ring-light {
  background: #fff;
  border-color: #d8e8f3;
  box-shadow: none;
}

.icon-ring-xs {
  width: 26px;
  height: 26px;
}

.icon-ring-xs .icon {
  width: 14px;
  height: 14px;
}

.top-nav .icon-ring {
  width: 30px;
  height: 30px;
  background: #f0f7ff;
  border-color: #cfe3f5;
}

.top-nav .icon-ring .icon {
  width: 16px;
  height: 16px;
}

.benefits .icon-ring {
  width: 40px;
  height: 40px;
}

.benefits .icon-ring .icon {
  width: 20px;
  height: 20px;
}

.benefits .icon-ring .icon-flame {
  color: #e85a2c;
}

.guest-note .icon-ring {
  margin-right: 1px;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  vertical-align: middle;
}

.icon-star {
  width: 13px;
  height: 13px;
  color: #f5b301;
  display: block;
}

.btn-primary .icon {
  opacity: 0.95;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.15s, color 0.15s;
}

.modal-close .icon {
  width: 20px;
  height: 20px;
  color: #5a6b7a;
}

.modal-close:hover {
  background: #f0f4f8;
}

.modal-close:hover .icon {
  color: #10243a;
}

.signals .icon {
  opacity: 0.9;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #edf2f6;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') no-repeat right center / cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 42%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.45) 58%,
    transparent 68%
  );
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(255, 255, 255, 0.25) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-copy {
  max-width: 540px;
  padding: 48px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: #101b26;
  font-size: 13px;
  font-weight: 900;
  padding: 7px 11px;
  border-radius: 4px;
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.8px;
  color: var(--blue);
}

.hero h1 strong {
  display: block;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1.4px;
  line-height: 1.02;
  margin-top: 4px;
}

.hero h1 em { font-style: normal; }

.hero-text {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 20px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: nowrap;
}

.btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  transition: .15s;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  padding: 0 24px;
  min-height: 52px;
  box-shadow: 0 4px 12px rgba(0,103,199,.25);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--blue-dark); }

.delivery-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #cedde8;
  border-radius: 5px;
  background: #fff;
  padding: 10px 14px;
  min-height: 52px;
  box-shadow: 0 4px 10px rgba(10,42,77,.06);
}
.delivery-pill strong { display: block; font-size: 13px; color: #0c2b4b; }
.delivery-pill small { display: block; font-size: 12px; color: #0c2b4b; }

.guest-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  margin: 12px 0 0;
}

/* hero-right removed — full bleed background */

/* ── Operation ── */
.operation {
  padding: var(--section-gap) 0;
}

.operation-bar {
  display: grid;
  grid-template-columns: 280px 1fr 130px;
  align-items: center;
  gap: 20px;
  background: linear-gradient(100deg, #0174e4, #0061c6);
  color: #fff;
  border-radius: 6px;
  padding: 18px 28px;
}

.op-units {
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255,255,255,.3);
  padding-right: 18px;
}

.op-cart {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.op-cart .icon {
  width: 30px;
  height: 30px;
  color: #062a4a;
}

.op-units b {
  display: block;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}
.op-units small {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-top: 4px;
}

.op-progress p {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
}
.op-progress b {
  color: var(--yellow);
  font-size: 24px;
  font-weight: 900;
}

.progress-track {
  height: 18px;
  border-radius: 99px;
  background: rgba(255,255,255,.35);
  overflow: hidden;
}
.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ffd500, #ffdf00);
  border-radius: 99px;
}

.op-percent { text-align: right; }
.op-percent b {
  display: block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.op-percent small {
  font-size: 13px;
  font-weight: 700;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #d9e4ed;
  border-radius: 6px;
  margin-top: var(--section-gap);
  overflow: hidden;
}

.stats-row--dual {
  grid-template-columns: repeat(2, 1fr);
}

.stats-row article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 16px;
  min-height: 80px;
  border-right: 1px solid #e2ebf2;
  background: #fff;
}
.stats-row article:last-child { border-right: 0; }

.stat-ico {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f4f8fc;
  box-shadow: inset 0 0 0 1px rgba(0, 103, 199, 0.06);
}

.stat-ico .icon {
  width: 26px;
  height: 26px;
}

.stat-red { background: #fff5f5; }
.stat-red .icon { color: var(--red); }
.stat-blue { background: #f0f7ff; }
.stat-blue .icon { color: var(--blue); }
.stat-green { background: #f0faf6; }
.stat-green .icon { color: var(--green); }

.stats-row b {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}
.stats-row article:nth-child(1) b { color: var(--red); }
.stats-row article:nth-child(2) b { color: var(--blue); }
.stats-row--dual article:nth-child(2) b { color: var(--green); }
.stats-row article:nth-child(3) b { color: var(--green); }

.stats-row small {
  font-size: 13px;
  font-weight: 600;
  display: block;
  line-height: 1.15;
}

/* ── Products ── */
.catalogue {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  border: 1px solid #d8e3ec;
  border-radius: 6px;
  padding: 12px 14px 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(6,47,86,.05);
  display: flex;
  flex-direction: column;
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 30px;
}

.badge {
  background: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  padding: 5px 9px;
  border-radius: 3px;
  line-height: 1.2;
}

.wish {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2ebf2;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  color: #173650;
  transition: border-color 0.15s, background 0.15s;
}
.wish:hover {
  border-color: #f5c4c4;
  background: #fff8f8;
}
.wish .icon { width: 20px; height: 20px; }
.wish.liked .icon {
  color: var(--red);
}
.wish.liked .icon path {
  fill: var(--red);
  stroke: var(--red);
}

.product-image {
  height: 280px;
  margin: 6px 0 8px;
  padding-bottom: 14px;
  position: relative;
}

.product-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-gallery__viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
}

.product-gallery__track {
  display: flex;
  height: 100%;
  transition: transform 0.32s ease;
  will-change: transform;
}

.product-gallery__slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__slide img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(8, 42, 77, 0.1));
  user-select: none;
  -webkit-user-drag: none;
}

.product-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 30px;
  height: 30px;
  border: 1px solid #d8e6ef;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 8px rgba(8, 42, 77, 0.08);
  opacity: 0;
  transition: opacity 0.15s, background 0.15s;
}

.product-gallery:hover .product-gallery__btn,
.product-gallery:focus-within .product-gallery__btn {
  opacity: 1;
}

.product-gallery__btn:hover:not(:disabled) {
  background: #fff;
  border-color: #b8d4e8;
}

.product-gallery__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.product-gallery__btn .icon {
  width: 16px;
  height: 16px;
}

.product-gallery__btn--prev { left: 2px; }
.product-gallery__btn--next { right: 2px; }

.product-gallery__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.product-gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #c5d5e3;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}

.product-gallery__dot.is-active {
  background: var(--blue);
  transform: scale(1.25);
}

.product-gallery--modal .product-gallery__btn {
  width: 38px;
  height: 38px;
  opacity: 1;
}

.product-gallery--modal .product-gallery__btn .icon {
  width: 20px;
  height: 20px;
}

.product-gallery--modal .product-gallery__btn--prev { left: 8px; }
.product-gallery--modal .product-gallery__btn--next { right: 8px; }

.product-gallery--modal .product-gallery__dots {
  position: static;
  margin-top: 10px;
  padding-bottom: 4px;
}

.product-gallery--modal .product-gallery__dot {
  width: 8px;
  height: 8px;
}

.product-gallery--modal .product-gallery__slide img {
  height: min(360px, 48vh);
  filter: drop-shadow(0 6px 14px rgba(8, 42, 77, 0.1));
}

.product-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: start;
}

.product-text .ptype {
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 3px;
}

.product-text h3 {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.15;
}

.product-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  line-height: 1.45;
  min-height: 48px;
}
.product-text li::before { content: "• "; }

.prices {
  text-align: right;
  line-height: 1.1;
  padding-top: 2px;
}
.prices del {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #333;
}
.prices strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -.5px;
  margin-top: 3px;
}

.rating {
  font-size: 11px;
  margin: 8px 0 10px;
  color: #4d5d68;
}
.rating .stars {
  color: #ffc400;
  font-size: 15px;
  letter-spacing: -1px;
}

.signals {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5px;
  margin-bottom: 10px;
}

.signals p {
  margin: 0;
  background: #fff5d9;
  border-radius: 3px;
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 32px;
}
.signals .sig-hot { color: var(--red); }
.signals .sig-hot .icon { color: var(--red); }
.signals p:not(.sig-hot) .icon { color: #52606d; }
.signals p:last-child {
  grid-column: 1 / -1;
  color: #52606d;
}

.btn-buy {
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  min-height: 40px;
  margin-top: auto;
}
.btn-buy .icon { color: #fff; }
.btn-buy:hover { background: var(--blue-dark); }

.product-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.btn-details {
  width: 100%;
  min-height: 38px;
  background: #fff;
  color: var(--blue);
  border: 1px solid #c5d9ea;
  font-size: 13px;
  font-weight: 700;
}

.btn-details:hover {
  background: #f0f7ff;
  border-color: var(--blue);
}

/* ── Fairness ── */
.fairness {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  background: linear-gradient(90deg, #fffefa, #fff9df);
  border: 1px solid #ffc400;
  border-radius: 6px;
  padding: 16px 24px;
  margin-bottom: var(--section-gap);
}

.fair-shield {
  width: 56px;
  height: 56px;
  background: #06365d;
  clip-path: polygon(50% 0, 92% 16%, 86% 75%, 50% 100%, 14% 75%, 8% 16%);
  display: grid;
  place-items: center;
}
.fair-shield .icon {
  width: 28px;
  height: 28px;
  color: #fff;
}

.fair-text small {
  font-size: 11px;
  font-weight: 900;
  display: block;
}
.fair-text h2 {
  font-size: 26px;
  font-weight: 900;
  margin: 3px 0 4px;
  letter-spacing: -.6px;
  line-height: 1;
}
.fair-text p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.fair-equation {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #25445e;
}

.eq-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #b3bdc4;
  background: #fff;
  display: grid;
  place-items: center;
}
.eq-ico .icon {
  width: 22px;
  height: 22px;
  color: #25445e;
}
.eq-cart {
  border: 0;
  background: var(--yellow);
}
.eq-cart .icon { color: #062a4a; }

/* ── Benefits ── */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dce6ee;
  border-radius: 6px;
  padding: 16px 0;
  margin-bottom: var(--section-gap);
}
.benefits article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-right: 1px solid #e4edf3;
}
.benefits article:last-child { border-right: 0; }
.benefits b { display: block; font-size: 13px; font-weight: 800; }
.benefits small { display: block; font-size: 12px; color: #0c2b4b; font-weight: 600; }

/* ── Footer ── */
.site-footer {
  background: linear-gradient(110deg, #062b4c, #012746);
  color: #fff;
  padding: 28px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 14px 24px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.footer-brand .brand-name {
  color: #fff;
  font-size: 28px;
  letter-spacing: -1.2px;
}
.footer-brand p {
  width: 100%;
  margin: 4px 0 0;
  font-size: 10px;
  color: #aec1d2;
}

.footer-company {
  width: 100%;
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.55;
  color: #c8d6e3;
}

.footer-company p {
  margin: 0 0 4px;
  width: 100%;
}

.footer-company a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-company a:hover {
  color: var(--yellow);
}

.footer-copy {
  margin-top: 10px !important;
  font-size: 10px !important;
  color: #8fa8bc !important;
}

.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  grid-column: 2;
  grid-row: 1;
}
.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.95;
  transition: opacity 0.15s;
}
.footer-nav a:hover { opacity: 1; text-decoration: none; }

.icon-footer {
  width: 16px;
  height: 16px;
  color: var(--yellow);
  opacity: 0.95;
}

.footer-legal {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.footer-legal a {
  color: #c4d3df;
  text-decoration: none;
  font-size: 10px;
}
.footer-legal a:hover { text-decoration: underline; }

/* ── Modal ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,27,51,.6);
}
.modal-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  width: min(480px, 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.modal-product { margin: 12px 0; font-size: 14px; }
.modal-product span { color: var(--red); font-weight: 900; margin-left: 6px; }

#order-modal .modal-card {
  width: min(520px, 100%);
  max-height: min(92vh, 92dvh);
  overflow-y: auto;
}

.checkout-form {
  display: grid;
  gap: 16px;
  margin-top: 4px;
}

.form-section {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.form-section legend {
  font-size: 13px;
  font-weight: 900;
  color: var(--navy, #001b33);
  margin-bottom: 10px;
  padding: 0;
  width: 100%;
}

.checkout-form .field {
  display: block;
  margin-bottom: 10px;
}

.checkout-form .field:last-child {
  margin-bottom: 0;
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #334a5c;
  margin-bottom: 4px;
}

.field-label abbr {
  color: var(--red);
  text-decoration: none;
  font-weight: 900;
}

.field-optional {
  font-weight: 500;
  color: #6b7f8f;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field-row .field {
  margin-bottom: 10px;
}

.field-zip {
  max-width: 140px;
}

.field-row .field-zip {
  max-width: none;
}

.field-hint {
  margin: 6px 0 0;
  font-size: 11px;
  color: #6b7f8f;
  line-height: 1.4;
}

.field-static {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #dce6ee;
  border-radius: 5px;
  background: #f4f7fa;
  color: #4a6275;
  font-size: 14px;
  font-weight: 700;
  cursor: not-allowed;
  user-select: none;
}

.field-static::after {
  content: "";
  margin-left: auto;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #8fa3b3;
  opacity: 0.5;
}

.form-note {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: #6b7f8f;
}

.form-note a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

.btn-checkout {
  width: 100%;
  margin-top: 2px;
}

.checkout-trust {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e2ebf2;
  text-align: center;
}

.checkout-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 32px;
  padding: 0 10px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: 1px solid #d8e3ec;
  background: #fff;
  color: #0c2b4b;
}

.pay-cb {
  background: #0c2b4b;
  color: #fff;
  border-color: #0c2b4b;
}

.pay-visa {
  color: #1a1f71;
  font-style: italic;
  font-weight: 800;
}

.pay-mc {
  position: relative;
  overflow: hidden;
  color: transparent;
  min-width: 58px;
}

.pay-mc::before,
.pay-mc::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  opacity: 0.85;
}

.pay-mc::before {
  background: #eb001b;
  left: 10px;
}

.pay-mc::after {
  background: #f79e1b;
  right: 10px;
}

.checkout-trust-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: #0c2b4b;
}

.checkout-trust-note {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #5a7185;
  line-height: 1.4;
}

.checkout-form input {
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid #cfdde7;
  border-radius: 5px;
  padding: 0 10px;
  font: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.checkout-form input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.12);
}

.checkout-form input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #e8a0a0;
}

form { display: grid; gap: 10px; }
label { font-size: 12px; font-weight: 700; }
input {
  display: block;
  width: 100%;
  height: 40px;
  margin-top: 4px;
  border: 1px solid #cfdde7;
  border-radius: 5px;
  padding: 0 10px;
  font: inherit;
}
.modal-ok {
  background: #e9f8ef;
  color: #17613d;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
}

.modal-card-info {
  width: min(640px, 100%);
  max-height: min(88vh, 820px);
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
}

.modal-card-info h2 {
  margin: 0 36px 16px 0;
  font-size: 24px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.info-modal-body {
  overflow-y: auto;
  padding-right: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: #1a3348;
}

.info-modal-body h3 {
  margin: 18px 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-ink);
}

.info-modal-body h3:first-child {
  margin-top: 0;
}

.info-modal-body p {
  margin: 0 0 10px;
}

.info-modal-body ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.info-modal-body li {
  margin-bottom: 6px;
}

.info-modal-body a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.info-modal-body a:hover {
  color: var(--blue-dark);
}

.info-lead {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-ink);
  padding: 12px 14px;
  background: #f0f7ff;
  border-left: 3px solid var(--blue);
  border-radius: 0 6px 6px 0;
  margin-bottom: 14px !important;
}

.info-note {
  font-size: 13px;
  color: #4a6278;
  background: #fff9e6;
  border: 1px solid #ffe08a;
  border-radius: 6px;
  padding: 10px 12px;
  margin-top: 14px !important;
}

.info-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0 18px;
}

.info-contact-card {
  background: #f7fafc;
  border: 1px solid #dce8f0;
  border-radius: 8px;
  padding: 12px;
}

.info-contact-card h3 {
  margin: 0 0 6px;
  font-size: 13px;
}

.info-contact-card p {
  margin: 0 0 4px;
  font-size: 14px;
}

.info-contact-card small {
  display: block;
  font-size: 11px;
  color: #5a7288;
  margin-bottom: 8px;
}

#info-modal {
  z-index: 110;
}

#info-modal.is-stacked {
  z-index: 130;
}

#product-modal {
  z-index: 115;
}

#order-modal.is-open {
  z-index: 120;
}

.modal-card-product {
  width: min(720px, 100%);
  max-height: min(92vh, 900px);
  max-height: min(92dvh, 900px);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.modal-card-product .modal-close {
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-modal-scroll {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.product-modal-hero {
  background: #fff;
  padding: 20px 24px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.product-modal-hero .product-gallery {
  width: 100%;
  min-height: min(360px, 48vh);
}

.product-modal-content {
  padding: 8px 24px 20px;
}

.product-modal-type {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-card-product h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-ink);
  line-height: 1.15;
  padding-right: 36px;
}

.product-modal-prices {
  margin-bottom: 16px;
}

.product-modal-prices del {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #4a6278;
  margin-right: 10px;
}

.product-modal-prices strong {
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.5px;
}

.product-modal-body {
  font-size: 14px;
  line-height: 1.55;
  color: #1a3348;
}

.product-modal-body h3 {
  margin: 18px 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-ink);
}

.product-modal-body ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.product-modal-body li {
  margin-bottom: 6px;
}

.product-modal-footer {
  flex-shrink: 0;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #e4edf3;
  background: #fff;
  box-shadow: 0 -4px 16px rgba(0, 40, 70, 0.06);
}

.product-modal-footer-delivery {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
}

.product-modal-footer-actions {
  display: grid;
  gap: 8px;
}

.product-modal-savings {
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #fff8e6;
  border: 1px solid #f0dfa0;
  font-size: 13px;
  font-weight: 800;
  color: #8a6200;
}

.product-modal-delivery-inline {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #eef8f0;
  font-size: 13px;
  color: #1a5c32;
}

.install-steps {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.install-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid #e2ebf2;
  border-radius: 6px;
  background: #f8fbfd;
}

.install-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.install-steps small {
  display: block;
  margin-top: 2px;
  color: #5a7185;
  font-weight: 600;
}

.product-ideal {
  margin: 4px 0 8px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #eef6fc;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.section-head {
  margin-bottom: var(--section-gap);
  text-align: center;
}

.section-head h2 {
  margin: 8px 0 6px;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 900;
  color: var(--blue-ink);
}

.section-lead {
  margin: 0 auto;
  max-width: 560px;
  font-size: 14px;
  color: #5a7185;
  line-height: 1.5;
}

.eyebrow-blue {
  color: var(--blue);
  background: #eef6fc;
}

.guide {
  padding-top: 8px;
}

.guide-quiz {
  max-width: 640px;
  margin: 0 auto;
}

.guide-question {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-ink);
  text-align: center;
}

.guide-options {
  display: grid;
  gap: 10px;
}

.guide-option {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9e4ed;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-ink);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.guide-option small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #5a7185;
}

.guide-option:hover,
.guide-option:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.12);
  outline: none;
}

.guide-result {
  max-width: 560px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #d9e4ed;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
  text-align: center;
}

.guide-result-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
}

.guide-result h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  color: var(--blue-ink);
}

.guide-result-reason {
  margin: 0 0 16px;
  font-size: 14px;
  color: #5a7185;
}

.guide-result-actions {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.guide-restart {
  border: 0;
  background: none;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
  cursor: pointer;
}

.guide-alt {
  margin: 16px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.guide-alt a {
  color: var(--blue);
}

.compare {
  padding-top: 0;
}

.compare-scroll {
  overflow-x: auto;
  border: 1px solid #d9e4ed;
  border-radius: 8px;
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
}

.compare-table th,
.compare-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e8f0f5;
  text-align: left;
}

.compare-table thead th {
  background: #f3f8fb;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5a7185;
}

.compare-table tbody tr {
  cursor: pointer;
  transition: background 0.12s;
}

.compare-table tbody tr:hover {
  background: #f8fbfd;
}

.compare-table tbody th {
  font-weight: 800;
  color: var(--blue-ink);
}

.faq-list {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #d9e4ed;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-ink);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 18px;
  font-weight: 900;
  color: var(--blue);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 16px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #4a6278;
}

.faq-item a {
  color: var(--blue);
  font-weight: 700;
}

.checkout-recap {
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid #e2ebf2;
  border-radius: 8px;
  background: #f8fbfd;
}

.checkout-recap-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  font-size: 13px;
}

.checkout-recap-row span {
  color: #5a7185;
  font-weight: 600;
}

.checkout-recap-row strong,
.checkout-recap-row del {
  font-weight: 800;
  color: var(--blue-ink);
  text-align: right;
}

.checkout-recap-muted del {
  color: #8fa8bc;
  font-weight: 700;
}

.checkout-recap-save strong {
  color: #8a6200;
}

.recap-free {
  color: var(--green) !important;
}

.checkout-recap-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid #dce8ef;
  font-size: 15px;
  font-weight: 900;
}

.checkout-recap-total strong {
  color: var(--blue);
  font-size: 18px;
}

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  color: #4a6278;
}

.field-checkbox input {
  width: auto;
  height: auto;
  margin-top: 2px;
  flex-shrink: 0;
}

.field-address {
  position: relative;
}

.address-suggestions {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 4px 0;
  list-style: none;
  border: 1px solid #cfdde7;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 40, 70, 0.12);
  max-height: 220px;
  overflow-y: auto;
}

.address-suggestions li {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-ink);
  cursor: pointer;
}

.address-suggestions li:hover,
.address-suggestions li:focus {
  background: #eef6fc;
}

.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #d9e4ed;
  box-shadow: 0 -6px 24px rgba(0, 40, 70, 0.1);
  backdrop-filter: blur(8px);
}

.sticky-buy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-buy-copy {
  min-width: 0;
}

.sticky-buy-copy strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-buy-copy span {
  font-size: 15px;
  font-weight: 900;
  color: var(--blue);
}

.sticky-buy .btn {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-modal-footer .btn-primary {
  width: 100%;
  min-height: 50px;
  font-size: 16px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  body { max-width: 100%; box-shadow: none; }

  .hero {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-media {
    position: relative;
    height: 260px;
    flex-shrink: 0;
    transform: none;
  }
  .hero-media::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.85) 75%, #fff 100%);
  }
  .hero-inner { display: block; }
  .hero-copy {
    max-width: none;
    padding: 28px 0 36px;
  }

  .operation-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .op-units {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding: 0 0 12px;
  }
  .op-percent { text-align: left; display: flex; gap: 8px; align-items: baseline; }

  .stats-row { grid-template-columns: 1fr; }
  .stats-row article {
    border-right: 0;
    border-bottom: 1px solid #e2ebf2;
    justify-content: flex-start;
  }
  .stats-row article:last-child { border-bottom: 0; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }

  body.has-sticky-pad {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .fairness { grid-template-columns: 56px 1fr; }
  .fair-equation { grid-column: 1 / -1; justify-content: center; }

  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefits article:nth-child(2) { border-right: 0; }
  .benefits article:nth-child(-n+2) { border-bottom: 1px solid #e4edf3; padding-bottom: 12px; }
  .benefits article:nth-child(n+3) { padding-top: 12px; }

  .footer-inner { display: block; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-nav, .footer-legal { justify-content: center; flex-wrap: wrap; margin-top: 12px; }

  .info-contact-grid { grid-template-columns: 1fr; }
  .modal-card-info { padding: 22px 18px 18px; }
  .product-image { height: 240px; }
}

@media (max-width: 560px) {
  .brand-name { font-size: 32px; }
  .top-nav a { font-size: 10px; flex-direction: column; gap: 3px; height: 56px; }
  .hero h1 { font-size: 22px; }
  .hero h1 strong { font-size: 28px; }
  .hero-actions { flex-wrap: wrap; }
  .btn-primary, .delivery-pill { width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image { height: 300px; }

  .product-gallery__btn { opacity: 1; }
  .benefits { grid-template-columns: 1fr; padding: 0; }
  .benefits article { border-right: 0 !important; border-bottom: 1px solid #e4edf3 !important; padding: 12px 14px !important; }
  .benefits article:last-child { border-bottom: 0 !important; }

  .modal {
    align-items: flex-end;
    padding: 0;
  }

  .modal-card,
  .modal-card-info,
  .modal-card-product {
    width: 100%;
    max-height: 94dvh;
    border-radius: 16px 16px 0 0;
    margin-top: auto;
  }

  .modal-card {
    padding: 20px 18px calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .field-zip {
    max-width: none;
  }

  .product-modal-hero {
    min-height: 260px;
    padding: 16px 16px 8px;
  }

  .product-modal-hero .product-gallery {
    min-height: min(280px, 38dvh);
  }

  .product-modal-content {
    padding: 4px 18px 16px;
  }

  .modal-card-product h2 {
    font-size: 20px;
  }

  .product-modal-prices strong {
    font-size: 28px;
  }
}

/* ── Order loading overlay ── */
#order-modal .modal-card {
  position: relative;
}

.order-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  text-align: center;
}

.order-loading[hidden] {
  display: none !important;
}

.order-loading p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #334a5c;
}

.order-loading-spinner,
.return-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid #dce8f0;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

#order-modal.is-loading .modal-close,
#order-modal.is-loading .modal-backdrop {
  pointer-events: none;
}

#order-modal.is-loading .modal-close {
  opacity: 0.35;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Payment result pages (site layout) ── */
.payment-result-page .header-brand {
  text-decoration: none;
  color: inherit;
}

.payment-result-hero {
  padding: 24px 0;
  border-bottom: 1px solid #e4edf3;
}

.payment-result-hero--success {
  background: linear-gradient(180deg, #edf8f2 0%, #fff 100%);
}

.payment-result-hero--failed {
  background: linear-gradient(180deg, #fff6ea 0%, #fff 100%);
}

.payment-result-hero-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.payment-result-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
  flex-shrink: 0;
}

.payment-result-icon--success {
  background: var(--green);
  box-shadow: 0 8px 20px rgba(0, 99, 68, 0.25);
}

.payment-result-icon--success .icon {
  width: 30px;
  height: 30px;
  color: #fff;
}

.payment-result-icon--failed {
  background: #e85a2c;
  color: #fff;
  box-shadow: 0 8px 20px rgba(232, 90, 44, 0.25);
}

.eyebrow-success {
  color: var(--green);
}

.eyebrow-failed {
  color: #c2410c;
}

.payment-result-title {
  margin: 6px 0 8px;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--blue-ink);
  letter-spacing: -0.5px;
}

.payment-result-lead {
  margin: 0;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.55;
  color: #4a6275;
}

.payment-result-body {
  padding-top: var(--section-gap);
  padding-bottom: 4px;
}

.payment-result-panel {
  border: 1px solid #d8e3ec;
  border-radius: 6px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(8, 42, 77, 0.04);
}

.payment-result-subtitle {
  margin: 22px 0 12px;
  font-size: 15px;
  font-weight: 900;
  color: var(--blue-ink);
}

.payment-result-steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.payment-result-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  background: #f7fbff;
  border: 1px solid #e4edf3;
  border-radius: 6px;
}

.payment-result-step b {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-ink);
}

.payment-result-step small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.45;
  color: #5a7082;
  font-weight: 600;
}

.payment-result-step.is-done {
  background: #edf8f2;
  border-color: #cce8d8;
}

.payment-result-step.is-done .icon-ring {
  background: #dff5e8;
  border-color: #9fd9b5;
}

.payment-result-step.is-done .icon {
  color: var(--green);
}

.payment-result-help {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 20px;
  padding: 14px 16px;
  background: #fff8e8;
  border: 1px solid #ffe08a;
  border-radius: 6px;
}

.payment-result-help p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #5a4a2a;
  font-weight: 600;
}

.payment-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-result-actions .btn-primary,
.payment-result-actions .btn-secondary,
.payment-result-actions .btn-details {
  min-height: 44px;
  padding: 0 20px;
}

.payment-result-contact {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid #e4edf3;
  font-size: 13px;
  color: #5a7082;
}

.promo-bonus-banner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 16px;
  padding: 14px 16px;
  text-align: left;
  background: #fff8e8;
  border: 1px solid #ffe08a;
  border-radius: 6px;
}

.promo-bonus-banner--muted {
  background: #f4f8fb;
  border-color: #dce8f0;
}

.promo-bonus-banner b {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: var(--blue-ink);
  margin-bottom: 4px;
}

.promo-bonus-banner small {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #5a7082;
  font-weight: 600;
}

.payment-result-actions .promo-bonus-banner + .btn-primary {
  width: 100%;
}

.result-status-ok {
  color: var(--green) !important;
}

.result-status-fail {
  color: var(--red) !important;
}

.result-meta {
  margin: 0;
  text-align: left;
  border: 1px solid #e4edf3;
  border-radius: 6px;
  overflow: hidden;
}

.result-meta div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #e4edf3;
}

.result-meta div:last-child {
  border-bottom: 0;
}

.result-meta dt {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #6b7f8f;
}

.result-meta dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-ink);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #c5d9ea;
  border-radius: 5px;
  background: #fff;
  color: var(--blue-ink);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.result-note {
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
}

/* Return wait page (payment gateway) */
.result-page {
  min-height: 100vh;
  margin: 0 auto;
  max-width: var(--wrap);
  display: grid;
  place-items: center;
  padding: 24px 16px;
  background: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}

.result-card {
  width: min(520px, 100%);
  border: 1px solid #d8e3ec;
  border-radius: 6px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(8, 42, 77, 0.06);
}

.result-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7f8f;
}

.result-card h1 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 900;
  color: var(--blue-ink);
}

.result-lead {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.55;
  color: #4a6275;
}

.return-wait-card .return-spinner {
  margin: 0 auto 12px;
}

.return-progress {
  height: 8px;
  margin: 8px 0 16px;
  background: #e8f0f6;
  border-radius: 99px;
  overflow: hidden;
}

.return-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #3eb5ff);
  border-radius: 99px;
  transition: width 0.3s ease;
}

@media (max-width: 768px) {
  .payment-result-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payment-result-icon {
    margin: 0 auto;
  }

  .payment-result-lead {
    margin-inline: auto;
  }

  .payment-result-actions {
    flex-direction: column;
  }

  .payment-result-actions .btn-primary,
  .payment-result-actions .btn-secondary {
    width: 100%;
  }

  .result-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ── Reviews, cookies, compare filters, help ── */
.rating-link {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}

.rating-link:hover .rating-score {
  color: var(--blue);
}

.rating-score {
  font-weight: 800;
  color: var(--blue-ink);
}

.rating-label {
  font-size: 11px;
  font-weight: 700;
  color: #5a7185;
}

.icon-star-muted {
  opacity: 0.25;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.review-card {
  padding: 16px;
  border: 1px solid #d9e4ed;
  border-radius: 10px;
  background: #fff;
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.review-stars {
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 14px;
}

.review-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green);
  background: #eef8f0;
  padding: 3px 8px;
  border-radius: 999px;
}

.review-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-ink);
}

.review-text {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.55;
  color: #4a6278;
}

.review-meta {
  font-size: 11px;
  line-height: 1.5;
  color: #5a7185;
}

.reviews-disclaimer {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #5a7185;
  text-align: center;
}

.reviews-disclaimer a {
  color: var(--blue);
  font-weight: 700;
}

.guide-picks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.guide-pick {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #d9e4ed;
  background: #fff;
  text-align: left;
}

.guide-pick--primary {
  border-color: #b8d4f0;
  background: linear-gradient(180deg, #f3f9ff 0%, #fff 100%);
}

.guide-pick-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
}

.guide-pick h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 900;
  color: var(--blue-ink);
}

.guide-pick-meta {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

.guide-pick-reason {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.45;
  color: #5a7185;
}

.guide-pick-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-sm {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}

.compare-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}

.compare-filter {
  border: 1px solid #d9e4ed;
  border-radius: 999px;
  background: #fff;
  padding: 8px 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  color: #4a6278;
  cursor: pointer;
}

.compare-filter.is-active,
.compare-filter:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #eef6fc;
}

.compare-table tbody tr.is-recommended {
  background: #f3f9ff;
  box-shadow: inset 3px 0 0 var(--blue);
}

.compare-table tbody tr.is-alternative {
  background: #fffdf5;
  box-shadow: inset 3px 0 0 var(--yellow);
}

.checkout-help {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: #4a6278;
}

.checkout-help a {
  color: var(--blue);
}

.sticky-help {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

.hero-help {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-help:hover {
  color: var(--blue-dark);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(8, 42, 77, 0.96);
  color: #fff;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  max-width: 720px;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner-actions a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

body.has-cookie-banner {
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 900px) {
  .reviews-grid,
  .guide-picks {
    grid-template-columns: 1fr;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    justify-content: space-between;
  }
}
