/* ═══════════════════════════════════════════════════════
   UNIVERSAL GOLD — Design System · Light Edition
   Cream & Ivory · Gold Constellations
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@200;300;400;500&display=swap');

:root {
  --gold:         #B8962E;
  --gold-light:   #D4AA4A;
  --gold-dim:     #C9A84C;
  --gold-pale:    rgba(184,150,46,0.10);
  --gold-glow:    rgba(184,150,46,0.18);

  /* Verde oliva — complementa el dorado cálido y la tinta */
  --green:        #4A7C59;
  --green-light:  #6B9E7A;
  --green-dim:    #5E8F6A;
  --green-pale:   rgba(74,124,89,0.10);
  --green-glow:   rgba(74,124,89,0.18);

  /* Morado ciruela — profundidad luxury sobre crema */
  --purple:       #6B4D7A;
  --purple-light: #8C6B9E;
  --purple-dim:   #7D5C8C;
  --purple-pale:  rgba(107,77,122,0.10);
  --purple-glow:  rgba(107,77,122,0.18);

  --ink:          #1C1810;
  --ink-soft:     #4A4030;
  --ink-muted:    rgba(28, 24, 16, 0.755);

  --cream:        #FAF7F0;
  --cream-1:      #F5F0E8;
  --cream-2:      #EDE6D5;
  --cream-3:      #E4D9C4;
  --white:        #FFFFFF;

  --border:       rgba(184,150,46,0.22);
  --border-soft:  rgba(28,24,16,0.07);
  --border-dark:  rgba(28,24,16,0.14);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  --ease-gold:    cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:     cubic-bezier(0.0, 0.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(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream-1); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }
::selection { background: var(--gold-dim); color: #fff; }


/* ─── CONSTELLATION CANVAS (section-based) ──────────── */
/* Canvas is injected as absolute child of each dark section by JS.
   No fixed canvas = no white-gap on cream/light sections.          */
.constellation-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: constellationFadeIn 2s 0.4s ease forwards;
}

@keyframes constellationFadeIn { to { opacity: 1; } }

/* All direct children of constellation-host sections sit above the canvas */
#destacados > *:not(.constellation-canvas),
.cta-section > *:not(.constellation-canvas),
.contact-info-panel > *:not(.constellation-canvas) {
  position: relative;
  z-index: 1;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.25rem; }

em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-fluid { padding: 0 2.5rem; }
.section { padding: 8rem 0; }

.gold-rule {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem 0;
}
.gold-rule.centered { margin: 1.5rem auto; }
.gold-rule.wide { width: 120px; }

/* ─── HEADER ─────────────────────────────────────────── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.5s var(--ease-gold); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 2.5rem;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: all 0.5s var(--ease-gold);
}

.header.scrolled .header-inner {
  background: rgba(250,247,240,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
  height: 62px;
  box-shadow: 0 1px 28px rgba(28,24,16,0.07);
}

.header-logo img { height: 36px; width: auto; transition: opacity 0.3s; }
.header-logo:hover img { opacity: 0.7; }

.header-nav { display: flex; align-items: center; gap: 0.2rem; }

.nav-link {
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft); padding: 0.5rem 1rem; position: relative; transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1px; background: var(--gold); transition: all 0.35s var(--ease-gold);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { left: 1rem; right: 1rem; }

.btn-cart-header {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); background: var(--gold);
  padding: 0.6rem 1.5rem; border-radius: 0;
  position: relative; transition: all 0.3s var(--ease-gold);
  border: 1px solid var(--gold);
}
.btn-cart-header:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.badge-cart {
  position: absolute; top: -7px; right: -7px;
  background: var(--ink); color: var(--gold-dim); border: 1px solid var(--gold-dim);
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 0.5rem; display: flex; align-items: center; justify-content: center; font-weight: 500;
}

.btn-mobile-toggle {
  background: transparent; border: 1px solid var(--border-dark); color: var(--ink);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
}
.btn-mobile-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* ─── OFFCANVAS ──────────────────────────────────────── */
.offcanvas { background: var(--cream) !important; border-left: 1px solid var(--border) !important; width: 300px !important; }
.offcanvas-header { border-bottom: 1px solid var(--border) !important; padding: 1.5rem 2rem; }
.offcanvas-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; color: var(--ink); }
.btn-close-white { filter: invert(1) !important; }
.offcanvas-body { padding: 0 !important; }

.mobile-nav-link {
  display: block; font-family: var(--font-body); font-size: 0.67rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft); padding: 1.2rem 2rem;
  border-bottom: 1px solid var(--border-soft); transition: all 0.3s;
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 2.5rem; background: var(--gold-pale); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 0; cursor: pointer;
  transition: all 0.35s var(--ease-gold);
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: none; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  transform: translateX(-101%); transition: transform 0.4s var(--ease-gold); z-index: 0;
}
.btn:hover::before { transform: translateX(0); }
.btn > *, .btn > i, .btn > span { position: relative; z-index: 1; }

.btn-primary { background: var(--gold); color: var(--white); border: 1px solid var(--gold); }
.btn-primary::before { background: var(--ink); }
.btn-primary:hover { color: var(--white); }

.btn-dark { background: var(--ink); color: var(--cream); border: 1px solid var(--ink); }
.btn-dark::before { background: var(--gold); }
.btn-dark:hover { color: var(--white); }

.btn-gold-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-gold-outline::before { background: var(--gold-pale); }
.btn-gold-outline:hover { color: var(--gold); }

.btn-ghost { background: transparent; color: var(--ink-soft); border: 1px solid rgb(28 24 16 / 50%); }
.btn-ghost::before { background: var(--cream-2); }
.btn-ghost:hover { color: var(--ink); }

/* ─── HERO ───────────────────────────────────────────── */
.hero { position: relative; height: 100svh; min-height: 680px; overflow: hidden; background: var(--cream-1); }
.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s var(--ease-gold);
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background:#ffffffad;
}

.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 2.5rem 7rem; max-width: 680px;
}

.hero-content h1 {
  color: var(--ink); margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s 0.4s var(--ease-out) forwards;
}
.hero-content p {
  font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 2.5rem;
  max-width: 400px; line-height: 1.95; font-weight: 500 ;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s 0.65s var(--ease-out) forwards;
}
.hero-eyebrow { opacity: 0; animation: fadeUp 1s 0.2s var(--ease-out) forwards; }
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s 0.85s var(--ease-out) forwards;
}

.hero-dots { position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 3; display: flex; flex-direction: row; gap: 0.5rem; }
.hero-dot {
  width: 30px; height: 3px;
  background: rgba(28,24,16,0.12);
  border: none; cursor: pointer; transition: all 0.3s; position: relative;
}
.hero-dot::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 0%;
  background: var(--gold); transition: height 0.3s var(--ease-gold);
}
.hero-dot.active { background: rgba(184,150,46,0.18); }
.hero-dot.active::after { height: 100%; }

