/* ============================================================
   MRD AMERICAN — Light Streetwear (sh-aka palette)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;600;700&family=Barlow:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Superficies — paleta clara */
  --black:      #f7f5f2;   /* fondo de página (crema cálido)    */
  --dark:       #eeecea;   /* fondo de cards / secciones alt    */
  --mid:        #e5e3e0;   /* superficies, skeletons            */
  --surface:    #d9d7d4;   /* bordes visibles, skeleton shimmer */

  /* Bordes */
  --border:     rgba(0,0,0,0.09);
  --border-g:   rgba(0,0,0,0.22);

  /* Acento — negro en lugar de dorado */
  --gold:       #111111;
  --gold-dim:   #555555;
  --gold-glow:  rgba(0,0,0,0.05);

  /* Tipografía */
  --text:       #141414;
  --muted:      #b0adaa;
  --muted2:     #777777;
  --white:      #ffffff;

  --f-display: 'Bebas Neue', sans-serif;
  --f-sub:     'Barlow Condensed', sans-serif;
  --f-body:    'Barlow', sans-serif;

  --nav-h: 70px;
  --spring: cubic-bezier(0.32, 0.72, 0, 1);
  --out:    cubic-bezier(0.22, 1, 0.36, 1);
  --px:     80px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a    { text-decoration: none; color: inherit; }
img  { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #aaaaaa; }

/* ── Scroll Reveal ─────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--out), transform 0.85s var(--out);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── NAV ───────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--out), border-color 0.4s var(--out);
}
#main-nav.scrolled {
  background: rgba(247,245,242,0.96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  max-width: 1600px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 5px;
  color: #ffffff;          /* blanco sobre hero oscuro */
  flex-shrink: 0;
  transition: color 0.3s;
}
.nav-logo span { color: #c8a96e; } /* dorado visible en ambos fondos */
#main-nav.scrolled .nav-logo { color: var(--text); }
#main-nav.scrolled .nav-logo span { color: var(--gold); }

/* Links */
.nav-links {
  display: flex;
  list-style: none;
  align-items: stretch;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-sub);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);  /* claro sobre hero oscuro */
  padding: 0 22px;
  height: var(--nav-h);
  transition: color 0.2s;
}
.nav-links > li > a:hover { color: #ffffff; }
#main-nav.scrolled .nav-links > li > a { color: var(--muted2); }
#main-nav.scrolled .nav-links > li > a:hover { color: var(--text); }
.nav-arrow { font-size: 8px; transition: transform 0.22s var(--spring); display: inline-block; }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--mid);
  border: 1px solid var(--border);
  min-width: 190px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--out), transform 0.2s var(--out);
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  font-family: var(--f-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted2);
  padding: 11px 22px;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover { color: var(--gold); background: var(--gold-glow); }

/* Actions */
.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.btn-nav-store {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.35);  /* visible sobre hero oscuro */
  color: rgba(255,255,255,0.85);
  transition: background 0.2s, color 0.2s, border-color 0.3s;
}
.btn-nav-store .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  font-size: 10px;
  transition: transform 0.2s var(--spring);
}
.btn-nav-store:hover { background: #ffffff; color: #111111; border-color: #ffffff; }
.btn-nav-store:hover .btn-icon { transform: translate(1px,-1px); background: rgba(0,0,0,0.1); }

/* Nav scrolled — versión oscura del botón */
#main-nav.scrolled .btn-nav-store {
  border-color: var(--border-g);
  color: var(--gold);
}
#main-nav.scrolled .btn-nav-store .btn-icon { background: var(--gold-glow); }
#main-nav.scrolled .btn-nav-store:hover { background: var(--gold); color: var(--white); }

/* Hamburger */
#menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 2px;
}
#menu-toggle span {
  display: block;
  height: 1.5px;
  background: #ffffff;   /* blanco sobre hero; JS añade .scrolled al nav */
  transition: transform 0.35s var(--spring), opacity 0.3s, background 0.3s;
}
#main-nav.scrolled #menu-toggle span { background: var(--text); }
#menu-toggle.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
#menu-toggle.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ── Mobile Menu ───────────────────────────────────────────── */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(247,245,242,0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--out);
}
#mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-menu-inner {
  text-align: center;
  padding: 24px;
  width: 100%;
}
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }

.mobile-link {
  display: block;
  font-family: var(--f-display);
  font-size: 52px;
  letter-spacing: 3px;
  color: var(--text);      /* oscuro sobre fondo claro */
  padding: 2px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.2s, opacity 0.5s var(--out), transform 0.5s var(--out);
}
#mobile-menu.open .mobile-link[data-idx="0"] { opacity:1; transform:translateY(0); transition-delay:.05s; }
#mobile-menu.open .mobile-link[data-idx="1"] { opacity:1; transform:translateY(0); transition-delay:.10s; }
#mobile-menu.open .mobile-link[data-idx="2"] { opacity:1; transform:translateY(0); transition-delay:.15s; }
#mobile-menu.open .mobile-link[data-idx="3"] { opacity:1; transform:translateY(0); transition-delay:.20s; }
.mobile-link:hover { color: var(--gold); }

