/* ==========================================================================
   RAISE SUPLEMENTOS — Tienda pública
   Diseño premium (solo capa visual). Clases existentes intactas.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

:root {
  --brand: #E30613;
  --brand-soft: color-mix(in srgb, var(--brand) 10%, #fff);
  --brand-ink: color-mix(in srgb, var(--brand) 82%, #1a0505);
  --ink: #0a0a0b;
  --ink-2: #18181b;
  --muted: #52525b;
  --muted-2: #71717a;
  --line: #e4e4e7;
  --line-soft: #f4f4f5;
  --surface: #ffffff;
  --surface-2: #fafafa;
  --bg: #f7f7f8;
  --bg-deep: #09090b;
  --ok-bg: #ecfdf3;
  --ok-fg: #067647;
  --danger-bg: #fef3f2;
  --danger-fg: #b42318;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-xs: 0 1px 2px rgba(9, 9, 11, .04);
  --shadow-sm: 0 1px 2px rgba(9, 9, 11, .04), 0 4px 12px rgba(9, 9, 11, .04);
  --shadow-md: 0 4px 8px rgba(9, 9, 11, .03), 0 16px 40px rgba(9, 9, 11, .07);
  --shadow-lg: 0 12px 24px rgba(9, 9, 11, .05), 0 32px 64px rgba(9, 9, 11, .1);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .28s;
  --dur-fast: .18s;
  --container: 1240px;
  --pad-x: clamp(16px, 3.2vw, 32px);
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body.store-body {
  margin: 0;
  font-family: var(--font);
  font-optical-sizing: auto;
  color: var(--ink);
  background:
    radial-gradient(1200px 480px at 12% -10%, color-mix(in srgb, var(--brand) 7%, transparent), transparent 60%),
    radial-gradient(900px 420px at 92% 8%, rgba(9, 9, 11, .035), transparent 55%),
    var(--bg);
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

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

/* Focus — accesible, discreto */
a:focus-visible,
.btn-store-primary:focus-visible,
.btn-store-ghost:focus-visible,
.store-chip:focus-visible,
.store-nav a:focus-visible,
.store-filters input:focus-visible,
.store-filters select:focus-visible,
.store-menu-btn:focus-visible,
.store-cart-btn:focus-visible,
.store-interest-drawer-close:focus-visible,
.store-faq summary:focus-visible,
.store-product-card:focus-visible,
.store-banner:focus-visible,
.store-hero-carousel-btn:focus-visible,
.store-hero-dot:focus-visible,
.store-pagination a:focus-visible,
.store-product-thumb:focus-visible,
.store-pdp-tab:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--brand) 70%, #fff);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.store-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid rgba(228, 228, 231, .85);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  padding-top: env(safe-area-inset-top, 0px);
}

.store-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  min-height: 68px;
}

.store-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
  min-width: 0;
  color: var(--ink);
}

.store-brand img {
  width: 42px;
  height: 42px;
  padding: 5px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.store-brand:hover img {
  transform: scale(1.04);
  box-shadow: var(--shadow-sm);
}

.store-brand span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.store-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--brand) 28%, transparent);
}

.store-nav {
  margin-left: auto;
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: -0.01em;
}

.store-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  position: relative;
}

.store-nav a:hover {
  color: var(--ink);
  background: var(--line-soft);
}

.store-nav a.is-active {
  color: var(--ink);
  background: var(--line-soft);
  font-weight: 700;
}

.store-nav-panel {
  background: var(--brand) !important;
  color: #fff !important;
  margin-left: 6px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--brand) 22%, transparent);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease), filter var(--dur-fast) var(--ease) !important;
}

.store-nav-panel:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--brand) 30%, transparent);
  background: color-mix(in srgb, var(--brand) 86%, #000) !important;
  color: #fff !important;
}

.store-menu-btn {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0;
  width: 44px;
  height: 44px;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  flex-shrink: 0;
}

.store-menu-btn:hover {
  background: var(--line-soft);
  border-color: #d4d4d8;
}

.store-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 4px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  flex-shrink: 0;
}

.store-cart-btn:hover,
.store-cart-btn.has-items {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
  background: #fff;
}

.store-cart-btn.has-items {
  color: var(--brand);
}

.store-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 4px 10px color-mix(in srgb, var(--brand) 35%, transparent);
  font-variant-numeric: tabular-nums;
}

.store-cart-badge.is-pulse {
  animation: store-interest-count-pulse .65s var(--ease-out) both;
}

.store-cart-badge[hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   Main / sections
   -------------------------------------------------------------------------- */
.store-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) var(--pad-x) calc(clamp(64px, 8vw, 96px) + env(safe-area-inset-bottom, 0px));
  min-width: 0;
}

.store-section {
  margin: clamp(40px, 6vw, 72px) 0;
}

.store-section:first-child {
  margin-top: 0;
}

.store-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.store-section-head .store-lead {
  margin: 0;
  flex: 1 1 100%;
  max-width: 42rem;
}

.store-section-head > a {
  font-size: .9rem;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.store-section-head > a:hover {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.store-section h1,
.store-section h2,
.store-section h3,
.store-product-info h1 {
  font-family: var(--font);
  letter-spacing: -0.035em;
  color: var(--ink);
  font-weight: 800;
}

.store-section h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  line-height: 1.08;
  margin: 0;
}

.store-section h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  margin: 0 0 .35rem;
}

.store-section h3 {
  font-size: 1.05rem;
  margin: 0 0 .5rem;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.store-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(12px, 2vw, 24px) 0 clamp(36px, 5vw, 64px);
  margin-bottom: clamp(8px, 2vw, 20px);
}

.store-hero-copy {
  max-width: 34rem;
  animation: store-fade-up .7s var(--ease-out) both;
}

.store-kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 14px;
}

