/* ================================================
   LLAVEROS MÁGICOS NFC — Stylesheet
   Paleta: naranja, marrón, melocotón, crema
   ================================================ */

:root {
  --cream:    #F5EDE3;
  --salmon:   #F9BF96;
  --orange:   #F97316;
  --brown-dark: #3D1A0F;
  --brown:    #7B3F22;
  --peach:    #FAD5BB;
  --white:    #FDFAF6;
  --text:     #2C1508;
  --text-soft:#7B5A44;
  --border:   rgba(61,26,15,0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 8px 40px rgba(61,26,15,0.12);
  --shadow-lg: 0 20px 60px rgba(61,26,15,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 60px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--brown-dark);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--orange); }

.btn-outline {
  background: transparent;
  color: var(--brown-dark);
  border-color: var(--brown);
}
.btn-outline:hover {
  background: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--brown-dark);
  color: #fff;
  z-index: 1000;
  padding: 16px 24px;
  transform: translateY(100%);
  animation: slideUp 0.5s 1.5s forwards;
}

@keyframes slideUp {
  to { transform: translateY(0); }
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-icon { font-size: 1.4rem; flex-shrink: 0; }
.cookie-content p { flex: 1; font-size: 0.9rem; opacity: 0.9; }
.cookie-content a { color: var(--salmon); text-decoration: underline; }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.btn-cookie {
  padding: 8px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-accept { background: var(--orange); color: #fff; }
.btn-accept:hover { background: var(--salmon); }
.btn-reject { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-reject:hover { border-color: #fff; }

.cookie-banner.hidden { display: none; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(61,26,15,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.logo strong { color: var(--orange); }
.logo-mark { color: var(--orange); font-size: 0.9rem; }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--transition);
}

.main-nav a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
}
.nav-cta:hover { background: var(--brown) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--peach) 60%, var(--salmon) 100%);
  padding: 120px 0 80px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--orange), var(--salmon));
  top: -100px; right: -150px;
  animation: float 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--brown), var(--peach));
  bottom: -100px; left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(61,26,15,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--brown);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  animation: fadeIn 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--brown-dark);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--orange);
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.5s ease both;
}

.hero-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.65s ease both;
}

.hero-pills span {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(249,115,22,0.2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-soft);
  opacity: 0.7;
  animation: fadeIn 1s 1s ease both;
}

.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}

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

.step::before {
  content: attr(data-step);
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.12;
  line-height: 1;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.step-arrow {
  font-size: 1.8rem;
  color: var(--orange);
  opacity: 0.4;
  padding-top: 60px;
  flex-shrink: 0;
}

.nfc-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 28px;
}

.nfc-icon { font-size: 1.8rem; flex-shrink: 0; }
.nfc-note p { font-size: 0.95rem; opacity: 0.9; }

/* ── CATALOG ── */
.catalog {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.product-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange), var(--shadow);
}

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 2;
}

