/* ============================================================
   Cotillón Bambinos — style.css
   Mobile-first, festivo, vendedor, rápido
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --pink:      #FF6B9D;
  --pink-dark: #E05585;
  --purple:    #845EF7;
  --purple-dark:#6741D9;
  --amber:     #F59F00;
  --amber-text:#9C6300;
  --pink-cta:      #B22F5C;
  --pink-cta-dark: #8F2247;
  --teal:      #20C997;
  --dark:      #1A1025;
  --dark-2:    #251836;
  --dark-3:    #32234A;
  --light:     #FFF9FC;
  --light-2:   #F8F0FF;
  --white:     #FFFFFF;
  --text:      #2D1B4E;
  --text-muted:#7B5FA0;
  --border:    rgba(132,94,247,.15);
  --shadow-sm: 0 2px 12px rgba(26,16,37,.08);
  --shadow-md: 0 8px 30px rgba(26,16,37,.12);
  --shadow-lg: 0 20px 60px rgba(26,16,37,.18);
  --shadow-glow: 0 0 40px rgba(255,107,157,.25);
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Fredoka One', 'Nunito', cursive;
  --font-body:    'Nunito', 'Segoe UI', system-ui, sans-serif;
  --nav-h:        68px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET + BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul { list-style: none; }

.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;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1280px) { .container { padding: 0 60px; } }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#main-nav.scrolled {
  background: rgba(26,16,37,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) { .nav-inner { padding: 0 40px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-emoji { font-size: 26px; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-links {
  display: none;
  gap: 8px;
  margin-left: auto;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
    align-items: center;
  }

  .nav-links li a {
    color: rgba(255,255,255,.8);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    transition: background var(--transition), color var(--transition);
  }

  .nav-links li a:hover {
    background: rgba(255,255,255,.1);
    color: var(--white);
  }
}

/* Mobile nav menu */
@media (max-width: 899px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 24px 20px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
    z-index: 899;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links li a {
    display: block;
    color: rgba(255,255,255,.85);
    font-weight: 700;
    font-size: 18px;
    padding: 12px 16px;
    border-radius: var(--radius);
    transition: background var(--transition);
  }

  .nav-links li a:hover {
    background: rgba(255,255,255,.08);
  }
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

@media (min-width: 900px) {
  .nav-ctas { margin-left: 0; }
}

.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.nav-cart-btn:hover {
  background: rgba(255,255,255,.2);
  transform: scale(1.08);
}

.nav-cart-btn.pulse {
  animation: cart-pulse 0.6s ease;
}

@keyframes cart-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.cart-icon { font-size: 20px; }

.cart-bubble {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  background: var(--pink);
  color: white;
  font-size: 11px;
  font-weight: 800;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--dark);
  transition: transform 0.2s;
}

.cart-bubble.pop {
  animation: bubble-pop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes bubble-pop {
  0%   { transform: scale(0.5); }
  60%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.nav-wa-btn {
  display: none;
}

@media (min-width: 560px) {
  .nav-wa-btn { display: flex; }
}

/* Burger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

@media (min-width: 900px) {
  .nav-burger { display: none; }
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-cta), var(--pink-cta-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(255,107,157,.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--pink-cta-dark), #6b1935);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,157,.5);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}

.btn-wa:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
}

.btn-outline-wa {
  background: transparent;
  color: #128C7E;
  border: 2px solid #25D366;
  box-shadow: none;
}

.btn-outline-wa:hover {
  background: rgba(37,211,102,.08);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background: var(--light-2);
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(26,16,37,.2);
}

.btn-hero {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(26,16,37,.96) 0%, rgba(45,16,80,.94) 40%, rgba(26,42,80,.96) 100%);
  padding-top: var(--nav-h);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 860px;
  width: 100%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fade-up 0.8s ease 0.5s both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 7.5vw, 88px);
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: fade-up 0.8s ease 0.7s both;
}

.hero-title-line {
  display: block;
}

.hero-title-line.accent {
  background: linear-gradient(135deg, var(--pink), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-up 0.8s ease 0.9s both;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fade-up 0.8s ease 1.1s both;
}

.hero-trust {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 0.8s ease 1.3s both;
}

.trust-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* ── SECTIONS COMMON ────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

@media (min-width: 768px) { .section { padding: 100px 0; } }
@media (min-width: 1024px) { .section { padding: 120px 0; } }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 140px);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px rgba(132,94,247,.15);
  display: block;
  margin-bottom: -20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  font-weight: 600;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── FEATURED CATEGORIES ────────────────────────────────────── */
.feat-cats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 540px) {
  .feat-cats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .feat-cats-grid { grid-template-columns: repeat(4, 1fr); }
}

.feat-cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--light-2);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.feat-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.feat-cat-img-wrap {
  position: absolute;
  inset: 0;
}