.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 1s 1.5s ease forwards;
}
.hero-scroll-indicator span { font-size: 0.52rem; letter-spacing: 0.28em; text-transform: uppercase; color:#000; }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom,#000, transparent); animation: scrollLine 2.2s 1.6s ease infinite; }

/* ─── CATEGORIES ─────────────────────────────────────── */
.cat-section { padding: 9rem 0; background: var(--cream-1); }
.cat-header { text-align: center; margin-bottom: 5rem; }

.cat-mosaic {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px; gap: 3px;
}
.cat-card:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.cat-card:nth-child(2) { grid-column: span 5; }
.cat-card:nth-child(3) { grid-column: span 5; }
.cat-card:nth-child(4) { grid-column: span 4; }
.cat-card:nth-child(5) { grid-column: span 4; }
.cat-card:nth-child(6) { grid-column: span 4; }

.cat-card { position: relative; overflow: hidden; display: block; background: var(--cream-2); cursor: pointer; }

.cat-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-gold), filter 0.6s;
  filter: brightness(0.88) saturate(0.85);
}
.cat-card:hover .cat-card-img { transform: scale(1.06); filter: brightness(0.68) saturate(0.72); }

.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(250,247,240,0.94) 0%, rgba(250,247,240,0.48) 38%, rgba(250,247,240,0.08) 100%);
  transition: background 0.4s;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(0deg, rgba(28,24,16,0.72) 0%, rgba(28,24,16,0.35) 50%, rgba(28,24,16,0.08) 100%);
}

.cat-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; transition: all 0.4s var(--ease-gold); }
.cat-card:hover .cat-card-body { transform: translateY(-4px); }

.cat-card-tag { font-size: 0.57rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); display: block; margin-bottom: 0.5rem; }

.cat-card-name { font-family: var(--font-display); font-size: 1.65rem; font-weight: 400; color: var(--ink); line-height: 1.1; margin-bottom: 0.4rem; transition: color 0.3s; }
.cat-card:hover .cat-card-name { color: var(--cream); }
.cat-card:nth-child(1) .cat-card-name { font-size: 2.4rem; }

.cat-card-count { font-size: 0.7rem; color: var(--ink-muted); font-family: var(--font-body); font-weight: 300; transition: color 0.3s; }
.cat-card:hover .cat-card-count { color: rgba(250,247,240,0.62); }

.cat-card-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-gold);
}
.cat-card:hover .cat-card-line { transform: scaleX(1); }

.cat-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: var(--cream-2); }

.cat-more { text-align: center; margin-top: 4rem; }
.cat-more a {
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-body);
  border-bottom: 1px solid var(--gold-dim); padding-bottom: 0.25rem; transition: all 0.3s;
}
.cat-more a:hover { letter-spacing: 0.32em; border-bottom-color: var(--gold); }

/* ─── PRODUCT CARDS ──────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }

.product-card { background: var(--white); position: relative; overflow: hidden; border: 1px solid var(--border-soft); }

/* Relación 1:1 — equivalente a 1080×1080 px (Instagram square) */
.product-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}

/* Contenedor relativo para apilar las dos imágenes */
.product-card-image .image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Estilos base compartidos para ambas imágenes */
.product-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.55s var(--ease-gold), transform 0.8s var(--ease-gold), filter 0.5s;
}

/* Imagen principal — joya sobre fondo blanco */
.product-card-image .main-image {
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transform: scale(1);
  filter: brightness(0.97) saturate(0.9);
  z-index: 1;
}

/* Imagen hover — joya en modelo, llena el encuadre */
.product-card-image .hover-image {
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.06);
  filter: brightness(0.93) saturate(0.95);
  z-index: 2;
}

/* Al hacer hover: aparece la imagen del modelo */
.product-card:hover .product-card-image .hover-image {
  opacity: 1;
  transform: scale(1);
}
/* La imagen principal se desvanece sutilmente */
.product-card:hover .product-card-image .main-image {
  opacity: 0;
  transform: scale(1.04);
}

.product-card-status { position: absolute; top: 1rem; left: 1rem; }

.badge-available {
  font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 500; padding: 0.3rem 0.8rem;
  background: rgba(250,247,240,0.9); border: 1px solid var(--gold); color: var(--gold); border-radius: 0;
}
.badge-sold-out {
  font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 500; padding: 0.3rem 0.8rem;
  background: rgba(250,247,240,0.9); border: 1px solid var(--border-dark); color: var(--ink-muted); border-radius: 0;
}

.product-card-body { padding: 1.5rem; background: var(--white); border-top: 1px solid var(--border-soft); }
.product-card-cat { font-size: 0.55rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); margin-bottom: 0.45rem; }
.product-card-name a { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--ink); display: block; margin-bottom: 0.7rem; transition: color 0.3s; line-height: 1.25; }
.product-card-name a:hover { color: var(--gold); }
.product-card-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold); }

/* ─── ABOUT ──────────────────────────────────────────── */
.about-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 72vh; }

.about-visual { position: relative; overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.88) saturate(0.85); transition: transform 0.9s var(--ease-gold); }
.about-visual:hover img { transform: scale(1.03); }

/* Video inside about panel — same behaviour as img */
.about-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-gold);
}
.about-visual:hover video { transform: scale(1.03); }

.about-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(250,247,240,0.08), rgba(250,247,240,0.22)); }

.about-badge { position: absolute; bottom: 2.5rem; left: 2.5rem; background: rgba(250,247,240,0.92); border: 1px solid var(--border); padding: 1.4rem 2rem; backdrop-filter: blur(10px); }
.about-badge strong { font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; color: var(--gold); display: block; line-height: 1; }
.about-badge span { font-size: 0.57rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-muted); font-family: var(--font-body); }

.about-text { background: var(--cream-1); padding: 7rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.about-text p { font-size: 0.87rem; color: var(--ink-muted); line-height: 1.95; margin-bottom: 1.5rem; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; border-top: 1px solid var(--border); padding-top: 2.5rem; }
.about-stat strong { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--gold); display: block; line-height: 1; }
.about-stat span { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); font-family: var(--font-body); margin-top: 0.5rem; display: block; }

/* ─── PILLARS ────────────────────────────────────────── */
.pillars-section { padding: 8rem 0; background: var(--cream-2); }

.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); background: var(--white); }
.pillar { padding: 3rem 2.5rem; border-right: 1px solid var(--border); position: relative; transition: background 0.4s; }
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--gold-pale); }
.pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease-gold); }
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon { font-size: 1rem; color: var(--gold); display: block; margin-bottom: 1.5rem; }
.pillar h5 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: 0.9rem; }
.pillar p { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.88; font-weight: 300; }

/* ─── CTA ────────────────────────────────────────────── */
.cta-section {
  padding: 10rem 0; background: var(--ink);
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: 'UNIVERSAL GOLD';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: clamp(4rem, 13vw, 18rem); font-weight: 300;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,0.07);
  white-space: nowrap; pointer-events: none; letter-spacing: 0.05em;
}
.cta-section h2 { color: var(--cream); }
.cta-section p { font-size: 0.87rem; color: rgba(250,247,240,0.52); max-width: 420px; margin: 0 auto 2.5rem; line-height: 1.95; }

/* ─── PAGE HEADER — dark constellation ──────────────── */
.page-header {
  padding: 10rem 0 5rem;
  background: var(--ink);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  position: relative;
  overflow: hidden;
}

/* Ambient gold glow spot — top-left */
.page-header::before {
  content: '';
  position: absolute;
  top: -80px; left: -60px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(184,150,46,0.12) 0%, transparent 68%);
  pointer-events: none;
}

/* Bottom gold rule */
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Canvas injected by JS */
.page-header .constellation-canvas { opacity: 0; animation: constellationFadeIn 2.5s 0.3s ease forwards; }