.mobile-footer { margin-top: 48px; }
.mobile-tagline {
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--out) 0.25s, transform 0.5s var(--out) 0.25s;
}
#mobile-menu.open .mobile-tagline { opacity:1; transform:translateY(0); }

/* ── Hero — contexto oscuro (override local de variables) ──── */
.hero {
  /* Restaura paleta oscura solo dentro del carousel */
  --black:      #080808;
  --dark:       #111111;
  --mid:        #1a1a1a;
  --surface:    #242424;
  --border:     rgba(255,255,255,0.07);
  --border-g:   rgba(200,169,110,0.22);
  --gold:       #c8a96e;
  --gold-dim:   #9a7d4e;
  --gold-glow:  rgba(200,169,110,0.12);
  --text:       #ece8e1;
  --muted:      #545454;
  --muted2:     #888888;

  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.85s var(--spring);
  will-change: transform;
}

/* Individual slide */
.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--px) 110px;
}

/* Background layer */
.slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slide-bg img {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
/* Dark vignette overlay */
.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.35) 55%, rgba(8,8,8,0.15) 100%);
}

/* Atmospheric gradients (no image fallback) */
.slide-bg--1 {
  background:
    radial-gradient(ellipse 80% 60% at 70% 15%, rgba(18,28,58,0.85) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(10,15,35,0.6) 0%, transparent 60%),
    var(--black);
}
.slide-bg--1::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 500px 500px at 72% 20%, rgba(200,169,110,0.07) 0%, transparent 70%);
}
.slide-bg--2 {
  background:
    radial-gradient(ellipse 70% 55% at 20% 30%, rgba(45,28,12,0.9) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 70%, rgba(30,18,6,0.65) 0%, transparent 60%),
    var(--black);
}
.slide-bg--2::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 400px 400px at 25% 35%, rgba(200,169,110,0.09) 0%, transparent 70%);
}
.slide-bg--3 {
  background:
    radial-gradient(ellipse 65% 60% at 60% 35%, rgba(20,28,18,0.85) 0%, transparent 60%),
    radial-gradient(ellipse 55% 65% at 30% 65%, rgba(15,22,13,0.7) 0%, transparent 60%),
    var(--black);
}
.slide-bg--3::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 450px 450px at 62% 40%, rgba(200,169,110,0.06) 0%, transparent 70%);
}

/* Slide content */
.slide-content { position: relative; z-index: 2; max-width: 680px; }

/* Content animations — reset when slide is NOT active */
.hero-slide:not(.active) .slide-eyebrow,
.hero-slide:not(.active) .slide-title,
.hero-slide:not(.active) .slide-sub,
.hero-slide:not(.active) .slide-cta {
  transition: none !important;
  opacity: 0;
  transform: translateY(20px);
}

.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 14px;
  border: 1px solid var(--border-g);
  background: var(--gold-glow);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--out) 0.1s, transform 0.65s var(--out) 0.1s;
}
.hero-slide.active .slide-eyebrow { opacity: 1; transform: translateY(0); }

.slide-title {
  font-family: var(--f-display);
  font-size: clamp(76px, 12vw, 152px);
  line-height: 0.88;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--out) 0.2s, transform 0.75s var(--out) 0.2s;
}
.hero-slide.active .slide-title { opacity: 1; transform: translateY(0); }
.slide-title em { font-style: normal; color: var(--gold); }

.slide-sub {
  font-family: var(--f-sub);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted2);
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--out) 0.35s, transform 0.6s var(--out) 0.35s;
}
.hero-slide.active .slide-sub { opacity: 1; transform: translateY(0); }

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--black);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s var(--out) 0.45s,
    transform 0.6s var(--out) 0.45s,
    background 0.2s;
}
.hero-slide.active .slide-cta { opacity: 1; transform: translateY(0); }
.slide-cta:hover { background: #d4b87a; }
.slide-cta .cta-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.14);
  transition: transform 0.25s var(--spring);
}
.slide-cta:hover .cta-ico { transform: translateX(3px); }

/* Ambient slide number */
.slide-num {
  position: absolute;
  bottom: 110px;
  right: var(--px);
  font-family: var(--f-display);
  font-size: 130px;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  user-select: none;
  z-index: 1;
  pointer-events: none;
}