.store-hero h1 {
  font-family: var(--font);
  font-size: clamp(2.25rem, 5vw, 3.55rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 16px;
  color: var(--ink);
}

.store-lead {
  font-size: clamp(1.02rem, 1.4vw, 1.125rem);
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
  max-width: 36rem;
}

.store-hero-copy > p:not(.store-kicker):not(.store-lead) {
  color: var(--muted-2);
  font-size: .98rem;
  line-height: 1.65;
  margin: 0 0 8px;
  max-width: 34rem;
}

.store-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.store-hero-media {
  position: relative;
  min-height: clamp(280px, 42vw, 480px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, #111114 0%, #1c1c22 48%, #0a0a0b 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  animation: store-fade-scale .8s var(--ease-out) .08s both;
}

.store-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(9, 9, 11, .35) 100%),
    radial-gradient(600px 280px at 80% 20%, color-mix(in srgb, var(--brand) 22%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.store-hero-placeholder {
  background:
    radial-gradient(500px 260px at 70% 30%, color-mix(in srgb, var(--brand) 55%, #1a0505), transparent 65%),
    linear-gradient(145deg, #141416, #2a0a0c 55%, #0a0a0b);
}

.store-hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 1.1s var(--ease-out);
  position: relative;
  z-index: 0;
}

.store-hero:hover .store-hero-media img {
  transform: scale(1.035);
}

/* --------------------------------------------------------------------------
   Hero carousel (full-bleed banners)
   -------------------------------------------------------------------------- */
.store-hero-carousel {
  --hero-carousel-h: min(78vh, 640px);
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: calc(-1 * clamp(28px, 4vw, 48px));
  margin-bottom: clamp(20px, 4vw, 40px);
  min-height: var(--hero-carousel-h);
  background: #0a0a0b;
  color: #fafafa;
  overflow: hidden;
  isolation: isolate;
}

.store-hero-carousel-track {
  position: relative;
  min-height: var(--hero-carousel-h);
}

.store-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .85s var(--ease-out),
    visibility .85s var(--ease-out);
  z-index: 0;
}

.store-hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.store-hero-slide[hidden] {
  display: block !important;
}

.store-hero-slide-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 78% 18%, color-mix(in srgb, var(--brand) 34%, transparent), transparent 68%),
    linear-gradient(145deg, #121214 0%, #1c0a0c 48%, #0a0a0b 100%);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6.5s var(--ease-out);
  z-index: 0;
}

.store-hero-slide.is-active .store-hero-slide-bg {
  transform: scale(1);
}

.store-hero-slide-bg:not(.is-fallback) {
  background-color: #0a0a0b;
  background-repeat: no-repeat;
}

.store-hero-slide-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 9, 11, .88) 0%, rgba(9, 9, 11, .62) 42%, rgba(9, 9, 11, .28) 72%, rgba(9, 9, 11, .45) 100%),
    linear-gradient(180deg, rgba(9, 9, 11, .25) 0%, transparent 35%, rgba(9, 9, 11, .55) 100%);
  pointer-events: none;
}

.store-hero-slide-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--pad-x) clamp(72px, 9vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: var(--hero-carousel-h);
}

.store-hero-slide-copy {
  max-width: 36rem;
  animation: store-fade-up .75s var(--ease-out) both;
}

.store-hero-slide-kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  opacity: .92;
}

.store-hero-slide-kicker::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 10px;
  background: var(--brand);
}

.store-hero-slide-title {
  font-family: var(--font);
  font-size: clamp(2.2rem, 5.2vw, 3.7rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 16px;
  color: #fff;
  text-wrap: balance;
}

.store-hero-slide-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: rgba(250, 250, 250, .78);
  line-height: 1.55;
  margin: 0 0 8px;
  max-width: 32rem;
}

.store-hero-slide-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.store-hero-slide-ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, .35) !important;
  background: rgba(255, 255, 255, .06) !important;
}

.store-hero-slide-ghost:hover {
  background: rgba(255, 255, 255, .14) !important;
  border-color: rgba(255, 255, 255, .55) !important;
}

.store-hero-slide-product {
  justify-self: center;
  align-self: center;
  max-width: min(360px, 100%);
  animation: store-fade-scale .85s var(--ease-out) .1s both;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, .45));
}

.store-hero-slide-product img {
  width: 100%;
  height: auto;
  max-height: min(420px, 52vh);
  object-fit: contain;
}

.store-hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(9, 9, 11, .45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}

.store-hero-carousel-btn:hover {
  background: rgba(9, 9, 11, .72);
  border-color: rgba(255, 255, 255, .45);
}

.store-hero-carousel-btn:active {
  transform: translateY(-50%) scale(.96);
}

.store-hero-carousel-prev { left: max(12px, calc((100vw - var(--container)) / 2 - 8px)); }
.store-hero-carousel-next { right: max(12px, calc((100vw - var(--container)) / 2 - 8px)); }

.store-hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
}

.store-hero-dot {
  position: relative;
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: width var(--dur) var(--ease), background var(--dur) var(--ease);
}

.store-hero-dot::before {
  content: '';
  position: absolute;
  inset: -14px -10px;
}

.store-hero-dot.is-active {
  width: 26px;
  background: var(--brand);
}

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

.store-hero-carousel.is-paused .store-hero-dot.is-active {
  background: #fff;
}

@media (max-width: 860px) {
  .store-hero-carousel {
    --hero-carousel-h: min(88vh, 720px);
  }

  .store-hero-slide-inner {
    grid-template-columns: 1fr;
    padding-top: clamp(40px, 8vw, 64px);
    padding-bottom: clamp(88px, 14vw, 120px);
    text-align: left;
  }

  .store-hero-slide-product {
    order: -1;
    max-width: min(240px, 58vw);
  }

  .store-hero-slide-product img {
    max-height: 220px;
  }

  .store-hero-carousel-prev { left: 10px; }
  .store-hero-carousel-next { right: 10px; }

  .store-hero-slide-title {
    font-size: clamp(1.85rem, 7.2vw, 2.75rem);
    word-break: break-word;
  }

  .store-hero-slide-sub {
    font-size: clamp(.95rem, 3.4vw, 1.08rem);
  }

  .store-hero-slide-cta .btn-store-primary,
  .store-hero-slide-cta .btn-store-ghost {
    min-height: 48px;
  }
}