/* Content above canvas */
.page-header > *:not(.constellation-canvas) { position: relative; z-index: 1; }

.page-header .eyebrow { color: var(--gold-dim); }

.page-header h1 {
  margin-bottom: 1rem;
  color: var(--cream);
}

/* italic em stays gold */
.page-header h1 em { color: var(--gold-light); }

.page-header p { font-size: 0.87rem; color: rgba(250,247,240,0.52); max-width: 420px; line-height: 1.95; }

/* Breadcrumb on dark */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.breadcrumb-item { font-size: 0.67rem; letter-spacing: 0.1em; color: rgba(250,247,240,0.38); font-family: var(--font-body); }
.breadcrumb-item a { color: var(--gold-dim); transition: opacity 0.3s; }
.breadcrumb-item a:hover { opacity: 0.7; }
.breadcrumb-item.active { color: rgba(250,247,240,0.55); }
.breadcrumb-item + .breadcrumb-item::before { content: '/'; color: rgba(201,168,76,0.35); margin-right: 0.5rem; }

/* Breadcrumb bar on product page (the inline div above detail) */
.product-breadcrumb-bar {
  background: var(--ink);
  padding: 5.5rem 0 1.8rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}
.product-breadcrumb-bar::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.product-breadcrumb-bar > *:not(.constellation-canvas) { position: relative; z-index: 1; }

/* ─── STORE ──────────────────────────────────────────── */
.store-body { padding: 5rem 0 8rem; background: var(--cream); }

.filter-panel { background: var(--white); border: 1px solid var(--border-soft); padding: 2rem; position: sticky; top: 90px; box-shadow: 0 4px 22px rgba(28,24,16,0.05); }
.filter-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.filter-title i { color: var(--gold); margin-right: 0.5rem; }
.filter-group { margin-bottom: 2rem; }
.group-label { font-size: 0.57rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); font-weight: 500; display: block; margin-bottom: 0.8rem; }

.form-control, .form-select { background: var(--cream) !important; border: 1px solid var(--border-dark) !important; color: var(--ink) !important; border-radius: 0 !important; font-family: var(--font-body) !important; font-size: 0.82rem !important; font-weight: 300 !important; padding: 0.7rem 1rem !important; transition: border-color 0.3s !important; }
.form-control:focus, .form-select:focus { border-color: var(--gold) !important; box-shadow: 0 0 0 3px var(--gold-pale) !important; outline: none !important; }
.form-control::placeholder { color: var(--ink-muted) !important; }
.input-group-text { background: var(--cream-1) !important; border: 1px solid var(--border-dark) !important; border-right: none !important; color: var(--gold) !important; border-radius: 0 !important; font-size: 0.8rem; }
.form-check-input { background-color: transparent !important; border: 1px solid var(--border-dark) !important; border-radius: 0 !important; }
.form-check-input:checked { background-color: var(--gold) !important; border-color: var(--gold) !important; }
.form-check-label { font-size: 0.78rem; color: var(--ink-soft); font-family: var(--font-body); font-weight: 300; }

.result-count { font-size: 0.64rem; letter-spacing: 0.18em; color: var(--ink-muted); text-transform: uppercase; font-family: var(--font-body); margin-bottom: 2.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-soft); }

.empty-state { grid-column: 1/-1; text-align: center; padding: 8rem 2rem; }
.empty-state-icon { font-size: 2.8rem; color: var(--gold); opacity: 0.18; display: block; margin-bottom: 2rem; }
.empty-state h4 { font-family: var(--font-display); font-weight: 300; font-size: 1.8rem; margin-bottom: 0.75rem; color: var(--ink); }
.empty-state p { font-size: 0.84rem; color: var(--ink-muted); max-width: 360px; margin: 0 auto 2rem; line-height: 1.88; }

/* ─── PRODUCT DETAIL ─────────────────────────────────── */
.product-detail-section { background: var(--cream); }
.product-detail-wrap { display: grid; grid-template-columns: 55% 45%; min-height: 80vh; }
.product-detail-gallery { background: var(--cream-2); position: sticky; top: 72px; height: calc(100% - 72px); overflow: hidden; }
.product-detail-gallery .carousel, .product-detail-gallery .carousel-inner, .product-detail-gallery .carousel-item { height: 100%; }
.product-detail-gallery img { width: 100%; height: 100%; object-fit: cover;  background: #ffffff;}

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; background: rgba(250,247,240,0.88);
  border: 1px solid var(--border); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; z-index: 2; font-size: 0.82rem; backdrop-filter: blur(6px);
}
.carousel-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.carousel-btn-prev { left: 1.5rem; }
.carousel-btn-next { right: 1.5rem; }

.product-detail-info { padding: 5rem 4rem; background: var(--white); border-left: 1px solid var(--border-soft); }
.product-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.badge-gold { font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-body); font-weight: 500; padding: 0.3rem 0.8rem; background: transparent; border: 1px solid var(--gold); color: var(--gold); border-radius: 0; }
.product-name { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: var(--ink); line-height: 1.15; margin-bottom: 0.5rem; }

.product-price-wrap { margin: 2rem 0; padding: 1.5rem 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); display: flex; align-items: baseline; gap: 1rem; }
.product-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; color: var(--gold); }
.product-price-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); font-family: var(--font-body); }
.product-description { margin: 2rem 0; font-size: 0.84rem; color: var(--ink-muted); line-height: 1.95; }

 qty-wrap { margin-bottom: 1.5rem; }
 qty-label { font-size: 0.57rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); display: block; margin-bottom: 0.7rem; }
/* Estilos para los botones + y - en el selector de cantidad */
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-dark);
  width: fit-content;
  border-radius: 4px; /* Bordes redondeados */
  overflow: hidden;
}

.qty-stepper button {
  width: 44px;
  height: 30px;
  background: var(--cream-1); /* Fondo claro */
  border: none;
  color: var(--ink); /* Color del texto */
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-display);
}

.qty-stepper button:hover {
  background: var(--gold); /* Fondo dorado al pasar el ratón */
  color: var(--white); /* Texto blanco */
}

.qty-stepper input {
  width: 50px;
  height: 30px;
  background: var(--white); /* Fondo blanco */
  border: none;
  border-left: 1px solid var(--border-dark);
  border-right: 1px solid var(--border-dark);
  color: var(--ink); /* Color del texto */
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
}

.qty-stepper input:focus {
  outline: none;
}

.trust-signals { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border-soft); }
.trust-item { display: flex; align-items: center; gap: 0.8rem; font-size: 0.74rem; color: var(--ink-muted); font-family: var(--font-body); font-weight: 300; }
.trust-item i { color: var(--gold); font-size: 0.85rem; width: 16px; }

.cart-link { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); font-family: var(--font-body); transition: color 0.3s; border-bottom: 1px solid transparent; }
.cart-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

.related-section { background: var(--cream-1); padding: 7rem 0; border-top: 1px solid var(--border-soft); }
.related-title { font-family: var(--font-display); font-size: 1.9rem; font-weight: 300; color: var(--ink); margin-bottom: 3rem; }