.feat-cat-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feat-cat-card:hover .feat-cat-img-wrap img {
  transform: scale(1.08);
}

.feat-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.3) 50%,
    transparent 100%
  );
}

.feat-cat-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 20px;
}

.feat-cat-badge {
  display: inline-block;
  background: var(--cat-color, var(--pink));
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.feat-cat-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  margin-bottom: 6px;
  line-height: 1.2;
}

.feat-cat-desc {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.4;
}

.feat-cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--cat-color, var(--pink));
  background: rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 20px;
  transition: background var(--transition);
  backdrop-filter: blur(10px);
}

.feat-cat-cta:hover {
  background: rgba(255,255,255,.25);
}

/* ── STEPS ──────────────────────────────────────────────────── */
.section-steps {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}

.section-steps .section-title,
.section-steps .section-sub {
  color: var(--white);
}

.section-steps .section-num {
  -webkit-text-stroke-color: rgba(255,255,255,.08);
}

.steps-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 768px) {
  .steps-layout {
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
  }
}

.steps-header {
  text-align: left;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: background var(--transition), transform var(--transition);
}

.step-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
}

.step-num {
  position: absolute;
  top: -16px; left: 24px;
  font-family: var(--font-display);
  font-size: 48px;
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
  line-height: 1;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 14px;
  margin-top: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  font-weight: 600;
}

/* ── CATALOG ────────────────────────────────────────────────── */
.section-catalog {
  background: var(--light);
}

.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .catalog-controls {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

.catalog-search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  pointer-events: none;
}

.catalog-search {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  background: white;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.catalog-search:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(132,94,247,.12);
}

.catalog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-muted);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
  box-shadow: 0 4px 16px rgba(132,94,247,.3);
}

.catalog-sort {
  padding: 12px 40px 12px 16px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23845EF7'/%3E%3C/svg%3E") no-repeat right 16px center;
  -webkit-appearance: none;
  appearance: none;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition);
}

.catalog-sort:focus {
  outline: none;
  border-color: var(--purple);
}

.catalog-meta {
  margin-bottom: 24px;
}

.catalog-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ── PRODUCT GRID ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* Product Card */
.prod-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.04);
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.prod-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light-2);
}

.prod-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}

.prod-img.loaded, .prod-img[src="assets/img/placeholder.svg"] {
  opacity: 1;
}

.prod-card:hover .prod-img {
  transform: scale(1.06);
}

.prod-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--pink-cta), var(--pink-cta-dark));
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(255,107,157,.4);
  white-space: nowrap;
}

.prod-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.prod-cat-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
}

.prod-name {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text);
  line-height: 1.2;
}

.prod-name-btn {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.prod-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
}

.star { font-size: 12px; }
.star.full   { color: var(--amber-text); }
.star.half   { color: var(--amber-text); opacity: 0.6; }
.star.empty  { color: #ddd; }

.prod-rating-num {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  margin-left: 2px;
}

.prod-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.prod-price {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text);
}

.prod-stock {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
}

.stock-ok  { background: rgba(32,201,151,.12); color: #0a8c64; }
.stock-low { background: rgba(245,159,0,.12);  color: #b07400; }
.stock-out { background: rgba(255,100,100,.12); color: #c92a2a; }

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: auto;
}

.btn-add-cart:hover:not([disabled]) {
  background: linear-gradient(135deg, var(--purple-dark), #5730b5);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(132,94,247,.35);
}

.btn-add-cart.added {
  background: linear-gradient(135deg, var(--teal), #0f9e72);
}

.btn-add-cart[disabled] {
  background: #ddd;
  color: #999;
  cursor: not-allowed;
}

/* Empty & loading states */
.catalog-empty, .catalog-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.catalog-empty-icon, .cart-empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.catalog-empty p, .catalog-loading p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.loading-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.btn-reset-filters {
  padding: 10px 24px;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-reset-filters:hover { background: var(--purple-dark); }

/* ── FEATURED PRODUCTS SECTION ──────────────────────────────── */
.section-featured {
  background: var(--white);
}

.featured-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.feat-tag {
  background: var(--light-2);
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
}

.featured-prod-grid {
  /* Larger cards for featured section */
}

.featured-prod-grid .prod-img-wrap {
  aspect-ratio: 3/2;
}

.featured-prod-grid .prod-name {
  font-size: clamp(15px, 2.2vw, 18px);
}

/* ── WA CTA SECTION ─────────────────────────────────────────── */
.section-wa-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  text-align: center;
}

.wa-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.wa-cta-emoji { font-size: 56px; margin-bottom: 20px; display: block; }

.wa-cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  color: var(--white);
  margin-bottom: 16px;
}

.wa-cta-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.65);
  font-weight: 600;
  margin-bottom: 36px;
  line-height: 1.6;
}

.wa-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.wa-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  font-weight: 600;
}

