:root {
  --red: #e30613;
  --red-dark: #b90009;
  --ink: #111317;
  --muted: #60646c;
  --line: #e7e7ea;
  --soft: #f7f3ef;
  --paper: #fffaf5;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(17, 19, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 19, 23, 0.06);
}

.top-strip {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 34px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-truck-icon {
  width: 36px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--white);
}

.top-truck-icon path,
.top-truck-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-center {
  justify-content: center;
}

.top-shield-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--white);
}

.top-shield-icon circle,
.top-shield-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-shield-icon path:first-of-type {
  stroke-width: 2.35;
}

.top-contact {
  justify-content: flex-end;
}

.top-contact strong {
  margin-right: 6px;
}

.social-link {
  width: 27px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  border: 2.2px solid rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  color: var(--white);
}

.social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

.social-link path,
.social-link rect,
.social-link circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link[aria-label="Facebook"] path,
.social-link[aria-label="TikTok"] path {
  fill: currentColor;
  stroke: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.14);
}

.main-nav {
  min-height: 104px;
  display: grid;
  grid-template-columns: 220px auto minmax(260px, 410px);
  align-items: center;
  gap: 24px;
  padding: 0 46px;
}

.brand {
  width: 178px;
  height: 78px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.18);
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.menu a {
  position: relative;
  padding: 12px 0;
}

.menu a.active,
.menu a:hover {
  color: var(--red);
}

.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

.search {
  display: grid;
  grid-template-columns: 1fr 58px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--ink);
}

.search button {
  border: 0;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
}

.account-button,
.cart-button {
  min-height: 48px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}

.cart-button {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 2px;
  left: 18px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
}

main {
  padding: 0 32px 34px;
}

.hero {
  /* Ajustes del hero: mueve estos valores para cambiar el corte entre texto e imagen. */
  --hero-copy-size: 34%;
  --hero-divider-width: 2.5%;
  --hero-divider-top: 8%;

  position: relative;
  max-width: 1480px;
  min-height: 337px;
  margin: 0 auto 14px;
  display: grid;
  grid-template-columns: var(--hero-copy-size) 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.72);
}

.hero::before {
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 42px 26px 34px 110px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-copy.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 500px;
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-text {
  max-width: 430px;
  margin: 14px 0 22px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
}

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

.primary-button,
.ghost-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 24px;
  font-weight: 900;
}

.primary-button {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 18px rgba(227, 6, 19, 0.18);
}

.primary-button:hover {
  background: var(--red-dark);
}

.ghost-button {
  border: 1px solid rgba(227, 6, 19, 0.24);
  color: var(--red);
  background: rgba(255, 255, 255, 0.72);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 25px;
  max-width: 520px;
}

.hero-badges div {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 10px;
  align-items: center;
}

.hero-badges .line-icon {
  grid-row: span 2;
  color: var(--red);
}

.hero-badges strong {
  color: var(--red-dark);
  font-size: 14px;
}

.hero-badges small {
  font-size: 12px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 337px;
}

.hero-photo {
  min-height: 337px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, #030303 0%, #0c0d10 54%, #030303 100%);
}

.hero-photo::before {
  content: none;
}

.hero-photo::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: 0;
  z-index: 2;
  width: var(--hero-divider-width);
  height: 100%;
  background: var(--paper);
  clip-path: polygon(0 0, var(--hero-divider-top) 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 337px;
  object-fit: var(--hero-image-fit, cover);
  object-position: 50% 50%;
  transition: opacity 180ms ease, transform 260ms ease;
}

.hero-photo img.is-changing {
  opacity: 0;
  transform: scale(1.015);
}

.red-panel {
  position: absolute;
  inset: 0 0 0 8%;
  background: var(--red);
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%, 13% 70%);
}

