/* ============================================================
   Offir — Premium Viral Lifestyle Ecommerce · Mobile-First
   ============================================================ */
:root {
  --bg:    #ffffff;
  --bg2:   #f9f9f9;
  --card:  #ffffff;
  --line:  rgba(0,0,0,.08);

  --text:  #111111;
  --muted: #666666;

  --red:  #000000;
  --red2: #1a1a1a;
  --green: #25D366;

  --radius:  12px;
  --radius2: 18px;

  --font-title: "Bebas Neue", "Anton", sans-serif-condensed, sans-serif;
  --font-body:  "Inter", "Helvetica Neue", sans-serif;

  /* Touch-safe spacing */
  --tap: 44px;
  --gap: 14px;
  --section-pad-mobile: 24px;
  --section-pad-desktop: 80px;

  /* UI Scales mapped from JS */
  --scale-btn: var(--mobile-scale-btn, 1);
  --scale-title: var(--mobile-scale-title, 1);
  --scale-text: var(--mobile-scale-text, 1);
  --scale-media: var(--mobile-scale-media, 1);
  --scale-product: var(--mobile-scale-product, 1);
}

@media(min-width: 900px) {
  :root {
    --scale-btn: var(--desktop-scale-btn, 1);
    --scale-title: var(--desktop-scale-title, 1);
    --scale-text: var(--desktop-scale-text, 1);
    --scale-media: var(--desktop-scale-media, 1);
    --scale-product: var(--desktop-scale-product, 1);
  }
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; padding: 0; margin: 0; }
html { overflow-x: hidden; width: 100%; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  overflow-x: hidden;
  width: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img, video { 
  max-width: 100%; 
  display: block; 
  image-rendering: -webkit-optimize-contrast; /* Nitidez extra en móviles */
}



/* ── Layout ── */
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: var(--section-pad-mobile) 0;
  position: relative;
}

@media(min-width: 900px) {
  .section { padding: var(--section-pad-desktop) 0; }
}

/* ── Section headers ── */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-title);
  font-size: calc(clamp(32px, 8vw, 48px) * var(--scale-title));
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: .9;
}

.section-sub {
  margin-top: 6px;
  font-size: calc(16px * var(--scale-text));
  font-weight: 500;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.55;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(48px * var(--scale-btn));
  padding: 0 calc(26px * var(--scale-btn));
  border-radius: 999px;
  font-weight: 900;
  font-size: calc(13px * var(--scale-btn));
  letter-spacing: .8px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .2s ease, opacity .2s ease, background .2s ease, box-shadow .2s ease;
  user-select: none;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.97); }
@media(min-width: 900px) {
  .btn {
    min-height: calc(44px * var(--scale-btn));
    padding: 0 calc(24px * var(--scale-btn));
    font-size: calc(12px * var(--scale-btn));
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-2px); }
}

.btn-primary {
  background: var(--red);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  color: #fff;
  border: 1px solid var(--red);
}
.btn-primary:hover { 
  background: #222222;
  box-shadow: 0 6px 16px rgba(0,0,0,.14);
}

.btn-outline {
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
}
.btn-outline:hover { background: rgba(0,0,0,.04); }

/* ── Badge ── */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

