:root {
  --bg: #f2f3f8;
  --surface: #ffffff;
  --surface-2: #e8ebf2;
  --text: #0d0d16;
  --muted: #3f414c;
  --accent: #ef2b2d;
  --accent-2: #c01117;
  --stroke: rgba(0, 0, 0, 0.08);
  --shadow: 0 18px 50px rgba(18, 18, 24, 0.08);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button {
  font: inherit;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 12px 28px rgba(239, 43, 45, 0.26);
}
button:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(239, 43, 45, 0.32); }
button:active { transform: translateY(0); }

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(12px);
  background: #ffffff;
  border-bottom: 1px solid #e2e6ee;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(18, 18, 24, 0.05);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-title {
  font-size: 20px;
  font-weight: 800;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(18, 18, 24, 0.12);
  border: 1px solid var(--stroke);
  background: #fff;
}
.logo-img--lg {
  width: 110px;
  height: 110px;
  border-radius: 28px;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms ease, transform 480ms ease;
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(18, 18, 24, 0.12);
  border: 1px solid var(--stroke);
  background: #fff;
}
.logo-img--lg {
  width: 96px;
  height: 96px;
  border-radius: 26px;
}
.brand__badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.nav__links {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 500;
}
.nav__toggle {
  display: none;
  background: #0d0d16;
  color: #fff;
  border: 1px solid #0d0d16;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
}
.nav__links a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  transition: color 140ms ease, border-color 140ms ease, background 140ms ease;
}
.nav__links a:hover {
  color: var(--text);
  border-color: var(--stroke);
  background: rgba(0, 0, 0, 0.02);
}
.promo-bar {
  background: linear-gradient(120deg, #ef2b2d, #c01117);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  font-weight: 700;
}
.promo-bar__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.8;
}
.promo-bar__ticker {
  display: flex;
  gap: 28px;
  animation: marquee 16s linear infinite;
  white-space: nowrap;
}
.promo-bar {
  background: linear-gradient(120deg, #ef2b2d, #c01117);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  font-weight: 700;
}
.promo-bar__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.8;
}
.promo-bar__ticker {
  display: flex;
  gap: 28px;
  animation: marquee 16s linear infinite;
  white-space: nowrap;
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #f4f5f9;
  color: #2a2c35;
  font-size: 14px;
}
.nav .pill { background: var(--surface-2); color: var(--muted); border-color: var(--stroke); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 20px 100px;
  width: 100%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 246, 251, 0.9) 0%, rgba(245, 246, 251, 0.8) 55%, rgba(245, 246, 251, 0.6) 100%), url("img/publicidades/hero/hero.JPG") center/cover no-repeat;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
  align-items: center;
}
.hero__side {
  display: grid;
  gap: 18px;
  align-items: start;
}
.hero__visual {
  position: relative;
  background: radial-gradient(circle at 30% 30%, rgba(239, 43, 45, 0.12), rgba(255, 80, 85, 0.04));
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 22px;
  min-height: 260px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.phone-iso {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 10 / 5.5;
  transform: rotate(-8deg);
  animation: wobble 6s ease-in-out infinite;
}
.phone-iso__body {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffb86c 0%, #ef2b2d 65%, #c01117 100%);
  border-radius: 26px;
  box-shadow: 0 22px 40px rgba(18,18,24,0.18);
}
.phone-iso__body::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: rgba(255,255,255,0.18);
  border-radius: 22px;
  opacity: 0.35;
}
.phone-iso__content {
  position: absolute;
  inset: 18px;
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 600;
}
.phone-iso__row {
  height: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.75);
  width: 80%;
}
.phone-iso__row--sm { width: 48%; }
.phone-iso__btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #ef2b2d;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(18,18,24,0.18);
}
.phone-float {
  position: absolute;
  top: 12%;
  right: 10%;
  background: #fff;
  padding: 12px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
.phone-float--left {
  left: 4%;
  right: auto;
  top: 38%;
  animation-delay: 1.2s;
}
.phone-float__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--accent-2);
  font-weight: 700;
}
.phone-float__label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface-2);
  font-weight: 500;
  color: var(--muted);
}
.hero__sticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(239,43,45,0.2);
  box-shadow: 0 12px 28px rgba(239, 43, 45, 0.16);
  font-weight: 800;
  color: #0d0d16;
  animation: bounceSticker 2.4s ease-in-out infinite;
}
.hero__title {
  font-size: clamp(36px, 6vw, 54px);
  line-height: 1.05;
  margin: 16px 0;
}
.hero__lead {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 24px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f7f8fc;
  border: 1px solid #e0e3eb;
  color: #0d0d16;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 6px 12px rgba(18,18,24,0.06);
}

