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

:root {
  --paper: #faf5ec;
  --paper-card: #ffffff;
  --paper-soft: #f3ecdd;
  --ink: #2b2620;
  --text-muted: #8a8073;
  --accent: #e2582f;
  --accent-dark: #c44621;
  --accent-soft: rgba(226,88,47,0.10);
  --blue: #3b6db4;
  --yellow: #f2b51d;
  --green: #3f8f6b;
  --violet: #7a5fb8;
  --line: rgba(43,38,32,0.10);
  --line-strong: rgba(43,38,32,0.18);
  --radius: 12px;
  --shadow-soft: 0 10px 36px rgba(80,55,25,0.10);
  --shadow-big: 0 24px 60px rgba(80,55,25,0.16);
  --ease-out: cubic-bezier(.19, 1, .22, 1);
  --ease-standard: cubic-bezier(.45, .05, .55, .95);
  --ease-snap: cubic-bezier(.68, -.55, .27, 1.55);
  --transition: 0.4s var(--ease-out);
}

html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* ─── SCROLL REVEAL ─── */
.reveal, .reveal-left, .reveal-scale {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal       { transform: translateY(32px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-scale { transform: scale(0.93); }
.reveal.visible, .reveal-left.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 32px); max-width: 1200px;
  background: rgba(255,253,248,0.78); backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: 16px; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 100;
  transition: background 0.8s var(--ease-standard), box-shadow 0.8s var(--ease-standard);
}
nav.scrolled { background: rgba(255,253,248,0.96); box-shadow: 0 8px 40px rgba(80,55,25,0.14); }
.nav-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 26px;
  letter-spacing: 3px; color: var(--ink); text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.cart-btn {
  position: relative; background: var(--accent); border: none; border-radius: 10px;
  padding: 10px 20px; color: white; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: transform var(--transition), background 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.cart-btn:hover { transform: scale(1.05); background: var(--accent-dark); }
.cart-badge {
  background: white; color: var(--accent); font-size: 11px; font-weight: 800;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  overflow: hidden; background: var(--ink); padding: 10px 0;
  white-space: nowrap; margin-top: 0;
}
.marquee-track { display: inline-flex; animation: marquee 24s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 28px; font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 2px; color: var(--paper);
}
.marquee-sep { color: var(--yellow); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  background: var(--paper);
}
.hero-blob {
  position: absolute; border-radius: 50%; opacity: 0.55;
  animation: blobDrift 14s ease-in-out infinite alternate;
}
.hero-blob--rosa   { width: 620px; height: 620px; background: radial-gradient(circle, #f6a9c4 0%, rgba(246,169,196,0.4) 45%, rgba(246,169,196,0) 70%); top: -180px; right: -140px; }
.hero-blob--azul   { width: 560px; height: 560px; background: radial-gradient(circle, #a7c5ef 0%, rgba(167,197,239,0.4) 45%, rgba(167,197,239,0) 70%); bottom: -200px; left: -180px; animation-delay: -4s; }
.hero-blob--amarillo { width: 460px; height: 460px; background: radial-gradient(circle, #f7dc8e 0%, rgba(247,220,142,0.4) 45%, rgba(247,220,142,0) 70%); top: 24%; left: 34%; animation-delay: -8s; }
.hero-blob--verde  { width: 380px; height: 380px; background: radial-gradient(circle, #b3e3c7 0%, rgba(179,227,199,0.35) 45%, rgba(179,227,199,0) 70%); bottom: 6%; right: 14%; animation-delay: -11s; opacity: 0.45; }
@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-30px, 24px) scale(1.07); }
  100% { transform: translate(26px, -20px) scale(0.96); }
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(250,245,236,0.96) 0%, rgba(250,245,236,0.84) 36%, rgba(250,245,236,0.35) 68%, rgba(250,245,236,0.12) 100%),
    linear-gradient(to bottom, rgba(250,245,236,0.05) 55%, rgba(250,245,236,0.95) 100%);
  z-index: 1;
}

/* Marco tipo cuadro para los stills del video en otras secciones */
.art-banner {
  margin-top: 36px; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  aspect-ratio: 16/5; background: var(--paper-soft);
}
.art-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.art-frame {
  border-radius: 20px; overflow: hidden; margin-bottom: 16px;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.art-frame img { width: 100%; display: block; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); border: 1px solid rgba(226,88,47,0.3);
  color: var(--accent-dark); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
  animation: heroTag 0.6s var(--ease-out) 0.1s both;
}
@keyframes heroTag { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 13vw, 170px);
  line-height: 0.88; letter-spacing: -2px; margin-bottom: 24px;
  animation: heroTitle 0.9s var(--ease-out) 0.2s both;
}
@keyframes heroTitle { from { opacity:0; transform:translateY(48px) skewY(3deg); } to { opacity:1; transform:none; } }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent) 10%, var(--violet) 45%, var(--blue) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p {
  font-size: 18px; color: var(--text-muted); max-width: 460px;
  line-height: 1.65; margin-bottom: 40px;
  animation: heroSub 0.7s var(--ease-out) 0.45s both;
}
@keyframes heroSub { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; animation: heroCtas 0.7s var(--ease-out) 0.6s both; }
@keyframes heroCtas { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid var(--line);
  animation: heroCtas 0.7s var(--ease-out) 0.75s both;
}
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; line-height: 1; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--accent); color: white; padding: 15px 32px;
  border-radius: 12px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 10px 30px rgba(226,88,47,0.30); display: inline-block;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(226,88,47,0.42); }
.btn-secondary {
  background: transparent; color: var(--ink); padding: 15px 32px;
  border-radius: 12px; font-weight: 600; font-size: 15px; text-decoration: none;
  border: 1px solid var(--line-strong);
  transition: border-color 0.2s, background 0.2s; display: inline-block; cursor: pointer;
}
.btn-secondary:hover { border-color: rgba(43,38,32,0.4); background: rgba(43,38,32,0.04); }

/* ─── SECTIONS ─── */
.section-full { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 16px; flex-wrap: wrap;
}
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 6vw, 72px); line-height: 1; }
.section-title span { color: var(--accent); }
.link-all { color: var(--text-muted); font-size: 14px; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.link-all:hover { color: var(--ink); }
.link-card { color: var(--accent); font-size: 14px; font-weight: 600; text-decoration: none; margin-top: 12px; display: inline-block; }

/* ─── CATEGORÍAS GRID ─── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 2/1; text-decoration: none; display: block;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--paper-card);
}
.cat-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-big); }
.cat-bg {
  position: absolute; inset: 0; transition: transform 0.6s var(--ease-out);
}
.cat-card:hover .cat-bg { transform: scale(1.08); }
.cat-content {
  position: relative; z-index: 1; padding: 12px 14px;
  height: 100%; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(30,20,10,0.55) 0%, transparent 60%);
}
.cat-icon { font-size: 18px; margin-bottom: 4px; }
.cat-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 17px; color: white; letter-spacing: 1px; text-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.cat-content p { font-size: 11px; color: rgba(255,255,255,0.85); margin-top: 2px; }

/* ─── DESTACADOS / PROMOS ─── */
.promos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.promo-card {
  background: var(--paper-card); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); position: relative;
  box-shadow: var(--shadow-soft);
}
.promo-big {
  padding: 48px 40px;
  background: linear-gradient(135deg, #fdf0e5, #fbe3d2, #fff8ec);
  border-color: rgba(226,88,47,0.25);
}
.promo-big h3 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 1; margin: 16px 0 8px; }
.promo-big p { color: var(--text-muted); font-size: 14px; }
.promo-right { display: flex; flex-direction: column; gap: 16px; }
.promo-small { padding: 32px; }
.promo-small h3 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; margin: 12px 0 6px; }
.promo-small p { color: var(--text-muted); font-size: 13px; }
.promo-badge {
  background: var(--accent); color: white; font-size: 12px; font-weight: 800;
  padding: 5px 12px; border-radius: 6px; text-transform: uppercase; letter-spacing: 1px;
  display: inline-block;
}
.promo-badge--yellow { background: var(--yellow); color: #4a3a00; }
.promo-badge--blue { background: var(--blue); color: white; }

/* ─── NOSOTROS PREVIEW ─── */
.nosotros-preview {
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.nosotros-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.nosotros-text p { color: var(--text-muted); font-size: 17px; line-height: 1.7; margin-top: 16px; }
.nosotros-card {
  background: var(--paper-card); border-radius: 20px; padding: 48px 32px;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 32px;
}
.nosotros-stat span { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--accent); line-height: 1; display: block; }
.nosotros-stat small { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* ─── CATÁLOGO ─── */
.catalog-hero {
  padding: 140px 24px 60px; max-width: 1200px; margin: 0 auto;
}
.catalog-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 10vw, 120px); line-height: 0.9; }
.catalog-hero h1 span { color: var(--accent); }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 20px; border-radius: 100px; border: 1px solid var(--line-strong);
  background: transparent; color: var(--text-muted); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--accent); border-color: var(--accent); color: white; }