.box-card {
  position: absolute;
  right: 13%;
  top: 34px;
  width: min(28vw, 315px);
  aspect-ratio: 1.08;
  transform: rotate(1deg);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.box-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scooter {
  position: absolute;
  left: 14%;
  bottom: 36px;
  width: min(34vw, 420px);
  height: 185px;
  filter: drop-shadow(0 18px 14px rgba(17, 19, 23, 0.18));
}

.scooter .body {
  position: absolute;
  left: 54px;
  right: 40px;
  bottom: 38px;
  height: 82px;
  border-radius: 82px 82px 18px 18px;
  background: linear-gradient(180deg, #ff2630, #c4000a);
}

.scooter .front {
  position: absolute;
  left: 0;
  bottom: 49px;
  width: 112px;
  height: 122px;
  border-radius: 72px 56px 24px 36px;
  background: linear-gradient(165deg, #ff353d, var(--red-dark));
  transform: skewX(-8deg);
}

.scooter .seat {
  position: absolute;
  left: 152px;
  bottom: 115px;
  width: 126px;
  height: 28px;
  border-radius: 28px 36px 18px 18px;
  background: #171717;
}

.scooter .handle {
  position: absolute;
  left: 62px;
  top: 2px;
  width: 118px;
  height: 78px;
  border-top: 7px solid #141414;
  border-left: 7px solid #141414;
  border-radius: 82px 0 0 0;
  transform: rotate(-14deg);
}

.wheel {
  position: absolute;
  bottom: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0 17%, #161616 18% 56%, #2b2b2b 57% 100%);
  border: 7px solid #161616;
}

.wheel-left {
  left: 54px;
}

.wheel-right {
  right: 44px;
}

.speed-lines {
  position: absolute;
  right: 7%;
  top: 112px;
  display: grid;
  gap: 18px;
}

.speed-lines span {
  display: block;
  width: 140px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
  transform: rotate(9deg);
}

.speed-lines span:nth-child(2) {
  width: 112px;
  margin-left: 32px;
}

.speed-lines span:nth-child(3) {
  width: 86px;
  margin-left: 62px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 19, 23, 0.14);
}

.slider-dots button:hover,
.slider-dots button:focus-visible {
  outline: 2px solid rgba(227, 6, 19, 0.28);
  outline-offset: 3px;
}

.slider-dots .selected {
  background: var(--red);
  border-color: var(--red);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 38px;
  height: 38px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-arrow-prev {
  left: 10px;
}

.hero-arrow-next {
  right: 10px;
}

.hero-thumbs {
  display: none;
}

.category-strip {
  max-width: 1250px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: repeat(9, minmax(92px, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.category {
  min-height: 86px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.category:last-child {
  border-right: 0;
}

.category:hover,
.category.active {
  background: #fff5f5;
  color: var(--red);
}

.products-section {
  max-width: 1400px;
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 16px 0 14px;
}

.section-heading h2 {
  font-size: 25px;
}

.section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
}

.products-grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px);
  gap: 14px;
  justify-content: start;
}

.product-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(17, 19, 23, 0.1);
}

.product-image {
  position: relative;
  height: 430px;
  display: grid;
  place-items: start center;
  padding: 14px 18px 140px;
  background: linear-gradient(180deg, #ffffff, #fafafa);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 274px;
  object-fit: contain;
  align-self: start;
  transition: transform 180ms ease, filter 180ms ease;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 23, 0);
  transition: background 180ms ease;
}

.product-description {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.42;
  background: transparent;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.03);
  filter: brightness(0.88);
}

.product-card:hover .product-image::after {
  background: rgba(17, 19, 23, 0.24);
}

.product-card:hover .product-description {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  padding: 10px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(7px);
  box-shadow: 0 12px 26px rgba(17, 19, 23, 0.12);
}

.product-info h3 {
  min-height: 0;
  margin: 0 0 5px;
  font-size: 15px;
  line-height: 1.28;
}

.rating {
  color: #f4b400;
  font-size: 11px;
  font-weight: 800;
}

.price-row {
  display: grid;
  gap: 2px;
  margin-top: 5px;
}

.old-price {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-decoration: line-through;
}

.price {
  color: var(--red);
  font-size: 21px;
  font-weight: 900;
}

.add-cart {
  width: 100%;
  min-height: 34px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.add-cart:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.promo-band {
  max-width: 1400px;
  margin: 22px auto 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(17, 19, 23, 0.12);
}

.promo-band img {
  width: 100%;
  height: auto;
  display: block;
}

.trust-row {
  max-width: 1400px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.trust-row article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.trust-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--ink);
  overflow: visible;
}

.trust-icon path,
.trust-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row strong {
  display: block;
  font-size: 15px;
}

.trust-row p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.footer {
  margin-top: 24px;
  padding: 28px 48px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(160px, 1fr));
  align-items: start;
  gap: 20px;
  background: #151515;
  color: var(--white);
}

.footer img {
  width: 132px;
  height: 58px;
  object-fit: contain;
}

.footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-column {
  display: grid;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 4px;
  font-size: 14px;
  letter-spacing: 0;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.footer-column a:hover {
  color: var(--white);
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.legal-modal.is-open {
  display: flex;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 23, 0.62);
}

.legal-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(78vh, 680px);
  overflow: auto;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  outline: 0;
}

.legal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #f2f2f3;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.legal-close:hover {
  background: #e8e8ea;
}