.trust-logos {
  padding: 16px 20px;
  background: linear-gradient(90deg,#fff 0%,#f7f8fc 100%);
  border: 1px solid #eceff7;
  border-radius: 16px;
  margin: 0 16px 24px;
}
.trust-logos__track {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 10px;
  align-items: center;
}

.pay-safe {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f5f9ff;
  border: 1px solid #e1e8f5;
  margin-top: 14px;
}
.pay-safe__icon {
  font-size: 18px;
}
.pay-safe__title {
  font-weight: 600;
  color: #0f172a;
}
.pay-safe__subtitle {
  font-size: 13px;
  color: #6b7280;
}
.ghost-btn {
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #fff;
  padding: 14px 22px;
  color: var(--text);
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
  box-shadow: 0 10px 24px rgba(18, 18, 24, 0.06);
}
.ghost-btn:hover { border-color: rgba(0,0,0,0.12); background: var(--surface-2); }
.ghost-btn--lg {
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
}

.hero__panel {
  background: linear-gradient(140deg, rgba(239, 43, 45, 0.08), #ffffff);
  border: 1px solid rgba(239, 43, 45, 0.18);
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.stat {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 14px;
  min-height: 140px;
  display: grid;
  align-content: space-between;
}
.stat__label { color: var(--muted); font-size: 14px; }
.stat__value { font-size: 26px; font-weight: 700; color: var(--text); }
.stat__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 13px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(239, 43, 45, 0.12);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(239, 43, 45, 0.3);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
}
.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section__title {
  font-size: clamp(28px, 5vw, 40px);
  margin: 10px 0 6px;
}
.section__subtitle {
  color: var(--muted);
  max-width: 640px;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
}
.catalog-sidebar {
  align-self: start;
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.catalog-sidebar h4 {
  margin: 0 0 10px;
}
.filter-mobile-toggle {
  display: none;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--stroke);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(18, 18, 24, 0.06);
}
.search-bar {
  margin-bottom: 12px;
}
.search-bar input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #fff;
}
.card {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  border-radius: 18px;
  border: 1px solid rgba(239, 43, 45, 0.18);
  padding: 16px;
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 10px 28px rgba(18, 18, 24, 0.06);
}
.card:hover { transform: translateY(-6px); border-color: rgba(239, 43, 45, 0.38); box-shadow: 0 16px 40px rgba(18, 18, 24, 0.10); }
.card__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(239, 43, 45, 0.1);
  color: var(--accent-2);
  border: 1px solid rgba(239, 43, 45, 0.3);
}
.card__image {
  height: 220px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(239, 43, 45, 0.25);
  display: grid;
  place-items: center;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  padding: 12px;
}
.featured-wrap {
  position: relative;
  overflow: hidden;
}
.dropper {
  position: absolute;
  left: 8%;
  right: 8%;
  top: -50px;
  height: 200px;
  pointer-events: none;
}
.dropper__item {
  position: absolute;
  min-width: 90px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  color: var(--text);
  font-weight: 700;
  animation: drop 4.5s ease-in-out infinite;
  z-index: 2;
}
.dropper__item:nth-child(1) { left: 8%; top: -40%; animation-delay: 0.2s; }
.dropper__item:nth-child(2) { left: 42%; top: -36%; animation-delay: 0.8s; }
.dropper__item:nth-child(3) { right: 10%; top: -32%; animation-delay: 1.4s; }
.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 40%);
}
.card__pill {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  border: 1px solid var(--stroke);
}
.card__title { font-size: 18px; margin: 0; }
.card__desc { color: var(--muted); font-size: 14px; margin: 0; }
.card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
}
.card__price small { color: var(--muted); font-weight: 500; }
.card__actions {
  display: flex;
  gap: 8px;
}
.swatches {
  display: flex;
  gap: 8px;
  align-items: center;
}
.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  box-shadow: 0 4px 10px rgba(18,18,24,0.1);
}
.swatch--btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
}
.swatch--active { border-color: var(--accent); }
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.minimal-btn {
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: var(--surface-2);
  padding: 10px 14px;
  color: var(--text);
  font-weight: 600;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}