/* ─── TOOLBAR CATÁLOGO (buscador · orden · vistas) ─── */
.catalog-toolbar {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  margin-bottom: 14px;
}
.search-box {
  flex: 1; min-width: 240px; display: flex; align-items: center; gap: 10px;
  background: var(--paper-card); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 0 14px; height: 46px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-box:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.search-box svg { color: var(--text-muted); flex-shrink: 0; }
.search-box input {
  border: none; outline: none; background: transparent;
  font: inherit; font-size: 14px; color: var(--ink); width: 100%;
}
.search-box input::placeholder { color: var(--text-muted); }
.sort-select {
  height: 46px; border-radius: 12px; border: 1px solid var(--line-strong);
  background: var(--paper-card); color: var(--ink);
  font: inherit; font-size: 13px; font-weight: 600; padding: 0 12px; cursor: pointer;
}
.view-switch {
  display: flex; border: 1px solid var(--line-strong); border-radius: 12px;
  overflow: hidden; height: 46px; background: var(--paper-card);
}
.view-switch button {
  width: 46px; display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; border-right: 1px solid var(--line);
  color: var(--text-muted); cursor: pointer; transition: all 0.2s;
}
.view-switch button:last-child { border-right: none; }
.view-switch button:hover { color: var(--ink); }
.view-switch button.active { background: var(--accent); color: white; }
.result-count { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.no-results {
  text-align: center; color: var(--text-muted); padding: 64px 24px;
  font-size: 15px; line-height: 1.8;
  background: var(--paper-card); border: 1px dashed var(--line-strong); border-radius: 16px;
}

/* ─── VISTA LISTA DETALLADA ─── */
.products-list { display: flex; flex-direction: column; gap: 10px; }
.plist-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--paper-card); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 18px 10px 10px; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.plist-item:hover { border-color: rgba(226,88,47,0.35); box-shadow: var(--shadow-soft); transform: translateX(3px); }
.plist-img {
  width: 64px; height: 64px; border-radius: 10px; background: #fff;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.plist-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.plist-info { flex: 1; min-width: 0; }
.plist-name { font-weight: 700; font-size: 14px; }
.plist-meta { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.plist-price { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--accent); white-space: nowrap; }
.plist-price small { font-size: 12px; font-family: Inter, sans-serif; font-weight: 700; }

/* ─── VISTA LISTA COMPACTA ─── */
.products-compact {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: var(--paper-card);
}
.pc-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: background 0.15s;
}
.pc-row:last-child { border-bottom: none; }
.pc-row:hover { background: var(--accent-soft); }
.pc-name { font-weight: 600; font-size: 14px; }
.pc-cod { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.pc-dots { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-4px); min-width: 24px; }
.pc-price { font-weight: 800; font-size: 14px; color: var(--accent); white-space: nowrap; }

/* ─── PRODUCT GRID ─── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.product-card {
  background: var(--paper-card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer; opacity: 0; transform: scale(0.93);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.product-card.visible { opacity: 1; transform: scale(1); }
.product-card:hover { transform: translateY(-6px) scale(1.01) !important; border-color: rgba(226,88,47,0.35); box-shadow: var(--shadow-big); }
.product-img {
  aspect-ratio: 1; background: #fff;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
/* Fotos de estudio (fondo blanco): producto completo, sin recorte */
.product-img img {
  width: 100%; height: 100%; object-fit: contain; object-position: center; display: block;
  padding: 6%;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img-placeholder { font-size: 80px; opacity: 0.8; transition: transform 0.5s var(--ease-out); filter: saturate(0.9); }
.product-card:hover .product-img-placeholder { transform: scale(1.1); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: white; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 6px; z-index: 2;
}
.product-badge.new { background: var(--yellow); color: #4a3a00; }
.product-overlay {
  position: absolute; inset: 0; background: rgba(43,38,32,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; z-index: 1;
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-add {
  background: white; color: var(--ink); border: none;
  padding: 12px 24px; border-radius: 10px; font-weight: 700; font-size: 14px;
  cursor: pointer; transform: translateY(10px);
  transition: transform var(--transition), background 0.2s, color 0.2s;
}
.product-card:hover .btn-add { transform: translateY(0); }
.btn-add:hover { background: var(--accent); color: white; }
.product-info { padding: 16px; }
.product-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.product-cat { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.product-footer { display: flex; align-items: flex-end; justify-content: space-between; }
.product-price { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--accent); }
.product-price small { font-size: 14px; font-family: Inter, sans-serif; font-weight: 700; }
.product-variants-hint { font-size: 11px; color: var(--text-muted); font-weight: 600; }
.load-more-wrap { text-align: center; margin-top: 48px; }
.btn-load {
  background: transparent; border: 1px solid var(--line-strong); color: var(--ink);
  padding: 14px 40px; border-radius: 12px; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all 0.2s;
}
.btn-load:hover { background: rgba(43,38,32,0.04); border-color: rgba(43,38,32,0.35); }

/* ─── CARRITO ─── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(43,38,32,0.45); z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-panel {
  position: fixed; right: 0; top: 0; bottom: 0; width: 420px; max-width: 100vw;
  background: var(--paper); border-left: 1px solid var(--line); z-index: 201;
  padding: 32px 24px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--transition);
}
.cart-panel.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.cart-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; }
.cart-close { background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: flex; gap: 16px; padding: 16px; background: var(--paper-card);
  border-radius: 10px; border: 1px solid var(--line);
}
.cart-item-img {
  width: 72px; height: 72px; background: #fff; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.cart-item-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-footer { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--accent); }
.cart-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--line-strong);
  background: none; color: var(--ink); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.qty-btn:hover { background: rgba(43,38,32,0.06); }
.qty-num { font-weight: 700; font-size: 14px; min-width: 20px; text-align: center; }
.cart-footer { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 24px; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-total-label { font-size: 14px; color: var(--text-muted); }
.cart-total-price { font-family: 'Bebas Neue', sans-serif; font-size: 36px; }
.btn-whatsapp {
  width: 100%; background: #25D366; color: white; border: none;
  padding: 18px; border-radius: 12px; font-weight: 700; font-size: 16px;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); }
.cart-empty { text-align: center; padding: 48px 0; color: var(--text-muted); }
.cart-empty-icon { font-size: 56px; margin-bottom: 16px; }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--ink); border: 1px solid rgba(255,255,255,0.1);
  color: var(--paper); padding: 14px 24px; border-radius: 12px;
  font-weight: 600; font-size: 14px; z-index: 300;
  transition: transform 0.4s var(--ease-out);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── PRODUCTO PAGE ─── */
.producto-wrap {
  max-width: 1100px; margin: 0 auto; padding: 140px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.producto-foto {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  background: #fff; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  position: sticky; top: 110px;
}
.producto-foto img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; padding: 5%; }
.producto-foto .emoji { font-size: 130px; }
.producto-cat { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.producto-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 6vw, 64px); line-height: 0.95; }
.producto-precio { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: var(--accent); margin: 18px 0 6px; }
/* precio tachado (oferta/descuento) y badge agotado */
.precio-old { color: var(--text-muted); font-weight: 600; font-size: 0.62em; text-decoration: line-through; opacity: 0.8; margin-left: 4px; }
.badge-agotado { display: inline-block; vertical-align: middle; background: var(--text-muted); color: #fff; font-family: Inter, sans-serif; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.5px; margin-left: 8px; }
.producto-precio small { font-size: 20px; font-family: Inter, sans-serif; font-weight: 700; }
.producto-cod { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }
.producto-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-muted); margin: 24px 0 10px;
  display: flex; justify-content: space-between;
}
.producto-label span { color: var(--ink); }
.variantes-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.variante-chip {
  padding: 10px 18px; border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--paper-card); color: var(--text-muted);
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.variante-chip.active { background: var(--accent); border-color: var(--accent); color: white; }
.producto-acciones { display: flex; gap: 12px; margin-top: 32px; align-items: stretch; }
.producto-acciones .btn-primary { flex: 1; text-align: center; }
.relacionados { max-width: 1100px; margin: 0 auto; padding: 0 24px 80px; }

/* ─── NOSOTROS PAGE ─── */
.page-hero {
  padding: 140px 24px 80px; max-width: 1200px; margin: 0 auto;
}
.nosotros-story { max-width: 1200px; margin: 0 auto; padding: 0 24px 80px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 80px; }
.story-block h3 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; margin-bottom: 16px; }
.story-block p { color: var(--text-muted); font-size: 16px; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: var(--paper-card); border-radius: 16px; padding: 32px;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  transition: transform var(--transition), border-color 0.3s;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(226,88,47,0.35); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink); color: var(--paper);
  padding: 60px 24px; margin-top: 40px;
}
footer .nav-logo { color: var(--paper); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px;
}
.footer-brand p { color: rgba(250,245,236,0.55); font-size: 14px; margin-top: 8px; }
.footer-copy { font-size: 12px; margin-top: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong { color: var(--paper); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.footer-links a { color: rgba(250,245,236,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--paper); }
.footer-wa {
  display: flex; align-items: center; gap: 12px; align-self: flex-start;
  background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.4);
  color: #4ce080; padding: 14px 22px; border-radius: 12px; text-decoration: none;
  font-weight: 600; font-size: 14px; transition: all 0.2s;
}
.footer-wa:hover { background: rgba(37,211,102,0.22); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .promos-grid { grid-template-columns: 1fr; }
  .nosotros-inner, .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .producto-wrap { grid-template-columns: 1fr; gap: 32px; }
  .producto-foto { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 36px; }
  .values-grid { grid-template-columns: 1fr; }
}
