/** Shopify CDN: Minification failed

Line 3005:0 All "@import" rules must come first

**/
/* ============================================================
   MERKAZO THEME v2 — Mobile-first, fully responsive
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --c-bg:        #0a0a0a;
  --c-surface:   #141414;
  --c-surface2:  #1c1c1c;
  --c-border:    rgba(255,255,255,0.07);
  --c-border2:   rgba(255,255,255,0.13);
  --c-white:     #ffffff;
  --c-white70:   rgba(255,255,255,0.70);
  --c-white40:   rgba(255,255,255,0.40);
  --c-white15:   rgba(255,255,255,0.08);
  --c-accent:    #FF5F2E;
  --c-accent2:   #FF7A50;
  --c-accent-bg: rgba(255,95,46,0.10);
  --c-accent-br: rgba(255,95,46,0.28);
  --c-blue:      #3B82F6;

  --ff-head: 'Outfit', sans-serif;
  --ff-body: 'Plus Jakarta Sans', sans-serif;

  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  28px;
  --r-pill:100px;

  --nav-h: 60px;
  --tap:   48px; /* minimum touch target */
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body { background:var(--c-bg); color:var(--c-white); font-family:var(--ff-body); overflow-x:hidden; -webkit-font-smoothing:antialiased; }
img { display:block; max-width:100%; height:auto; }
a { text-decoration:none; color:inherit; }
button, input, select, textarea { font-family:inherit; }
button { cursor:pointer; border:none; background:none; }
ul { list-style:none; }

/* ── SKIP LINK (accessibility) ── */
.skip-link { position:absolute; top:-40px; left:0; background:var(--c-accent); color:#fff; padding:8px 16px; border-radius:0 0 var(--r-sm) 0; z-index:9999; transition:top .2s; }
.skip-link:focus { top:0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  height:var(--nav-h);
  display:flex; align-items:center;
  padding:0 16px;
  background:rgba(10,10,10,0.0);
  border-bottom:1px solid rgba(255,255,255,0);
  transition:background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-nav.scrolled {
  background:rgba(10,10,10,0.88);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom-color:var(--c-border);
}
.nav-wrap { width:100%; max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:12px; }

/* Logo */
.nav-logo { display:flex; align-items:center; gap:5px; flex-shrink:0; }
.nav-logo__text { font-family:var(--ff-head); font-size:18px; font-weight:900; letter-spacing:.06em; }
.nav-logo__dot  { width:5px; height:5px; background:var(--c-accent); border-radius:50%; flex-shrink:0; }
.nav-logo__sub  { font-family:var(--ff-head); font-size:10px; font-weight:600; letter-spacing:.14em; color:var(--c-white40); text-transform:uppercase; }

/* Desktop links */
.nav-links { display:none; gap:28px; }
.nav-links a { font-size:13px; font-weight:400; color:var(--c-white70); transition:color .2s; white-space:nowrap; }
.nav-links a:hover { color:var(--c-white); }

/* Nav right */
.nav-right { display:flex; align-items:center; gap:8px; }

/* Cart icon */
.nav-cart {
  position:relative; display:flex; align-items:center; justify-content:center;
  width:var(--tap); height:var(--tap);
  background:var(--c-surface2); border:1px solid var(--c-border2);
  border-radius:var(--r-pill); color:var(--c-white);
  transition:background .2s, border-color .2s;
  -webkit-tap-highlight-color:transparent;
}
.nav-cart:hover { background:var(--c-surface); border-color:var(--c-white40); }
.nav-cart svg { pointer-events:none; }
.cart-badge {
  position:absolute; top:-4px; right:-4px;
  min-width:18px; height:18px; padding:0 4px;
  background:var(--c-accent); color:#fff;
  font-family:var(--ff-head); font-size:10px; font-weight:700;
  border-radius:var(--r-pill);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:scale(0);
  transition:opacity .2s, transform .2s;
  pointer-events:none;
}
.cart-badge.show { opacity:1; transform:scale(1); }

/* Hamburger */
.nav-hamburger {
  display:flex; flex-direction:column; justify-content:center; gap:5px;
  width:var(--tap); height:var(--tap);
  border-radius:var(--r-sm);
  -webkit-tap-highlight-color:transparent;
}
.nav-hamburger span { display:block; height:1.5px; background:var(--c-white); border-radius:2px; transition:transform .3s, opacity .3s; }
.nav-hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position:fixed; top:var(--nav-h); left:0; right:0; bottom:0; z-index:199;
  background:rgba(10,10,10,0.97);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  transform:translateX(100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
  padding:24px;
}
.nav-drawer.open { transform:translateX(0); }
.nav-drawer a {
  display:block; width:100%; text-align:center;
  font-family:var(--ff-head); font-size:28px; font-weight:700;
  color:var(--c-white70); padding:14px;
  border-radius:var(--r-md);
  transition:color .2s, background .2s;
  -webkit-tap-highlight-color:transparent;
}
.nav-drawer a:hover, .nav-drawer a:active { color:var(--c-white); background:var(--c-white15); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  min-height:var(--tap);
  padding:0 24px;
  border-radius:var(--r-pill);
  font-family:var(--ff-head); font-weight:700; font-size:15px;
  letter-spacing:.01em; white-space:nowrap;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
  -webkit-tap-highlight-color:transparent;
  position:relative; overflow:hidden;
  cursor:pointer; border:none;
  -webkit-appearance:none;
}
.btn:active { transform:scale(0.96); }
.btn:disabled { opacity:.5; cursor:not-allowed; transform:none !important; }

.btn--primary { background:var(--c-accent); color:#fff; }
.btn--primary:hover { background:var(--c-accent2); box-shadow:0 6px 24px rgba(255,95,46,.35); }

.btn--outline { background:transparent; color:var(--c-white); border:1px solid var(--c-border2); }
.btn--outline:hover { border-color:var(--c-white40); background:var(--c-white15); }

.btn--ghost { background:transparent; color:var(--c-accent); padding:0; min-height:auto; border-radius:0; font-size:14px; }
.btn--ghost:hover { color:var(--c-accent2); }

.btn--full { width:100%; }
.btn--lg  { min-height:56px; padding:0 32px; font-size:17px; }
.btn--sm  { min-height:40px; padding:0 18px; font-size:13px; }

/* Loading state */
.btn.loading { pointer-events:none; }
.btn.loading .btn-text { opacity:0; }
.btn.loading::after {
  content:'';
  position:absolute;
  width:18px; height:18px;
  border:2px solid rgba(255,255,255,.3);
  border-top-color:#fff;
  border-radius:50%;
  animation:spin .7s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding:64px 16px; }
.section--lg { padding:80px 16px; }
.section--dark { background:var(--c-surface); }

.section-inner { max-width:1200px; margin:0 auto; }

.eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--ff-head); font-size:11px; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase; color:var(--c-accent);
  margin-bottom:12px;
}
.eyebrow::before { content:''; width:18px; height:1.5px; background:var(--c-accent); flex-shrink:0; }

.section-title {
  font-family:var(--ff-head);
  font-size:clamp(28px, 6vw, 52px);
  font-weight:800; line-height:1.08;
  letter-spacing:-.025em;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }
.reveal.up  { transform:translateY(28px); }
.reveal.right { transform:translateX(32px); }
.reveal.in  { opacity:1; transform:none !important; }
[data-delay="1"] { transition-delay:.08s !important; }
[data-delay="2"] { transition-delay:.16s !important; }
[data-delay="3"] { transition-delay:.24s !important; }
[data-delay="4"] { transition-delay:.32s !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position:relative; min-height:100svh;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  padding:calc(var(--nav-h) + 40px) 16px 60px;
  text-align:center; overflow:hidden;
}
/* Ambient orbs */
.hero__orb {
  position:absolute; border-radius:50%;
  filter:blur(70px); pointer-events:none;
}
.hero__orb--1 {
  width:min(500px,120vw); height:min(500px,120vw);
  background:radial-gradient(circle,rgba(255,95,46,.14) 0%,transparent 65%);
  top:-80px; right:-80px;
  animation:orbFloat1 9s ease-in-out infinite;
}
.hero__orb--2 {
  width:min(400px,100vw); height:min(400px,100vw);
  background:radial-gradient(circle,rgba(59,130,246,.07) 0%,transparent 65%);
  bottom:-60px; left:-60px;
  animation:orbFloat2 11s ease-in-out infinite;
}
.hero__grid {
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);
  background-size:50px 50px;
  mask-image:radial-gradient(ellipse 80% 70% at 50% 40%,black,transparent);
  -webkit-mask-image:radial-gradient(ellipse 80% 70% at 50% 40%,black,transparent);
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,25px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(25px,-30px)} }

.hero__inner { position:relative; z-index:1; width:100%; max-width:1100px; margin:0 auto; }

/* Badge */
.hero__badge {
  display:inline-flex; align-items:center; gap:7px;
  background:var(--c-accent-bg); border:1px solid var(--c-accent-br);
  color:var(--c-accent2); font-family:var(--ff-head);
  font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:6px 14px; border-radius:var(--r-pill);
  margin-bottom:20px;
}
.hero__badge-dot { width:6px; height:6px; background:var(--c-accent); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

/* Title */
.hero__title {
  font-family:var(--ff-head);
  font-size:clamp(36px,9vw,76px);
  font-weight:900; line-height:1.03;
  letter-spacing:-.03em;
  margin-bottom:20px;
}
.hero__title span { display:block; }
.hero__title .accent { color:var(--c-accent); }

/* Desc */
.hero__desc {
  font-size:clamp(15px,3vw,18px);
  color:var(--c-white70); font-weight:300; line-height:1.65;
  max-width:520px; margin:0 auto 28px;
}

/* Price block */
.hero__price {
  display:flex; align-items:baseline; justify-content:center;
  gap:10px; flex-wrap:wrap; margin-bottom:28px;
}
.hero__price-main { font-family:var(--ff-head); font-size:clamp(28px,6vw,40px); font-weight:800; }
.hero__price-curr { font-size:14px; color:var(--c-white40); font-weight:400; }
.hero__price-old  { font-size:16px; color:var(--c-white40); text-decoration:line-through; }
.hero__price-badge {
  background:var(--c-accent); color:#fff;
  font-family:var(--ff-head); font-size:11px; font-weight:700; letter-spacing:.04em;
  padding:3px 9px; border-radius:6px;
}

/* CTA row */
.hero__ctas { display:flex; flex-direction:column; gap:12px; align-items:center; margin-bottom:28px; }
.hero__ctas .btn { width:100%; max-width:320px; }

/* Trust row */
.hero__trust { display:flex; flex-wrap:wrap; justify-content:center; gap:10px 20px; }
.trust-pill {
  display:flex; align-items:center; gap:6px;
  font-size:12px; font-weight:500; color:var(--c-white70);
  background:var(--c-white15); border:1px solid var(--c-border);
  padding:6px 12px; border-radius:var(--r-pill);
}
.trust-pill .icon { color:var(--c-accent); font-size:13px; }

/* Product image */
.hero__img-wrap {
  margin:36px auto 0;
  position:relative; display:inline-block;
}
.hero__img-glow {
  position:absolute; inset:-20%; border-radius:50%;
  background:radial-gradient(circle,rgba(255,95,46,.18) 0%,transparent 65%);
  filter:blur(20px); pointer-events:none;
  animation:glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:.6} 50%{opacity:1} }
.hero__img {
  width:min(280px,75vw); height:min(280px,75vw);
  object-fit:contain; border-radius:var(--r-xl);
  position:relative; z-index:1;
  filter:drop-shadow(0 32px 64px rgba(0,0,0,.6));
  animation:float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* Stat chip */
.hero__stat-chip {
  position:absolute; bottom:-12px; right:-16px; z-index:2;
  background:var(--c-accent); color:#fff;
  font-family:var(--ff-head); border-radius:14px;
  padding:10px 16px; text-align:center;
  box-shadow:0 8px 24px rgba(255,95,46,.4);
}
.hero__stat-chip-num  { font-size:22px; font-weight:800; line-height:1; }
.hero__stat-chip-label{ font-size:10px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; opacity:.85; }

/* Scroll hint */
.hero__scroll {
  position:absolute; bottom:24px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-family:var(--ff-head); font-size:10px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--c-white40); z-index:1;
}
.hero__scroll-line {
  width:1px; height:40px;
  background:linear-gradient(to bottom,var(--c-white40),transparent);
  animation:scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background:var(--c-surface);
  border-top:1px solid var(--c-border);
  border-bottom:1px solid var(--c-border);
  padding:28px 16px;
}
.stats-bar__grid {
  max-width:900px; margin:0 auto;
  display:grid; grid-template-columns:repeat(2,1fr); gap:1px;
  background:var(--c-border);
  border:1px solid var(--c-border); border-radius:var(--r-lg); overflow:hidden;
}
.stats-bar__item {
  background:var(--c-surface); padding:20px 16px; text-align:center;
}
.stats-bar__num {
  font-family:var(--ff-head); font-size:32px; font-weight:800;
  color:var(--c-accent); letter-spacing:-.02em; line-height:1; margin-bottom:4px;
}
.stats-bar__label { font-size:11px; color:var(--c-white40); letter-spacing:.04em; text-transform:uppercase; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding:64px 16px; }
.features__header { text-align:center; margin-bottom:40px; }
.features__grid { display:flex; flex-direction:column; gap:16px; max-width:1200px; margin:0 auto; }