.minimal-btn:hover { transform: translateY(-2px); border-color: rgba(0,0,0,0.12); background: #fff; }

/* Ajustes de cards y modal para textos largos e imágenes */
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: #f8f9fb;
  padding: 6px;
}
.card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.modal__header .section__subtitle {
  max-width: 760px;
  line-height: 1.6;
  color: var(--muted);
}
.modal__header .section__title { line-height: 1.2; }
@media (max-width: 768px) {
  .modal__header .section__title { font-size: 28px; }
  .modal__header .section__subtitle { max-width: 100%; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  font-size: 13px;
  color: var(--muted);
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.filter-chip {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: all 140ms ease;
}
.filter-chip--active {
  border-color: var(--accent);
  color: var(--accent-2);
  box-shadow: 0 8px 18px rgba(239, 43, 45, 0.16);
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.about__card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}
.about__metric {
  font-size: 30px;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.contact__card {
    background: #fff;
    border: 1px solid var(--stroke);
    border-radius: 18px;
    padding: 18px;
    display: grid;
    gap: 14px;
    box-shadow: var(--shadow);
  }

.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin: 14px 0 18px;
}
.contact-stat {
    background: linear-gradient(135deg, #fff7f7, #fff);
    border: 1px solid #f0dede;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 10px 24px rgba(239,43,45,0.08);
}
.contact-stat__number {
    font-size: 24px;
    font-weight: 800;
    color: #d82027;
    line-height: 1.2;
}
.contact-stat__label {
    font-size: 13px;
    color: #4a4e57;
    margin-top: 4px;
}
.contact form {
  display: grid;
  gap: 12px;
}
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 12px;
  filter: grayscale(80%) contrast(105%) brightness(96%);
}

.opinions {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 90px;
  display: grid;
  gap: 22px;
}
.opinions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.opinion-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}
.opinion-card__meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}
.opinion-card__rating {
  color: #ffb400;
  font-weight: 700;
}
.badge-ml {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #ffd54f, #f6c300);
  color: #3a2c00;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(246, 195, 0, 0.25);
  border: 1px solid rgba(58, 44, 0, 0.16);
  margin: 6px 0;
}
.ml-highlight {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}
.reviews-board {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}
.reviews-score {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.reviews-score__main {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-score__value {
  font-size: 42px;
  font-weight: 800;
  color: #0f6ff7;
}
.stars {
  color: #0f6ff7;
  letter-spacing: 1px;
  font-size: 18px;
}
.rating-bars {
  display: grid;
  gap: 6px;
}
.rating-bar {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}
.rating-bar__track {
  background: var(--surface-2);
  height: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.rating-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #0f6ff7, #58a8ff);
}
.review-cards {
  display: grid;
  gap: 10px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 8px;
  box-shadow: var(--shadow);
}
.review-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}
.review-card__body {
  display: grid;
  gap: 8px;
}
.review-card__thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  overflow: hidden;
}
.review-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ml-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.ml-bars span {
  height: 6px;
  border-radius: 4px;
  background: #ffdede;
}
.ml-bars span:nth-child(2) { background: #ffe8c2; }
.ml-bars span:nth-child(3) { background: #fff0b3; }
.ml-bars span:nth-child(4) { background: #f3f9d9; }
.ml-bars span:nth-child(5) { background: #e5f6e5; }
.ml-bars span:nth-child(6) { background: #2cd38a; }
.ml-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.ml-metric {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.ml-metric strong { display: block; color: var(--text); font-size: 18px; }

.floating-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 95;
  animation: float 6s ease-in-out infinite;
}
.floating-chat {
  position: fixed;
  left: 24px;
  bottom: 24px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(18, 18, 24, 0.14);
  z-index: 95;
}
.floating-cart__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}
.floating-cart__count {
  font-weight: 700;
}
.floating-cart__label { color: var(--muted); font-size: 13px; }

.drawer {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
  pointer-events: none;
  z-index: 98;
}
.drawer__overlay {
  background: rgba(18, 18, 24, 0.28);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 200ms ease;
}
.drawer__panel {
  width: min(420px, 92vw);
  background: #fff;
  border-left: 1px solid var(--stroke);
  height: 100%;
  transform: translateX(100%);
  transition: transform 220ms ease;
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  box-shadow: -10px 0 30px rgba(18, 18, 24, 0.2);
  border-radius: 18px 0 0 18px;
  position: relative;
}
.drawer__panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 18px 0 0 0;
}
.drawer--open { pointer-events: all; }
.drawer--open .drawer__overlay { opacity: 1; }
.drawer--open .drawer__panel { transform: translateX(0); }

.cart-list {
  overflow: auto;
  display: grid;
  gap: 12px;
}
.cart-item {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px 12px 12px 16px;
  display: grid;
  gap: 6px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(18, 18, 24, 0.06);
}
.cart-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.qty-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: #f1f2f6;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.qty-input {
  width: 48px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: #fff;
  text-align: center;
  padding: 0;
  line-height: 32px;
  font-size: 14px;
}

/* Skeletons */
.skeleton-card {
  background: #f5f6f8;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e5e7ef;
  animation: pulse 1.2s ease-in-out infinite;
}
.skeleton-bar {
  height: 12px;
  background: #e7e9f0;
  border-radius: 10px;
  margin-bottom: 10px;
}
.skeleton-pill {
  width: 60px;
  height: 12px;
  background: #e7e9f0;
  border-radius: 999px;
  margin-bottom: 12px;
}
.skeleton-thumb {
  height: 120px;
  background: #eceff4;
  border-radius: 12px;
  margin-bottom: 14px;
}
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Loader overlay */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  opacity: 0;
  visibility: hidden;
}
.loader-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.loader-box {
  width: 120px;
  height: 120px;
  position: relative;
  background: linear-gradient(135deg, #ef2b2d, #1a1c24);
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floaty 1.8s ease-in-out infinite;
}
.loader-lid {
  position: absolute;
  top: -12px;
  left: 8px;
  right: 8px;
  height: 16px;
  background: #fff;
  border-radius: 10px;
  animation: lid 1.8s ease-in-out infinite;
}
.loader-logo {
  width: 68px;
  height: 68px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
}
.loader-img { width: 100%; height: 100%; object-fit: contain; }
.loader-spinner {
  margin-top: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.35);
  border-top-color: #ef2b2d;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes lid {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-6deg); }
}

.pickup-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: #f9fafc;
}
.pickup-row input[type="checkbox"] {
  margin-top: 4px;
}
.pickup-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}
.empty {
  text-align: center;
  color: var(--muted);
  padding: 20px;
}
.totals {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--stroke);
  padding-top: 10px;
}
.totals__row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}
.totals__row strong { color: var(--text); }
.totals__row--highlight strong { color: var(--accent-2); font-size: 18px; }