/* ─── CART ───────────────────────────────────────────── */
.cart-body { padding: 5rem 0 8rem; background: var(--cream); }
.order-table { border: 1px solid var(--border-soft); background: var(--white); }
.order-table .table { margin: 0; color: var(--ink); }
.order-table .table thead th { font-size: 0.57rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); font-weight: 500; padding: 1.2rem 1.5rem; background: var(--cream-1); border-bottom: 1px solid var(--border-soft); border-top: none; }
.order-table .table tbody td { padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--border-soft); vertical-align: middle; font-size: 0.84rem; color: var(--ink); background: var(--white); }
.order-table .table tfoot td { padding: 1.2rem 1.5rem; background: var(--cream-1); border-top: 1px solid var(--border-soft); font-size: 0.85rem; }

.cart-product-cell { display: flex; align-items: center; gap: 1rem; }
.cart-product-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.cart-product-name { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--ink); }
.cart-product-ref { font-size: 0.6rem; color: var(--ink-muted); font-family: var(--font-body); margin-top: 0.2rem; letter-spacing: 0.1em; }
.cart-qty { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid var(--border-dark); font-family: var(--font-display); font-size: 1rem; font-weight: 300; color: var(--ink); }

.cart-price-unit { color: var(--ink-muted); font-family: var(--font-display); }
.cart-price-total { color: var(--gold); font-family: var(--font-display); font-size: 1rem; }
.cart-subtotal-label { color: var(--ink-muted); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-body); }
.cart-subtotal-amount { color: var(--gold); font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; }

.cart-section-label { font-size: 0.57rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); margin-bottom: 1.5rem; display: block; }
.cart-back-link { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); font-family: var(--font-body); transition: color 0.3s; }
.cart-back-link:hover { color: var(--gold); }

/* ─── CONTACT CARD — dark panel ─────────────────────── */
.contact-card {
  background: var(--ink);
  border: 1px solid rgba(201,168,76,0.18);
  position: sticky;
  top: 90px;
  overflow: hidden;
}

/* Constellation canvas inside the card */
.contact-card .constellation-canvas {
  opacity: 0;
  animation: constellationFadeIn 2.5s 0.5s ease forwards;
}
.contact-card > *:not(.constellation-canvas) { position: relative; z-index: 1; }

/* Ambient glow spot — top-right of the card */
.contact-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(184,150,46,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Card header band */
.contact-card-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.35rem;
}
.contact-card h4 em { font-style: italic; color: var(--gold-light); }

.contact-card .card-subtitle {
  font-size: 0.72rem;
  color: rgba(250,247,240,0.45);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Form body */
.contact-card-body { padding: 1.8rem 2.5rem 2.5rem; }

.contact-card label {
  font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dim); font-family: var(--font-body); font-weight: 500;
  display: block; margin-bottom: 0.5rem;
}

/* Inputs inherit form-control dark overrides below */
.contact-card .form-control,
.contact-card .form-select {
  background: rgba(250,247,240,0.05) !important;
  border-color: rgba(201,168,76,0.22) !important;
  color: var(--cream) !important;
}
.contact-card .form-control::placeholder { color: rgba(250,247,240,0.28) !important; }
.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(184,150,46,0.12) !important;
}
.contact-card .input-group-text {
  background: rgba(250,247,240,0.04) !important;
  border-color: rgba(201,168,76,0.22) !important;
  color: var(--gold-dim) !important;
}
.contact-card textarea.form-control { resize: none; }

.contact-card .gold-rule {
  margin: 0 0 1.5rem;
  opacity: 0.5;
}

.phone-error { font-size: 0.64rem; color: #e07070; display: none; margin-top: 0.3rem; }

.cart-terms-note { font-size: 0.65rem; color: rgba(250,247,240,0.35); text-align: center; margin-top: 0.5rem; }
.cart-terms-note a { color: var(--gold-dim); border-bottom: 1px solid rgba(201,168,76,0.35); transition: color 0.3s; }
.cart-terms-note a:hover { color: var(--gold-light); }

.empty-cart { text-align: center; padding: 10rem 2rem; }
.empty-cart-icon { font-size: 3rem; color: var(--gold); opacity: 0.18; display: block; margin-bottom: 2rem; }
.empty-cart h2 { font-family: var(--font-display); font-weight: 300; font-size: 2rem; margin-bottom: 0.75rem; }
.empty-cart p { font-size: 0.84rem; color: var(--ink-muted); }

/* ─── MODAL ──────────────────────────────────────────── */
.modal-content { background: var(--cream) !important; border: 1px solid var(--border) !important; border-radius: 0 !important; box-shadow: 0 20px 60px rgba(28,24,16,0.12) !important; }
.modal-header { background: var(--white) !important; border-bottom: 1px solid var(--border-soft) !important; padding: 1.5rem 2rem !important; }
.modal-title { font-family: var(--font-display) !important; font-weight: 300 !important; font-size: 1.4rem !important; color: var(--ink) !important; }
.modal-body { padding: 2rem !important; font-size: 0.82rem; color: var(--ink-soft); line-height: 1.9; }
.modal-footer { border-top: 1px solid var(--border-soft) !important; background: var(--white) !important; padding: 1.2rem 2rem !important; }
.terms-intro { font-family: var(--font-display); font-size: 1rem; color: var(--ink); margin-bottom: 1.5rem; }
.terms-list { padding-left: 1.2rem; }
.terms-list li { margin-bottom: 0.75rem; }

/* ─── CONTACT SECTION ───────────────────────────────── */
.contact-section {
  padding: 9rem 0 0;
  background: var(--cream);
  overflow: hidden;
}

/* ── Grid layout: info left, map+form right ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
  padding-bottom: 7rem;
}

/* ── Left panel: light cream ── */
.contact-info-panel {
  padding: 3.5rem;
  position: relative;
}

.contact-info-panel .eyebrow { color: var(--gold); }

.contact-info-panel h2 {
  color: var(--ink);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.contact-info-panel h2 em { color: var(--gold); font-style: italic; }

/* ── Info items list ── */
.contact-info-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 2.5rem; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border-soft);
  color: inherit;
  transition: background 0.3s;
}

.contact-info-item:first-child { border-top: 1px solid var(--border-soft); }

a.contact-info-item:hover { background: var(--gold-pale); margin: 0 -3.5rem; padding-left: 3.5rem; padding-right: 3.5rem; }

.contact-info-icon {
  width: 38px; height: 38px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

a.contact-info-item:hover .contact-info-icon {
  background: rgba(184,150,46,0.18);
  color: var(--gold-light);
}

.contact-info-text {
  display: flex; flex-direction: column; gap: 0.2rem;
}

.contact-info-text strong {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}

.contact-info-text span {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* Social icons row */
.contact-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.contact-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
  transition: all 0.3s var(--ease-gold);
}

.contact-social a:hover {
  border-color: var(--gold-dim);
  color: var(--gold-dim);
  background: rgba(201,168,76,0.07);
  transform: translateY(-2px);
}

/* ── Right panel: map + form stacked ── */
.contact-map-panel { display: flex; flex-direction: column; gap: 2.5rem; }

/* Map embed */
.contact-map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 52%;
  background: var(--cream-2);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.contact-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.85) contrast(1.05);
}

/* Contact form area */
.contact-form-area {
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 2.5rem;
}

.contact-form-area h4 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.contact-form-area h4 em { color: var(--gold); font-style: italic; }