.feat-card {
  background:var(--c-surface); border:1px solid var(--c-border);
  border-radius:var(--r-xl); overflow:hidden;
  transition:border-color .3s, transform .3s;
}
.feat-card:hover { border-color:var(--c-accent-br); transform:translateY(-3px); }

.feat-card__img { width:100%; height:220px; object-fit:cover; display:block; transition:transform .5s; }
.feat-card:hover .feat-card__img { transform:scale(1.04); }

.feat-card__body { padding:20px; }
.feat-card__tag { font-family:var(--ff-head); font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--c-accent); margin-bottom:6px; }
.feat-card__title { font-family:var(--ff-head); font-size:20px; font-weight:700; line-height:1.2; margin-bottom:8px; letter-spacing:-.01em; }
.feat-card__desc { font-size:14px; color:var(--c-white70); line-height:1.6; font-weight:300; }

/* Comparison bar inside card */
.cmp-bar { margin-top:16px; display:flex; flex-direction:column; gap:10px; }
.cmp-row { display:flex; align-items:center; gap:8px; }
.cmp-row__label { font-size:11px; color:var(--c-white40); min-width:76px; }
.cmp-row__track { flex:1; height:5px; background:rgba(255,255,255,.07); border-radius:3px; overflow:hidden; }
.cmp-row__fill { height:100%; border-radius:3px; width:0; transition:width 1.4s ease; }
.cmp-row__fill--a { background:var(--c-accent); }
.cmp-row__fill--b { background:var(--c-white40); }
.cmp-row__pct { font-family:var(--ff-head); font-size:15px; font-weight:700; min-width:34px; text-align:right; }
.cmp-row__pct--accent { color:var(--c-accent); }
.cmp-row__pct--muted  { color:var(--c-white40); }
.cmp-note { font-size:10px; color:var(--c-white40); letter-spacing:.03em; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding:64px 0; overflow:hidden; }
.gallery__header { padding:0 16px; text-align:center; margin-bottom:32px; }
.gallery__track {
  display:flex; gap:12px; padding:0 16px;
  overflow-x:auto; scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch; scrollbar-width:none;
}
.gallery__track::-webkit-scrollbar { display:none; }
.gallery__item {
  flex:0 0 clamp(240px,70vw,320px); height:clamp(280px,80vw,380px);
  border-radius:var(--r-lg); overflow:hidden; scroll-snap-align:start;
  border:1px solid var(--c-border); position:relative; cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  transition:border-color .3s;
}
.gallery__item:hover, .gallery__item:active { border-color:var(--c-accent-br); }
.gallery__item img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.gallery__item:hover img { transform:scale(1.05); }
.gallery__overlay {
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:rgba(255,95,46,0); transition:background .3s;
}
.gallery__overlay span {
  font-family:var(--ff-head); font-size:14px; font-weight:700; letter-spacing:.08em;
  color:#fff; text-transform:uppercase;
  opacity:0; transform:translateY(6px); transition:all .3s;
}
.gallery__item:hover .gallery__overlay { background:rgba(255,95,46,.22); }
.gallery__item:hover .gallery__overlay span { opacity:1; transform:translateY(0); }

.gallery__nav { display:flex; justify-content:center; gap:10px; margin-top:20px; padding:0 16px; }
.gallery__btn {
  width:var(--tap); height:var(--tap); border-radius:50%;
  background:var(--c-surface2); border:1px solid var(--c-border2);
  color:var(--c-white); font-size:18px;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s, border-color .2s;
  -webkit-tap-highlight-color:transparent;
}
.gallery__btn:hover, .gallery__btn:active { background:var(--c-accent); border-color:var(--c-accent); }

/* ============================================================
   SPECS
   ============================================================ */
.specs { padding:64px 16px; }
.specs__inner { max-width:1100px; margin:0 auto; }
.specs__img { width:100%; max-width:340px; border-radius:var(--r-xl); margin:0 auto 36px; display:block; }
.specs__list { display:flex; flex-direction:column; }
.spec-row {
  display:flex; justify-content:space-between; align-items:baseline; gap:12px;
  padding:14px 0; border-bottom:1px solid var(--c-border);
  transition:background .15s;
}
.spec-row:last-child { border-bottom:none; }
.spec-row__key { font-size:13px; color:var(--c-white40); flex-shrink:0; }
.spec-row__val { font-size:14px; font-weight:500; text-align:right; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position:relative; text-align:center;
  padding:80px 16px; overflow:hidden;
  background:var(--c-surface);
  border-top:1px solid var(--c-border);
  border-bottom:1px solid var(--c-border);
}
.cta-banner__orb {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:min(600px,150vw); height:min(600px,150vw); border-radius:50%;
  background:radial-gradient(circle,rgba(255,95,46,.08) 0%,transparent 60%);
  filter:blur(40px); pointer-events:none;
}
.cta-banner__inner { position:relative; z-index:1; max-width:640px; margin:0 auto; }
.cta-banner__title {
  font-family:var(--ff-head);
  font-size:clamp(30px,7vw,56px);
  font-weight:900; line-height:1.08; letter-spacing:-.025em;
  margin:16px 0 28px;
}
.cta-banner__price { display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; margin-bottom:32px; }
.cta-banner__price-main { font-family:var(--ff-head); font-size:clamp(32px,7vw,48px); font-weight:800; }
.cta-banner__price-old  { font-size:18px; color:var(--c-white40); text-decoration:line-through; }
.cta-banner__price-save {
  background:var(--c-accent-bg); border:1px solid var(--c-accent-br);
  color:var(--c-accent2); font-family:var(--ff-head); font-size:13px; font-weight:600;
  padding:5px 12px; border-radius:var(--r-sm);
}
.cta-banner__cta { width:100%; max-width:360px; margin:0 auto 32px; }
.cta-banner__trust { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background:var(--c-bg);
  border-top:1px solid var(--c-border);
  padding:48px 16px 32px;
}
.footer__grid { display:grid; grid-template-columns:1fr 1fr; gap:32px 20px; margin-bottom:36px; max-width:1100px; margin-left:auto; margin-right:auto; }
.footer__brand { grid-column:1 / -1; }
.footer__brand-logo { display:flex; align-items:center; gap:5px; margin-bottom:10px; }
.footer__brand p { font-size:13px; color:var(--c-white40); line-height:1.65; font-weight:300; }
.footer__col h4 { font-family:var(--ff-head); font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; margin-bottom:12px; }
.footer__col a { display:block; font-size:13px; color:var(--c-white40); margin-bottom:9px; transition:color .2s; }
.footer__col a:hover { color:var(--c-white); }
.footer__bottom {
  max-width:1100px; margin:0 auto;
  border-top:1px solid var(--c-border); padding-top:20px;
  display:flex; flex-direction:column; align-items:center; gap:6px;
  font-size:11px; color:var(--c-white40); text-align:center;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position:fixed; inset:0; z-index:500;
  background:rgba(0,0,0,0.95);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none;
  transition:opacity .3s;
  padding:16px;
}
.lightbox.active { opacity:1; pointer-events:all; }
.lb-img { max-width:100%; max-height:90vh; object-fit:contain; border-radius:var(--r-md); }
.lb-close {
  position:absolute; top:16px; right:16px;
  width:var(--tap); height:var(--tap); border-radius:50%;
  background:rgba(255,255,255,.1); color:#fff; font-size:18px;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s; -webkit-tap-highlight-color:transparent;
}
.lb-close:hover, .lb-close:active { background:rgba(255,95,46,.5); }
.lb-prev, .lb-next {
  position:absolute; top:50%; transform:translateY(-50%);
  width:var(--tap); height:var(--tap); border-radius:50%;
  background:rgba(255,255,255,.1); color:#fff; font-size:20px;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s; -webkit-tap-highlight-color:transparent;
}
.lb-prev { left:8px; } .lb-next { right:8px; }
.lb-prev:hover,.lb-prev:active,.lb-next:hover,.lb-next:active { background:rgba(255,95,46,.5); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position:fixed; bottom:20px; left:16px; right:16px; z-index:400;
  background:var(--c-surface2); border:1px solid var(--c-accent-br);
  border-radius:var(--r-lg); padding:14px 16px;
  display:flex; align-items:center; gap:12px;
  transform:translateY(calc(100% + 24px)); opacity:0;
  transition:transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  max-width:480px;
}
.toast.show { transform:translateY(0); opacity:1; }
.toast__icon {
  width:36px; height:36px; border-radius:50%;
  background:var(--c-accent); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:16px; font-weight:700; flex-shrink:0;
}
.toast__text strong { display:block; font-size:14px; font-weight:600; }
.toast__text span   { font-size:12px; color:var(--c-white40); }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page { padding:calc(var(--nav-h) + 24px) 16px 64px; }
.product-page__inner { max-width:1100px; margin:0 auto; }

.product-gallery { margin-bottom:28px; }
.product-gallery__main {
  width:100%; aspect-ratio:1/1; max-height:380px;
  border-radius:var(--r-xl); overflow:hidden; margin-bottom:10px;
  background:var(--c-surface);
}
.product-gallery__main img { width:100%; height:100%; object-fit:contain; transition:transform .4s; }
.product-gallery__main:hover img { transform:scale(1.03); }
.product-gallery__thumbs { display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; }
.product-gallery__thumbs::-webkit-scrollbar { display:none; }
.product-gallery__thumb {
  flex:0 0 64px; height:64px; border-radius:var(--r-sm); overflow:hidden;
  border:2px solid var(--c-border); cursor:pointer;
  transition:border-color .2s; -webkit-tap-highlight-color:transparent;
}
.product-gallery__thumb.active { border-color:var(--c-accent); }
.product-gallery__thumb img { width:100%; height:100%; object-fit:cover; }

.product-info__vendor { font-family:var(--ff-head); font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--c-accent); margin-bottom:8px; }
.product-info__title  { font-family:var(--ff-head); font-size:clamp(22px,5vw,36px); font-weight:800; letter-spacing:-.02em; line-height:1.1; margin-bottom:12px; }
.product-info__desc   { font-size:14px; color:var(--c-white70); line-height:1.7; font-weight:300; margin-bottom:20px; }