/* Product Illustrations */
.product-img-wrap {
  background: linear-gradient(135deg, var(--cream), var(--peach));
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img { position: relative; }

/* Camera illustration */
.product-img--camera {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.camera-film {
  width: 60px; height: 20px;
  background: #fff;
  border-radius: 4px 4px 0 0;
  position: relative;
  top: 0;
}

.camera-film::before, .camera-film::after {
  content: '';
  position: absolute;
  top: -6px;
  width: 14px; height: 8px;
  background: #fff;
  border-radius: 2px 2px 0 0;
}
.camera-film::before { left: 6px; }
.camera-film::after { right: 6px; }

.camera-body {
  width: 80px; height: 70px;
  background: #F4A4B0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.camera-lens-outer {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(244,164,176,0.5);
  display: flex; align-items: center; justify-content: center;
}

.camera-lens-inner {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d4748a, #c25070);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.3);
}

.camera-viewfinder {
  position: absolute;
  top: 8px; right: 8px;
  width: 14px; height: 14px;
  border-radius: 3px;
  border: 2px solid rgba(244,164,176,0.6);
}

/* Triangle illustration */
.product-img--triangle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.triangle-shape {
  width: 0; height: 0;
  border-left: 55px solid transparent;
  border-right: 55px solid transparent;
  border-bottom: 96px solid #E91E8C;
  position: relative;
  filter: drop-shadow(0 8px 16px rgba(233,30,140,0.3));
}

.triangle-inner {
  position: absolute;
  top: 28px; left: -22px;
  width: 0; height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 38px solid rgba(255,255,255,0.25);
}

.triangle-ring {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 3px solid #ccc;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  background: #ddd;
}

/* Brain/skull illustration */
.product-img--brain {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skull-body {
  width: 72px; height: 62px;
  background: #56C9E8;
  border-radius: 50% 50% 40% 40% / 55% 55% 45% 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(86,201,232,0.4);
}

.skull-eye {
  width: 14px; height: 14px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  margin-top: 8px;
}

.skull-nose {
  position: absolute;
  bottom: 14px;
  width: 8px; height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
}

.brain-top {
  width: 50px; height: 32px;
  background: linear-gradient(135deg, #F9A8D4, #F472B6);
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  margin-top: -8px;
  position: relative;
  box-shadow: 0 -2px 12px rgba(249,168,212,0.4);
}

.brain-top::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 18px;
  background: rgba(255,255,255,0.4);
}

/* NFC pulse animation */
.product-nfc-pulse {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 24px; height: 24px;
}

.product-nfc-pulse::before,
.product-nfc-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: nfcPulse 2s ease-in-out infinite;
}

.product-nfc-pulse::after {
  animation-delay: 0.5s;
}

@keyframes nfcPulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Product info */
.product-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.product-info > p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.product-uses strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brown);
  display: block;
  margin-bottom: 8px;
}

.product-uses ul {
  list-style: none;
  margin-bottom: 20px;
}

.product-uses li {
  font-size: 0.85rem;
  color: var(--text-soft);
  padding: 3px 0 3px 16px;
  position: relative;
}

.product-uses li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
}

.product-colors {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.swatch {
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  cursor: default;
  transition: transform var(--transition);
}
.swatch:hover { transform: scale(1.25); }

.catalog-cta-box {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  border-radius: var(--radius);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.catalog-cta-box p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  flex: 1;
}

.catalog-cta-box p strong { color: var(--salmon); }

.catalog-cta-box .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.catalog-cta-box .btn-outline:hover {
  background: #fff;
  color: var(--brown-dark);
}

/* ── ABOUT ── */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 440px;
}

.about-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, var(--peach), var(--salmon));
  border-radius: 60% 40% 40% 60% / 50% 50% 50% 50%;
  animation: morphBlob 8s ease-in-out infinite;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 40% 60% / 50% 50% 50% 50%; }
  33% { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; }
  66% { border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%; }
}

.about-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-dark);
  white-space: nowrap;
}

.about-card span { font-size: 1.3rem; }

.about-card-1 { top: 20px; left: -10px; animation: floatCard 6s ease-in-out infinite; }
.about-card-2 { top: 50%; right: -20px; transform: translateY(-50%); animation: floatCard 7s ease-in-out infinite 1s; }
.about-card-3 { bottom: 30px; left: 10%; animation: floatCard 5s ease-in-out infinite 0.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.about-card-2 {
  top: 50%;
  animation: floatCard2 7s ease-in-out infinite 1s;
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 10px)); }
}

.about-taller-logo {
  position: absolute;
  bottom: 50%; left: 50%;
  transform: translate(-50%, 50%);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brown-dark);
  text-align: center;
  line-height: 1.2;
  width: 120px;
}