.form-subtitle {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

/* Two-column row */
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.contact-field-group:last-child { margin-bottom: 0; }

.contact-field-group label {
  font-family: var(--font-body);
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}

.contact-field-group input,
.contact-field-group textarea {
  background: var(--cream) !important;
  border: 1px solid var(--border-dark) !important;
  color: var(--ink) !important;
  border-radius: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  font-weight: 300 !important;
  padding: 0.75rem 1rem !important;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
  outline: none;
}

.contact-field-group input:focus,
.contact-field-group textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px var(--gold-pale) !important;
}

.contact-field-group input::placeholder,
.contact-field-group textarea::placeholder {
  color: var(--ink-muted) !important;
  font-weight: 300;
}

.contact-field-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* Submit row */
.contact-submit-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.contact-whatsapp-alt {
  font-size: 0.76rem;
  color: var(--ink-muted);
  margin: 0;
}

.contact-whatsapp-alt a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184,150,46,0.35);
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}

.contact-whatsapp-alt a:hover { color: var(--gold-light); border-color: var(--gold); }

/* ── Location strip at bottom ── */
.contact-location-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--border-soft);
  padding: 2.2rem 0;
  margin-top: 0;
}

.contact-location-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-location-address {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-location-pin {
  width: 36px; height: 36px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-location-text {
  display: flex; flex-direction: column; gap: 0.18rem;
}

.contact-location-text strong {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  font-weight: 500;
}

.contact-location-text span {
  font-size: 0.72rem;
  color: var(--ink-muted);
  font-weight: 300;
}

/* Hours group */
.contact-hours {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-hours-item {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  text-align: right;
}

.contact-hours-item strong {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
}

.contact-hours-item span {
  font-size: 0.76rem;
  color: var(--ink-muted);
  font-weight: 300;
}

/* ── Contact responsive ── */
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-info-panel { padding: 3rem 2.5rem; }
  a.contact-info-item:hover { margin: 0 -2.5rem; padding-left: 2.5rem; padding-right: 2.5rem; }
}

@media (max-width: 767px) {
  .contact-section { padding: 6rem 0 0; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form-area { padding: 2rem 1.5rem; }
  .contact-location-inner { flex-direction: column; align-items: flex-start; }
  .contact-hours { gap: 1.5rem; }
  .contact-hours-item { text-align: left; }
  .contact-submit-row { flex-direction: column; align-items: flex-start; }
  .contact-map-embed { padding-bottom: 65%; }
}

@media (max-width: 480px) {
  .contact-info-panel { padding: 2.5rem 1.5rem; }
  a.contact-info-item:hover { margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
  .contact-hours { flex-direction: column; gap: 0.8rem; }
}

/* ─── WHATSAPP ───────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 3.5rem; right: 2.5rem; z-index: 999; width: 42px; height: 42px; border-radius:50px; background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: all 0.3s var(--ease-gold); box-shadow: 0 6px 24px rgba(184,150,46,0.3); }
.whatsapp-float:hover { background: var(--ink); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(28,24,16,0.18); color: var(--gold-dim); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--ink); border-top: 1px solid rgba(201,168,76,0.15); padding: 6rem 0 2.5rem; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 1.5rem; filter: brightness(10); opacity: 0.88; }
.footer-desc { font-size: 0.78rem; color: rgba(250,247,240,0.48); line-height: 1.9; max-width: 260px; margin-bottom: 2rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.22); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: rgba(250,247,240,0.48); transition: all 0.3s; }
.footer-social a:hover { border-color: var(--gold-dim); color: var(--gold-dim); background: rgba(201,168,76,0.07); }
.footer-col-title { font-size: 0.57rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-dim); font-family: var(--font-body); font-weight: 500; display: block; margin-bottom: 1.5rem; }
.footer-link { display: block; font-size: 0.78rem; color: rgba(250,247,240,0.48); font-family: var(--font-body); font-weight: 300; margin-bottom: 0.65rem; transition: color 0.3s; }
.footer-link:hover { color: var(--gold-dim); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.78rem; color: rgba(250,247,240,0.48); margin-bottom: 0.9rem; transition: color 0.3s; }
.footer-contact-item i { color: var(--gold-dim); margin-top: 0.2rem; font-size: 0.82rem; }
.footer-contact-item:hover { color: rgba(250,247,240,0.78); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; margin-top: 4rem; border-top: 1px solid rgba(201,168,76,0.12); }
.footer-copy { font-size: 0.65rem; color: rgba(250,247,240,0.27); font-family: var(--font-body); letter-spacing: 0.05em; }
.footer-credits { font-size: 0.65rem; color: rgba(250,247,240,0.27); font-family: var(--font-body); }
.footer-credits a { color: var(--gold-dim); }

/* ─── ALERTS ─────────────────────────────────────────── */
.alert { border-radius: 0 !important; font-size: 0.82rem; font-family: var(--font-body); }
.alert-success { background: rgba(184,150,46,0.08) !important; color: var(--gold) !important; border: 1px solid rgba(184,150,46,0.28) !important; }

/* ─── JOYERÍA PERSONALIZADA ──────────────────────────── */
.custom-jewelry-section { background: var(--cream-1); }

.custom-jewelry-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}

.custom-jewelry-intro {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.9;
  margin-top: 1.2rem;
}

/* Main layout: featured card left, sub-grid right */
.custom-jewelry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 3rem;
}

.custom-jewelry-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

/* Card base */
.custom-jewelry-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s var(--ease-gold);
}

.custom-jewelry-card:hover {
  box-shadow: 0 12px 48px rgba(28,24,16,0.1);
  z-index: 1;
}

/* Visual / image panel */
.custom-jewelry-card-visual {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--cream-2);
}

.custom-jewelry-card-visual--sm { height: 160px; }

.custom-jewelry-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease-gold), filter 0.5s;
  filter: brightness(0.72) saturate(0.8);
}

.custom-jewelry-card:hover .custom-jewelry-card-bg {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(0.7);
}

.custom-jewelry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(28,24,16,0.55) 100%);
}

.custom-jewelry-card-icon {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 42px;
  height: 42px;
  background: rgba(184,150,46,0.18);
  border: 1px solid rgba(184,150,46,0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--gold-light);
  z-index: 2;
  transition: background 0.3s;
}

.custom-jewelry-card:hover .custom-jewelry-card-icon {
  background: rgba(184,150,46,0.32);
}

/* Text body */
.custom-jewelry-card-body {
  padding: 2rem 2rem 2.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.custom-jewelry-card-body--sm {
  padding: 1.4rem 1.5rem 1.8rem;
}

.custom-jewelry-tag {
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 0.7rem;
}

.custom-jewelry-title {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.8rem;
  line-height: 1.15;
}

.custom-jewelry-card-body--sm .custom-jewelry-title {
  font-size: 1.1rem;
}

.custom-jewelry-desc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.88;
  flex: 1;
  margin-bottom: 1.4rem;
}

.custom-jewelry-features {
  list-style: none;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.custom-jewelry-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-family: var(--font-body);
}

.custom-jewelry-features li i {
  color: var(--gold);
  font-size: 0.65rem;
}

.custom-jewelry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(184,150,46,0.35);
  padding-bottom: 2px;
  transition: all 0.3s;
  margin-top: auto;
  align-self: flex-start;
}

.custom-jewelry-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  gap: 0.8rem;
}

/* Featured card spans both rows on the left */
.custom-jewelry-featured .custom-jewelry-card-visual { height: 100%; min-height: 320px; }
.custom-jewelry-featured { min-height: 520px; }
.custom-jewelry-featured .custom-jewelry-card-body { padding: 2.5rem 2.5rem 3rem; }
.custom-jewelry-featured .custom-jewelry-title { font-size: clamp(1.4rem, 2.2vw, 2rem); }