.product-price { display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; margin-bottom:24px; }
.product-price__main   { font-family:var(--ff-head); font-size:30px; font-weight:800; }
.product-price__curr   { font-size:13px; color:var(--c-white40); }
.product-price__old    { font-size:16px; color:var(--c-white40); text-decoration:line-through; }
.product-price__badge  { background:var(--c-accent); color:#fff; font-family:var(--ff-head); font-size:11px; font-weight:700; padding:3px 8px; border-radius:5px; }

/* Variant buttons */
.variant-group { margin-bottom:20px; }
.variant-group__label { font-family:var(--ff-head); font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--c-white40); display:flex; align-items:center; gap:6px; margin-bottom:10px; }
.variant-group__label span { color:var(--c-white); font-weight:600; }
.variant-group__options { display:flex; flex-wrap:wrap; gap:8px; }
.variant-opt {
  min-height:40px; padding:0 16px;
  background:var(--c-surface2); border:1.5px solid var(--c-border2);
  border-radius:var(--r-sm); color:var(--c-white70);
  font-family:var(--ff-body); font-size:13px; font-weight:500;
  transition:all .2s; -webkit-tap-highlight-color:transparent;
}
.variant-opt:hover { border-color:var(--c-white40); color:var(--c-white); }
.variant-opt.active { background:var(--c-accent); border-color:var(--c-accent); color:#fff; }
.variant-opt:disabled { opacity:.4; cursor:not-allowed; }

/* Quantity */
.qty-wrap { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.qty-wrap__label { font-family:var(--ff-head); font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--c-white40); }
.qty-ctrl { display:flex; align-items:center; background:var(--c-surface2); border:1px solid var(--c-border2); border-radius:var(--r-md); overflow:hidden; }
.qty-ctrl__btn { width:44px; height:44px; display:flex; align-items:center; justify-content:center; font-size:20px; color:var(--c-white); transition:background .2s; -webkit-tap-highlight-color:transparent; }
.qty-ctrl__btn:hover, .qty-ctrl__btn:active { background:var(--c-surface); }
.qty-ctrl__input { width:48px; height:44px; border:none; background:none; color:var(--c-white); font-family:var(--ff-head); font-size:16px; font-weight:600; text-align:center; outline:none; -moz-appearance:textfield; }
.qty-ctrl__input::-webkit-outer-spin-button, .qty-ctrl__input::-webkit-inner-spin-button { -webkit-appearance:none; }

.product-form__ctas { display:flex; flex-direction:column; gap:10px; margin-bottom:24px; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page { padding:calc(var(--nav-h) + 32px) 16px 64px; }
.cart-page__inner { max-width:800px; margin:0 auto; }
.cart-empty { text-align:center; padding:60px 0; }
.cart-empty__icon { font-size:56px; margin-bottom:20px; }
.cart-empty p { color:var(--c-white70); font-size:17px; margin-bottom:28px; }

.cart-item {
  display:flex; gap:14px; padding:16px;
  background:var(--c-surface); border:1px solid var(--c-border);
  border-radius:var(--r-lg); margin-bottom:12px;
}
.cart-item__img { width:72px; height:72px; border-radius:var(--r-md); object-fit:cover; flex-shrink:0; background:var(--c-surface2); }
.cart-item__info { flex:1; min-width:0; }
.cart-item__title { font-family:var(--ff-head); font-size:15px; font-weight:600; margin-bottom:3px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cart-item__variant { font-size:12px; color:var(--c-white40); margin-bottom:8px; }
.cart-item__row { display:flex; align-items:center; justify-content:space-between; gap:8px; }
.cart-item__price { font-family:var(--ff-head); font-size:16px; font-weight:700; color:var(--c-accent); }
.cart-item__remove { color:var(--c-white40); font-size:18px; padding:4px; -webkit-tap-highlight-color:transparent; transition:color .2s; }
.cart-item__remove:hover { color:#ef4444; }

.cart-summary { background:var(--c-surface); border:1px solid var(--c-border); border-radius:var(--r-lg); padding:20px; margin-top:20px; }
.cart-summary__row { display:flex; justify-content:space-between; margin-bottom:10px; font-size:14px; color:var(--c-white70); }
.cart-summary__total { display:flex; justify-content:space-between; align-items:baseline; margin:14px 0 20px; padding-top:14px; border-top:1px solid var(--c-border); }
.cart-summary__total-label { font-family:var(--ff-head); font-size:14px; font-weight:600; }
.cart-summary__total-price { font-family:var(--ff-head); font-size:24px; font-weight:800; }
.cart-summary__note { font-size:11px; color:var(--c-white40); margin-bottom:16px; }

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.collection-page { padding:calc(var(--nav-h) + 32px) 16px 64px; }
.collection-page__header { text-align:center; margin-bottom:36px; }
.collection-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; max-width:1200px; margin:0 auto; }

.product-card {
  background:var(--c-surface); border:1px solid var(--c-border);
  border-radius:var(--r-lg); overflow:hidden;
  transition:border-color .3s, transform .3s;
  display:flex; flex-direction:column;
  -webkit-tap-highlight-color:transparent;
}
.product-card:hover { border-color:var(--c-accent-br); transform:translateY(-3px); }
.product-card__img-wrap { aspect-ratio:1/1; overflow:hidden; background:var(--c-surface2); }
.product-card__img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.product-card:hover .product-card__img { transform:scale(1.05); }
.product-card__body { padding:14px; flex:1; display:flex; flex-direction:column; }
.product-card__vendor { font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--c-accent); margin-bottom:4px; }
.product-card__title  { font-family:var(--ff-head); font-size:14px; font-weight:600; line-height:1.3; margin-bottom:6px; flex:1; }
.product-card__desc   { font-size:12px; color:var(--c-white40); line-height:1.5; margin-bottom:10px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.product-card__foot   { display:flex; align-items:center; justify-content:space-between; gap:8px; flex-wrap:wrap; }
.product-card__price  { font-family:var(--ff-head); font-size:16px; font-weight:700; }
.product-card__old    { font-size:12px; color:var(--c-white40); text-decoration:line-through; }

/* ============================================================
   TABLET — 600px+
   ============================================================ */
@media (min-width:600px) {
  .stats-bar__grid { grid-template-columns:repeat(4,1fr); }
  .hero__ctas { flex-direction:row; }
  .hero__ctas .btn { width:auto; max-width:none; }
  .hero__img { width:320px; height:320px; }
  .features__grid { display:grid; grid-template-columns:1fr 1fr; }
  .feat-card__img { height:200px; }
  .gallery__item { flex:0 0 300px; height:360px; }
  .footer__grid { grid-template-columns:2fr 1fr 1fr 1fr; }
  .footer__brand { grid-column:auto; }
  .collection-grid { grid-template-columns:repeat(3,1fr); }
  .toast { left:auto; right:24px; max-width:360px; bottom:24px; }
}

/* ============================================================
   DESKTOP — 900px+
   ============================================================ */
@media (min-width:900px) {
  :root { --nav-h:64px; }

  /* Nav */
  .site-nav { padding:0 32px; }
  .nav-links { display:flex; }
  .nav-hamburger { display:none; }

  /* Hero layout: two columns */
  .hero { text-align:left; padding:calc(var(--nav-h) + 60px) 48px 80px; }
  .hero__inner { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:60px; }
  .hero__badge, .hero__price, .hero__ctas, .hero__trust { justify-content:flex-start; }
  .hero__desc { margin-left:0; }
  .hero__img-wrap { margin:0; }
  .hero__img { width:400px; height:400px; }
  .hero__scroll { display:flex; }

  /* Features bento */
  .features { padding:100px 48px; }
  .features__grid {
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto auto;
    display:grid;
  }
  .feat-card--wide { grid-column:1 / -1; }
  .feat-card--tall { grid-row:span 2; }
  .feat-card__img { height:240px; }
  .feat-card--tall .feat-card__img { height:340px; }
  .feat-card--wide .feat-card__img { height:220px; }

  /* Gallery */
  .gallery { padding:100px 0; }
  .gallery__header { padding:0 48px; }
  .gallery__track { padding:0 48px; gap:20px; }
  .gallery__item { flex:0 0 340px; height:400px; }

  /* Specs 2-col */
  .specs { padding:100px 48px; }
  .specs__inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
  .specs__img { margin:0 0 0 0; max-width:100%; }

  /* Product page 2-col */
  .product-page { padding:calc(var(--nav-h) + 40px) 48px 80px; }
  .product-page__inner { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
  .product-gallery { margin-bottom:0; }
  .product-gallery__main { max-height:480px; }

  /* Collection */
  .collection-page { padding:calc(var(--nav-h) + 48px) 48px 80px; }
  .collection-grid { grid-template-columns:repeat(4,1fr); gap:20px; }

  /* Footer */
  .site-footer { padding:64px 48px 32px; }
  .footer__bottom { flex-direction:row; justify-content:space-between; }
}

/* ============================================================
   LARGE — 1200px+
   ============================================================ */
@media (min-width:1200px) {
  .hero__img { width:480px; height:480px; }
  .features__grid { grid-template-columns:1fr 1fr 1fr; }
  .feat-card--wide { grid-column:2 / -1; }
  .feat-card--tall { grid-column:1; grid-row:1 / 3; }
}

/* ============================================================
   SAFE AREAS (iPhone notch / Dynamic Island)
   ============================================================ */
@supports (padding-top: env(safe-area-inset-top)) {
  .site-nav { padding-left:max(16px, env(safe-area-inset-left)); padding-right:max(16px, env(safe-area-inset-right)); }
  .toast  { bottom:max(20px, env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom:max(32px, env(safe-area-inset-bottom)); }
}

/* ============================================================
   ACCESSIBILITY & MOTION
   ============================================================ */
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
:focus-visible { outline:2px solid var(--c-accent); outline-offset:3px; border-radius:4px; }

/* ============================================================
   UTILITY
   ============================================================ */
.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; }
.text-accent { color:var(--c-accent); }
.mt-4  { margin-top:4px; }
.mb-16 { margin-bottom:16px; }

/* ============================================================
   CART v2 — Rich design
   ============================================================ */

/* Layout two-column on desktop */
.cart-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.cart-col-header { margin-bottom: 20px; }
.cart-col-title  {
  font-family: var(--ff-head);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 800; letter-spacing: -.02em;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.cart-col-count {
  font-size: 14px; font-weight: 600;
  background: var(--c-accent-bg); border: 1px solid var(--c-accent-br);
  color: var(--c-accent2); padding: 4px 12px;
  border-radius: var(--r-pill); letter-spacing: .02em;
}

/* Cart card */
.cart-card {
  display: flex; gap: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 16px;
  margin-bottom: 14px;
  transition: border-color .25s;
}
.cart-card:hover { border-color: var(--c-border2); }

/* Image */
.cart-card__img-wrap {
  position: relative; flex-shrink: 0;
  width: 100px; height: 100px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface2);
  display: block;
}
.cart-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.cart-card__img-wrap:hover .cart-card__img { transform: scale(1.06); }
.cart-card__img--placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white40);
}
.cart-card__badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--c-accent); color: #fff;
  font-family: var(--ff-head); font-size: 9px; font-weight: 700;
  letter-spacing: .08em; padding: 2px 7px;
  border-radius: var(--r-pill);
}

/* Info */
.cart-card__info { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.cart-card__top  { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.cart-card__vendor { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 3px; }
.cart-card__title  {
  font-family: var(--ff-head); font-size: 15px; font-weight: 600;
  color: var(--c-white); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cart-card__title:hover { color: var(--c-accent); }
.cart-card__variant { font-size: 12px; color: var(--c-white40); margin-top: 3px; }

.cart-card__remove {
  flex-shrink: 0; width: 32px; height: 32px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white40);
  transition: color .2s, background .2s;
  -webkit-tap-highlight-color: transparent;
}
.cart-card__remove:hover, .cart-card__remove:active { color: #ef4444; background: rgba(239,68,68,.1); }

.cart-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* Qty control in cart */
.cart-qty {
  display: flex; align-items: center;
  background: var(--c-surface2);
  border: 1px solid var(--c-border2);
  border-radius: var(--r-md);
  overflow: hidden;
}
.cart-qty__btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--c-white);
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
}
.cart-qty__btn:hover, .cart-qty__btn:active { background: var(--c-accent); }
.cart-qty__val {
  min-width: 32px; text-align: center;
  font-family: var(--ff-head); font-size: 15px; font-weight: 600;
}

/* Prices */
.cart-card__prices { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.cart-card__price     { font-family: var(--ff-head); font-size: 18px; font-weight: 800; color: var(--c-accent); }
.cart-card__price-old { font-size: 12px; color: var(--c-white40); text-decoration: line-through; }
.cart-card__unit      { font-size: 11px; color: var(--c-white40); }

/* Note */
.cart-note-wrap  { margin-top: 8px; margin-bottom: 4px; }
.cart-note-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--c-white40);
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 8px;
}
.cart-note-input {
  width: 100%;
  background: var(--c-surface);
  border: 1px solid var(--c-border2);
  border-radius: var(--r-md);
  color: var(--c-white);
  font-family: var(--ff-body); font-size: 14px;
  padding: 12px 14px; resize: vertical;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.cart-note-input:focus { outline: none; border-color: var(--c-accent); }
.cart-note-input::placeholder { color: var(--c-white40); }

/* Summary box */
.cart-summary-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 24px;
  position: sticky; top: calc(var(--nav-h) + 16px);
}
.cart-summary-box__title {
  font-family: var(--ff-head); font-size: 18px; font-weight: 800;
  letter-spacing: -.01em; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--c-border);
}
.cart-summary-box__rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.cart-summary-box__row  { display: flex; justify-content: space-between; font-size: 14px; color: var(--c-white70); }
.cart-summary-box__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0; border-top: 1px solid var(--c-border);
  margin-bottom: 6px;
}
.cart-summary-box__total span:first-child { font-family: var(--ff-head); font-size: 14px; font-weight: 600; }
.cart-summary-box__total span:last-child  { font-family: var(--ff-head); font-size: 26px; font-weight: 800; }
.cart-summary-box__total small { font-size: 14px; color: var(--c-white40); font-weight: 400; }
.cart-summary-box__note { font-size: 11px; color: var(--c-white40); margin-bottom: 20px; line-height: 1.5; }