.legal-dialog h2 {
  margin: 0 42px 14px 0;
  font-size: 28px;
  line-height: 1.1;
}

.legal-content {
  display: grid;
  gap: 14px;
  color: #333840;
  font-size: 14px;
  line-height: 1.55;
}

.legal-content p,
.legal-content ul {
  margin: 0;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content strong {
  color: var(--ink);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.36), 0 8px 18px rgba(17, 19, 23, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.42), 0 10px 22px rgba(17, 19, 23, 0.2);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.whatsapp-float path:first-child {
  fill: var(--white);
  stroke: none;
}

.whatsapp-float path:last-child {
  fill: #25d366;
  stroke: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.product-modal.is-open {
  display: flex;
}

.product-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 23, 0.68);
}

.product-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.26) 45%, rgba(0, 0, 0, 0.78) 100%),
    url("../assets/karpix-detail-bg.png") center / cover no-repeat;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  outline: 0;
}

.product-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.product-close:hover {
  background: rgba(17, 19, 23, 0.14);
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr minmax(260px, 340px);
  grid-template-areas:
    "pack center info"
    "buy-left center buy-right"
    "video-left center video-right"
    "buy-proof-left center buy-proof"
    "left-proof center customer-proof";
  gap: 16px 24px;
  align-items: start;
  min-height: 620px;
  padding: 86px 34px 42px;
}

.product-detail-copy,
.product-buy-panel {
  width: 100%;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(9px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.product-buy-panel {
  grid-area: info;
  justify-self: end;
}

.product-detail-copy {
  grid-area: pack;
  justify-self: start;
}

.buy-now-callout {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 2px solid rgba(227, 6, 19, 0.78);
  border-radius: 8px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 26px rgba(227, 6, 19, 0.18);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  animation: temuPulse 1.35s ease-in-out infinite;
}

.buy-now-callout:hover {
  color: var(--white);
  background: var(--red);
}

.buy-now-left {
  grid-area: buy-left;
}

.buy-now-right {
  grid-area: buy-right;
}

.buy-now-proof {
  grid-area: buy-proof;
}

.buy-now-proof-left {
  grid-area: buy-proof-left;
}

.buy-now-last-mobile {
  display: none;
}

@keyframes temuPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  18% {
    transform: translateY(-2px) scale(1.025);
  }

  36% {
    transform: translateY(1px) scale(0.99);
  }

  54% {
    transform: translateY(-1px) scale(1.018);
  }
}

.product-video-panel {
  grid-area: video-left;
  justify-self: start;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.product-video-panel-right {
  grid-area: video-right;
  justify-self: end;
}

.left-proof-panel,
.customer-proof-panel {
  grid-area: customer-proof;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.left-proof-panel {
  grid-area: left-proof;
  justify-self: start;
}

.customer-proof-panel {
  grid-area: customer-proof;
  justify-self: end;
}

.product-detail-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--white);
}

.product-detail-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.product-specs {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.product-specs li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.product-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.product-detail-video {
  width: 100%;
  height: 520px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #050505;
  object-fit: cover;
}

.customer-proof-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.product-brand-column {
  display: none;
}

.product-brand-column::before,
.product-brand-column::after {
  content: none;
}

.product-brand-column::before {
  left: 28px;
}

.product-brand-column::after {
  right: 28px;
}

.detail-logo {
  width: 138px;
  height: 72px;
  object-fit: contain;
}

.detail-product-image {
  position: relative;
  z-index: 1;
  width: min(220px, 92%);
  height: 470px;
  margin-top: 34px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.28));
}