/* ── LOCATION ───────────────────────────────────────────────── */
.section-location {
  background: var(--light);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .location-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
  }
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 32px;
}

.location-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.loc-icon { font-size: 24px; flex-shrink: 0; }

.location-detail strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.location-detail p, .location-detail a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.location-detail a:hover { color: var(--purple); }

.btn-location {
  align-self: flex-start;
}

.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.map-container {
  height: 400px;
  position: relative;
  background: var(--light-2);
}

.map-container iframe {
  width: 100%; height: 100%;
  border-radius: var(--radius-xl);
  filter: hue-rotate(260deg) saturate(0.7);
}

.map-pin-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  pointer-events: none;
}

.map-pin {
  background: var(--pink);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: pin-bounce 2s ease-in-out infinite;
}

.map-pin span { font-size: 24px; display: block; }

.map-pin-label {
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.map-pin::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--pink);
  margin: 4px auto 0;
}

@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── CART DRAWER ────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,16,37,.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 95vw);
  background: white;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,.2);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.cart-drawer.open {
  transform: none;
}

/* Mobile: bottom sheet */
@media (max-width: 480px) {
  .cart-drawer {
    top: auto;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    max-height: 90svh;
    transform: translateY(100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }

  .cart-drawer.open { transform: none; }
}

/* ── QUICK VIEW MODAL ───────────────────────────────────────── */
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,16,37,.65);
  backdrop-filter: blur(6px);
  z-index: 1010;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.qv-overlay.active { opacity: 1; pointer-events: auto; }

.qv-modal {
  position: fixed;
  top: 50%; left: 50%;
  width: min(880px, 92vw);
  max-height: 90svh;
  background: white;
  border-radius: var(--radius-xl);
  z-index: 1011;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -48%) scale(.96);
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.qv-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .qv-modal { transition: opacity 0.15s linear; }
  .qv-modal, .qv-modal.open { transform: translate(-50%, -50%); }
}

.qv-content {
  display: flex;
  width: 100%;
  max-height: 90svh;
}

.qv-media {
  position: relative;
  flex: 0 0 44%;
  background: var(--light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.qv-img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.qv-info {
  flex: 1 1 56%;
  padding: 36px 36px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.qv-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text);
  line-height: 1.15;
  margin: 6px 0 10px;
}

.qv-price {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  color: var(--text);
  margin: 10px 0;
}

.qv-info .prod-stock { width: fit-content; margin-bottom: 4px; }

.qv-desc {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.6;
  margin: 14px 0 20px;
}

.qv-variant-group { margin-bottom: 22px; }

.qv-variant-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.qv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qv-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.qv-chip:hover { border-color: var(--pink-cta); }

.qv-chip.active {
  border-color: var(--pink-cta);
  background: rgba(178,47,92,.08);
  color: var(--pink-cta-dark);
}

.qv-chip.out-of-stock {
  opacity: .5;
  text-decoration: line-through;
  cursor: not-allowed;
}

.qv-chip-swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.15);
  flex-shrink: 0;
}

.qv-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 4px;
}

.qv-qty-label { font-size: 14px; font-weight: 800; color: var(--text); }

.qv-qty-control {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--light-2);
  border-radius: 24px;
  padding: 6px 10px;
}

.qv-qty-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  border: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition);
}

.qv-qty-btn:hover { transform: scale(1.08); }
.qv-qty-btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }

.qv-qty-val { min-width: 22px; text-align: center; font-weight: 800; font-size: 16px; color: var(--text); }

.qv-add-btn { margin-top: auto; }

.qv-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  font-size: 20px;
  line-height: 1;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 2;
  transition: background var(--transition), color var(--transition);
}

.qv-close:hover { background: var(--pink-cta); color: white; }