.cart-checkout-btn { font-size: 16px !important; gap: 10px !important; }

/* ── PAYMENT METHODS ── */
.payment-methods { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--c-border); }
.payment-methods__label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--c-white40);
  margin-bottom: 12px;
}
.payment-methods__icons {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.pay-icon {
  height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid var(--c-border2);
  background: var(--c-surface2);
  flex-shrink: 0;
  transition: border-color .2s, transform .15s;
}
.pay-icon:hover { border-color: var(--c-white40); transform: translateY(-1px); }
.pay-icon svg   { display: block; }
.pay-icon--text {
  padding: 0 10px;
  font-family: var(--ff-head); font-size: 11px; font-weight: 700;
  letter-spacing: .04em; color: var(--c-white70);
}
.pay-icon--efecty   { background: #FFD600; color: #000; border-color: #FFD600; }
.pay-icon--nequi    { background: #6C0BEB; color: #fff; border-color: #6C0BEB; }
.pay-icon--daviplata{ background: #ED1C24; color: #fff; border-color: #ED1C24; }

/* ── CART GUARANTEES ── */
.cart-guarantees { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.cart-guarantee  {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--c-white70);
}
.cart-guarantee svg { flex-shrink: 0; color: var(--c-accent); }

/* Cart empty state */
.cart-empty {
  text-align: center; padding: 80px 16px;
  max-width: 440px; margin: 0 auto;
}
.cart-empty__icon { color: var(--c-white40); margin-bottom: 20px; display: flex; justify-content: center; }
.cart-empty p { color: var(--c-white70); font-size: 16px; margin-bottom: 0; line-height: 1.6; }

/* Desktop two-col layout */
@media (min-width: 900px) {
  .cart-page { padding: calc(var(--nav-h) + 40px) 48px 80px; }
  .cart-page__inner { max-width: 1100px; margin: 0 auto; }
  .cart-layout { flex-direction: row; align-items: flex-start; gap: 32px; }
  .cart-items-col  { flex: 1; min-width: 0; }
  .cart-summary-col { width: 380px; flex-shrink: 0; }
  .cart-card__img-wrap { width: 120px; height: 120px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: calc(var(--nav-h) + 40px) 16px 80px; }
.contact-page__inner { max-width: 1100px; margin: 0 auto; }

.contact-hero { text-align: center; margin-bottom: 48px; }
.contact-hero__desc { font-size: 16px; color: var(--c-white70); font-weight: 300; line-height: 1.65; margin-top: 12px; }

.contact-grid { display: flex; flex-direction: column; gap: 24px; }

/* Form card */
.contact-form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 28px 20px;
}
.contact-form-card__title { font-family: var(--ff-head); font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.contact-form-card__sub   { font-size: 14px; color: var(--c-white70); font-weight: 300; margin-bottom: 24px; }

.contact-fields { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
.contact-field--full { grid-column: 1 / -1; }

.contact-label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--c-white70);
  margin-bottom: 7px;
}
.contact-label span { color: var(--c-accent); }

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%; background: var(--c-surface2);
  border: 1px solid var(--c-border2);
  border-radius: var(--r-md);
  color: var(--c-white); font-family: var(--ff-body);
  font-size: 15px; padding: 13px 16px;
  transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus { outline: none; border-color: var(--c-accent); }
.contact-input::placeholder,
.contact-textarea::placeholder { color: var(--c-white40); }
.contact-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.contact-select option { background: var(--c-surface2); color: var(--c-white); }
.contact-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.contact-submit-btn { gap: 10px !important; }

/* Success / error */
.contact-success {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--r-md); padding: 16px; margin-bottom: 20px;
}
.contact-success__icon { color: #22c55e; flex-shrink: 0; margin-top: 2px; }
.contact-success strong { display: block; font-size: 15px; font-weight: 600; color: #22c55e; margin-bottom: 3px; }
.contact-success p { font-size: 13px; color: var(--c-white70); }
.contact-error {
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3);
  border-radius: var(--r-md); padding: 14px 16px;
  font-size: 14px; color: #ef4444; margin-bottom: 20px;
}

/* Info cards */
.contact-info-col { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 20px;
  transition: border-color .25s;
}
.contact-info-card:hover { border-color: var(--c-accent-br); }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--c-accent-bg); border: 1px solid var(--c-accent-br);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
}
.contact-info-card__title { font-family: var(--ff-head); font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--c-white70); margin-bottom: 4px; text-transform: uppercase; }
.contact-info-card__val   { font-size: 16px; font-weight: 600; color: var(--c-white); }
a.contact-info-card__val  { color: var(--c-accent); }
a.contact-info-card__val:hover { text-decoration: underline; }
.contact-info-card__note  { font-size: 12px; color: var(--c-white40); margin-top: 3px; }

/* FAQ accordion */
.contact-faq {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 20px; margin-top: 4px;
}
.contact-faq__title { font-family: var(--ff-head); font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.contact-faq__list  { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item:last-child { border-bottom: none; }
.faq-item__q {
  list-style: none; padding: 14px 0;
  font-size: 14px; font-weight: 600; color: var(--c-white);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  -webkit-tap-highlight-color: transparent;
}
.faq-item__q::after { content: '+'; font-size: 20px; color: var(--c-accent); flex-shrink: 0; transition: transform .25s; }
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a { font-size: 13px; color: var(--c-white70); line-height: 1.65; padding-bottom: 14px; }

/* Desktop 2-col */
@media (min-width: 900px) {
  .contact-page { padding: calc(var(--nav-h) + 60px) 48px 80px; }
  .contact-grid { flex-direction: row; align-items: flex-start; gap: 32px; }
  .contact-form-wrap { flex: 1.2; }
  .contact-info-col  { flex: 1; }
  .contact-fields    { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 36px 32px; }
}

/* ============================================================
   CONTACT PAGE v2 — quick-info cards + form improvements
   ============================================================ */

/* Quick info row */
.contact-quick-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.contact-quick-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 16px 20px;
  color: var(--c-white);
  transition: border-color .25s, transform .2s;
  -webkit-tap-highlight-color: transparent;
}
.contact-quick-card:hover {
  border-color: var(--c-accent-br);
  transform: translateY(-2px);
}
.contact-quick-card--static { cursor: default; }
.contact-quick-card--static:hover { transform: none; border-color: var(--c-border); }
.contact-quick-card__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--c-accent-bg);
  border: 1px solid var(--c-accent-br);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
}
.contact-quick-card__body { flex: 1; min-width: 0; }
.contact-quick-card__label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--c-white40);
  margin-bottom: 3px;
}
.contact-quick-card__val {
  font-family: var(--ff-head); font-size: 15px; font-weight: 600;
  color: var(--c-white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
a.contact-quick-card .contact-quick-card__val { color: var(--c-accent); }
.contact-quick-card__arrow {
  font-size: 18px; color: var(--c-accent); flex-shrink: 0;
  transition: transform .2s;
}
.contact-quick-card:hover .contact-quick-card__arrow { transform: translateX(4px); }

/* Form header */
.contact-form-card__header {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid var(--c-border);
}
.contact-form-card__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--c-accent); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}

/* Required asterisk */
.contact-required { color: var(--c-accent); margin-left: 2px; }

/* Textarea hint */
.contact-textarea-hint { font-size: 11px; color: var(--c-white40); margin-top: 5px; }

/* Privacy note */
.contact-form-privacy {
  font-size: 12px; color: var(--c-white40); text-align: center;
  margin-top: 14px; line-height: 1.5;
}
.contact-form-privacy a { color: var(--c-accent); }
.contact-form-privacy a:hover { text-decoration: underline; }

/* Submit button */
.contact-submit-btn { gap: 10px !important; margin-top: 4px; }

/* Quick info responsive */
@media (min-width: 600px) {
  .contact-quick-info { grid-template-columns: repeat(3, 1fr); }
}

/* 404 PAGE */
.page-404 {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 80vh;
  padding: calc(var(--nav-h) + 40px) 16px 80px;
  text-align: center;
}
.page-404__num {
  font-family: var(--ff-head); font-size: clamp(80px, 20vw, 160px);
  font-weight: 900; letter-spacing: -.05em; line-height: 1;
  color: var(--c-surface2); margin-bottom: 0;
  background: linear-gradient(135deg, var(--c-surface2) 0%, var(--c-accent-bg) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-404__title { font-family: var(--ff-head); font-size: clamp(22px,4vw,32px); font-weight: 800; margin-bottom: 12px; }
.page-404__desc  { font-size: 16px; color: var(--c-white70); max-width: 400px; margin: 0 auto 32px; line-height: 1.65; }
.page-404__btns  { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================================
   INFO PAGES — Envíos, Garantía, FAQ
   ============================================================ */
.info-page { padding: calc(var(--nav-h) + 40px) 16px 80px; }
.info-page__inner { max-width: 1100px; margin: 0 auto; }

.info-page__hero { text-align: center; margin-bottom: 48px; }
.info-page__lead { font-size: 17px; color: var(--c-white70); font-weight: 300; line-height: 1.65; margin-top: 14px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Info grid */
.info-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
.info-grid--single { grid-template-columns: 1fr; max-width: 760px; margin-left: auto; margin-right: auto; }

/* Info card */
.info-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: border-color .25s;
}
.info-card:hover { border-color: var(--c-border2); }

.info-card__header {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 24px; border-bottom: 1px solid var(--c-border);
  background: var(--c-surface2);
}
.info-card__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--c-accent-bg); border: 1px solid var(--c-accent-br);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
}
.info-card__title { font-family: var(--ff-head); font-size: 20px; font-weight: 800; letter-spacing: -.01em; }

.info-card__body { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.info-card__body p { font-size: 14px; color: var(--c-white70); line-height: 1.7; }

/* Highlight box */
.info-highlight {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--c-accent-bg); border: 1px solid var(--c-accent-br);
  border-radius: var(--r-md); padding: 16px;
  font-size: 15px; line-height: 1.5;
}
.info-highlight--green {
  background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.25); color: var(--c-white);
}
.info-highlight__icon { font-size: 22px; flex-shrink: 0; line-height: 1; }

/* Table */
.info-table { border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; }
.info-table__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 16px; gap: 12px; font-size: 14px;
  border-bottom: 1px solid var(--c-border);
}
.info-table__row:last-child { border-bottom: none; }
.info-table__row--header {
  background: var(--c-surface2);
  font-family: var(--ff-head); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--c-white40);
}
.info-table__row span:first-child { display: flex; align-items: center; gap: 8px; color: var(--c-white70); }
.info-table__val { color: var(--c-white); white-space: nowrap; }

/* Section title inside card */
.info-section-title {
  font-family: var(--ff-head); font-size: 15px; font-weight: 700;
  letter-spacing: -.01em; color: var(--c-white);
  padding-top: 4px; border-top: 1px solid var(--c-border);
  margin-top: 4px;
}