.pack-options {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.pack-option {
  width: 100%;
  min-height: 74px;
  display: grid;
  gap: 4px;
  justify-items: start;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pack-option span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pack-option strong {
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

.pack-option:hover,
.pack-option.selected {
  border-color: var(--red);
  box-shadow: 0 12px 24px rgba(227, 6, 19, 0.12);
  transform: translateY(-1px);
}

.offer-callout {
  margin: 10px 0 0;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(227, 6, 19, 0.92);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
}

.selected-pack {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.detail-whatsapp {
  width: 100%;
}

.line-icon,
.cat-icon,
.search-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.line-icon {
  width: 30px;
  height: 30px;
  color: currentColor;
}

.line-icon.truck::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 17px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.line-icon.truck::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 14px;
  width: 10px;
  height: 6px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 3px 3px 0;
  box-shadow: -17px 9px 0 -5px currentColor, 1px 9px 0 -5px currentColor;
}

.line-icon.shield::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 18px;
  height: 22px;
  border: 2.4px solid currentColor;
  border-radius: 10px 10px 12px 12px;
  clip-path: polygon(50% 0, 92% 16%, 86% 66%, 50% 100%, 14% 66%, 8% 16%);
}

.line-icon.shield::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 11px;
  width: 10px;
  height: 6px;
  border-left: 2.7px solid currentColor;
  border-bottom: 2.7px solid currentColor;
  border-radius: 1px;
  transform: rotate(-45deg);
}

.line-icon.user::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.line-icon.user::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 3px;
  width: 19px;
  height: 11px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.line-icon.cart::before,
.line-icon.small-cart::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 17px;
  height: 10px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  transform: skewX(-10deg);
}

.line-icon.cart::after,
.line-icon.small-cart::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 12px 0 0 currentColor;
}

.line-icon.cart,
.line-icon.small-cart {
  overflow: visible;
  background:
    linear-gradient(currentColor, currentColor) 3px 6px / 9px 3px no-repeat,
    linear-gradient(73deg, transparent 0 38%, currentColor 39% 61%, transparent 62%) 8px 6px / 8px 14px no-repeat;
}

.line-icon.small-cart {
  width: 24px;
  height: 24px;
}

.line-icon.fast::before,
.line-icon.safe::before,
.line-icon.headset::before,
.line-icon.package::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.line-icon.fast::after {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 2px;
  background: currentColor;
  box-shadow: -3px 6px 0 currentColor, 2px 12px 0 currentColor;
}

.line-icon.safe::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 10px;
  width: 9px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.line-icon.headset::before {
  border-radius: 50% 50% 8px 8px;
  border-bottom: 0;
}

.line-icon.headset::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 6px;
  height: 9px;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.line-icon.package::before {
  border-radius: 4px;
}