@media (max-width: 520px) {
  .store-hero-slide-cta {
    flex-direction: column;
  }

  .store-hero-slide-cta .btn-store-primary,
  .store-hero-slide-cta .btn-store-ghost {
    width: 100%;
  }

  .store-hero-carousel-btn {
    width: 44px;
    height: 44px;
  }

  .store-hero-carousel-dots {
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-hero-slide,
  .store-hero-slide-bg {
    transition: none !important;
  }

  .store-hero-slide-copy,
  .store-hero-slide-product {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-store-primary,
.btn-store-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -0.015em;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease);
}

.btn-store-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--brand) 28%, transparent);
}

.btn-store-primary:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--brand) 86%, #000);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--brand) 34%, transparent);
}

.btn-store-primary:active {
  transform: translateY(0);
  background: color-mix(in srgb, var(--brand) 80%, #000);
}

.btn-store-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .85);
  color: var(--ink-2);
  box-shadow: var(--shadow-xs);
}

.btn-store-ghost:hover {
  background: #fff;
  border-color: #d4d4d8;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   Categories / chips / banners
   -------------------------------------------------------------------------- */
.store-chip-grid,
.store-banner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-chip {
  padding: 11px 18px;
  min-height: 44px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink-2);
  white-space: normal;
  line-height: 1.3;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease);
}

.store-chip:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
  box-shadow: var(--shadow-sm);
  color: var(--brand-ink);
  background: #fff;
}

.store-banner {
  flex: 1 1 240px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, #121214 0%, #1a1a1f 100%);
  color: #f4f4f5;
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: var(--shadow-md);
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.store-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.store-banner strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  font-weight: 750;
}

.store-banner span {
  color: #a1a1aa;
  font-size: .9rem;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Product grid & cards
   -------------------------------------------------------------------------- */
.store-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.store-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  color: inherit;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  animation: store-fade-up .55s var(--ease-out) both;
}

.store-product-grid > .store-product-card:nth-child(1) { animation-delay: .02s; }
.store-product-grid > .store-product-card:nth-child(2) { animation-delay: .05s; }
.store-product-grid > .store-product-card:nth-child(3) { animation-delay: .08s; }
.store-product-grid > .store-product-card:nth-child(4) { animation-delay: .11s; }
.store-product-grid > .store-product-card:nth-child(5) { animation-delay: .14s; }
.store-product-grid > .store-product-card:nth-child(6) { animation-delay: .17s; }
.store-product-grid > .store-product-card:nth-child(7) { animation-delay: .2s; }
.store-product-grid > .store-product-card:nth-child(8) { animation-delay: .23s; }

.store-product-card:hover {
  transform: translateY(-6px);
  border-color: #d4d4d8;
  box-shadow: var(--shadow-md);
}

.store-product-card:active {
  transform: translateY(-2px);
}

.store-product-img {
  aspect-ratio: 1;
  background: var(--surface-2) center / cover no-repeat;
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transform-origin: center;
  transition: transform .7s var(--ease-out);
}

.store-product-card:hover .store-product-img {
  transform: scale(1.045);
}

.store-product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(9, 9, 11, .04));
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.store-product-card:hover .store-product-img::after { opacity: 1; }

.store-product-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-height: 0;
}

.store-product-body small {
  display: block;
  color: var(--muted-2);
  line-height: 1.35;
  margin-bottom: 6px;
  word-break: break-word;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.store-product-body h3 {
  margin: 0 0 10px;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  word-break: break-word;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.store-product-body .store-price,
.store-product-body > b {
  margin-top: auto;
  padding-top: 4px;
}

.store-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.store-price b,
.store-product-body > b {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.store-price s {
  color: var(--muted-2);
  margin-right: 0;
  font-size: .82rem;
  font-weight: 500;
}

.store-price-lg {
  margin: .35rem 0 1rem;
}

.store-price-lg b {
  font-size: clamp(1.65rem, 3vw, 2.05rem);
  letter-spacing: -0.04em;
}

.store-badge-out,
.store-badge-in,
.store-badge-new {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .02em;
  padding: 5px 10px;
  border-radius: 999px;
  margin-top: 10px;
  line-height: 1.2;
}

.store-badge-out {
  background: var(--danger-bg);
  color: var(--danger-fg);
  border: 1px solid color-mix(in srgb, var(--danger-fg) 12%, transparent);
}

.store-badge-in {
  background: var(--ok-bg);
  color: var(--ok-fg);
  border: 1px solid color-mix(in srgb, var(--ok-fg) 12%, transparent);
}

.store-badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  margin-top: 0;
  background: var(--brand);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--brand) 30%, transparent);
}

/* --------------------------------------------------------------------------
   Filters
   -------------------------------------------------------------------------- */
.store-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 16px;
  margin-bottom: 28px;
  align-items: end;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.store-filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.store-filter-field label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted-2);
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.store-filter-label-spacer {
  display: block;
  height: 1.05rem;
}

.store-filters input,
.store-filters select {
  width: 100%;
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .92rem;
  background: var(--surface-2);
  color: var(--ink);
  line-height: 1.35;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.store-filters select {
  cursor: pointer;
  padding-right: 2.5rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2371717a' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .95rem center;
  background-size: 12px 8px;
  text-overflow: ellipsis;
}

.store-filters input:hover,
.store-filters select:hover {
  border-color: #d4d4d8;
}

.store-filters input:focus,
.store-filters select:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 12%, transparent);
}

.store-filters input::placeholder { color: #a1a1aa; }

.store-filter-search { grid-column: span 2; }

.store-filter-footer {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.store-filter-footer .store-check {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink-2);
  text-transform: none;
  letter-spacing: 0;
  font-size: .92rem;
  font-weight: 600;
  position: relative;
  z-index: 0;
}

.store-filter-footer .store-filter-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 220px;
  min-width: 0;
  box-sizing: border-box;
  align-self: flex-start;
  overflow: hidden;
  background: var(--brand);
}

.store-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .9rem;
  line-height: 1.4;
}

.store-check input {
  margin-top: .2rem;
  flex-shrink: 0;
  accent-color: var(--brand);
}

/* --------------------------------------------------------------------------
   Promos / FAQ / testimonials / lead
   -------------------------------------------------------------------------- */
.store-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.store-promo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.store-promo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.store-promo-card strong {
  letter-spacing: -0.02em;
  font-size: 1.02rem;
}