/* Lists */
.info-list { display: flex; flex-direction: column; gap: 8px; padding-left: 0; list-style: none; }
.info-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--c-white70); line-height: 1.5;
}
.info-list li::before {
  content: '✓'; color: var(--c-accent); font-weight: 700;
  font-size: 13px; flex-shrink: 0; margin-top: 1px;
}
.info-list--negative li::before { content: '✕'; color: #ef4444; }

/* Notice */
.info-notice {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: 13px 14px;
  font-size: 13px; color: var(--c-white70); line-height: 1.55;
}
.info-notice--warning { border-color: rgba(234,179,8,.25); background: rgba(234,179,8,.06); }
.info-notice svg { flex-shrink: 0; margin-top: 1px; color: var(--c-accent); }
.info-notice--warning svg { color: #eab308; }

/* Steps */
.info-steps { display: flex; flex-direction: column; gap: 14px; }
.info-step { display: flex; align-items: flex-start; gap: 14px; font-size: 14px; color: var(--c-white70); line-height: 1.55; }
.info-step__num {
  width: 30px; height: 30px; flex-shrink: 0;
  background: var(--c-accent); color: #fff;
  font-family: var(--ff-head); font-size: 13px; font-weight: 800;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.info-step strong { display: block; color: var(--c-white); margin-bottom: 2px; }

/* Info link */
.info-link { color: var(--c-accent); }
.info-link:hover { text-decoration: underline; }

/* CTA bottom */
.info-cta {
  text-align: center; padding: 48px 16px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); margin-top: 8px;
}
.info-cta h3 { font-family: var(--ff-head); font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.info-cta p  { font-size: 15px; color: var(--c-white70); }

/* FAQ page grid */
.faq-page-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
.faq-page-section {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); overflow: hidden;
}
.faq-page-section__header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border-bottom: 1px solid var(--c-border);
  background: var(--c-surface2);
}
.faq-page-section__icon { font-size: 22px; line-height: 1; }
.faq-page-section__title { font-family: var(--ff-head); font-size: 17px; font-weight: 700; }
.faq-page-section .contact-faq__list { padding: 4px 22px 12px; }
.faq-page-section .faq-item { border-color: var(--c-border); }

/* Desktop layouts */
@media (min-width: 900px) {
  .info-page { padding: calc(var(--nav-h) + 60px) 48px 80px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .faq-page-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LOGO SVG — nav + footer
   ============================================================ */
.nav-logo-img-wrap {
  display: flex; align-items: center; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-logo-img {
  height: 36px; width: auto;
  display: block;
  /* Filtro para que el logo SVG se vea bien sobre fondo oscuro */
  filter: brightness(1);
  transition: filter .2s, opacity .2s;
}
.nav-logo-img-wrap:hover .nav-logo-img {
  filter: brightness(1.1);
  opacity: .9;
}

/* Mobile: logo ligeramente más pequeño */
@media (max-width: 599px) {
  .nav-logo-img { height: 30px; }
}

/* Footer logo */
.footer__brand-logo-link { display: inline-block; }
.footer__brand-logo-link img { height: 34px; width: auto; display: block; }

/* ============================================================
   MEJORAS v3 — Flechas galería · Tabs catálogo · Gradientes dinámicos
   ============================================================ */

/* ── FLECHAS GALERÍA PRODUCTO ── */


/* ============================================================
   MERKAZO v4 — GALERÍA PRODUCTO LIMPIA
   ============================================================ */

/* Wrapper de imagen principal */
.pgallery-main {
  position: relative;
  background: var(--c-surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 480px;
  /* Centra la imagen sin recortar ni dejar huecos */
  display: flex;
  align-items: center;
  justify-content: center;
}
.pgallery-main img {
  /* Llena el marco SIN recortar:
     - Si es cuadrada o paisaje: llena el ancho
     - Si es vertical: llena la altura, centrada
     max-width + max-height garantizan que nunca se salga */
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  cursor: zoom-in;
  transition: opacity .22s ease, transform .22s ease;
  /* Fondo suave cuando hay espacios laterales */
  background-color: var(--c-surface);
}
.pgallery-main img.pgal-swapping {
  opacity: 0;
  transform: scale(0.97);
}
/* Fondo con desenfoque — rellena huecos en fotos no cuadradas */
.pgallery-main::before {
  content: '';
  position: absolute;
  inset: -10px;
  z-index: 0;
  background: var(--bg-img, none) center / cover no-repeat;
  filter: blur(22px) saturate(.55) brightness(.45);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.pgallery-main.has-bg::before { opacity: 1; }
.pgallery-main img { position: relative; z-index: 1; }
/* Asegurar que las flechas y dots estén sobre el fondo */
.pgallery-arrow,
.pgallery-dots { z-index: 12; }

/* Flechas */
.pgallery-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .22s, background .2s, transform .18s;
  -webkit-tap-highlight-color: transparent;
}
.pgallery-arrow--prev { left: 12px; }
.pgallery-arrow--next { right: 12px; }
/* Visible al hover (desktop) y siempre en móvil */
.pgallery-main:hover .pgallery-arrow { opacity: 1; }
@media (hover: none), (max-width: 899px) { .pgallery-arrow { opacity: 1 !important; } }
.pgallery-arrow:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  transform: translateY(-50%) scale(1.1);
}
.pgallery-arrow:active { transform: translateY(-50%) scale(.93); }

/* Dots */
.pgallery-dots {
  position: absolute;
  bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.pgallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
  -webkit-tap-highlight-color: transparent;
}
.pgallery-dot--on {
  background: var(--c-accent);
  transform: scale(1.35);
}

/* Thumbnails */
.pgallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 2px 2px;
}
.pgallery-thumbs::-webkit-scrollbar { display: none; }
.pgallery-thumb {
  flex: 0 0 64px; height: 64px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--c-surface);
  transition: border-color .18s, transform .15s;
  -webkit-tap-highlight-color: transparent;
}
.pgallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pgallery-thumb:hover { border-color: rgba(255,255,255,.3); transform: scale(1.06); }
.pgallery-thumb.on { border-color: var(--c-accent); }
@media (min-width: 900px) {
  .pgallery-thumb { flex: 0 0 72px; height: 72px; }
}

/* Swatch variantes */
.vo-swatch-dot {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--sw, #888);
  border: 2px solid rgba(255,255,255,.15);
}
.vo-swatch-name {
  position: absolute;
  bottom: -20px; left: 50%; transform: translateX(-50%);
  font-size: 10px; color: var(--c-white70);
  white-space: nowrap; pointer-events: none;
}
.variant-opt--swatch {
  position: relative;
  width: 42px; height: 42px; border-radius: 50%;
  background: none; border: 3px solid transparent;
  padding: 0; cursor: pointer;
  transition: border-color .18s, transform .15s;
  -webkit-tap-highlight-color: transparent;
}
.variant-opt--swatch.active { border-color: var(--c-accent); transform: scale(1.1); }
.variant-opt--swatch:hover  { transform: scale(1.06); }

/* Descripción expandible producto */
.pdesc {
  margin-bottom: 20px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-surface);
  overflow: hidden;
}
.pdesc__short {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--c-white70);
  line-height: 1.7;
  font-weight: 300;
}
/* ── DESCRIPCIÓN PRODUCTO — max-height sin límite, blur animation ── */
.pdesc__full {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 16px;
  border-top: none;
  /* Blur + slide + fade */
  filter: blur(5px);
  transform: translateY(-8px);
  transition:
    max-height .65s cubic-bezier(.16,1,.3,1),
    opacity .5s ease,
    padding .5s ease,
    filter .5s ease,
    transform .55s cubic-bezier(.16,1,.3,1),
    border-color .3s ease;
  -webkit-overflow-scrolling: touch;
  will-change: max-height, opacity, filter;
}
.pdesc__full.pdesc-open {
  max-height: 9999px; /* Sin límite — muestra TODO */
  opacity: 1;
  padding: 14px 16px;
  border-top: 1px solid var(--c-border);
  filter: blur(0px);
  transform: translateY(0);
}
.pdesc__full ul, .pdesc__full ol { padding-left: 18px; margin: 8px 0; }
.pdesc__full li { margin-bottom: 5px; line-height: 1.7; }
.pdesc__full strong, .pdesc__full b { color: var(--c-white); font-weight: 600; }
.pdesc__full img { max-width: 100%; border-radius: var(--r-sm); margin: 8px 0; display: block; }
.pdesc__full p { margin-bottom: 10px; }
.pdesc__full p:last-child { margin-bottom: 0; }
.pdesc__full h1,.pdesc__full h2,.pdesc__full h3 { color: var(--c-white); font-family: var(--ff-head); margin: 12px 0 6px; }
.pdesc__full table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 10px 0; }
.pdesc__full td, .pdesc__full th { padding: 8px 10px; border: 1px solid var(--c-border); }
.pdesc__btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 16px;
  border-top: 1px solid var(--c-border);
  background: none; border-left: none; border-right: none; border-bottom: none;
  font-family: var(--ff-head); font-size: 13px; font-weight: 600;
  color: var(--c-accent);
  cursor: pointer;
  transition: background .18s;
  -webkit-tap-highlight-color: transparent;
}
.pdesc__btn:hover { background: var(--c-accent-bg); }
.pdesc__btn svg { transition: transform .3s; }
.pdesc__btn[aria-expanded="true"] svg { transform: rotate(180deg); }

/* product-trust */
.product-trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
}

/* ============================================================
   MERKAZO v4 — PRODUCT CARD (pcard) LIMPIA
   ============================================================ */
.pcard {
  --gx: 50%; --gy: 50%;
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  /* Animación de entrada */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .3s, border-color .3s;
}
.pcard.pcard-in {
  opacity: 1;
  transform: none;
}
/* Stagger */
.pcard:nth-child(1)  { transition-delay: .00s; }
.pcard:nth-child(2)  { transition-delay: .05s; }
.pcard:nth-child(3)  { transition-delay: .10s; }
.pcard:nth-child(4)  { transition-delay: .15s; }
.pcard:nth-child(5)  { transition-delay: .20s; }
.pcard:nth-child(6)  { transition-delay: .25s; }
.pcard:nth-child(7)  { transition-delay: .30s; }
.pcard:nth-child(8)  { transition-delay: .35s; }
.pcard:nth-child(9)  { transition-delay: .40s; }
.pcard:nth-child(10) { transition-delay: .45s; }
.pcard:nth-child(11) { transition-delay: .50s; }
.pcard:nth-child(12) { transition-delay: .55s; }

/* Cursor glow */
.pcard::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(200px circle at var(--gx) var(--gy), rgba(255,95,46,.1) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  border-radius: inherit;
}
.pcard:hover::before { opacity: 1; }
.pcard:hover {
  border-color: rgba(255,95,46,.28);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(255,95,46,.12);
  transform: translateY(-5px);
}
/* Asegurar contenido sobre el glow */
.pcard > * { position: relative; z-index: 1; }

/* Imagen wrap */
.pcard__img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--c-surface2);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.pcard__img--main {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94), opacity .3s;
}
.pcard__img--alt {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity .4s ease;
}
.pcard__img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  background: var(--c-surface2);
  color: var(--c-white40);
  aspect-ratio: 1 / 1;
}
.pcard:hover .pcard__img--main { transform: scale(1.06); }
.pcard:hover .pcard__img--alt  { opacity: 1; }

/* Shimmer al hover */
.pcard__img-wrap::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.055) 50%, transparent 80%);
  background-size: 300%; opacity: 0; pointer-events: none;
}
.pcard:hover .pcard__img-wrap::after {
  opacity: 1;
  animation: shimPCard .85s ease forwards;
}
@keyframes shimPCard {
  from { background-position: 200% 0; }
  to   { background-position: -100% 0; }
}

/* Badges */
.pcard__sale-badge, .pcard__out-badge {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  font-family: var(--ff-head); font-size: 10px; font-weight: 700;
  letter-spacing: .05em; padding: 3px 9px;
  border-radius: var(--r-pill);
}
.pcard__sale-badge { background: var(--c-accent); color: #fff; }
.pcard__out-badge  { background: rgba(255,255,255,.12); color: var(--c-white40); top: auto; bottom: 10px; left: 10px; }

/* Body */
.pcard__body {
  padding: 14px 16px 16px;
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.pcard__brand {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-accent);
}
.pcard__title {
  font-family: var(--ff-head); font-size: 14px; font-weight: 600;
  line-height: 1.3; color: var(--c-white);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard__title-a { color: inherit; }
.pcard__title-a:hover { color: var(--c-accent); }

.pcard__prices { display: flex; align-items: baseline; gap: 8px; }
.pcard__price {
  font-family: var(--ff-head); font-size: 17px; font-weight: 800;
  color: var(--c-white);
}
.pcard__old-price {
  font-size: 12px; color: var(--c-white40);
  text-decoration: line-through;
}

/* Descripción expandible en card */
.pcard__desc-wrap {
  /* Oculto por defecto — el JS agrega .desc-open */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 12px;
  margin-top: 0;
  background: var(--c-surface2);
  border: 0px solid var(--c-border);
  border-radius: var(--r-md);
  /* Transición suave con blur */
  transition:
    max-height .6s cubic-bezier(.16,1,.3,1),
    opacity .45s ease,
    padding .45s ease,
    margin .4s ease,
    border-width .3s ease,
    filter .4s ease,
    transform .5s cubic-bezier(.16,1,.3,1);
  filter: blur(4px);
  transform: translateY(-6px);
  -webkit-overflow-scrolling: touch; /* iOS */
  will-change: max-height, opacity;
}
.pcard__desc-wrap.desc-open {
  max-height: 9999px; /* Sin límite — muestra TODO el contenido */
  opacity: 1;
  padding: 10px 12px;
  margin-top: 6px;
  border-width: 1px;
  filter: blur(0px);
  transform: translateY(0);
}
.pcard__desc-preview {
  font-size: 13px;
  color: var(--c-white70);
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}
.pcard__desc-more {
  /* Oculto por defecto */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  transition:
    max-height .6s cubic-bezier(.16,1,.3,1),
    opacity .45s ease,
    padding .4s ease,
    margin .4s ease,
    border-color .3s ease,
    filter .4s ease;
  filter: blur(3px);
  -webkit-overflow-scrolling: touch;
}
.pcard__desc-more.more-open {
  max-height: 9999px; /* Sin límite — muestra TODO */
  opacity: 1;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--c-border);
  filter: blur(0px);
}
.pcard__desc-html {
  font-size: 13px;
  color: var(--c-white70);
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}
.pcard__desc-html img { max-width: 100%; border-radius: var(--r-sm); margin: 8px 0; display: block; }
.pcard__desc-html ul, .pcard__desc-html ol { padding-left: 18px; margin: 8px 0; }
.pcard__desc-html li { margin-bottom: 5px; line-height: 1.65; }
.pcard__desc-html strong, .pcard__desc-html b { color: var(--c-white); font-weight: 600; }
.pcard__desc-html p { margin-bottom: 8px; }
.pcard__desc-html p:last-child { margin-bottom: 0; }
.pcard__desc-html h1,.pcard__desc-html h2,.pcard__desc-html h3 { color: var(--c-white); font-family: var(--ff-head); margin: 10px 0 6px; }
.pcard__desc-html table { width: 100%; border-collapse: collapse; font-size: 12px; margin: 8px 0; }
.pcard__desc-html td, .pcard__desc-html th { padding: 6px 8px; border: 1px solid var(--c-border); }

.pcard__more-btn {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 7px;
  font-family: var(--ff-head); font-size: 11px; font-weight: 700;
  color: var(--c-accent); background: none; border: none;
  cursor: pointer; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.pcard__more-btn svg { transition: transform .25s; }
.pcard__more-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.pcard__desc-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--ff-head); font-size: 12px; font-weight: 700;
  color: var(--c-accent); background: none; border: none;
  cursor: pointer; padding: 3px 0;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .2s;
}
.pcard__desc-toggle:hover { opacity: .8; }
.pcard__desc-toggle svg { transition: transform .25s; }
.pcard__desc-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Actions */
.pcard__actions {
  display: flex; gap: 8px; align-items: center;
  margin-top: auto; padding-top: 8px;
}
.pcard__cart-btn { flex: 1; gap: 5px !important; }
.pcard__view-btn { flex-shrink: 0; font-size: 12px !important; padding: 0 12px !important; min-height: 36px !important; }