@media (max-width: 768px) {
  /* Habilitar filtros de fondo con aceleración por GPU para estética premium tipo iOS */
  .navbar, .cart-drawer, .sticky-buy, .hero-urgency-badge {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #111111;
}
.loader-inner { text-align: center; }
.loader-title {
  font-family: var(--font-title);
  font-size: clamp(60px, 12vw, 100px);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.loader-sub {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 900;
  color: #666666;
  letter-spacing: .6px;
  text-transform: uppercase;
}

@media(max-width: 768px) {
  .loader-title { font-size: calc(clamp(60px, 12vw, 100px) * var(--scale-title)); }
  .loader-sub { font-size: calc(13px * var(--scale-text)); }
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  padding: 14px 0;
  transition: all .3s ease;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.navbar-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #111111;
}
.brand {
  font-family: var(--font-title);
  font-size: clamp(28px, 6vw, 40px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111111;
}
/* SVG logo in navbar */
.brand-svg {
  display: flex;
  align-items: center;
  line-height: 1;
  color: #111111;
}
.brand-svg svg {
  height: clamp(28px, 7vw, 36px);
  width: auto;
  min-width: 80px;
  max-width: 160px;
  display: block;
  fill: currentColor;
  transition: opacity 0.2s ease;
}
.brand-svg:hover svg { opacity: 0.75; }
@media(min-width: 900px) {
  .brand-svg svg { height: 40px; min-width: 100px; max-width: 210px; }
}
/* SVG logo in loader */
.loader-logo-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
}
.loader-logo-svg svg {
  height: clamp(60px, 15vw, 100px);
  width: auto;
  max-width: 280px;
  fill: currentColor;
  display: block;
}
.nav-links {
  display: none;
  gap: 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #666666;
}
.nav-links a:hover { color: #000000; }
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #111111;
  font-weight: 900;
  position: relative;
  transition: background .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.icon-btn:hover { background: rgba(0,0,0,.08); }
.icon-btn[data-count]::after {
  content: attr(data-count);
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 900;
  border: 2px solid #fff;
  padding: 0 4px;
  color: #fff;
}
.icon-btn[data-count="0"]::after {
  display: none;
}
@media(min-width: 900px) { .nav-links { display: flex; } }

/* ── Hero ── */
.hero {
  height: 80svh; /* svh = small viewport height */
  min-height: 500px;
  max-height: 85vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #ffffff;
  max-width: 100vw;
}
.hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  pointer-events: none;
}
.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #ffffff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(0,0,0,.03), transparent 60%),
    linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.1) 80%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 4;
  width: min(1180px, 92%);
  margin: 0 auto;
  padding-bottom: 40px;
  color: #111111;
}
.hero-title {
  font-family: var(--font-title);
  font-size: calc(clamp(58px, 11vw, 148px) * var(--scale-title));
  letter-spacing: 2px;
  line-height: .84;
  text-transform: uppercase;
  color: #111111;
}
.hero-sub {
  margin-top: 14px;
  font-size: calc(clamp(13px, 2vw, 15px) * var(--scale-text));
  font-weight: 600;
  max-width: 480px;
  color: #444444;
  line-height: 1.65;
}
.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-chiprow {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid rgba(0,0,0,.06);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #4b5563;
}

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
@media(max-width: 768px) {
  .products-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 0 8px;
    scrollbar-width: none;
  }
  .products-grid::-webkit-scrollbar { display: none; }
  .products-grid .product-card {
    flex: 0 0 58%;
    scroll-snap-align: start;
    min-width: 200px;
  }
}
@media(min-width: 769px) {
  .products-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px; 
  }
}
@media(min-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Product Card ── */
.product-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  transition: transform .32s ease, box-shadow .32s ease;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}
.product-media {
  position: relative;
  aspect-ratio: 1 / 1; /* Formato 1:1 estricto */
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.02 * var(--scale-media)));
  transition: transform .55s ease;
}
.product-card:hover .product-media img { transform: scale(calc(1.08 * var(--scale-media))); }
.product-body { padding: 12px; }
.product-title {
  font-size: calc(12px * var(--scale-product));
  font-weight: 900;
  line-height: 1.3;
}
.product-desc {
  margin-top: 4px;
  font-size: calc(11px * var(--scale-text));
  font-weight: 600;
  color: #666666;
  line-height: 1.45;
}
.product-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.product-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex-grow: 1;
}
.price {
  font-size: calc(clamp(20px, 5vw, 26px) * var(--scale-product));
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}
.price-compare {
  font-size: calc(15px * var(--scale-product));
  letter-spacing: 0;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 600;
}
.quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: #000000;
  border: 1px solid #000000;
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3px;
  transition: background .2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.quick-btn:hover { background: #222222; }
.product-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
}
.product-rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
.product-rating-stars .star { color: #FFB800; }
.product-rating-stars .star.off { color: #e0e0e0; }
.product-rating-score { font-weight: 800; color: #111111; font-size: 11px; }
.product-rating-count { font-size: 11px; color: #888888; font-weight: 600; }

/* ── Bundles ── */
.bundle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  margin-top: 18px;
}
@media(min-width: 700px) { .bundle-grid { grid-template-columns: repeat(2, 1fr); } }

.bundle {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 18px;
}
.bundle h3 {
  font-family: var(--font-title);
  font-size: calc(clamp(28px, 6vw, 42px) * var(--scale-title));
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: .9;
}
.bundle p {
  margin-top: 8px;
  font-size: calc(12px * var(--scale-text));
  font-weight: 600;
  color: #666666;
  line-height: 1.65;
}

/* ── Trust ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: 18px;
}
@media(min-width: 700px)  { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1100px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 16px;
  transition: border-color .2s ease;
}
.trust-card:hover { border-color: rgba(0,0,0,.16); }
.trust-card h3 {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.trust-card p {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #666666;
  line-height: 1.6;
}

/* ── Footer ── */
.footer {
  padding: 50px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media(min-width: 700px) { .footer-grid { grid-template-columns: 1.2fr .8fr; align-items: start; } }

.footer-brand {
  font-family: var(--font-title);
  font-size: clamp(44px, 8vw, 64px);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer p {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #666666;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: #666666;
}
.footer-links a:hover { color: #000000; }

/* ── Reveal animation (Optimizado GPU) ── */
.reveal { 
  opacity: 0; 
  transform: translateY(16px) translateZ(0); 
  backface-visibility: hidden;
}

/* ── Misc fallbacks ── */
.ugc-card video:not([src]) { display: none; }
.before-after { background: #ffffff; border: 1px solid var(--line); }
.ba-track { background: #f9f9f9; }
.ba-img:not([src]), .ba-img[src="[removed]"] { visibility: hidden; background: #e5e7eb; }

/* ── Mobile Typography ── */
@media(max-width: 768px) {
  .section-title { font-size: calc(clamp(18px, 5.5vw, 22px) * var(--scale-title)); }
  .bundle h3 { font-size: calc(clamp(18px, 5.5vw, 22px) * var(--scale-title)); }
  .pdp-reviews-title { font-size: calc(clamp(18px, 5.5vw, 22px) * var(--scale-title)); }
  .hero-trust span { font-size: calc(12px * var(--scale-text)); }
  .hero-eyebrow { font-size: calc(11px * var(--scale-text)); }
}

/* ── Currency Selector ── */
.currency-selector-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.currency-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  color: #111;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.currency-btn:hover { border-color: rgba(0,0,0,0.2); }
.currency-btn-flag { font-size: 14px; line-height: 1; }
.currency-btn-code { letter-spacing: 0.3px; }
.currency-btn-chevron { font-size: 8px; opacity: 0.5; margin-left: 2px; }
.currency-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 8px;
  min-width: 240px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 2000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.currency-dropdown.open { display: block; }
@media(max-width: 768px) {
  .currency-dropdown {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    min-width: 200px;
  }
}
.currency-dropdown-header {
  padding: 8px 12px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 4px;
}
.currency-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}
.currency-option:hover { background: #f5f5f5; }
.currency-option.active { background: #f0f0f0; font-weight: 800; }
.currency-option-flag { font-size: 18px; line-height: 1; }
.currency-option-name { flex: 1; font-size: 13px; color: #111; }
.currency-option-code { font-size: 12px; color: #666; font-weight: 700; }

/* ── Mobile scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 4px; }

/* ═══ Mini-PDP (Producto Principal Home) ═══════════════════════ */
.pdp-mini {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #f9f9f9;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  overflow: hidden;
}
.pdp-mini-left {
  width: 100%;
  position: relative;
  background: #fff;
}
.pdp-mini-swiper {
  width: 100%;
}
.pdp-mini-img, .pdp-mini-video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  background: #f9f9f9;
}
.pdp-mini-media-link { display: block; width: 100%; height: 100%; }
.pdp-mini-pag {
  bottom: 10px !important;
  --swiper-pagination-bullet-inactive-color: #ccc;
  --swiper-pagination-color: #111;
  --swiper-pagination-bullet-size: 6px;
  --swiper-pagination-bullet-horizontal-gap: 4px;
}
.pdp-mini-right {
  padding: 20px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pdp-mini-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pdp-mini-stars { display: flex; align-items: center; gap: 1px; }
.pdp-mini-avg { font-weight: 800; color: #FFB800; font-size: 12px; }
.pdp-mini-count { color: #888; font-size: 11px; font-weight: 600; }
.pdp-mini-title {
  font-family: var(--font-title);
  font-size: calc(22px * var(--scale-title));
  line-height: 1;
  text-transform: uppercase;
  color: #111;
  letter-spacing: 0.5px;
}
.pdp-mini-price-wrap { display: flex; flex-direction: column; gap: 1px; }
.pdp-mini-compare { font-size: 13px; color: #9ca3af; text-decoration: line-through; }
.pdp-mini-price { font-size: clamp(24px, 6vw, 32px); font-weight: 700; color: #111; letter-spacing: -0.3px; }
.pdp-mini-desc { font-size: 13px; color: #666; line-height: 1.5; }
.pdp-mini-desc-text { display: inline; }
.pdp-mini-desc-text.open { }
.pdp-mini-desc-toggle {
  background: none; border: none; color: #111; font-weight: 700; font-size: 12px;
  cursor: pointer; padding: 0; margin-left: 4px; text-decoration: underline;
}
.pdp-mini-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  padding: 0;
}
.pdp-mini-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pdp-mini-spec strong {
  font-size: 10px;
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.pdp-mini-spec span {
  font-size: 11px;
  color: #666;
  font-weight: 400;
}
.pdp-mini-optgroup { display: flex; flex-direction: column; gap: 8px; }
.pdp-mini-optlabel { font-size: 11px; font-weight: 800; color: #666; text-transform: uppercase; letter-spacing: 0.4px; }
.pdp-mini-optval { color: #111; font-weight: 900; }
.pdp-mini-optitems {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pdp-mini-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, outline 0.2s;
  outline: 2px solid transparent;
  outline-offset: 3px;
  flex-shrink: 0;
  border: none;
  -webkit-appearance: none;
}
.pdp-mini-swatch:hover { transform: scale(1.12); }
.pdp-mini-swatch.active {
  outline-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
  transform: scale(1.1);
}
.pdp-mini-chip {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #f9f9f9;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.pdp-mini-chip:hover { background: #f3f4f6; border-color: rgba(0,0,0,0.15); color: #111; }
.pdp-mini-chip-img {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px 3px 3px;
}
.pdp-mini-chip-thumb {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0f0f0;
}
.pdp-mini-chip.active {
  border-color: #000;
  background: rgba(0,0,0,0.05);
  color: #000;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}
.pdp-mini-cta {
  width: 100%;
  height: 50px;
  font-size: calc(13px * var(--scale-btn));
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-top: 4px;
  text-transform: uppercase;
  border-radius: 10px;
}
.pdp-mini-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #555;
}
.pdp-mini-trust span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Sticky bar (mobile only) ── */
.pdp-mini-sticky {
  display: none;
}
@media(max-width: 767px) {
  .pdp-mini-sticky {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  }
  .pdp-mini-sticky-price {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
  }
  .pdp-mini-sticky-cta {
    flex: 1;
    height: 48px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 10px;
    max-width: 220px;
  }
  .pdp-mini-cta { display: none; }
  .pdp-mini-right { padding-bottom: 80px; }
}
@media(min-width: 768px) {
  .pdp-mini {
    flex-direction: row;
  }
  .pdp-mini-left {
    width: 50%;
    flex-shrink: 0;
  }
  .pdp-mini-right {
    width: 50%;
    padding: 32px 28px;
    gap: 14px;
  }
  .pdp-mini-sticky { display: none !important; }
  .pdp-mini-cta { display: block; }
  .pdp-mini-specs { gap: 10px 20px; }
  .pdp-mini-spec strong { font-size: 11px; }
  .pdp-mini-spec span { font-size: 12px; }
}

/* ── SEO: sr-only for heading semantics without visual change ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── SEO: heading margin reset (browser defaults break layout) ── */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}