/* Bottom CTA strip */
.custom-jewelry-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-top: 2px solid var(--gold);
  flex-wrap: wrap;
}

.custom-jewelry-cta-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.custom-jewelry-cta-text i {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .custom-jewelry-grid { grid-template-columns: 1fr; }
  .custom-jewelry-featured { min-height: auto; }
  .custom-jewelry-featured .custom-jewelry-card-visual { height: 260px; }
}

@media (max-width: 600px) {
  .custom-jewelry-sub-grid { grid-template-columns: 1fr; }
  .custom-jewelry-cta { flex-direction: column; align-items: flex-start; }
}


/* ─── CLIENTES VIP ───────────────────────────────────── */
.vip-section {
  background: var(--ink);
  padding: 9rem 0 7rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184,150,46,0.14);
  border-bottom: 1px solid rgba(184,150,46,0.14);
}

/* Subtle gold mesh pattern */
.vip-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 10% 20%, rgba(184,150,46,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(184,150,46,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 50% 5%,  rgba(184,150,46,0.04) 0%, transparent 70%);
  z-index: 0;
}

/* Crown icon */
.vip-crown {
  width: 64px; height: 64px;
  background: rgba(184,150,46,0.12);
  border: 1px solid rgba(184,150,46,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin: 0 auto 2rem;
  animation: vipCrownPulse 3.5s ease-in-out infinite;
}

@keyframes vipCrownPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,150,46,0.0); }
  50% { box-shadow: 0 0 0 12px rgba(184,150,46,0.08); }
}

/* Header */
.vip-header { text-align: center; max-width: 660px; margin: 0 auto 5rem; }

.vip-subtitle {
  font-size: 0.86rem;
  color: rgba(250,247,240,0.52);
  line-height: 1.9;
  margin-top: 1.2rem;
}

/* Benefits grid */
.vip-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,150,46,0.12);
  border: 1px solid rgba(184,150,46,0.12);
  margin-bottom: 5rem;
}

.vip-benefit {
  background: rgba(28,24,16,0.6);
  padding: 2.8rem 2.2rem;
  transition: background 0.4s;
  position: relative;
}

.vip-benefit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-gold);
}

.vip-benefit:hover { background: rgba(28,24,16,0.88); }
.vip-benefit:hover::before { transform: scaleX(1); }

.vip-benefit-icon {
  width: 46px; height: 46px;
  background: rgba(184,150,46,0.1);
  border: 1px solid rgba(184,150,46,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
  transition: background 0.3s, color 0.3s;
}

.vip-benefit:hover .vip-benefit-icon {
  background: rgba(184,150,46,0.18);
  color: var(--gold);
}

.vip-benefit h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.vip-benefit p {
  font-size: 0.8rem;
  color: rgba(250,247,240,0.48);
  line-height: 1.85;
  font-weight: 300;
}

/* Join card */
.vip-join-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: rgba(250,247,240,0.03);
  border: 1px solid rgba(184,150,46,0.2);
  padding: 3.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.vip-join-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.vip-join-label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.vip-join-desc {
  font-size: 0.82rem;
  color: rgba(250,247,240,0.48);
  line-height: 1.9;
  margin-top: 1rem;
}

.vip-join-perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.vip-perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(250,247,240,0.7);
  font-family: var(--font-body);
  font-weight: 300;
}

.vip-perk i {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.vip-join-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}

.vip-join-actions .btn {
  width: 100%;
  justify-content: center;
}

/* VIP responsive */
@media (max-width: 991px) {
  .vip-benefits { grid-template-columns: repeat(2, 1fr); }
  .vip-join-card { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 2rem; }
}

@media (max-width: 600px) {
  .vip-section { padding: 6rem 0 5rem; }
  .vip-benefits { grid-template-columns: 1fr; }
  .vip-benefit { padding: 2rem 1.5rem; }
  .vip-join-card { padding: 2rem 1.5rem; }
}


/* ═══════════════════════════════════════════════════════
   PÁGINA — JOYERÍA PERSONALIZADA
═══════════════════════════════════════════════════════ */

/* Intro strip */
.custom-intro-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  padding: 1.4rem 0;
}

.custom-intro-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.custom-intro-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.4rem 2.2rem;
}

.custom-intro-item i { color: var(--gold); font-size: 0.9rem; }

.custom-intro-divider {
  width: 1px;
  height: 22px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* Split layout: visual + content */
.custom-cat-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.custom-cat-wrap.custom-cat-wrap--reverse { direction: rtl; }
.custom-cat-wrap.custom-cat-wrap--reverse > * { direction: ltr; }

.custom-cat-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.custom-cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease-gold);
  filter: brightness(0.78) saturate(0.82);
}

.custom-cat-wrap:hover .custom-cat-img { transform: scale(1.04); }

.custom-cat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,24,16,0.3) 0%, rgba(28,24,16,0.1) 100%);
}

.custom-cat-img-badge {
  position: absolute;
  bottom: 1.8rem;
  left: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(250,247,240,0.92);
  border: 1px solid var(--border);
  padding: 0.8rem 1.4rem;
  backdrop-filter: blur(10px);
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.custom-cat-img-badge i { font-size: 0.9rem; }

.custom-cat-content {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.custom-cat-features {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin: 2rem 0 2.5rem;
}

.custom-cat-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.custom-cat-feature-icon {
  width: 36px; height: 36px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.custom-cat-feature strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.custom-cat-feature span {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.custom-cat-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* 4-card pieces grid */
.custom-pieces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.custom-piece-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-gold);
}

.custom-piece-card:hover { box-shadow: 0 16px 56px rgba(28,24,16,0.1); }

.custom-piece-visual {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.custom-piece-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease-gold), filter 0.5s;
  filter: brightness(0.7) saturate(0.78);
}

.custom-piece-card:hover .custom-piece-img {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(0.68);
}

.custom-piece-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(28,24,16,0.6) 100%);
}

.custom-piece-number {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(250,247,240,0.18);
  line-height: 1;
  letter-spacing: -0.02em;
}

.custom-piece-body { padding: 2rem 2rem 2.4rem; }

.custom-piece-icon {
  width: 38px; height: 38px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.custom-piece-card:hover .custom-piece-icon { background: rgba(184,150,46,0.18); }

.custom-piece-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.custom-piece-body p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.88;
  margin-bottom: 1.2rem;
}

.custom-piece-details {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.custom-piece-details li {
  font-size: 0.76rem;
  color: var(--ink-soft);
  font-family: var(--font-body);
  padding-left: 1rem;
  position: relative;
}

.custom-piece-details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 2px;
}

/* Process steps */
.custom-process-section { background: var(--cream); }

.custom-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.custom-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.custom-process-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(184,150,46,0.14);
  line-height: 1;
  margin-bottom: -0.5rem;
  letter-spacing: -0.03em;
}

.custom-process-line {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin-bottom: 1rem;
}

.custom-process-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.custom-process-step h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.custom-process-step p {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.82;
}

.custom-process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--gold-dim), var(--border));
  margin-top: 84px;
}

/* Responsive */
@media (max-width: 991px) {
  .custom-cat-wrap { grid-template-columns: 1fr; }
  .custom-cat-visual { min-height: 340px; }
  .custom-cat-content { padding: 3.5rem 2.5rem; }
}