.footer {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px 60px;
  font-size: 14px;
}
.footer--dark {
  background: #0f0f14;
  color: #f5f5f7;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__pill {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.14);
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: #13141a;
    color: #f5f5f7;
    font-weight: 700;
    box-shadow: none;
    transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background 140ms ease;
}
.social-btn--ml {
    background: #ffd600;
    color: #0d0d16;
    border: 1px solid #e4c300;
    box-shadow: none;
}
.social-btn--ig {
    background: #1c1d24;
    color: #f5f5f7;
    border: 1px solid #2f313a;
}
.social-btn--ig:hover {
    background: #22232c;
}
.social-btn:hover {
    border-color: #40424d;
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

/* Social icons with inline SVG backgrounds */
.social-btn--ig {
    background: #22232c url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"22\" height=\"22\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"%23f5f5f7\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"3\" width=\"18\" height=\"18\" rx=\"5\" ry=\"5\"></rect><path d=\"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z\"></path><line x1=\"17.5\" y1=\"6.5\" x2=\"17.5\" y2=\"6.5\"></line></svg>') center center no-repeat;
    background-size: 22px;
}
.social-btn--ml {
    background: #ffd600 url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"22\" height=\"22\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"%230d0d16\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"9\" cy=\"21\" r=\"1\"></circle><circle cx=\"20\" cy=\"21\" r=\"1\"></circle><path d=\"M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61H19a2 2 0 0 0 2-1.61l1-6.39H6\"></path></svg>') center center no-repeat;
    background-size: 22px;
}
.mega-footer {
  background: #0b0b0f;
  color: #f5f5f7;
  padding: 50px 20px 30px;
  margin-top: 40px;
}
.mega-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.mega-footer__title {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 12px;
  color: #fff;
}
.mega-footer a { color: #f5f5f7; text-decoration: none; }
.mega-footer__list {
  display: grid;
  gap: 8px;
  color: #cfd0d8;
}
.newsletter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.newsletter input {
  flex: 1 1 220px;
  background: #111118;
  color: #f5f5f7;
  border: 1px solid rgba(255,255,255,0.1);
}
.newsletter button {
  padding: 12px 16px;
}
.payments {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: grid;
  gap: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.payments__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pay-chip {
  background: #111118;
  border: 1px solid rgba(255,255,255,0.12);
  color: #f5f5f7;
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 13px;
}
.payments__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #cfd0d8;
}

.mp-btn {
  background: #009ee3;
  color: #fff;
  border-radius: 12px;
  border: none;
  padding: 12px 16px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 158, 227, 0.25);
}
.mp-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mp-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 110;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,18,24,0.45);
  opacity: 0;
  transition: opacity 200ms ease;
}
.modal__panel {
  position: relative;
  width: min(920px, 94vw);
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  padding: 20px;
  box-shadow: 0 22px 46px rgba(0,0,0,0.22);
  transform: translateY(20px);
  transition: transform 220ms ease, opacity 220ms ease;
  opacity: 0;
}
.modal--open { pointer-events: all; }
.modal--open .modal__overlay { opacity: 1; }
.modal--open .modal__panel { transform: translateY(0); opacity: 1; }
.modal__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.modal__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 14px;
}
.modal__gallery {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
  min-height: 320px;
  display: grid;
  gap: 12px;
  background: var(--surface-strong);
}
.gallery__label {
  background: rgba(255,255,255,0.85);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 10px;
  width: fit-content;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.15);
}
.gallery__main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  background: #fff;
  padding: 10px;
}
.gallery__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.75);
  color: var(--text-muted);
  border-radius: 12px;
  border: 1px dashed var(--stroke);
  padding: 12px;
  text-align: center;
}
.gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gallery__thumb {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.75);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all .2s ease;
}
.gallery__thumb--active {
  background: var(--text);
  border-color: var(--text);
}
.modal__info {
  display: grid;
  gap: 12px;
}
.modal__swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes wobble {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-12px); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes drop {
  0% { transform: translateY(-120px) scale(0.9); opacity: 0; }
  45% { transform: translateY(120px) scale(1.02); opacity: 1; }
  65% { transform: translateY(90px) scale(0.98); }
  80% { transform: translateY(110px) scale(1); }
  100% { transform: translateY(110px); opacity: 0; }
}
@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}
@keyframes bounceSticker {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.checkout-summary {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}
.checkout-summary__item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--stroke);
  padding-bottom: 8px;
  color: var(--text);
}
.checkout-summary__item:last-child { border-bottom: none; padding-bottom: 0; }
.checkout-summary__actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stepper {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 12px 0 22px;
  flex-wrap: wrap;
}
.stepper__step {
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: #f1f2f6;
  text-align: center;
  font-weight: 700;
  color: var(--muted);
  min-width: 110px;
  box-shadow: 0 8px 20px rgba(18,18,24,0.08);
}
.stepper__step--active {
  border-color: rgba(239,43,45,0.4);
  color: var(--text);
  background: #fff;
  box-shadow: 0 14px 34px rgba(239,43,45,0.18);
}
.pay-btn {
  background: linear-gradient(135deg, #0f83ff, #0070d1);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  min-height: 54px;
}
.mp-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.mp-secure__badge {
  background: #ffe600;
  color: #0b357a;
  padding: 6px 8px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12px;
}
.pay-btn::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-20deg);
  animation: shine 2.4s ease-in-out infinite;
}
.pay-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.pay-btn[disabled]::after { display: none; }
.pay-btn--hidden { display: none; }
.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.checkout-box {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.checkout-form {
  display: grid;
  gap: 12px;
}
.checkout-form label {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.checkout-form input, .checkout-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: var(--surface-2);
}
.checkout-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 12px 16px;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 14px 30px rgba(18,18,24,0.1);
    border-bottom: 1px solid #e2e6ee;
    z-index: 99;
  }
  .nav--open .nav__links { display: flex; }
  .nav__toggle { display: inline-flex; }
  .hero { padding-top: 90px; }
  .section { padding: 70px 20px; }
  .dropper { display: none; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; display: none; }
  .catalog-sidebar.is-open { display: block; }
  .filter-mobile-toggle { display: block; }
}