/* ============================================================
   TABS DE COLECCIÓN
   ============================================================ */
.col-header { text-align: center; padding: calc(var(--nav-h) + 32px) 16px 24px; max-width: 1200px; margin: 0 auto; }
.col-header__desc { font-size: 15px; color: var(--c-white70); font-weight: 300; line-height: 1.6; margin-top: 10px; }

.col-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto 28px;
  padding: 0 16px; justify-content: center;
}
@media (min-width: 900px) { .col-tabs { padding: 0 48px; justify-content: flex-start; } }

.col-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; min-height: 44px;
  border-radius: var(--r-pill);
  background: var(--c-surface); border: 1px solid var(--c-border);
  color: var(--c-white70);
  font-family: var(--ff-head); font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
}
.col-tab:hover { border-color: var(--c-white40); color: var(--c-white); }
.col-tab--on {
  background: var(--c-accent); border-color: var(--c-accent);
  color: #fff; box-shadow: 0 4px 16px rgba(255,95,46,.28);
}
.col-tab--on:hover { background: var(--c-accent2); }

.col-panel { display: grid; }
.col-panel[hidden] { display: none !important; }

.col-empty-box {
  grid-column: 1 / -1;
  text-align: center; padding: 60px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.col-empty-box span { font-size: 40px; opacity: .4; }
.col-empty-box strong { font-family: var(--ff-head); font-size: 16px; color: var(--c-white); }
.col-empty-box p { font-size: 13px; color: var(--c-white40); line-height: 1.6; max-width: 400px; }
.col-empty-box b { color: var(--c-accent); }

/* reduce-motion */
@media (prefers-reduced-motion: reduce) {
  .pcard, .pgallery-main img, .pcard__img--main, .pcard__img--alt { transition-duration: .01ms !important; animation: none !important; }
  .pcard { opacity: 1; transform: none; }
}

/* ── TABS v4.1 — mejoras ── */
.col-tab__icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
.col-zero {
  text-align: center;
  color: var(--c-white40);
  padding: 60px 0;
  font-size: 16px;
}
/* Animación de entrada del panel activo */
.col-panel--on {
  animation: panelIn .35s ease both;
}
@keyframes panelIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Tab con aria-selected */
.col-tab[aria-selected="true"] {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,95,46,.28);
}

/* ================================================================
   MERKAZO v4.2 — ANIMACIONES · CURSOR · FONDOS · TRANSICIONES
   ================================================================ */

/* Cursor: nativo (sin personalización) */
body { cursor: auto; }
a, button, [role="button"] { cursor: pointer; }

/* ──────────────────────────────────────────────────────────────
   2. HERO — FONDOS ANIMADOS
   Partículas flotantes + gradientes dinámicos + aurora boreal
   ────────────────────────────────────────────────────────────── */

/* Canvas de partículas */
#mkzParticles {
  position: absolute;
  inset: 0; z-index: 0;
  pointer-events: none;
}

/* Aurora — capa 1 */
.hero__aurora {
  position: absolute;
  inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__aurora::before,
.hero__aurora::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: auroraMove 14s ease-in-out infinite;
}
.hero__aurora::before {
  width: 60vw; height: 50vh;
  background: radial-gradient(ellipse, rgba(255,95,46,.13) 0%, transparent 70%);
  top: -10%; left: -10%;
  animation-delay: 0s;
}
.hero__aurora::after {
  width: 50vw; height: 60vh;
  background: radial-gradient(ellipse, rgba(59,130,246,.09) 0%, transparent 70%);
  bottom: -10%; right: -5%;
  animation-delay: -7s;
}
@keyframes auroraMove {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(4vw, -3vh) scale(1.08); }
  66%  { transform: translate(-3vw, 4vh) scale(.95); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Grid animado (ya existe pero lo mejoramos) */
.hero__grid {
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

/* Orbs mejorados con mayor movimiento */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.hero__orb--1 {
  width: min(600px, 70vw);
  height: min(600px, 70vw);
  background: radial-gradient(circle, rgba(255,95,46,.16) 0%, transparent 65%);
  top: -15%; left: -10%;
  animation: orbFloat1 11s ease-in-out infinite;
}
.hero__orb--2 {
  width: min(500px, 60vw);
  height: min(500px, 60vw);
  background: radial-gradient(circle, rgba(59,130,246,.12) 0%, transparent 65%);
  bottom: -15%; right: -8%;
  animation: orbFloat2 14s ease-in-out infinite;
}
/* Tercer orb naranja tenue que aparece en desktop */
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,122,80,.1) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 8s ease-in-out infinite;
  display: none;
}
@media (min-width: 900px) { .hero__orb--3 { display: block; } }

@keyframes orbFloat1  { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-35px,28px)} 66%{transform:translate(20px,-18px)} }
@keyframes orbFloat2  { 0%,100%{transform:translate(0,0)} 33%{transform:translate(28px,-32px)} 66%{transform:translate(-18px,20px)} }
@keyframes orbFloat3  { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.3)} }

/* ──────────────────────────────────────────────────────────────
   3. REVEAL MEJORADO — múltiples variantes
   ────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1),
              transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.right   { transform: translateX(32px); }
.reveal.left    { transform: translateX(-32px); }
.reveal.scale   { transform: scale(.94); }
.reveal.fade    { transform: none; }
.reveal.in      { opacity: 1; transform: none !important; }

[data-delay="1"] { transition-delay: .08s !important; }
[data-delay="2"] { transition-delay: .16s !important; }
[data-delay="3"] { transition-delay: .26s !important; }
[data-delay="4"] { transition-delay: .36s !important; }
[data-delay="5"] { transition-delay: .46s !important; }

/* ──────────────────────────────────────────────────────────────
   4. TÍTULOS — texto con gradiente animado
   ────────────────────────────────────────────────────────────── */
.hero__title .accent {
  background: linear-gradient(90deg,
    var(--c-accent) 0%,
    #ff9a6c 40%,
    var(--c-accent2) 70%,
    var(--c-accent) 100%);
  background-size: 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradFlow 4s linear infinite;
}
@keyframes textGradFlow {
  0%   { background-position: 0%; }
  100% { background-position: 250%; }
}

/* Números de stats con gradiente */
.stats-bar__num {
  background: linear-gradient(135deg, var(--c-accent) 0%, #ff9a6c 50%, var(--c-accent2) 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradFlow 3s ease-in-out infinite alternate;
}

/* ──────────────────────────────────────────────────────────────
   5. BOTONES — animaciones avanzadas
   ────────────────────────────────────────────────────────────── */
.btn--primary {
  position: relative;
  overflow: hidden;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1),
              box-shadow .25s ease,
              background .2s ease;
}
/* Ripple al click */
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0; z-index: 0;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%),
    rgba(255,255,255,.28) 0%, transparent 60%);
  transform: scale(0);
  opacity: 0;
  border-radius: inherit;
  transition: transform .5s ease, opacity .4s ease;
  pointer-events: none;
}
.btn--primary.rippling::after {
  transform: scale(2.5);
  opacity: 1;
  transition: none;
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255,95,46,.35);
}
.btn--primary > * { position: relative; z-index: 1; }

/* Botón outline con borde animado */
.btn--outline {
  position: relative;
  overflow: hidden;
  transition: color .25s ease, transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
}
.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-accent);
  transform: translateX(-102%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  border-radius: inherit;
  z-index: 0;
}
.btn--outline:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.btn--outline:hover::before { transform: translateX(0); }
.btn--outline > * { position: relative; z-index: 1; }

/* ──────────────────────────────────────────────────────────────
   6. PRODUCT CARDS — animaciones estilo Apple
   ────────────────────────────────────────────────────────────── */
.pcard {
  transition:
    opacity .6s cubic-bezier(.16,1,.3,1),
    transform .6s cubic-bezier(.16,1,.3,1),
    box-shadow .35s ease,
    border-color .35s ease;
}
.pcard.pcard-in { opacity: 1; transform: none; }
.pcard:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,95,46,.15);
}

/* Título reveal con clip */
.pcard.pcard-in .pcard__title {
  animation: clipReveal .55s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .1s;
}
.pcard.pcard-in .pcard__prices {
  animation: clipReveal .55s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .18s;
}
@keyframes clipReveal {
  from { opacity: 0; clip-path: inset(0 100% 0 0); }
  to   { opacity: 1; clip-path: inset(0 0% 0 0); }
}

/* Imagen zoom suave */
.pcard__img--main { transition: transform .7s cubic-bezier(.25,.46,.45,.94); }
.pcard:hover .pcard__img--main { transform: scale(1.07); }

/* ──────────────────────────────────────────────────────────────
   8. FEAT CARDS — scroll reveal escalonado
   ────────────────────────────────────────────────────────────── */
.feat-card {
  opacity: 0;
  transform: translateY(24px) scale(.98);
  transition:
    opacity .7s cubic-bezier(.16,1,.3,1),
    transform .7s cubic-bezier(.16,1,.3,1),
    border-color .3s ease,
    box-shadow .3s ease;
}
.feat-card.in { opacity: 1; transform: none; }
.feat-card:nth-child(1) { transition-delay: .0s; }
.feat-card:nth-child(2) { transition-delay: .1s; }
.feat-card:nth-child(3) { transition-delay: .2s; }
.feat-card:nth-child(4) { transition-delay: .3s; }
.feat-card:hover {
  border-color: rgba(255,95,46,.25);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  transform: translateY(-4px);
}

/* ──────────────────────────────────────────────────────────────
   9. NAV — transición más rica
   ────────────────────────────────────────────────────────────── */