.store-promo-card span {
  display: block;
  color: var(--muted);
  font-size: .88rem;
  margin-top: 8px;
  line-height: 1.45;
}

.store-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.store-testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  margin: 0;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.store-testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.store-testimonial p {
  line-height: 1.6;
  margin: 0 0 14px;
  color: var(--ink-2);
  font-size: .98rem;
  letter-spacing: -0.01em;
}

.store-testimonial footer {
  font-size: .82rem;
  color: var(--muted-2);
  line-height: 1.4;
  font-weight: 600;
}

.store-faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.store-faq details[open] {
  border-color: #d4d4d8;
  box-shadow: var(--shadow-sm);
}

.store-faq summary {
  cursor: pointer;
  line-height: 1.45;
  padding-right: 8px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  list-style: none;
}

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

.store-faq summary::after {
  content: '+';
  float: right;
  color: var(--muted-2);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
}

.store-faq details[open] summary::after { content: '−'; }

.store-faq p {
  margin: .75rem 0 0;
  line-height: 1.65;
  color: var(--muted);
}

.store-lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 680px;
  margin-top: 18px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.store-lead-full { grid-column: 1 / -1; }

.store-lead-form label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.store-lead-form input,
.store-lead-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--surface-2);
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.store-lead-form input:focus,
.store-lead-form textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 12%, transparent);
}

.store-alert-ok {
  background: var(--ok-bg);
  color: var(--ok-fg);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in srgb, var(--ok-fg) 14%, transparent);
}

.store-alert-bad {
  background: var(--danger-bg);
  color: var(--danger-fg);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in srgb, var(--danger-fg) 14%, transparent);
}

.store-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.store-empty {
  padding: clamp(40px, 6vw, 64px) 24px;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
}

.store-empty h1 { margin-bottom: 8px; }

.store-pagination {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.store-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink-2);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur-fast) var(--ease);
}

.store-pagination a:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: #d4d4d8;
}

.store-results p {
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.65;
}

.store-tabs {
  display: grid;
  gap: 18px;
}

.store-tabs > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-xs);
}

.store-tabs p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Product detail
   -------------------------------------------------------------------------- */
.store-product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: 8px 0 24px;
}

.store-product-gallery {
  position: sticky;
  top: calc(92px + env(safe-area-inset-top, 0px));
}

.store-product-main-img {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--surface) center / cover no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}

.store-product-main-img.is-empty {
  background: var(--surface-2);
}

.store-product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.store-product-main-img:hover {
  box-shadow: var(--shadow-md);
}

.store-product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.store-product-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: var(--radius-sm);
  background: #fff center / contain no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
  cursor: pointer;
  appearance: none;
}

.store-product-thumb:hover {
  transform: translateY(-2px);
  border-color: #a1a1aa;
}

.store-product-thumb.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.store-product-info .store-kicker {
  margin-bottom: .35rem;
}

.store-product-info h1 {
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  line-height: 1.1;
  margin: .2rem 0 .55rem;
  word-break: break-word;
}

.store-meta-line {
  margin: 0 0 .45rem;
  color: var(--muted);
  line-height: 1.45;
  font-size: .95rem;
}

.store-product-sku {
  margin: 0 0 .85rem;
  font-size: .88rem;
  color: var(--muted-2);
  letter-spacing: .01em;
}

.store-product-sku span {
  font-weight: 750;
  color: var(--ink-2);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .72rem;
  margin-right: 6px;
}

.store-product-info .store-price { margin: .35rem 0; }