/* Tablet y mobile: apilar imagen arriba, info abajo */
@media (max-width: 760px) {
  .qv-content { flex-direction: column; overflow-y: auto; }
  .qv-media { flex: none; padding: 24px; }
  .qv-modal { width: min(560px, 94vw); max-height: 92svh; }
}

/* Mobile chico: modal a pantalla completa */
@media (max-width: 480px) {
  .qv-modal {
    width: 100%;
    max-height: 100svh;
    height: 100svh;
    top: 0; left: 0;
    border-radius: 0;
    transform: none;
  }
  .qv-modal.open { transform: none; }
  .qv-content { max-height: 100svh; height: 100%; }
  .qv-info { padding: 28px 20px 24px; }
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  flex-shrink: 0;
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
}

.cart-title-emoji { font-size: 26px; }

.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-2);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  color: var(--text-muted);
  cursor: pointer;
}

.cart-close:hover {
  background: #ffe0ec;
  color: var(--pink);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.cart-empty {
  text-align: center;
  padding: 48px 20px;
}

.cart-empty-icon { font-size: 48px; margin-bottom: 12px; }
.cart-empty p { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.cart-empty span { font-size: 13px; color: var(--text-muted); }

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.cart-item-img {
  width: 64px; height: 64px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--light-2);
}

.cart-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--purple);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-2);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: var(--text);
  cursor: pointer;
}

.qty-btn:hover { background: var(--border); }

.qty-val {
  font-weight: 800;
  font-size: 15px;
  min-width: 24px;
  text-align: center;
}

.cart-item-del {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,100,100,.1);
  color: #c92a2a;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  cursor: pointer;
}

.cart-item-del:hover { background: rgba(255,100,100,.2); }

.cart-footer {
  padding: 20px;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.cart-footer.hidden { display: none; }

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
}

.cart-total-price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text);
}

.cart-note {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
}

.btn-continue {
  font-size: 14px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr 1.5fr; }
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-emoji { font-size: 32px; }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255,255,255,.5);
}

.footer-wa { margin-top: 4px; }

.footer-nav-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  text-decoration: none;
}

.footer-nav a:hover { color: var(--pink); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}

.footer-contact-item a:hover { color: var(--pink); }

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.payment-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--pink); }

/* ── BODY CART OPEN ─────────────────────────────────────────── */
body.cart-open, body.qv-open { overflow: hidden; }