/* Controls */
.hero-controls {
  position: absolute;
  bottom: 46px;
  left: var(--px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--muted2);
  font-size: 16px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-btn:hover { color: var(--gold); border-color: var(--border-g); }

.hero-dots { display: flex; gap: 6px; align-items: center; }
.dot {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--muted);
  border-radius: 1px;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.35s var(--spring), background 0.3s;
}
.dot.active { width: 38px; background: var(--gold); }

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.05);
  z-index: 10;
}
.hero-progress-bar { height: 100%; background: var(--gold); width: 0%; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  right: var(--px);
  bottom: 46px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll-hint span {
  font-family: var(--f-sub);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.7); }
  50%      { opacity: 1;   transform: scaleY(1);   }
}

/* ── Ticker ────────────────────────────────────────────────── */
.ticker { background: #111111; overflow: hidden; padding: 10px 0; white-space: nowrap; }
.ticker-track {
  display: inline-flex;
  animation: ticker 22s linear infinite;
}
.ticker-track span {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 3px;
  color: #ffffff;
  padding: 0 20px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section shared ────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 100px var(--px) 48px;
  gap: 32px;
}
.section-label {
  font-family: var(--f-sub);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
}
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted2);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}
.section-link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.section-count {
  font-family: var(--f-sub);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

/* ── Featured Bento ────────────────────────────────────────── */
.section-featured { padding-bottom: 80px; }

.bento-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-template-rows: 340px 260px;
  gap: 2px;
  padding: 0 var(--px);
}
.bento-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.bento-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.bento-item:nth-child(3) { grid-column: 2; grid-row: 2; }

.bento-item {
  position: relative;
  overflow: hidden;
  background: var(--mid);
  display: block;
  cursor: pointer;
}

.bento-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 0.7s var(--spring);
}
.bento-item:hover .bento-bg { transform: scale(1.055); }

.bento-blank {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--mid), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-blank span {
  font-family: var(--f-display);
  font-size: 52px;
  letter-spacing: 8px;
  color: rgba(255,255,255,0.04);
}

/* Gradient over image */
.bento-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.bento-hover-cta {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.3s var(--out);
}
.bento-item:hover .bento-hover-cta { opacity: 1; }
.bento-hover-cta span {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.5);
}

.bento-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 26px;
  z-index: 2;
}
.bento-name {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;        /* siempre blanco — va sobre gradiente oscuro */
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bento-price {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 17px;
  color: #c8a96e;        /* dorado siempre legible sobre oscuro */
  letter-spacing: 1px;
}
.bento-item:nth-child(1) .bento-name  { font-size: 17px; }
.bento-item:nth-child(1) .bento-price { font-size: 22px; }

.bento-skel {
  background: linear-gradient(90deg, var(--mid) 25%, var(--surface) 50%, var(--mid) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ── Category Strips ───────────────────────────────────────── */
.cat-strip { padding-bottom: 24px; }

.strip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 80px var(--px) 28px;
  gap: 24px;
}
.strip-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.strip-track {
  display: flex;
  gap: 2px;
  padding: 0 var(--px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.strip-track::-webkit-scrollbar { display: none; }

.strip-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

/* ── Product Card (shared) ─────────────────────────────────── */
.product-card {
  display: block;
  background: var(--dark);
  overflow: hidden;
  transition: transform 0.45s var(--spring);
  position: relative;
}
.product-card:hover { transform: translateY(-5px); }

.pc-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--mid);
}
.pc-img img { transition: transform 0.65s var(--spring); }
.product-card:hover .pc-img img { transform: scale(1.06); }

.pc-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--mid), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-placeholder span {
  font-family: var(--f-display);
  font-size: 30px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.05);
}

.pc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--out);
}
.product-card:hover .pc-overlay { opacity: 1; }
.pc-overlay span {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.5);
}

.pc-body { padding: 13px 15px 17px; }
.pc-name {
  font-family: var(--f-sub);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pc-price {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ── Catalog ───────────────────────────────────────────────── */
.section-catalog { padding-bottom: 120px; }

.catalog-filters {
  padding: 0 var(--px) 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.search-wrap {
  display: flex;
  border: 1px solid var(--border);
  background: var(--mid);
  width: fit-content;
}
#search-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 18px;
  font-family: var(--f-sub);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text);
  width: 280px;
}
#search-input::placeholder { color: var(--muted); }
#search-btn {
  padding: 10px 14px;
  color: var(--gold);
  border-left: 1px solid var(--border);
  font-size: 16px;
  transition: background 0.2s;
}
#search-btn:hover { background: var(--border); }