.store-product-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.store-specs {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.store-specs dt {
  font-size: .7rem;
  color: var(--muted-2);
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.store-specs dd {
  margin: 0;
  line-height: 1.45;
  color: var(--ink-2);
  font-weight: 600;
}

/* PDP tabs — Descripción / Opiniones */
.store-pdp-tabs {
  padding-top: 8px;
}

.store-pdp-tablist {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.store-pdp-tab {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-weight: 650;
  font-size: .95rem;
  color: var(--muted-2);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.store-pdp-tab svg {
  flex-shrink: 0;
  opacity: .7;
}

.store-pdp-tab:hover {
  color: var(--ink);
}

.store-pdp-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.store-pdp-tab.is-active svg {
  opacity: 1;
}

.store-pdp-panel {
  display: none;
}

.store-pdp-panel.is-active {
  display: block;
}

.store-pdp-panel-inner {
  margin-top: 0;
  padding: clamp(20px, 3vw, 28px);
  background: #f3f3f4;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.store-pdp-panel-inner > p:first-child {
  margin-top: 0;
}

.store-pdp-panel-inner h3 {
  margin: 1.35rem 0 .45rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.store-pdp-panel-inner p {
  margin: 0 0 .85rem;
  line-height: 1.7;
  color: #3f3f46;
}

.store-pdp-disclaimer {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--line) 80%, #000);
  font-size: .88rem;
  color: var(--muted-2) !important;
  font-style: italic;
}

.store-pdp-muted {
  color: var(--muted) !important;
}

.store-pdp-reviews-empty {
  text-align: center;
  padding: clamp(36px, 5vw, 56px) 24px;
}

.store-pdp-empty-title {
  margin: 0 0 .35rem !important;
  font-weight: 700;
  color: var(--ink) !important;
  font-size: 1.05rem;
}

.store-related .store-section-head h2 {
  max-width: 36ch;
  line-height: 1.25;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.store-footer {
  background:
    radial-gradient(700px 280px at 10% 0%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 60%),
    linear-gradient(180deg, #111114 0%, var(--bg-deep) 100%);
  color: #a1a1aa;
  margin-top: clamp(40px, 6vw, 72px);
  padding: clamp(40px, 6vw, 64px) var(--pad-x) calc(36px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.store-footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.store-footer strong {
  display: block;
  color: #fafafa;
  font-size: .95rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-weight: 750;
}

.store-footer p {
  margin: 0;
  line-height: 1.55;
  max-width: 28rem;
  font-size: .92rem;
}

.store-footer a {
  display: block;
  color: #d4d4d8;
  margin-top: 8px;
  font-size: .92rem;
  width: fit-content;
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.store-footer a:hover {
  color: #fff;
  transform: translateX(2px);
}

.store-footer small {
  display: block;
  margin-top: 14px;
  font-size: .75rem;
  color: #71717a;
}

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */
@keyframes store-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes store-fade-scale {
  from {
    opacity: 0;
    transform: scale(.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .store-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .store-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .store-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .store-nav a {
    width: 100%;
    white-space: normal;
    border-radius: var(--radius-sm);
    padding: 14px 14px;
    min-height: 44px;
  }

  .store-nav-panel {
    margin-left: 0;
    text-align: center;
    margin-top: 4px;
  }

  .store-nav.is-open { display: flex; }

  .store-menu-btn { display: inline-flex; align-items: center; justify-content: center; margin-left: 0; }

  .store-cart-btn { margin-left: auto; }

  .store-hero,
  .store-product-detail { grid-template-columns: 1fr; }

  .store-product-gallery { position: static; }

  .store-product-thumb {
    width: 64px;
    height: 64px;
  }

  .store-pdp .store-pdp-gallery {
    position: static;
  }

  .store-pdp-tab {
    flex: 1 1 auto;
    justify-content: center;
    padding: 14px 12px;
    font-size: .9rem;
    min-height: 48px;
  }

  .store-related .store-section-head h2 {
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);
  }

  .store-hero-media { min-height: 260px; }

  .store-lead-form { grid-template-columns: 1fr; padding: 18px; }

  .store-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
  }

  .store-filter-search { grid-column: span 2; }

  .store-header-inner { min-height: 60px; padding-top: 12px; padding-bottom: 12px; }

  .store-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .store-filters { grid-template-columns: 1fr; }

  .store-filter-search { grid-column: span 1; }

  .store-header-inner { flex-wrap: nowrap; gap: 10px; }

  .store-brand { flex: 1 1 auto; max-width: calc(100% - 108px); }

  .store-brand span { font-size: .92rem; }

  .store-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .store-product-body { padding: 12px 12px 14px; }

  .store-product-body h3 {
    font-size: .88rem;
    min-height: 2.5em;
  }

  .store-price b,
  .store-product-body > b { font-size: .98rem; }

  .store-hero h1 { font-size: clamp(1.9rem, 9vw, 2.4rem); }

  .store-hero-cta .btn-store-primary,
  .store-hero-cta .btn-store-ghost,
  .store-filter-footer .store-filter-btn {
    width: 100%;
    max-width: none;
    min-height: 48px;
  }

  .store-hero-cta { flex-direction: column; }

  .store-product-card .store-interest-add {
    min-height: 44px;
    font-size: .86rem;
  }

  .store-card-qty button {
    width: 44px;
    height: 44px;
  }

  .store-banner {
    flex: 1 1 100%;
    min-width: 0;
  }

  .store-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 360px) {
  .store-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1400px) {
  :root { --container: 1320px; }
}

/* --------------------------------------------------------------------------
   Lista de interés (multi-producto)
   -------------------------------------------------------------------------- */
.store-product-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  min-height: 0;
}

.store-card-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: fit-content;
  margin: 0 12px 14px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.store-card-qty.has-qty {
  border-color: color-mix(in srgb, var(--brand) 40%, var(--line));
  background: #fff;
}

.store-card-qty button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.store-card-qty button:hover:not(:disabled) {
  background: var(--brand);
  color: #fff;
  transform: scale(1.04);
}

.store-card-qty button:disabled {
  opacity: .35;
  cursor: default;
}

/* Card steppers omit the qty number; collapse any leftover val node */
.store-card-qty .store-card-qty-val,
.store-card-qty [data-card-qty-val] {
  display: none;
  width: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.store-card-qty-lg {
  margin: 0;
  padding: 6px;
}

.store-card-qty-lg button {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
}

/* Agregar / En solicitud — solid RAISE brand red (match .btn-store-primary) */
.store-product-card .store-interest-add {
  margin: 0 12px 14px;
  width: calc(100% - 24px);
  padding: 10px 12px;
  border-radius: 999px;
  border: 0;
  background: var(--brand);
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--brand) 26%, transparent);
  transition:
    background var(--dur-fast) var(--ease),
    box-shadow var(--dur) var(--ease),
    filter var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}

.store-product-card .store-interest-add:hover {
  background: color-mix(in srgb, var(--brand) 86%, #000);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--brand) 32%, transparent);
}

.store-product-card .store-interest-add:active {
  transform: translateY(0);
  filter: brightness(.98);
}

.store-product-card .store-interest-add.is-added {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--brand) 22%, transparent);
}

.store-interest-add-lg {
  min-width: 160px;
}

/* --------------------------------------------------------------------------
   Solicitud — panel derecho (drawer)
   -------------------------------------------------------------------------- */
body.store-interest-drawer-open {
  overflow: hidden;
}

.store-interest-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.store-interest-drawer[hidden] { display: none !important; }

.store-interest-drawer.is-open {
  pointer-events: auto;
}

.store-interest-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, .42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .28s var(--ease-out);
}

.store-interest-drawer.is-open .store-interest-drawer-backdrop {
  opacity: 1;
}

.store-interest-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -16px 0 48px rgba(9, 9, 11, .12);
  transform: translateX(100%);
  transition: transform .32s var(--ease-out);
  outline: none;
}

.store-interest-drawer.is-open .store-interest-drawer-panel {
  transform: translateX(0);
}

.store-interest-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.store-interest-drawer-kicker {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .66rem;
  font-weight: 700;
  color: var(--brand);
}

.store-interest-drawer-head h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
}

.store-interest-drawer-close {
  border: 0;
  background: var(--line-soft);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.store-interest-drawer-close:hover {
  background: var(--line);
  color: var(--ink);
}

.store-interest-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-overflow-scrolling: touch;
}

.store-interest-drawer-empty {
  margin: auto;
  text-align: center;
  padding: 32px 16px;
  color: var(--muted);
}

.store-interest-drawer-empty strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
  font-size: 1rem;
}

.store-interest-drawer-empty .small {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
}

.store-interest-drawer-foot {
  flex-shrink: 0;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
  display: grid;
  gap: 12px;
}

.store-interest-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .9rem;
  color: var(--muted);
}

.store-interest-summary-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.store-interest-summary strong {
  color: var(--ink);
  font-size: 1.05rem;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.store-interest-summary strong.is-pulse {
  color: var(--brand);
  animation: store-interest-count-pulse .65s var(--ease-out) both;
}

.store-interest-subtotal {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-left: auto;
  font-size: .85rem;
  color: var(--muted-2);
}

.store-interest-subtotal strong {
  font-size: 1rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.store-interest-subtotal[hidden] { display: none !important; }

.store-interest-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.store-interest-row-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #fff center / contain no-repeat;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.store-interest-row-thumb.is-empty {
  background:
    linear-gradient(135deg, var(--line-soft), #fff),
    #fff;
}

.store-interest-row-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.store-interest-row-info strong {
  font-size: .88rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-interest-row-meta {
  font-size: .75rem;
  color: var(--muted-2);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-interest-row-price {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}

.store-interest-row-qty {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.store-interest-row-qty button {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.store-interest-row-qty button:hover {
  border-color: color-mix(in srgb, var(--brand) 40%, var(--line));
  color: var(--brand);
}

.store-interest-row-qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: .88rem;
}

.store-interest-remove {
  color: var(--muted-2) !important;
  border: 0 !important;
  background: transparent !important;
  width: 44px !important;
  height: 44px !important;
}

.store-interest-remove:hover {
  color: var(--brand) !important;
}

.store-interest-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.store-interest-actions .btn-store-primary {
  flex: 1 1 auto;
  min-height: 46px;
  padding: 10px 18px;
}

.store-interest-actions .btn-store-ghost {
  min-height: 46px;
  padding: 10px 16px;
}

.store-interest-actions .btn-store-primary:disabled,
.store-interest-actions .btn-store-ghost:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.store-interest-chips {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-interest-chips li {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: .85rem;
  font-weight: 600;
}

.store-interest-preview {
  grid-column: 1 / -1;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.store-interest-empty-hint {
  margin: 0;
  color: var(--muted-2);
}

@media (max-width: 640px) {
  .store-interest-drawer-panel {
    width: 100%;
  }

  .store-interest-drawer-head {
    padding-top: calc(16px + env(safe-area-inset-top, 0px));
  }

  .store-interest-row {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-areas:
      "thumb info"
      "thumb qty";
  }

  .store-interest-row-thumb { grid-area: thumb; width: 48px; height: 48px; }
  .store-interest-row-info { grid-area: info; }
  .store-interest-row-qty {
    grid-area: qty;
    justify-content: flex-start;
    margin-top: 4px;
  }

  .store-interest-row-qty span {
    min-width: 28px;
    font-size: 1rem;
  }

  .store-interest-actions {
    flex-direction: column-reverse;
  }

  .store-interest-actions .btn-store-primary,
  .store-interest-actions .btn-store-ghost { width: 100%; }
}

@media (min-width: 641px) and (max-width: 860px) {
  .store-interest-drawer-panel {
    width: min(440px, 92vw);
  }
}

/* --------------------------------------------------------------------------
   Modal enviar solicitud
   -------------------------------------------------------------------------- */
body.store-lead-modal-open {
  overflow: hidden;
}

.store-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

.store-lead-modal[hidden] { display: none !important; }

.store-lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, .52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: store-fade-up .28s var(--ease-out) both;
}

.store-lead-modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 22px 22px 18px;
  animation: store-fade-scale .32s var(--ease-out) both;
}

.store-lead-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.store-lead-modal-kicker {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
  font-weight: 700;
  color: var(--brand);
}

.store-lead-modal-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.store-lead-modal-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
  max-width: 36rem;
}

.store-lead-modal-close {
  border: 0;
  background: var(--line-soft);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.store-lead-modal-close:hover {
  background: var(--line);
  color: var(--ink);
}

.store-lead-modal-items {
  margin-bottom: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.store-lead-modal-items-label {
  margin: 0 0 10px;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.store-lead-modal-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-lead-modal-chips li {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
}

.store-lead-modal-empty {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.store-lead-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.store-lead-field-full { grid-column: 1 / -1; }

.store-lead-req {
  color: var(--brand);
  font-weight: 800;
}

.store-lead-field-hint {
  margin: 6px 0 0;
  font-size: .75rem;
  color: var(--muted-2);
  line-height: 1.35;
}

.store-lead-field label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}

.store-lead-field input,
.store-lead-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--surface-2);
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.store-lead-field input:focus,
.store-lead-field textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 12%, transparent);
}

.store-lead-modal-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.store-lead-modal-footer .btn-store-primary,
.store-lead-modal-footer .btn-store-ghost {
  min-height: 46px;
}

.store-lead-toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(8px);
  z-index: 100;
  max-width: min(420px, calc(100% - 32px));
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .92rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s var(--ease-out);
}

.store-lead-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.store-lead-toast[hidden] { display: none !important; }

.store-lead-toast.is-ok {
  background: var(--ok-bg);
  color: var(--ok-fg);
  border: 1px solid color-mix(in srgb, var(--ok-fg) 16%, transparent);
}

.store-lead-toast.is-bad {
  background: var(--danger-bg);
  color: var(--danger-fg);
  border: 1px solid color-mix(in srgb, var(--danger-fg) 16%, transparent);
}

/* Agregar feedback — brand: white / black / RAISE red */
.store-lead-toast.is-add {
  background: #0a0a0a;
  color: #fff;
  border: 1px solid color-mix(in srgb, var(--brand) 55%, #0a0a0a);
  box-shadow:
    0 10px 28px rgba(9, 9, 11, .28),
    0 0 0 1px color-mix(in srgb, var(--brand) 25%, transparent);
}

@keyframes store-interest-count-pulse {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.22);
    color: var(--brand);
  }
  100% {
    transform: scale(1);
    color: var(--brand);
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-interest-drawer-backdrop,
  .store-interest-drawer-panel,
  .store-interest-summary strong.is-pulse,
  .store-cart-badge.is-pulse,
  .store-lead-toast {
    animation: none !important;
    transition: none !important;
  }

  .store-interest-drawer.is-open .store-interest-drawer-panel {
    transform: translateX(0);
  }

  .store-lead-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@media (min-width: 700px) {
  .store-lead-modal {
    align-items: center;
  }
}

@media (max-width: 560px) {
  .store-lead-modal-grid { grid-template-columns: 1fr; }
  .store-lead-modal-footer { flex-direction: column-reverse; }
  .store-lead-modal-footer .btn-store-primary,
  .store-lead-modal-footer .btn-store-ghost { width: 100%; }
  .store-lead-modal-card {
    border-radius: 18px 18px 14px 14px;
    padding: 18px 16px 16px;
  }
}

/* --------------------------------------------------------------------------
   Catálogo — sidebar filtros (store-filters-*)
   -------------------------------------------------------------------------- */
.store-catalog-section .store-section-head {
  margin-bottom: 18px;
}

.store-catalog-form {
  margin: 0;
}

.store-catalog-layout {
  display: grid;
  grid-template-columns: minmax(260px, 280px) minmax(0, 1fr);
  gap: 28px 32px;
  align-items: start;
}

.store-filters-mobile-bar {
  display: none;
}

.store-filters-backdrop {
  display: none;
}

.store-filters-panel {
  position: sticky;
  top: calc(88px + env(safe-area-inset-top, 0px));
  align-self: start;
  max-height: calc(100vh - 104px - env(safe-area-inset-top, 0px));
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.store-filters-panel-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.store-filters-panel-head strong {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.store-filters-panel-close {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  padding: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-filters-scroll {
  overflow: auto;
  flex: 1 1 auto;
  padding: 0 4px 8px;
}

.store-filters-section {
  border-bottom: 1px solid #e5e5e5;
  margin: 0;
  padding: 0;
}

.store-filters-section:last-child {
  border-bottom: 0;
}

.store-filters-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 14px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #111;
  user-select: none;
}

.store-filters-summary::-webkit-details-marker {
  display: none;
}

.store-filters-summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform var(--dur-fast) var(--ease);
  flex-shrink: 0;
  margin-top: -4px;
}

.store-filters-section[open] > .store-filters-summary::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.store-filters-body {
  padding: 0 14px 16px;
}

.store-filters-option-search {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  font-size: .88rem;
  background: #fafafa;
  color: var(--ink);
}

.store-filters-option-search:focus {
  outline: none;
  border-color: #111;
  background: #fff;
}

.store-filters-options {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 220px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-filters-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 2px;
  font-size: .9rem;
  line-height: 1.35;
  color: #1a1a1a;
  cursor: pointer;
  min-height: 40px;
}

.store-filters-check input {
  margin-top: .2rem;
  flex-shrink: 0;
  accent-color: var(--brand);
  width: 15px;
  height: 15px;
}

.store-filters-check span {
  min-width: 0;
}

.store-filters-check em {
  font-style: normal;
  color: #71717a;
  font-weight: 500;
}

.store-filters-price {
  --price-left: 0%;
  --price-right: 100%;
}

.store-filters-range-track {
  position: relative;
  height: 28px;
  margin: 4px 0 14px;
}

.store-filters-range-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #ddd;
  transform: translateY(-50%);
}

.store-filters-range-track::after {
  content: "";
  position: absolute;
  left: var(--price-left);
  right: calc(100% - var(--price-right));
  top: 50%;
  height: 2px;
  background: #111;
  transform: translateY(-50%);
}

.store-filters-range {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 28px;
  margin: 0;
  appearance: none;
  background: transparent;
  pointer-events: none;
}

.store-filters-range::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #111;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #111;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.store-filters-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #111;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #111;
  cursor: pointer;
  pointer-events: auto;
}

.store-filters-range::-webkit-slider-runnable-track {
  height: 2px;
  background: transparent;
}

.store-filters-range::-moz-range-track {
  height: 2px;
  background: transparent;
}

.store-filters-price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.store-filters-price-inputs label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #71717a;
}

.store-filters-price-inputs input {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  font-size: .92rem;
  color: var(--ink);
  background: #fff;
}

.store-filters-price-inputs input:focus {
  outline: none;
  border-color: #111;
}

.store-filters-apply {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.store-filters-apply:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.store-filters-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
}

.store-filters-clear {
  font-size: .82rem;
  font-weight: 600;
  color: #52525b;
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.store-filters-clear:hover {
  color: var(--brand);
}

.store-filters-submit {
  min-width: 0;
  flex: 0 0 auto;
  padding-inline: 18px;
  min-height: 44px;
}

.store-catalog-main {
  min-width: 0;
}

.store-filters-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(140px, .7fr) minmax(140px, .7fr) auto;
  gap: 12px 14px;
  align-items: end;
  margin-bottom: 22px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.store-filters-toolbar .store-filter-field label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.store-filters-toolbar .store-filter-field input,
.store-filters-toolbar .store-filter-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .9rem;
  background: var(--surface-2);
  color: var(--ink);
}

.store-filters-toolbar .store-filter-field select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2371717a' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
}

.store-filters-toolbar .store-filter-field input:focus,
.store-filters-toolbar .store-filter-field select:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 10%, transparent);
}