.site-nav {
  transition: background .4s ease, border-color .4s ease,
              box-shadow .4s ease, height .3s ease;
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.nav-links a {
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-accent);
  transition: width .3s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover::after { width: 100%; }

/* ──────────────────────────────────────────────────────────────
   10. PAGE TRANSITIONS — fade entre páginas
   ────────────────────────────────────────────────────────────── */
.page-transition-out {
  animation: pageOut .28s ease forwards;
}
@keyframes pageOut {
  to { opacity: 0; transform: translateY(8px); }
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.page-entering {
  animation: pageIn .45s cubic-bezier(.16,1,.3,1) both;
}

/* ──────────────────────────────────────────────────────────────
   11. COLLECTION TABS — transición del panel
   ────────────────────────────────────────────────────────────── */
.col-panel {
  transition: opacity .35s ease;
}
.col-panel--on {
  animation: panelSlideIn .45s cubic-bezier(.16,1,.3,1) both;
}
@keyframes panelSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.col-tab {
  transition: background .25s ease, border-color .25s ease,
              color .25s ease, transform .18s cubic-bezier(.34,1.56,.64,1),
              box-shadow .25s ease;
}
.col-tab:hover  { transform: translateY(-2px); }
.col-tab:active { transform: scale(.96); }
.col-tab--on    { transform: none !important; }

/* ──────────────────────────────────────────────────────────────
   12. GALERÍA FLECHAS — animación más expresiva
   ────────────────────────────────────────────────────────────── */
.pgallery-arrow {
  transition: opacity .25s ease, background .2s ease,
              transform .2s cubic-bezier(.34,1.56,.64,1);
}
.pgallery-arrow:hover {
  transform: translateY(-50%) scale(1.15) !important;
}

/* ──────────────────────────────────────────────────────────────
   13. TRUST PILLS — entrada con bounce
   ────────────────────────────────────────────────────────────── */
.hero__trust .trust-pill {
  opacity: 0;
  transform: scale(.85) translateY(6px);
  animation: pillBounce .55s cubic-bezier(.34,1.56,.64,1) both;
}
.hero__trust .trust-pill:nth-child(1) { animation-delay: .55s; }
.hero__trust .trust-pill:nth-child(2) { animation-delay: .65s; }
.hero__trust .trust-pill:nth-child(3) { animation-delay: .75s; }
@keyframes pillBounce {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.trust-pill {
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease;
}
.trust-pill:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
}

/* ──────────────────────────────────────────────────────────────
   14. HERO IMAGEN — float + parallax hover
   ────────────────────────────────────────────────────────────── */
.hero__img {
  animation: float 5.5s ease-in-out infinite;
  transition: filter .3s ease;
  will-change: transform;
}
.hero__img:hover { filter: brightness(1.05); }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  25%     { transform: translateY(-10px) rotate(.4deg); }
  75%     { transform: translateY(-6px) rotate(-.3deg); }
}

/* Chip de stats con pulso */
.hero__stat-chip {
  animation: chipIn .7s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: .8s;
}
@keyframes chipIn {
  from { opacity: 0; transform: scale(.5) rotate(-8deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ──────────────────────────────────────────────────────────────
   15. SCROLL PROGRESS BAR
   ────────────────────────────────────────────────────────────── */
#mkzProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent2));
  z-index: 9998;
  width: 0%;
  transition: width .1s linear;
  box-shadow: 0 0 8px rgba(255,95,46,.6);
}

/* ──────────────────────────────────────────────────────────────
   16. REDUCE MOTION — respeta preferencias del usuario
   ────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .mkz-cursor { display: none; }
  body { cursor: auto; }
  .pcard { opacity: 1; transform: none; }
  .feat-card { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .hero__trust .trust-pill { opacity: 1; transform: none; }
  .hero__stat-chip { opacity: 1; transform: none; }
}

/* ================================================================
   MERKAZO v4.3 — ANIMACIONES FLUIDAS · TÍTULOS GRADIENT · CURSOR FX
   ================================================================ */

/* ── VARIABLES DE CURSOR (se inyectan por JS) ── */
:root {
  --cx: 50vw;   /* posición X del cursor */
  --cy: 50vh;   /* posición Y del cursor */
}

/* ──────────────────────────────────────────────────────────────
   TÍTULOS DE PRODUCTO — gradiente que sigue el cursor
   ────────────────────────────────────────────────────────────── */
.pcard__title-a {
  background: linear-gradient(
    calc(var(--card-angle, 135deg)),
    #ffffff 0%,
    rgba(255,255,255,.82) 35%,
    var(--c-accent) 60%,
    rgba(255,122,80,.9) 80%,
    #ffffff 100%
  );
  background-size: 250% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-position: var(--card-bg-pos, 0% 0%);
  transition: background-position .6s ease, filter .3s ease;
  display: block;
}
.pcard:hover .pcard__title-a {
  background-position: var(--card-bg-pos, 100% 100%);
  filter: brightness(1.1);
}

/* ── PRECIO — gradiente sutil ── */
.pcard__price {
  background: linear-gradient(135deg, #fff 0%, rgba(255,200,170,.9) 60%, #fff 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: priceShimmer 4s ease-in-out infinite;
}
@keyframes priceShimmer {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* ── CARD BODY — glow de fondo que sigue cursor ── */
.pcard__body::before {
  content: '';
  position: absolute;
  inset: 0; z-index: 0;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  background: radial-gradient(
    120px circle at var(--lx, 50%) var(--ly, 80%),
    rgba(255,95,46,.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.pcard:hover .pcard__body::before { opacity: 1; }
.pcard__body > * { position: relative; z-index: 1; }

/* ── BORDER GLOW que sigue el cursor ── */
.pcard::after {
  content: '';
  position: absolute;
  inset: -1px; z-index: 0;
  border-radius: inherit;
  background: radial-gradient(
    200px circle at var(--bx, 50%) var(--by, 50%),
    rgba(255,95,46,.35) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  /* Usar como borde usando clip */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
}
.pcard:hover::after { opacity: 1; }

/* ──────────────────────────────────────────────────────────────
   SECCIONES — REVEAL CON VARIEDAD DE DIRECCIONES
   ────────────────────────────────────────────────────────────── */
.reveal-left  { opacity:0; transform:translateX(-32px);
                transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-right { opacity:0; transform:translateX(32px);
                transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-scale { opacity:0; transform:scale(.92);
                transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-left.in, .reveal-right.in, .reveal-scale.in { opacity:1; transform:none; }

/* ──────────────────────────────────────────────────────────────
   SECTION TITLES — underline animado al entrar
   ────────────────────────────────────────────────────────────── */
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent2), transparent);
  border-radius: 2px;
  transition: width .9s cubic-bezier(.16,1,.3,1);
}
.reveal.in .section-title::after,
.section-title.in::after { width: 60%; }

/* ──────────────────────────────────────────────────────────────
   STATS BAR — números con entrada dramática
   ────────────────────────────────────────────────────────────── */
.stats-bar__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1);
}
.stats-bar__item.in { opacity: 1; transform: none; }
.stats-bar__item:nth-child(1) { transition-delay: .00s; }
.stats-bar__item:nth-child(2) { transition-delay: .10s; }
.stats-bar__item:nth-child(3) { transition-delay: .20s; }
.stats-bar__item:nth-child(4) { transition-delay: .30s; }

/* ──────────────────────────────────────────────────────────────
   GALLERY ITEMS — zoom + tilt al hover
   ────────────────────────────────────────────────────────────── */
.gallery__item {
  transition: transform .45s cubic-bezier(.16,1,.3,1),
              box-shadow .35s ease;
  transform-style: preserve-3d;
}
.gallery__item:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,95,46,.2);
}

/* ──────────────────────────────────────────────────────────────
   BOTÓN — morphing fluido (primary)
   ────────────────────────────────────────────────────────────── */
.btn--primary {
  background: linear-gradient(135deg, var(--c-accent) 0%, #ff7a50 50%, var(--c-accent) 100%);
  background-size: 200% 100%;
  transition: background-position .5s ease,
              transform .2s cubic-bezier(.34,1.56,.64,1),
              box-shadow .25s ease;
}
.btn--primary:hover {
  background-position: 100% 0;
  box-shadow: 0 8px 28px rgba(255,95,46,.4), 0 0 0 1px rgba(255,122,80,.3);
}

/* ──────────────────────────────────────────────────────────────
   TRUST PILLS — hover con glow naranja
   ────────────────────────────────────────────────────────────── */
.trust-pill {
  transition: transform .25s cubic-bezier(.34,1.56,.64,1),
              box-shadow .25s ease,
              border-color .25s ease;
}
.trust-pill:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255,95,46,.2);
  border-color: rgba(255,95,46,.35);
}

/* ──────────────────────────────────────────────────────────────
   FOOTER LINKS — underline con color
   ────────────────────────────────────────────────────────────── */
.footer__col a {
  position: relative;
  transition: color .22s ease, padding-left .22s ease;
}
.footer__col a::before {
  content: '';
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%) scale(0);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.footer__col a:hover { color: var(--c-white) !important; padding-left: 14px; }
.footer__col a:hover::before { transform: translateY(-50%) scale(1); }

/* ──────────────────────────────────────────────────────────────
   HERO BADGE — pulse mejorado
   ────────────────────────────────────────────────────────────── */
.hero__badge {
  animation: badgeEntrance .8s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: .2s;
}
@keyframes badgeEntrance {
  from { opacity:0; transform:translateY(-16px) scale(.85); }
  to   { opacity:1; transform:none; }
}

/* ──────────────────────────────────────────────────────────────
   VARIANTE OPTS — spring al seleccionar
   ────────────────────────────────────────────────────────────── */
.variant-opt {
  transition: background .2s ease, border-color .2s ease,
              color .2s ease, transform .2s cubic-bezier(.34,1.56,.64,1);
}
.variant-opt:hover  { transform: scale(1.05); }
.variant-opt.active { transform: scale(1.08); }
.variant-opt:active { transform: scale(.95); }

/* ──────────────────────────────────────────────────────────────
   PRODUCT PAGE — título con gradiente cursor-aware
   ────────────────────────────────────────────────────────────── */
.product-info__title {
  background: linear-gradient(
    var(--title-angle, 135deg),
    #ffffff 0%,
    rgba(255,255,255,.88) 45%,
    rgba(255,140,100,.6) 100%
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position .5s ease;
}

/* ──────────────────────────────────────────────────────────────
   TABS — active con glow animado
   ────────────────────────────────────────────────────────────── */
.col-tab--on {
  position: relative;
  overflow: hidden;
}
.col-tab--on::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent2), var(--c-accent));
  background-size: 200%;
  z-index: -1;
  animation: tabGlow 2.5s linear infinite;
  opacity: .5;
}
@keyframes tabGlow {
  0%   { background-position: 0%; }
  100% { background-position: 200%; }
}

/* ──────────────────────────────────────────────────────────────
   SCROLL — smooth para toda la página
   ────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ──────────────────────────────────────────────────────────────
   LOADING SKELETON — para productos que cargan
   ────────────────────────────────────────────────────────────── */
@keyframes skelPulse {
  0%,100% { opacity: .4; }
  50%     { opacity: .8; }
}

/* ──────────────────────────────────────────────────────────────
   MAGNETIC BUTTON — efecto magnético en hover
   ────────────────────────────────────────────────────────────── */
.btn-magnetic {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

/* ================================================================
   MERKAZO v4.4 — DEGRADADOS · ANIMACIONES INFO PRODUCTO · COLOR
   ================================================================ */

/* ──────────────────────────────────────────────────────────────
   ANIMACIÓN "MOSTRAR MÁS" — transición suave con blur+slide
   ────────────────────────────────────────────────────────────── */

/* Descripción en página de producto */
.feat-card {
  background:
    linear-gradient(145deg, var(--c-surface) 0%, rgba(28,28,28,1) 100%);
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
/* Borde con gradiente que fluye */
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0; z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    var(--feat-angle, 135deg),
    rgba(255,95,46,.0) 0%,
    rgba(255,95,46,.3) 50%,
    rgba(255,95,46,.0) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.feat-card:hover::before { opacity: 1; }
.feat-card > * { position: relative; z-index: 1; }

/* Tag con degradado */
.feat-card__tag {
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: tagGlow 3s ease-in-out infinite alternate;
}
@keyframes tagGlow {
  from { filter: brightness(1); }
  to   { filter: brightness(1.3); }
}

/* Título de feat-card con degradado al hover */
.feat-card__title {
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: filter .3s ease;
}
.feat-card:hover .feat-card__title { filter: brightness(1.15); }

/* ──────────────────────────────────────────────────────────────
   SPECS — filas con degradado y animación de entrada
   ────────────────────────────────────────────────────────────── */
.spec-row {
  position: relative;
  overflow: hidden;
  transition: background .25s ease, padding .2s ease;
}
.spec-row::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,95,46,.2) 50%,
    transparent 100%
  );
  transform: scaleX(0);
  transition: transform .4s ease;
}
.spec-row:hover::after { transform: scaleX(1); }
.spec-row:hover { background: rgba(255,95,46,.04); padding-left: 6px; }
.spec-row:hover .spec-row__val {
  color: var(--c-accent2);
  transition: color .25s ease;
}

/* ──────────────────────────────────────────────────────────────
   EYEBROW — gradiente animado
   ────────────────────────────────────────────────────────────── */
.eyebrow {
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent2) 60%, var(--c-accent) 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: eyebrowFlow 4s linear infinite;
}
.eyebrow::before {
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent2)) !important;
  -webkit-text-fill-color: initial;
}
@keyframes eyebrowFlow {
  0%   { background-position: 0%; }
  100% { background-position: 200%; }
}