.about-text p {
  color: var(--text-soft);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-text p strong { color: var(--brown-dark); }

.about-stats {
  display: flex;
  gap: 36px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat span {
  font-size: 0.82rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ── USES ── */
.uses {
  background: var(--white);
}

.uses .section-title { text-align: center; }
.uses .section-label { text-align: center; }

.uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.use-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.use-item:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.use-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
}

.use-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.use-item p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* contact section → see new styles at bottom of file */

/* ── FOOTER ── */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo--footer { color: #fff; }
.logo--footer strong { color: var(--salmon); }

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 8px;
  opacity: 0.65;
}
.footer-brand a { color: var(--salmon); }
.footer-brand a:hover { text-decoration: underline; }

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ── RESPONSIVE ── */

/* ════════════════════════════════════════════════════
   COMPONENTES TARDÍOS (foto catálogo, COGAM, precios,
   contacto, header logo) + RESPONSIVE COMPLETO
   ════════════════════════════════════════════════════ */

/* ── CATALOG — product photo cards ── */
.catalog-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-soft);
  padding: 40px;
  font-size: 0.95rem;
}

.product-photo-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #1c1c1e;
  border-radius: var(--radius) var(--radius) 0 0;
}

.product-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  display: block;
}

.product-card:hover .product-photo-wrap img { transform: scale(1.08); }

.product-photo-wrap .product-nfc-pulse {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 28px; height: 28px;
  z-index: 2;
}

/* ── CASES / TRABAJOS ── */
.cases { background: var(--brown-dark); color: #fff; }
.cases .section-label { color: var(--salmon); }
.cases .section-title { color: #fff; }
.cases .section-title em { color: var(--salmon); }
.cases .section-sub { color: rgba(255,255,255,0.6); }

/* card is now block (photo on top, body below) */
.case-card {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 16px;
}

/* Hero photo — full width, show entire image, no crop */
.case-hero-img {
  position: relative;
  width: 100%;
  background: #0d0d0d;
  line-height: 0; /* remove bottom gap */
}

.case-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.case-card:hover .case-hero-img img { transform: scale(1.02); }

.case-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,6,2,0.75) 0%, transparent 100%);
  padding: 20px 28px;
}

.case-client-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--salmon);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

.case-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Body: 2 cols on desktop, 1 on mobile */
.case-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 52px 52px;
}

.case-body-text h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.case-body-text h3 em { font-style: italic; color: var(--salmon); }

.case-body-text > p {
  color: rgba(255,255,255,0.72);
  font-size: 0.97rem;
  margin-bottom: 14px;
  line-height: 1.75;
}

.case-body-text > p strong { color: var(--salmon); }

.case-body-text .case-cta-row { margin-top: 28px; }

.case-features {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.case-feature > span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.case-feature strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 3px; }
.case-feature p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.5; margin: 0; }

.case-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.case-note { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ── PRICING ── */
.pricing { background: var(--cream); }

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

.pricing-table-wrap {
  background: var(--brown-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #2a0f06;
  padding: 16px 28px;
}

.pricing-th {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--salmon);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.pricing-row:hover { background: rgba(255,255,255,0.04); }
.pricing-row:last-child { border-bottom: none; }

.pricing-qty {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Price cell: stacks "desde" label above the number */
.pricing-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--salmon);
}

.pricing-desde {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38);
  line-height: 1;
  margin-bottom: 1px;
}

.pricing-row--highlight .pricing-price { color: #fb923c; }
.pricing-row--best {
  background: rgba(249,115,22,0.08);
  border-top: 1px solid rgba(249,115,22,0.2);
  border-bottom: none;
}
.pricing-row--best .pricing-qty { color: #fff; }

.pricing-price--big {
  font-size: 1.6rem;
  color: var(--orange) !important;
}
.pricing-price--big .pricing-desde { color: rgba(249,115,22,0.5); }

.pricing-best-tag {
  background: var(--orange);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.pricing-note > span { font-size: 1.2rem; flex-shrink: 0; }
.pricing-note strong { color: var(--brown-dark); }

.pricing-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.pricing-info-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pricing-info-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.pricing-info-icon { font-size: 1.5rem; margin-bottom: 8px; }
.pricing-info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 5px;
}
.pricing-info-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

/* ── HEADER logo image ── */
.header-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition), height var(--transition);
}
.header-logo-img:hover { opacity: 0.85; }
.site-header.scrolled .header-logo-img { height: 38px; }