.store-filters-toolbar-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 160px;
}

.store-filters-toolbar-actions .store-filter-btn {
  width: 100%;
  max-width: none;
}

@media (max-width: 1100px) {
  .store-filters-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .store-filters-toolbar .store-filter-search {
    grid-column: 1 / -1;
  }

  .store-filters-toolbar-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .store-filters-toolbar-actions .store-filter-btn {
    width: auto;
    min-width: 140px;
  }
}

@media (max-width: 1024px) {
  .store-catalog-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .store-filters-mobile-bar {
    display: block;
  }

  .store-filters-toggle {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .store-filters-toggle:hover {
    border-color: var(--brand);
    color: var(--brand);
  }

  .store-filters-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    z-index: 80;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease);
  }

  body.store-filters-open .store-filters-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .store-filters-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(340px, 90vw);
    max-height: none;
    z-index: 81;
    transform: translateX(-105%);
    transition: transform var(--dur) var(--ease);
    box-shadow: 8px 0 32px rgba(0, 0, 0, .18);
    padding-top: env(safe-area-inset-top, 0px);
    border-radius: 0;
  }

  .store-filters-panel.is-open {
    transform: translateX(0);
  }

  .store-filters-panel-head {
    display: flex;
  }

  .store-filters-check {
    min-height: 44px;
    align-items: center;
    padding: 10px 2px;
  }

  body.store-filters-open:not(.store-interest-drawer-open) {
    overflow: hidden;
  }
}