@media (max-width: 767px) {
  .custom-intro-item { padding: 0.4rem 1.2rem; font-size: 0.6rem; }
  .custom-pieces-grid { grid-template-columns: 1fr; }
  .custom-process-steps { flex-direction: column; align-items: center; gap: 2.5rem; }
  .custom-process-connector { width: 1px; height: 30px; margin-top: 0; }
  .custom-intro-divider { display: none; }
}

@media (max-width: 480px) {
  .custom-cat-content { padding: 2.5rem 1.5rem; }
}


/* ═══════════════════════════════════════════════════════
   PÁGINA — CLUB VIP
═══════════════════════════════════════════════════════ */

/* Hero */
.vip-hero {
  background: var(--ink);
  padding: 10rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(184,150,46,0.14);
}

.vip-hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%,   rgba(184,150,46,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%,  rgba(184,150,46,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 80%,  rgba(184,150,46,0.05) 0%, transparent 70%);
}

.vip-hero-inner { max-width: 680px; margin: 0 auto; }

.vip-crown-lg {
  width: 80px; height: 80px;
  background: rgba(184,150,46,0.12);
  border: 1px solid rgba(184,150,46,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--gold-light);
  margin: 0 auto 2rem;
  animation: vipCrownPulse 3.5s ease-in-out infinite;
}

.vip-hero-subtitle {
  font-size: 0.88rem;
  color: rgba(250,247,240,0.55);
  line-height: 1.9;
  margin: 1.2rem 0 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.vip-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Benefits full list */
.vip-benefits-section { background: var(--cream); }

.vip-benefits-full {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}

.vip-benefit-full {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--white);
  padding: 2rem 2.5rem;
  transition: background 0.3s;
  position: relative;
}

.vip-benefit-full::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease-gold);
}

.vip-benefit-full:hover { background: var(--cream); }
.vip-benefit-full:hover::before { transform: scaleY(1); }

.vip-benefit-full-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.3s;
}

.vip-benefit-full:hover .vip-benefit-full-icon { background: rgba(184,150,46,0.18); }

.vip-benefit-full-body { flex: 1; }

.vip-benefit-full-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.vip-benefit-full-body p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.82;
  margin: 0;
}

.vip-benefit-full-badge {
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Dashboard mockup */
.vip-dashboard-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.vip-dashboard-content p {
  font-size: 0.86rem;
  color: var(--ink-muted);
  line-height: 1.9;
  margin: 1.5rem 0;
}

.vip-dashboard-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
}

.vip-dashboard-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vip-dashboard-feature i {
  width: 36px; height: 36px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}

.vip-dashboard-feature strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.vip-dashboard-feature span {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* Mockup card */
.vip-mockup-card {
  background: var(--ink);
  border: 1px solid rgba(184,150,46,0.2);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.vip-mockup-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.vip-mockup-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(184,150,46,0.12);
}

.vip-mockup-avatar {
  width: 44px; height: 44px;
  background: rgba(184,150,46,0.14);
  border: 1px solid rgba(184,150,46,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
}

.vip-mockup-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 300;
}

.vip-mockup-tier {
  font-size: 0.62rem;
  color: rgba(250,247,240,0.45);
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.vip-dot-gold { color: var(--gold); font-size: 0.4rem; }

.vip-mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,150,46,0.1);
  margin-bottom: 1.5rem;
}

.vip-mockup-stat {
  background: rgba(28,24,16,0.5);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.vip-mockup-stat-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-light);
}

.vip-mockup-stat-label {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.35);
  font-family: var(--font-body);
}

.vip-mockup-section-label {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  margin-bottom: 0.8rem;
}

.vip-mockup-items { display: flex; flex-direction: column; gap: 1px; margin-bottom: 1.5rem; }

.vip-mockup-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(250,247,240,0.03);
  padding: 0.9rem 1rem;
}

.vip-mockup-item--muted { opacity: 0.5; }

.vip-mockup-item-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.vip-mockup-item-info { flex: 1; }

.vip-mockup-item-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--cream);
  font-weight: 300;
}

.vip-mockup-item-meta {
  display: block;
  font-size: 0.6rem;
  color: rgba(250,247,240,0.35);
  font-family: var(--font-body);
  margin-top: 0.15rem;
}

.vip-mockup-item-price {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--gold-light);
}

.vip-mockup-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.58rem;
  color: rgba(250,247,240,0.22);
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  border-top: 1px solid rgba(184,150,46,0.1);
  padding-top: 1rem;
}

.vip-mockup-footer i { color: rgba(184,150,46,0.4); }

/* How steps */
.vip-how-section { background: var(--cream-1); }

.vip-how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.vip-how-step {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.vip-how-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184,150,46,0.12);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: -0.5rem;
}

.vip-how-icon {
  width: 56px; height: 56px;
  background: var(--ink);
  border: 1px solid rgba(184,150,46,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.vip-how-step h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.vip-how-step p {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.82;
}

.vip-how-connector {
  flex-shrink: 0;
  color: rgba(184,150,46,0.4);
  font-size: 0.75rem;
  margin-top: 72px;
  padding: 0 0.5rem;
}

/* Join CTA section */
.vip-join-section {
  background: var(--ink);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.vip-join-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 0% 50%, rgba(184,150,46,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 55% at 100% 50%, rgba(184,150,46,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.vip-join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.vip-join-perks-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vip-perk-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(250,247,240,0.7);
  font-weight: 300;
}

.vip-perk-item i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }

.vip-join-right-col { text-align: left; }

.vip-join-desc {
  font-size: 0.84rem;
  color: rgba(250,247,240,0.5);
  line-height: 1.9;
  margin: 1.2rem 0 2rem;
}

.vip-join-btns {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}

.vip-join-btns .btn { min-width: 260px; justify-content: center; }

/* Animations */
@keyframes vipCrownPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,150,46,0.0); }
  50% { box-shadow: 0 0 0 14px rgba(184,150,46,0.07); }
}

/* VIP responsive */
@media (max-width: 991px) {
  .vip-dashboard-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .vip-join-inner { grid-template-columns: 1fr; gap: 3rem; }
  .vip-benefit-full-badge { display: none; }
}

@media (max-width: 767px) {
  .vip-hero { padding: 8rem 0 6rem; }
  .vip-hero-actions { flex-direction: column; align-items: center; }
  .vip-how-steps { flex-direction: column; align-items: center; gap: 2rem; }
  .vip-how-connector { margin-top: 0; transform: rotate(90deg); }
  .vip-benefit-full { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .vip-join-btns .btn { min-width: unset; width: 100%; }
}


/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.5);opacity:0.3} }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── PALETA EXTENDIDA — Verde & Morado ──────────────── */

/* Badge disponible — verde */
.badge-available {
  font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 500; padding: 0.3rem 0.8rem;
  background: rgba(250,247,240,0.92); border: 1px solid var(--green); color: var(--green); border-radius: 0;
}

/* Badge categoría premium — morado */
.badge-premium {
  font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 500; padding: 0.3rem 0.8rem;
  background: rgba(250,247,240,0.92); border: 1px solid var(--purple); color: var(--purple); border-radius: 0;
}

/* Botón verde (acción secundaria positiva) */
.btn-green {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
}
.btn-green::before { background: var(--ink); }
.btn-green:hover { color: var(--white); }