/* ══════════════════════════════════════════════════
   CONTACT — no-form version
   ══════════════════════════════════════════════════ */
.contact {
  background: linear-gradient(170deg, var(--cream) 0%, var(--peach) 100%);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 64px;
  box-shadow: var(--shadow-lg);
  align-items: center;
}

.contact-text > p {
  color: var(--text-soft);
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.contact-channel:hover {
  border-color: var(--orange);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-channel-icon { font-size: 1.6rem; flex-shrink: 0; width: 44px; text-align: center; }

.contact-channel-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0; /* allow text to truncate */
}

.contact-channel-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  font-weight: 500;
}

.contact-channel-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brown-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-channel-arrow {
  font-size: 1.1rem;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
  flex-shrink: 0;
}
.contact-channel:hover .contact-channel-arrow { opacity: 1; transform: translateX(0); }

.contact-ship-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-soft);
  padding-top: 8px;
}

.contact-cta-panel {
  background: linear-gradient(145deg, var(--brown-dark), #5c2810);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.contact-cta-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(249,115,22,0.12);
  pointer-events: none;
}

.contact-cta-inner {
  padding: 44px 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-cta-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.contact-cta-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.contact-cta-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact-cta-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  width: 100%;
}

.contact-cta-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.cta-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-contact-main {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 15px 28px;
  margin-bottom: 12px;
  box-shadow: 0 6px 24px rgba(249,115,22,0.4);
}

.contact-cta-footer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  width: 100%;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — UN SOLO BLOQUE, sin duplicados
   Breakpoints: 1100 → 768 → 480 → 360
   ══════════════════════════════════════════════════ */

/* ── Tablet grande ── */
@media (max-width: 1100px) {
  .pricing-layout { grid-template-columns: 1fr; gap: 32px; }
  .pricing-side {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .pricing-side > .btn { grid-column: 1 / -1; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
}

/* ── Tablet / móvil grande ── */
@media (max-width: 768px) {
  /* Base */
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .section-sub { font-size: 1rem; margin-bottom: 36px; }

  /* Header — siempre fixed */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(253,250,246,0.97);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 16px rgba(61,26,15,0.1);
  }
  .site-header.scrolled { padding: 8px 0; }
  .header-logo-img { height: 36px !important; }
  body { padding-top: 58px; }

  /* Nav toggle visible */
  .nav-toggle { display: flex; }

  /* Mobile nav — full-width panel */
  .main-nav {
    display: none;
    position: fixed;
    top: 58px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 8px 18px 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    z-index: 899;
    max-height: calc(100vh - 58px);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--border); }
  .main-nav li:last-child { border-bottom: none; margin-top: 6px; }
  .main-nav a { display: block; padding: 13px 0; font-size: 1rem; color: var(--text); }
  .nav-cta {
    display: flex !important;
    width: 100%;
    justify-content: center;
    border-radius: 100px !important;
    padding: 13px 0 !important;
    background: var(--orange) !important;
    color: #fff !important;
    margin-top: 4px;
  }

  /* Cookie banner — stack vertical */
  .cookie-banner { padding: 14px 16px; }
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    align-items: center;
  }
  .cookie-content p { flex: none; font-size: 0.88rem; }
  .cookie-btns { justify-content: center; width: 100%; }
  .btn-cookie { flex: 1; max-width: 140px; padding: 10px 16px; }

  /* Hero */
  .hero { padding: 56px 0 56px; min-height: auto; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-pills { gap: 8px; }
  .hero-pills span { font-size: 0.8rem; padding: 7px 14px; }
  .hero-badge { font-size: 0.75rem; }

  /* How it works */
  .steps { flex-direction: column; gap: 16px; }
  .step-arrow { transform: rotate(90deg); text-align: center; font-size: 1.4rem; padding: 0; }
  .step { padding: 26px 22px; }

  /* Catalog */
  .catalog-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-photo-wrap { height: 240px; }
  .catalog-cta-box { flex-direction: column; padding: 28px 20px; text-align: center; gap: 16px; }

  /* COGAM case — single column */
  .case-body { grid-template-columns: 1fr; padding: 28px 22px 36px; gap: 24px; }
  .case-body-text h3 { font-size: 1.55rem; }
  .case-cta-row { flex-direction: column; gap: 12px; }
  .case-cta-row .btn { width: 100%; justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-visual { min-height: 240px; margin-bottom: 32px; }
  .about-stats { gap: 16px; flex-wrap: wrap; }

  /* Uses */
  .uses-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .use-item { padding: 22px 18px; }

  /* Pricing — full width, single col, cards in 2 cols */
  .pricing-layout { grid-template-columns: 1fr; gap: 28px; }
  .pricing-side {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .pricing-side > .btn { grid-column: 1 / -1; }
  .pricing-table-header { padding: 14px 20px; }
  .pricing-row { padding: 13px 20px; }
  .pricing-price { font-size: 1.2rem; }

  /* Contact */
  .contact-box { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 20px; padding-bottom: 28px; }
  .footer-nav { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .footer-nav a { font-size: 0.82rem; }
}

/* ── Móvil pequeño ── */
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 15px; }

  /* Header */
  .header-logo-img { height: 30px !important; }
  body { padding-top: 52px; }
  .main-nav { top: 52px; max-height: calc(100vh - 52px); }

  /* Hero */
  .hero { padding: 44px 0 48px; }
  .hero-title { font-size: clamp(1.85rem, 9vw, 2.3rem); }
  .hero-sub { font-size: 0.92rem; }
  .hero-pills { display: none; }
  .hero-scroll-hint { display: none; }

  /* Steps */
  .step { padding: 20px 16px; }
  .step h3 { font-size: 1.05rem; }

  /* Catalog */
  .product-photo-wrap { height: 210px; }
  .product-info { padding: 18px 16px; }
  .product-info h3 { font-size: 1.15rem; }

  /* COGAM case */
  .case-hero-img img { object-fit: cover; max-height: 260px; }
  .case-body { padding: 20px 16px 28px; gap: 20px; }
  .case-body-text h3 { font-size: 1.3rem; }
  .case-features { padding: 18px; }
  .case-feature { gap: 10px; }

  /* Pricing — single col for side cards */
  .pricing-side { grid-template-columns: 1fr; }
  .pricing-side > .btn { grid-column: 1; }
  .pricing-table-header { padding: 12px 14px; }
  .pricing-row { padding: 12px 14px; }
  .pricing-qty { font-size: 0.88rem; flex-direction: column; align-items: flex-start; gap: 4px; }
  .pricing-best-tag { margin-top: 2px; }
  .pricing-price { font-size: 1.1rem; }
  .pricing-price--big { font-size: 1.35rem; }
  .pricing-th { font-size: 0.68rem; }
  .pricing-th span { display: none; } /* hide emoji on tiny screens */

  /* Uses */
  .uses-grid { grid-template-columns: 1fr; gap: 12px; }

  /* About */
  .about-visual { min-height: 200px; }
  .about-card { font-size: 0.78rem; padding: 10px 14px; }
  .stat strong { font-size: 1.6rem; }

  /* Contact */
  .contact-box { padding: 24px 16px; gap: 24px; }
  .contact-cta-inner { padding: 30px 22px; }
  .contact-cta-logo { height: 40px; }
  .contact-cta-headline { font-size: 1.25rem; }
  .contact-channel { padding: 13px 14px; gap: 12px; }
  .contact-channel-icon { width: 34px; font-size: 1.3rem; }
  .contact-channel-value { font-size: 0.82rem; }
}

/* ── Muy pequeño (iPhone SE, 360px) ── */
@media (max-width: 360px) {
  .hero-title { font-size: 1.7rem; }
  .section-title { font-size: 1.65rem; }
  .hero-actions .btn { font-size: 0.88rem; padding: 12px 18px; }
  .pricing-row { padding: 10px 12px; }
  .pricing-qty { font-size: 0.82rem; }
  .pricing-price { font-size: 1rem; }
  .pricing-price--big { font-size: 1.2rem; }
}

/* ── AURI — mascota sección Quiénes somos ── */
.auri-visual {
  /* anula el min-height del blob anterior */
  min-height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auri-wrap {
  position: relative;
  width: 340px;
  max-width: 100%;
}

/* La figura de Auri */
.auri-img {
  width: 100%;
  height: auto;
  display: block;
  /* Animación flotante suave */
  animation: auriFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 24px 32px rgba(61,26,15,0.18));
  position: relative;
  z-index: 1;
}

@keyframes auriFloat {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-14px); }
}