@media (max-width: 520px) {
  .store-filters-toolbar {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .store-filters-toolbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .store-filters-toolbar-actions .store-filter-btn {
    width: 100%;
    min-height: 48px;
  }

  .store-filters-panel {
    width: min(100%, 100vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-filters-panel,
  .store-filters-backdrop,
  .store-filters-summary::after {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   PDP enhance — gallery thumbs LEFT, info card, WhatsApp bar (scoped)
   -------------------------------------------------------------------------- */
.store-pdp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 4px 0 18px;
  font-size: .82rem;
  color: var(--muted-2);
  line-height: 1.4;
}

.store-pdp-breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.store-pdp-breadcrumbs a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.store-pdp-bc-sep {
  opacity: .45;
  user-select: none;
}

.store-pdp-bc-current {
  color: var(--ink-2);
  font-weight: 600;
}

/* Desktop: vertical thumbs LEFT | large main RIGHT (GNC-style) */
.store-pdp .store-pdp-gallery {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas: "thumbs main";
  gap: 14px;
  align-items: start;
  position: sticky;
  top: calc(92px + env(safe-area-inset-top, 0px));
}

.store-pdp .store-pdp-gallery.is-single {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "main";
}

.store-pdp .store-pdp-thumbs {
  grid-area: thumbs;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  margin: 0;
  padding: 0;
  max-height: min(560px, 70vh);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
}

.store-pdp .store-pdp-thumbs[hidden] {
  display: none !important;
}

.store-pdp .store-pdp-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background-color: #fff;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.store-pdp .store-pdp-thumb.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

.store-pdp .store-pdp-stage {
  grid-area: main;
  min-width: 0;
}

.store-pdp .store-pdp-main {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
}

.store-pdp .store-pdp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  appearance: none;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.store-pdp .store-pdp-nav:hover {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand);
}

.store-pdp .store-pdp-nav-prev { left: 10px; }
.store-pdp .store-pdp-nav-next { right: 10px; }

.store-pdp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-xs);
}

.store-pdp-card h1 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.15;
  margin: 0 0 .55rem;
  word-break: break-word;
}