/* ── UTILITY: hidden ────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── PRINT SAFE ─────────────────────────────────────────────── */
@media print {
  #main-nav, .cart-drawer, .cart-overlay, #cart-toggle-btn, .qv-modal, .qv-overlay { display: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── RESPONSIVE TWEAKS ──────────────────────────────────────── */

/* Small mobile adjustments */
@media (max-width: 380px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-hero { width: 100%; justify-content: center; }
  .wa-cta-btns { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* Nav logo on very small screens */
@media (max-width: 360px) {
  .nav-logo-text { display: none; }
}

/* Tablet improvements */
@media (min-width: 768px) and (max-width: 1023px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Large screens: give product cards more visual space */
@media (min-width: 1280px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .featured-prod-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── LAZY IMAGE TRANSITION ──────────────────────────────────── */
.prod-img[src="assets/img/placeholder.svg"] { opacity: 1; }

/* ── SECTION ALTERNATING BACKGROUNDS ───────────────────────── */
#categorias  { background: var(--white); }
#catalogo    { background: var(--light); }
#destacados  { background: var(--white); }

/* ── FILTER ACTIVE STATE ARIA ───────────────────────────────── */
.filter-btn[aria-pressed="true"] {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
  box-shadow: 0 4px 16px rgba(132,94,247,.3);
}

/* ── SCROLLBAR STYLING ──────────────────────────────────────── */
.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-track { background: transparent; }
.cart-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* ── FOCUS VISIBLE GLOBAL ───────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── SELECTION COLOR ────────────────────────────────────────── */
::selection {
  background: rgba(132,94,247,.25);
  color: var(--text);
}

/* ── SMOOTH IMAGE LOAD ──────────────────────────────────────── */
img { transition: opacity 0.3s ease; }
img[src="assets/img/placeholder.svg"] { opacity: 0.85; }

/* ── ANIMATION: section enters ──────────────────────────────── */
.section-header.reveal { transition-delay: 0.05s; }
.step-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.step-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.feat-cat-card:nth-child(2) { transition-delay: 0.08s; }
.feat-cat-card:nth-child(3) { transition-delay: 0.16s; }
.feat-cat-card:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   NUEVAS SECCIONES — Categorías visibles + Cómo comprar real
   ============================================================ */

/* ── CATEGORÍAS VISIBLES (reemplaza feat-cats-grid vacío) ──────── */
.section-categorias {
  background: var(--white);
}

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 480px) {
  .categorias-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .categorias-grid { grid-template-columns: repeat(6, 1fr); gap: 20px; }
}

.categoria-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  background: var(--light);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
}

.categoria-card:hover {
  border-color: var(--purple);
  background: var(--light-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.categoria-card:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
}

.cat-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.cat-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.2;
}

.cat-desc {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.4;
}

.cat-count {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 4px;
}

.categorias-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 20px;
  padding: 0 16px;
}

/* ── CÓMO COMPRAR — Simple y real ────────────────────────────── */
.section-como-comprar {
  background: var(--white);
}

.como-comprar-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .como-comprar-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.como-comprar-info h2.section-title {
  text-align: left;
  margin-bottom: 16px;
}

.como-comprar-info .section-sub {
  text-align: left;
  margin: 0 0 24px;
}

.como-comprar-lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 4px;
}

.como-comprar-lista li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.lista-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.como-comprar-lista strong {
  font-weight: 800;
  color: var(--dark);
}

.como-comprar-visual {
  display: none;
}

@media (min-width: 768px) {
  .como-comprar-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.como-steps-visual {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.como-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.como-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,107,157,.4);
}

.como-step p {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.como-arrow {
  font-size: 24px;
  font-weight: 800;
  color: var(--pink);
  display: none;
}

@media (min-width: 560px) {
  .como-arrow { display: block; }
}

/* ── UBICACIÓN: lead text ────────────────────────────────────── */
.location-lead {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* ── FOOTER ajustes menores para nuevo layout ────────────────── */
/* El grid 4 columnas en desktop ya está en .footer-grid */

/* ── ACCESSIBILITY: skip link ───────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px; left: 16px;
  background: var(--purple);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ── MISC: prevent horizontal overflow ──────────────────────── */
section, .hero, .stats-section, .footer { overflow-x: hidden; }

/* ============================================================
   COMBINADO — catálogo real + isologo + nombre del cliente
   Agregado al fusionar el catálogo real con el diseño festivo
   ============================================================ */

/* ── Isologo real (reemplaza los emojis placeholder) ─────────── */
.brand-logo-img {
  object-fit: contain;
  display: block;
}
.nav-logo .brand-logo-img { height: 38px; width: auto; }
.footer-logo .brand-logo-img { height: 44px; width: auto; }
.splash-logo .brand-logo-img {
  height: 84px; width: auto;
  animation: splash-spin 2s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.35));
}

/* ── Tarjetas de producto sin foto real todavía ──────────────── */
.prod-img-fallback {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  background:
    radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--cat-color) 35%, white) 0%, transparent 55%),
    linear-gradient(135deg, color-mix(in srgb, var(--cat-color) 22%, white) 0%, color-mix(in srgb, var(--cat-color) 10%, white) 100%);
}
.prod-img-fallback-icon {
  font-size: 48px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.12));
}
.prod-card:hover .prod-img-fallback-icon { transform: scale(1.08); transition: transform 0.4s ease; }

/* ── Tarjetas de categoría sin foto real todavía ─────────────── */
.feat-cat-img-fallback {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 25% 20%, color-mix(in srgb, var(--cat-color) 55%, white) 0%, transparent 60%),
    linear-gradient(135deg, var(--cat-color) 0%, color-mix(in srgb, var(--cat-color) 60%, black) 100%);
}
.feat-cat-img-fallback span { font-size: 64px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.25)); }

/* ── Campo "Tu nombre" en el carrito (pedido por el informe) ─── */
.cart-name-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin: 14px 0 6px;
}
.cart-name-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--light);
  transition: border-color var(--transition);
  margin-bottom: 4px;
}
.cart-name-input:focus {
  outline: none;
  border-color: var(--pink);
}
.cart-name-input.shake { animation: cart-name-shake 0.4s ease; border-color: var(--pink-dark); }
@keyframes cart-name-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* ── Toast simple ─────────────────────────────────────────────── */
.bambinos-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: var(--dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10050;
  max-width: 90vw;
  text-align: center;
}
.float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.bambinos-toast.show { opacity: 1; transform: translate(-50%, 0); }