/* Burbujas flotantes alrededor */
.auri-bubble {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(61,26,15,0.13);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brown-dark);
  white-space: nowrap;
  z-index: 2;
  border: 1px solid var(--border);
}

.auri-bubble span { font-size: 1.2rem; flex-shrink: 0; }

/* Posiciones y animaciones de cada burbuja */
.auri-bubble-1 {
  top: 12%;
  right: -30px;
  animation: auriB1 4s ease-in-out infinite;
}

.auri-bubble-2 {
  bottom: 28%;
  right: -24px;
  animation: auriB2 4.5s ease-in-out infinite 0.6s;
}

.auri-bubble-3 {
  bottom: 8%;
  left: -10px;
  animation: auriB3 3.8s ease-in-out infinite 1.2s;
}

@keyframes auriB1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(1deg); }
}
@keyframes auriB2 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50%       { transform: translateY(-6px) rotate(-1deg); }
}
@keyframes auriB3 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

/* Responsive Auri */
@media (max-width: 768px) {
  .auri-wrap { width: 260px; }
  .auri-bubble { font-size: 0.77rem; padding: 8px 11px; }
  .auri-bubble-1 { right: -10px; }
  .auri-bubble-2 { right: -8px; }
  .auri-bubble-3 { left: 0; }
}