.line-icon.package::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 5px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.search-mark {
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.search-mark::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 3px;
  right: -7px;
  bottom: -4px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.cat-icon {
  width: 34px;
  height: 34px;
  color: var(--red);
}

.cat-icon::before,
.cat-icon::after {
  content: "";
  position: absolute;
}

.market::before {
  inset: 8px 5px 10px;
  border: 4px solid currentColor;
  border-top: 0;
  transform: skewX(-10deg);
}

.market::after {
  left: 7px;
  bottom: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 16px 0 0 currentColor, -5px -24px 0 -2px currentColor;
}

.bottle::before {
  left: 12px;
  top: 2px;
  width: 10px;
  height: 29px;
  border-radius: 4px 4px 8px 8px;
  background: currentColor;
}

.broom::before {
  left: 18px;
  top: 0;
  width: 4px;
  height: 24px;
  background: currentColor;
  transform: rotate(14deg);
}

.broom::after {
  left: 8px;
  bottom: 0;
  width: 18px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(35% 0, 65% 0, 100% 100%, 0 100%);
}

.care::before {
  left: 7px;
  top: 9px;
  width: 20px;
  height: 22px;
  border-radius: 4px;
  background: currentColor;
}

.care::after {
  left: 13px;
  top: 2px;
  width: 8px;
  height: 9px;
  border-radius: 2px;
  background: currentColor;
}

.paw::before {
  left: 10px;
  top: 14px;
  width: 14px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
}

.paw::after {
  left: 2px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 10px -4px 0 currentColor, 21px 0 0 currentColor, 5px 9px 0 currentColor;
}

.phone::before {
  left: 9px;
  top: 1px;
  width: 16px;
  height: 31px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.home::before {
  left: 5px;
  top: 13px;
  width: 24px;
  height: 17px;
  background: currentColor;
}

.home::after {
  left: 5px;
  top: 3px;
  width: 24px;
  height: 24px;
  background: currentColor;
  transform: rotate(45deg);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.percent::before {
  left: 6px;
  top: 16px;
  width: 22px;
  height: 4px;
  background: currentColor;
  transform: rotate(-45deg);
}

.percent::after {
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 3px solid currentColor;
  box-shadow: 16px 16px 0 -3px #fff, 16px 16px 0 0 currentColor;
}

.gift::before {
  left: 5px;
  top: 12px;
  width: 24px;
  height: 18px;
  background: currentColor;
}

.gift::after {
  left: 4px;
  top: 7px;
  width: 26px;
  height: 7px;
  background: currentColor;
  box-shadow: 12px 0 0 -10px #fff;
}

@media (max-width: 1320px) {
  .main-nav {
    grid-template-columns: 180px minmax(260px, 1fr);
    gap: 16px;
  }

  .menu {
    order: 4;
    grid-column: 1 / -1;
    justify-content: center;
  }

  .search {
    grid-column: span 1;
  }

  .account-button {
    display: none;
  }

  .hero-copy {
    padding-left: 54px;
  }

  .category-strip {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
  }
}

@media (max-width: 860px) {
  .top-strip {
    grid-template-columns: 1fr 1fr;
    gap: 7px 10px;
    padding: 7px 10px 8px;
    text-align: center;
    font-size: 9.5px;
    line-height: 1.15;
    align-items: center;
  }

  .top-item,
  .top-center,
  .top-contact {
    justify-content: flex-start;
  }

  .top-item {
    gap: 4px;
    min-width: 0;
    white-space: nowrap;
    justify-content: center;
  }

  .top-contact {
    grid-column: 1 / -1;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    text-align: center;
  }

  .top-contact strong {
    margin-right: 0;
  }

  .top-contact > span {
    display: inline;
  }

  .top-truck-icon {
    width: 20px;
    height: 14px;
  }

  .top-shield-icon {
    width: 20px;
    height: 20px;
  }

  .social-link {
    width: 23px;
    height: 23px;
    border-width: 1.7px;
  }

  .social-link svg {
    width: 12px;
    height: 12px;
  }

  .main-nav {
    min-height: auto;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 12px 12px;
  }

  .brand {
    order: 1;
    width: 86px;
    height: 48px;
    justify-self: start;
  }

  .cart-button {
    order: 2;
    justify-self: end;
  }

  .search {
    order: 2;
  }

  .menu {
    order: 3;
  }

  .menu {
    grid-column: 1 / -1;
  }

  .search {
    grid-column: auto;
    height: 38px;
    grid-template-columns: 1fr 44px;
  }

  .search input {
    padding: 0 12px;
    font-size: 12px;
  }

  .menu {
    justify-content: center;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    font-size: 13px;
  }

  .menu::-webkit-scrollbar {
    display: none;
  }

  main {
    padding: 0 14px 24px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-copy {
    order: 1;
    padding: 16px 16px 12px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.04;
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 9px;
  }

  .hero-text {
    max-width: none;
    margin: 8px 0 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-actions {
    gap: 6px;
  }

  .primary-button,
  .ghost-button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
    max-width: none;
  }

  .hero-badges div {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 4px;
    padding: 7px 4px;
    text-align: center;
  }

  .hero-badges .line-icon {
    width: 30px;
    height: 30px;
    grid-row: auto;
    overflow: visible;
  }

  .hero-badges strong {
    font-size: 10px;
    line-height: 1.08;
  }

  .hero-badges small {
    font-size: 8px;
    line-height: 1.15;
  }

  .hero-visual {
    order: 2;
    min-height: 305px;
  }

  .hero-photo {
    min-height: 305px;
    background: #050505;
  }

  .hero-photo::after {
    content: none;
  }

  .hero-photo img {
    min-height: 305px;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .hero-arrow {
    display: none;
    width: 30px;
    height: 30px;
    font-size: 27px;
  }

  .hero-thumbs {
    order: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    background: #050505;
  }

  .hero-thumbs button {
    min-width: 0;
    height: 62px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.26);
    border-radius: 6px;
    overflow: hidden;
    background: #050505;
  }

  .hero-thumbs button.selected {
    border-color: var(--red);
    box-shadow: 0 0 0 2px rgba(227, 6, 19, 0.18);
  }

  .hero-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slider-dots {
    z-index: 7;
    bottom: 10px;
    gap: 8px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
  }

  .slider-dots button {
    width: 9px;
    height: 9px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.86);
  }

  .slider-dots .selected {
    width: 20px;
    border-radius: 999px;
    background: var(--red);
    border-color: var(--red);
  }

  .red-panel {
    inset: 0;
    clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%);
  }

  .box-card {
    right: 8%;
    top: 26px;
    width: 220px;
  }

  .scooter {
    left: 7%;
    width: 360px;
    max-width: 82vw;
  }

  .category-strip {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }

  .products-grid {
    grid-template-columns: minmax(240px, 300px);
  }

  .promo-band {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .trust-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
  }

  .trust-row article {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    padding: 6px 4px;
    text-align: center;
  }

  .trust-icon {
    width: 22px;
    height: 22px;
  }

  .trust-row strong {
    font-size: 9px;
    line-height: 1.1;
  }

  .trust-row p {
    font-size: 7px;
    line-height: 1.15;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 18px 14px;
  }

  .footer img {
    width: 92px;
    height: 42px;
  }

  .footer p,
  .footer-column a,
  .footer-column span {
    font-size: 9px;
    line-height: 1.3;
  }

  .footer-column {
    gap: 6px;
  }

  .footer-column h2 {
    font-size: 10px;
  }

  .product-dialog {
    width: min(96vw, 760px);
    max-height: 90vh;
    border-radius: 6px;
  }

  .product-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "pack"
      "buy-left"
      "info"
      "buy-right"
      "video-left"
      "buy-proof-left"
      "left-proof"
      "buy-last-mobile"
      "video-right"
      "buy-proof"
      "customer-proof";
    gap: 10px;
    padding: 54px 10px 16px;
    min-height: 0;
  }

  .product-detail-copy,
  .product-buy-panel {
    margin: 0;
    padding: 12px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
  }

  .product-detail-copy h2 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .product-detail-copy p {
    font-size: 11px;
    line-height: 1.35;
  }

  .product-specs {
    gap: 5px;
    margin-top: 10px;
  }

  .product-specs li {
    padding-left: 16px;
    font-size: 10.5px;
    line-height: 1.3;
  }

  .product-specs li::before {
    top: 6px;
    width: 6px;
    height: 6px;
  }

  .offer-callout {
    margin-top: 6px;
    padding: 6px 8px;
    font-size: 10.5px;
    line-height: 1.05;
  }

  .pack-options {
    gap: 6px;
    margin-top: 8px;
  }

  .pack-option {
    min-height: 48px;
    padding: 8px 10px;
    border-radius: 6px;
  }

  .pack-option span {
    font-size: 9px;
  }

  .pack-option strong {
    font-size: 17px;
  }

  .selected-pack {
    margin: 8px 0 10px;
    font-size: 10.5px;
  }

  .product-video-panel,
  .left-proof-panel,
  .customer-proof-panel {
    padding: 8px;
    border-radius: 6px;
  }

  .product-detail-video {
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: contain;
  }

  .buy-now-proof-left,
  .buy-now-proof,
  .buy-now-last-mobile {
    display: inline-flex;
    margin: 0;
  }

  .buy-now-last-mobile {
    grid-area: buy-last-mobile;
  }

  .buy-now-callout {
    min-height: 34px;
    padding: 7px 9px;
    border-radius: 6px;
    font-size: 10.5px;
    letter-spacing: 0;
  }

  .product-brand-column {
    display: none;
  }

  .detail-product-image {
    height: 280px;
    margin-top: 16px;
  }
}

@media (max-width: 520px) {
  .cart-button strong {
    display: none;
  }

  .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 370px;
  }

  .trust-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