/* ──────────────────────────────────────────────────────────────
   SECTION TITLES — degradado sutil
   ────────────────────────────────────────────────────────────── */
.section-title {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,.92) 60%, rgba(255,200,180,.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ──────────────────────────────────────────────────────────────
   STATS BAR — fondo con gradiente animado
   ────────────────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #0d0d0d 0%, #111 40%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%,
    rgba(255,95,46,.07) 0%, transparent 70%);
  animation: statsGlow 5s ease-in-out infinite;
}
@keyframes statsGlow {
  0%,100% { opacity: .6; transform: scale(1); }
  50%     { opacity: 1; transform: scale(1.1); }
}

/* ──────────────────────────────────────────────────────────────
   CTA BANNER — degradado de texto animado
   ────────────────────────────────────────────────────────────── */
.cta-banner__title {
  background: linear-gradient(90deg,
    #fff 0%, rgba(255,255,255,.9) 30%,
    rgba(255,140,100,.85) 55%,
    rgba(255,95,46,1) 70%,
    #fff 100%
  );
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ctaTitleFlow 6s linear infinite;
}
@keyframes ctaTitleFlow {
  0%   { background-position: 0%; }
  100% { background-position: 300%; }
}

/* ──────────────────────────────────────────────────────────────
   BARRA DE COMPARACIÓN — animación mejorada
   ────────────────────────────────────────────────────────────── */
.cmp-row__fill--a {
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent2) 60%, #ffaa80 100%);
  box-shadow: 0 0 10px rgba(255,95,46,.4);
  position: relative;
  overflow: hidden;
}
.cmp-row__fill--a::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: barShimmer 2.5s ease-in-out infinite;
}
@keyframes barShimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}
.cmp-row__fill--b {
  background: linear-gradient(90deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,.25) 100%);
}

/* ──────────────────────────────────────────────────────────────
   HERO — textos con degradado mejorado
   ────────────────────────────────────────────────────────────── */
.hero__price-main {
  background: linear-gradient(135deg, #fff 0%, rgba(255,210,190,.9) 50%, #fff 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: priceShimmer 5s ease-in-out infinite;
}

/* Chip 45W con glow pulsante */
.hero__stat-chip {
  background: linear-gradient(135deg, var(--c-accent) 0%, #ff7a50 100%);
  box-shadow: 0 0 0 0 rgba(255,95,46,.4);
  animation: chipIn .7s cubic-bezier(.34,1.56,.64,1) both,
             chipPulse 3s ease-in-out 1s infinite;
}
@keyframes chipPulse {
  0%,100% { box-shadow: 0 6px 20px rgba(255,95,46,.3), 0 0 0 0 rgba(255,95,46,.2); }
  50%     { box-shadow: 0 8px 28px rgba(255,95,46,.4), 0  0 0 8px rgba(255,95,46,.0); }
}

/* ──────────────────────────────────────────────────────────────
   NAV — borde inferior con gradiente en scroll
   ────────────────────────────────────────────────────────────── */
.site-nav.scrolled {
  border-bottom-color: transparent;
  box-shadow: 0 1px 0 rgba(255,95,46,.15), 0 4px 24px rgba(0,0,0,.4);
}

/* ──────────────────────────────────────────────────────────────
   COLLECTION HEADER — degradado de fondo
   ────────────────────────────────────────────────────────────── */
.col-header {
  position: relative;
}
.col-header::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,95,46,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ──────────────────────────────────────────────────────────────
   PCARD — precio con destello al hover
   ────────────────────────────────────────────────────────────── */
.pcard:hover .pcard__price {
  animation: priceFlash .5s ease forwards;
}
@keyframes priceFlash {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.4); }
  100% { filter: brightness(1.1); }
}

/* ──────────────────────────────────────────────────────────────
   PRODUCT PAGE — precio con degradado
   ────────────────────────────────────────────────────────────── */
.product-price__main {
  background: linear-gradient(135deg, #fff 0%, rgba(255,210,190,.9) 60%, #fff 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: priceShimmer 5s ease-in-out infinite;
}
.product-price__badge {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent2) 100%);
  box-shadow: 0 2px 10px rgba(255,95,46,.3);
}

/* ──────────────────────────────────────────────────────────────
   VARIANTES SWATCHES — borde con gradiente al activo
   ────────────────────────────────────────────────────────────── */
.variant-opt--swatch.active {
  box-shadow: 0 0 0 2px var(--c-accent),
              0 0 12px rgba(255,95,46,.3);
}

/* ──────────────────────────────────────────────────────────────
   REDUCE MOTION — respetar preferencias
   ────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .eyebrow, .feat-card__tag, .cta-banner__title,
  .cmp-row__fill--a::after, .statsGlow,
  .pdesc__full, .pcard__desc-wrap { animation: none !important; }
  .pdesc__full { filter: none !important; transform: none !important; }
  .pcard__desc-wrap { filter: none !important; transform: none !important; }
}

/* ================================================================
   MERKAZO v4.5 — RESPONSIVE TOTAL: iOS · Android · Tablet
   ================================================================ */

/* ── FUENTES: asegurar carga en todos los navegadores ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* ── iOS: quitar efectos de tap y comportamiento nativo ── */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
input, textarea, select, button {
  -webkit-appearance: none;
  appearance: none;
}
/* Permitir selección de texto en descripciones */
.pdesc__full, .pdesc__short, .pcard__desc-html,
.pcard__desc-preview, .product-info__desc {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

/* ── iOS SAFARI: fix para elementos fixed y viewport ── */
.site-nav {
  /* Forzar GPU layer en iOS */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.nav-drawer {
  /* Fix altura en iOS con barra de navegación */
  height: calc(100vh - var(--nav-h));
  height: calc(100dvh - var(--nav-h)); /* dynamic viewport */
}

/* ── TOUCH: áreas táctiles mínimas 44px (Apple HIG) ── */
.btn, .col-tab, .variant-opt, .pcard__cart-btn,
.qty-ctrl__btn, .pgallery-arrow, .pgallery-dot,
.pgallery-thumb, .pcard__desc-toggle, .pcard__more-btn,
.pdesc__btn, .nav-cart, .nav-hamburger {
  min-height: 44px;
  min-width: 44px;
}
/* Excepciones donde el contenido dicta el tamaño */
.pcard__desc-toggle, .pcard__more-btn, .pdesc__btn {
  min-width: unset;
}

/* ── SCROLL SUAVE EN iOS ── */
.nav-drawer, .pgallery-thumbs, .products-row,
.gallery__track, .pdesc__full, .pcard__desc-html {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* ── COLECCIÓN GRID — responsive completo ── */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 12px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Teléfono pequeño (< 380px) */
@media (max-width: 379px) {
  .collection-grid { grid-template-columns: 1fr; gap: 10px; padding: 0 10px; }
  .pcard__title { font-size: 13px; }
  .pcard__price { font-size: 15px; }
  .btn--sm { padding: 0 12px; font-size: 12px; }
  .col-tab { padding: 8px 14px; font-size: 13px; }
}

/* Teléfono normal (380px–599px) */
@media (min-width: 380px) and (max-width: 599px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 11px; }
}

/* Tablet vertical (600px–899px) */
@media (min-width: 600px) and (max-width: 899px) {
  .collection-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 0 20px; }
  .pcard__title { font-size: 15px; }
  .col-tabs { justify-content: flex-start; padding: 0 20px; }
  .col-header { padding: calc(var(--nav-h) + 28px) 20px 20px; }
  /* Producto: galería arriba, info abajo */
  .product-page__inner { display: flex; flex-direction: column; gap: 28px; }
  .pgallery-main { max-height: 420px; }
}

/* Tablet horizontal / iPad (900px–1199px) */
@media (min-width: 900px) and (max-width: 1199px) {
  .collection-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 0 32px; }
  .product-page__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .pgallery-main { max-height: 460px; }
  :root { --nav-h: 56px; }
}

/* Desktop (≥ 1200px) */
@media (min-width: 1200px) {
  .collection-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; padding: 0 48px; }
}

/* ── PRODUCTO — responsive ── */
@media (max-width: 899px) {
  .product-page { padding: calc(var(--nav-h) + 16px) 14px 48px; }
  .product-page__inner { display: flex; flex-direction: column; gap: 24px; }
  .product-gallery { width: 100%; }
  .pgallery-main { max-height: 340px; aspect-ratio: 1/1; }
  .pgallery-thumb { flex: 0 0 54px; height: 54px; }
  .product-info__title { font-size: clamp(20px, 5vw, 28px); }
  .product-price__main { font-size: 26px; }
  .product-form__ctas { gap: 8px; }
  .btn--lg { min-height: 48px; font-size: 15px; }
  /* Descripción en producto — más legible en móvil */
  .pdesc__short, .pdesc__full { font-size: 14px; line-height: 1.75; }
}

/* ── CARRITO — responsive ── */
@media (max-width: 899px) {
  .cart-layout { flex-direction: column; }
  .cart-summary-box { position: static; }
}

/* ── HERO — responsive tablet ── */
@media (min-width: 600px) and (max-width: 899px) {
  .hero { padding: calc(var(--nav-h) + 40px) 24px 50px; }
  .hero__inner { gap: 32px; }
  .hero__title { font-size: clamp(34px, 7vw, 56px); }
  .hero__img { width: min(300px, 55vw); height: min(300px, 55vw); }
}

/* ── NAV — tablet ── */
@media (min-width: 600px) and (max-width: 899px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .site-nav { padding: 0 20px; }
}

/* ── FOOTER — tablet ── */
@media (min-width: 600px) and (max-width: 899px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ── FEATURES GRID — tablet ── */
@media (min-width: 600px) and (max-width: 899px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
  .feat-card--wide { grid-column: 1 / -1; }
  .feat-card--tall { grid-row: span 1; }
}

/* ── REDUCE MOTION — accessibilidad ── */
@media (prefers-reduced-motion: reduce) {
  .pdesc__full, .pcard__desc-wrap, .pcard__desc-more {
    transition: opacity .2s ease, max-height .2s ease !important;
    filter: none !important;
    transform: none !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   MERKAZO — PARCHE PREMIUM v1.0
   Fixes: smooth scroll mejorado · reveal · btn cubic-bezier · video hero
   ══════════════════════════════════════════════════════════════ */

/* ── 1. SMOOTH SCROLL GLOBAL MEJORADO ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* compensa la nav fija */
}
* { scroll-margin-top: 80px; }

/* ── 2. REVEAL MEJORADO con cubic-bezier premium ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  .7s cubic-bezier(0.4, 0, 0.2, 1),
    transform .7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.right { transform: translateX(32px); }
.reveal.in    { opacity: 1 !important; transform: none !important; }

[data-delay="1"] { transition-delay: .10s !important; }
[data-delay="2"] { transition-delay: .20s !important; }
[data-delay="3"] { transition-delay: .30s !important; }
[data-delay="4"] { transition-delay: .42s !important; }
[data-delay="5"] { transition-delay: .54s !important; }

/* ── 3. BOTONES — transiciones orgánicas cubic-bezier ── */
.btn {
  transition:
    transform    .22s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow   .22s cubic-bezier(0.4, 0, 0.2, 1),
    background   .22s cubic-bezier(0.4, 0, 0.2, 1),
    border-color .22s cubic-bezier(0.4, 0, 0.2, 1),
    opacity      .22s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 10px 32px rgba(255, 95, 46, .40);
}
.btn--outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,.08);
}
.btn:active { transform: scale(0.96) translateY(0) !important; }

/* ── 4. GALERÍA — área de clic ampliada en flechas ── */
.gallery__btn {
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gallery__btn svg,
.gallery__btn::before {
  pointer-events: none; /* evita que el svg "robe" el click */
}

/* ── 5. VIDEO HERO ── */
.hero { position: relative; overflow: hidden; }

.hero__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: .22; /* oscurece para que el texto sea legible */
  pointer-events: none;
}

/* Cuando hay video, los orbs y aurora van sobre él */
.hero__aurora,
.hero__orb,
.hero__grid,
#mkzParticles {
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
}

/* Reducir opacidad del video en móvil para no distraer */
@media (max-width: 599px) {
  .hero__video-bg { opacity: .14; }
}

/* ── REDUCE MOTION — respetar preferencia del usuario ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    transition: opacity .3s ease !important;
    transform: none !important;
  }
  .hero__video-bg { display: none; }
}