@media (max-width: 480px) {
  .auri-wrap { width: 200px; }
  .auri-bubble { display: none; } /* en muy pequeño las burbujas molestan */
}

/* ════════════════════════════════════════════════
   MEJORAS MAYO 2026
   ════════════════════════════════════════════════ */

/* ── Font fallbacks mejorados ── */
:root {
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Scroll reveal — basado en clases, no inline styles ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Escalonado para grupos */
.fade-in-up:nth-child(2) { transition-delay: 0.07s; }
.fade-in-up:nth-child(3) { transition-delay: 0.14s; }
.fade-in-up:nth-child(4) { transition-delay: 0.21s; }
.fade-in-up:nth-child(5) { transition-delay: 0.28s; }
.fade-in-up:nth-child(6) { transition-delay: 0.35s; }

/* ── Colores como etiqueta de texto (sin círculos) ── */
.product-colors-label {
  margin-bottom: 18px;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.colors-label-title {
  display: block;
  font-weight: 600;
  color: var(--brown);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.colors-label-list {
  color: var(--text-soft);
  font-size: 0.85rem;
}

/* Ocultar los círculos de color anteriores si quedara alguno */
.product-colors { display: none; }

/* ── Badge destacado ── */
.product-badge--featured {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* ── Nav active state ── */
.main-nav a.active {
  color: var(--orange);
  font-weight: 600;
}