.cat-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.cat-tab {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border);
  color: var(--muted2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cat-tab:hover { color: var(--muted2); border-color: rgba(255,255,255,0.15); }
.cat-tab.active { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  padding: 0 var(--px);
}

.load-more-wrap {
  display: none;
  justify-content: center;
  padding: 64px var(--px);
}
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 40px;
  border: 1px solid var(--border);
  color: var(--muted2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-load-more:hover { border-color: var(--gold); color: var(--gold); }
.btn-load-more .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--border);
  font-size: 12px;
  transition: transform 0.25s var(--spring);
}
.btn-load-more:hover .btn-icon { transform: translateY(3px); }

/* ── Skeletons ─────────────────────────────────────────────── */
.skel .pc-img,
.skel .pc-body {
  pointer-events: none;
}
.skel .pc-img {
  background: linear-gradient(90deg, var(--mid) 25%, var(--surface) 50%, var(--mid) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skel-line {
  height: 10px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--mid) 25%, var(--surface) 50%, var(--mid) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skel-line.w80 { width: 75%; }
.skel-line.w40 { width: 38%; }
@keyframes shimmer {
  from { background-position:  200% 0; }
  to   { background-position: -200% 0; }
}

.empty-msg {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--f-sub);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 80px 0;
}

/* ── Buttons (global) ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--black);
  transition: background 0.2s, transform 0.25s var(--spring);
}
.btn-primary:hover { background: #d4b87a; transform: translateY(-2px); }
.btn-primary.btn-sm { padding: 9px 18px; font-size: 10px; }
.btn-arrow-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  transition: transform 0.2s var(--spring);
}
.btn-primary:hover .btn-arrow-wrap { transform: translate(2px,-2px); }

/* ── About ─────────────────────────────────────────────────── */
.section-about { margin-top: 80px; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-img-col {
  background: #111111;   /* dark contrast against light page */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  min-height: 560px;
}
.about-img-frame {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  outline: 1px solid var(--border);
  outline-offset: 14px;
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--mid), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder span {
  font-family: var(--f-display);
  font-size: 80px;
  letter-spacing: 8px;
  color: rgba(200,169,110,0.08);
}

.about-text-col {
  background: var(--dark);   /* crema cálido, del :root claro */
  padding: 100px var(--px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: 2px;
  color: var(--white);
  margin: 14px 0 28px;
}
.about-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted2);
  max-width: 400px;
  margin-bottom: 48px;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #111111;
  border-top: none;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  padding: 80px var(--px) 64px;
  max-width: 1600px;
  margin: 0 auto;
}
.footer-logo {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 5px;
  color: #ffffff;
  margin-bottom: 8px;
}
.footer-logo span { color: #c8a96e; }
.footer-tagline {
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 16px;
}
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sub);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #888888;
  transition: color 0.2s;
}
.footer-instagram:hover { color: #ffffff; }
.ig-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer-nav { display: flex; gap: 56px; }
.footer-col h4 {
  font-family: var(--f-sub);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
  font-family: var(--f-sub);
  font-size: 13px;
  letter-spacing: 1px;
  color: #666666;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1600px;
  margin: 0 auto;
}
.footer-copy, .footer-powered {
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #444444;
}
.footer-powered a { color: #c8a96e; transition: color 0.2s; }
.footer-powered a:hover { color: #ffffff; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1280px) {
  :root { --px: 56px; }
}

@media (max-width: 1024px) {
  :root { --px: 40px; }
  .nav-links, .btn-nav-store { display: none; }
  #menu-toggle { display: flex; }
  .bento-grid { grid-template-rows: 300px 230px; }
}

@media (max-width: 768px) {
  :root { --px: 20px; }

  /* Hero */
  .hero-slide { padding: 0 20px 80px; align-items: center; }
  .slide-num  { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-controls { left: 20px; bottom: 24px; }
  .slide-title { font-size: 72px; }

  /* Bento */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 190px;
    gap: 6px;
  }
  .bento-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .bento-item:nth-child(2) { grid-column: 1;     grid-row: 2; }
  .bento-item:nth-child(3) { grid-column: 2;     grid-row: 2; }

  /* Strips */
  .strip-header { padding: 60px 20px 22px; }
  .strip-track  { padding: 0 20px; }
  .strip-card   { flex: 0 0 210px; }

  /* Catalog */
  .catalog-filters { padding: 0 20px 28px; }
  #search-input { width: 200px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .load-more-wrap { padding: 40px 20px; }

  /* Section header */
  .section-header  { padding: 64px 20px 32px; flex-direction: column; align-items: flex-start; }
  .strip-header    { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-img-col  { padding: 48px 20px; min-height: 320px; }
  .about-text-col { padding: 48px 20px; }

  /* Footer */
  .footer-inner   { padding: 48px 20px 40px; flex-direction: column; gap: 40px; }
  .footer-nav     { flex-wrap: wrap; gap: 36px; }
  .footer-bottom  { padding: 18px 20px; }

  /* Mobile menu */
  .mobile-link { font-size: 42px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .slide-title  { font-size: 60px; }
}