.store-pdp-sku {
  margin: 0 0 .65rem !important;
}

.store-pdp-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 .75rem;
}

.store-pdp-stars {
  display: inline-flex;
  gap: 2px;
  color: #c4c4c8;
}

.store-pdp-reviews-link {
  font-size: .9rem;
  font-weight: 650;
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.store-pdp-reviews-link:hover {
  color: var(--brand);
}

.store-pdp-price {
  margin: .15rem 0 1rem !important;
}

.store-pdp-price b {
  color: var(--brand);
  font-size: clamp(1.55rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.store-pdp-price s {
  margin-right: 10px;
  color: var(--muted-2);
  font-size: 1rem;
  font-weight: 550;
}

.store-pdp-buyrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 1rem;
}

.store-pdp-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}

.store-pdp-qty button {
  width: 42px;
  height: 44px;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
}

.store-pdp-qty button:hover {
  background: var(--surface-2);
  color: var(--brand);
}

.store-pdp-qty [data-pdp-qty-val] {
  min-width: 36px;
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.store-pdp-add {
  flex: 1 1 180px;
  min-height: 48px;
}

.store-pdp-avail {
  margin: 0 0 1rem;
  padding: 12px 14px;
  font-size: .9rem;
  line-height: 1.45;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--ink-2);
  border: 1px solid var(--line);
}

.store-pdp-avail.is-in {
  border-color: color-mix(in srgb, #16a34a 28%, var(--line));
  background: color-mix(in srgb, #16a34a 6%, #fff);
}

.store-pdp-avail.is-out {
  border-color: color-mix(in srgb, var(--brand) 22%, var(--line));
  background: color-mix(in srgb, var(--brand) 5%, #fff);
}

.store-pdp-specs {
  margin-top: 0;
}

.store-pdp-specs a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.store-pdp-specs a:hover {
  color: var(--brand);
}

.store-pdp-whatsapp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin: 8px 0 28px;
  padding: 16px 20px;
  background: #ececee;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.store-pdp-whatsapp p {
  margin: 0;
  font-size: .98rem;
  font-weight: 650;
  color: var(--ink-2);
  line-height: 1.4;
}

.store-pdp-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff !important;
  font-weight: 750;
  font-size: .9rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 6px 14px color-mix(in srgb, #25D366 35%, transparent);
  transition: transform var(--dur-fast) var(--ease), filter var(--dur-fast) var(--ease);
}

.store-pdp-wa-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .store-pdp .store-pdp-gallery {
    position: static;
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "thumbs";
    gap: 12px;
  }

  .store-pdp .store-pdp-gallery.is-single {
    grid-template-areas: "main";
  }

  .store-pdp .store-pdp-thumbs {
    grid-area: thumbs;
    flex-direction: row;
    flex-wrap: nowrap;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .store-pdp .store-pdp-stage {
    grid-area: main;
  }

  .store-pdp .store-pdp-thumb {
    width: 64px;
    height: 64px;
  }

  .store-pdp .store-pdp-nav {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 560px) {
  .store-pdp-buyrow {
    flex-direction: column;
    align-items: stretch;
  }

  .store-pdp-qty {
    width: 100%;
    justify-content: space-between;
  }

  .store-pdp-qty button {
    width: 48px;
    height: 48px;
  }

  .store-pdp-qty [data-pdp-qty-val] {
    flex: 1;
    min-width: 0;
    font-size: 1.1rem;
  }

  .store-pdp-add {
    flex: 1 1 auto;
    width: 100%;
    min-height: 52px;
  }

  .store-pdp-card {
    padding: 18px 16px;
  }

  .store-pdp-card h1 {
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
  }

  .store-pdp-whatsapp {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .store-pdp-wa-btn {
    width: 100%;
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-pdp-wa-btn {
    transition: none;
  }
  .store-pdp-wa-btn:hover {
    transform: none;
  }
}