/* Botón morado (acción especial / colección) */
.btn-purple {
  background: var(--purple);
  color: var(--white);
  border: 1px solid var(--purple);
}
.btn-purple::before { background: var(--ink); }
.btn-purple:hover { color: var(--white); }

/* Outline verde */
.btn-green-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.btn-green-outline::before { background: var(--green-pale); }
.btn-green-outline:hover { color: var(--green); }

/* Outline morado */
.btn-purple-outline {
  background: transparent;
  color: var(--purple);
  border: 1px solid var(--purple);
}
.btn-purple-outline::before { background: var(--purple-pale); }
.btn-purple-outline:hover { color: var(--purple); }

/* Gold rule verde */
.green-rule {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  margin: 1.5rem 0;
}

/* Gold rule morado */
.purple-rule {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  margin: 1.5rem 0;
}

/* Dot accent — verde (hero, indicadores) */
.dot-green {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
}

/* Dot accent — morado */
.dot-purple {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--purple);
}

/* Eyebrow verde */
.eyebrow-green {
  font-family: var(--font-body);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--green); display: block; margin-bottom: 1.2rem;
}

/* Eyebrow morado */
.eyebrow-purple {
  font-family: var(--font-body);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--purple); display: block; margin-bottom: 1.2rem;
}

/* Highlight em verde en titulares */
em.green { font-style: italic; color: var(--green); }

/* Highlight em morado en titulares */
em.purple { font-style: italic; color: var(--purple); }

/* Product card: imagen de fondo verde suave cuando no hay foto */
.product-card-image--green { background: rgba(74,124,89,0.06); }
.product-card-image--purple { background: rgba(107,77,122,0.06); }

/* ─── WHOLESALE / VENTAS AL MAYOR ───────────────────── */
.wholesale-section {
  background: var(--ink);
  border-top: 1px solid rgba(184,150,46,0.15);
  border-bottom: 1px solid rgba(184,150,46,0.15);
  overflow: hidden;
}

.wholesale-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  min-height: 580px;
}

/* Media panel — left */
.wholesale-media {
  position: relative;
  overflow: hidden;
}

.wholesale-media img,
.wholesale-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-gold);
}

.wholesale-section:hover .wholesale-media img,
.wholesale-section:hover .wholesale-media video {
  transform: scale(1.03);
}

.wholesale-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28,24,16,0.25) 0%,
    rgba(28,24,16,0.55) 100%
  );
}

/* Content panel — right */
.wholesale-content {
  padding: 5rem 20rem 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wholesale-eyebrow { color: var(--gold-light); }

.wholesale-title { color: var(--white); }

.wholesale-desc {
  color: rgba(250,247,240,0.68);
  font-size: 0.88rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

/* CTA area */
.wholesale-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-wholesale-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  border: none;
  transition: all 0.3s var(--ease-gold);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.btn-wholesale-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-wholesale-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.28); color: #fff; }
.btn-wholesale-wa:hover::before { opacity: 1; }
.btn-wholesale-wa i { font-size: 1.05rem; }

.wholesale-note {
  font-size: 0.58rem;
  color: rgba(250,247,240,0.28);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.wholesale-note i { font-size: 0.5rem; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1199px) {
  .about-text { padding: 5rem 3.5rem; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(3), .pillar:nth-child(4) { border-top: 1px solid var(--border); }
  .pillar:nth-child(4) { border-right: none; }
}
@media (max-width: 991px) {
  .cat-mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 240px; }
  .cat-card:nth-child(1) { grid-column: span 6; grid-row: span 1; }
  .cat-card:nth-child(2), .cat-card:nth-child(3) { grid-column: span 3; }
  .cat-card:nth-child(4), .cat-card:nth-child(5), .cat-card:nth-child(6) { grid-column: span 2; }
  .about-section { grid-template-columns: 1fr; }
  .about-visual { height: 52vh; }
  .product-detail-wrap { grid-template-columns: 1fr; }
  .product-detail-gallery { position: relative; top: 0; height: 60vh; }
  .product-detail-info { border-left: none; border-top: 1px solid var(--border-soft); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .wholesale-inner { grid-template-columns: 1fr; }
  .wholesale-media { height: 340px; }
  .wholesale-content { padding: 4rem 3rem; }
  .wholesale-benefits { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .container { padding: 0 1.25rem; }
  .container-fluid { padding: 0 1.25rem; }
  .section { padding: 5rem 0; }
  .hero-content { padding: 0 1.25rem 5rem; }
  .hero-dots { display: none; }
  .cat-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .cat-card:nth-child(1) { grid-column: span 2; }
  .cat-card:nth-child(n+2) { grid-column: span 1; }
  .pillar-grid { grid-template-columns: 1fr; border: none; gap: 2px; }
  .pillar { border-right: none; border: 1px solid var(--border); }
  .about-text { padding: 4rem 1.5rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .product-detail-info { padding: 3rem 1.5rem; }
  .filter-panel { position: relative; top: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wholesale-media { height: 260px; }
  .wholesale-content { padding: 3rem 1.5rem; }
  .wholesale-benefits { grid-template-columns: 1fr; gap: 1.1rem; }
  .btn-wholesale-wa { width: 100%; justify-content: center; }

  /* ── Video mobile: stack vertically, auto height ── */
  .about-section { grid-template-columns: 1fr; }
  .about-visual {
    height: 56vw;        /* proporción 16:9 aprox en el ancho disponible */
    min-height: 240px;
    max-height: 420px;
  }
  .about-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  /* Wholesale video/media */
  .wholesale-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  /* Two-column product grid on mobile */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  #destacados .product-grid { gap: 0.6rem !important; }
  .product-card-body { padding: 0.6rem; }
  .product-card-name { font-size: 0.78rem; }
  .product-card-price { font-size: 0.84rem; }
  .product-card-cat { font-size: 0.5rem; }
  .cat-mosaic { grid-template-columns: 1fr; }
  .cat-card { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* ─── TYPOGRAPHY — títulos más pequeños en mobile ───── */
@media (max-width: 480px) {
  h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  h3 { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
  .hero-content h1 { font-size: clamp(1.8rem, 9vw, 2.6rem); }
}

/* ─── INDEX featured grid — 2 columnas en mobile ────── */
@media (max-width: 767px) {
  #destacados .product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  #destacados .product-card {
    flex: unset !important;
    max-width: unset !important;
    min-width: unset !important;
  }
}

/* ─── CONTACT INFO — 2 columns on mobile ────────────── */
@media (max-width: 767px) {
  .contact-info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  /* Reset individual borders so the grid looks clean */
  .contact-info-item {
    border-bottom: 1px solid var(--border-soft);
    border-right: 1px solid var(--border-soft);
    padding: 1.2rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  /* Remove right border on even items (right column) */
  .contact-info-item:nth-child(2n) {
    border-right: none;
  }

  /* Keep top border only on first row */
  .contact-info-item:first-child,
  .contact-info-item:nth-child(2) {
    border-top: 1px solid var(--border-soft);
  }

  /* Disable the hover indent that assumes full-width */
  a.contact-info-item:hover {
    margin: 0;
    padding: 1.2rem 1rem;
  }

  .contact-info-icon {
    width: 32px; height: 32px;
    font-size: 0.82rem;
  }

  .contact-info-text span {
    font-size: 0.76rem;
  }
}