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

: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);

  --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);

  --green:        #4A7C59;
  --green-light:  #5E9E71;
  --green-pale:   rgba(74,124,89,0.10);
  --purple:       #6B4D7A;
  --purple-light: #8A6699;
  --purple-pale:  rgba(107,77,122,0.10);

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

/* ─── RESET ──────────────────────────────────────────── */
*, *::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 ───────────────────────────── */
.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;
  will-change: opacity;
  contain: strict;
}

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

#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); }
em.green  { color: var(--green); }
em.purple { color: var(--purple); }

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

.section { padding: 6rem 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; }

/* ─── UTILITIES ──────────────────────────────────────── */
.w-100  { width: 100% !important; }
.mt-3   { margin-top: 1rem !important; }
.mb-4   { margin-bottom: 1.5rem !important; }
.mb-5   { margin-bottom: 2.5rem !important; }

/* ─── 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(--gold-light);
  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); }
.btn:disabled {background-color:#4A4030;}

.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); background-color: #25D366; }

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

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

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

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

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

/* ─── HERO ───────────────────────────────────────────── */
.hero { position: relative; height: 730px; 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);
  will-change: opacity;
}
.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%; }

/* ─── INDEX STRIP ────────────────────────────────────── */
.index-strip { background: var(--ink); border-bottom: 1px solid rgba(184,150,46,0.12); }
.index-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.2rem 0;
}
.index-strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.52);
  padding: 0.4rem 2rem;
}
.index-strip-item i  { color: var(--gold); font-size: 0.85rem; }
.index-strip-divider { width: 1px; height: 20px; background: rgba(184,150,46,0.18); flex-shrink: 0; }

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

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

.product-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}

.product-card-image .image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.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;
  will-change: transform, opacity;
}

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

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

.product-card:hover .product-card-image .hover-image { opacity: 1; transform: scale(1); }
.product-card:hover .product-card-image .main-image  { opacity: 0; transform: scale(1.04); }

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

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

.product-card-price-desde {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 0.1rem;
}

/* ─── BADGES ─────────────────────────────────────────── */
.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-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.92); border: 1px solid var(--ink-muted); color: var(--ink-muted); border-radius: 0;
}
.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;
}

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

.about-visual { position: relative; overflow: hidden; }
.about-visual img,
.about-visual video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-gold);
}
.about-visual img { filter: brightness(0.88) saturate(0.85); }
.about-visual:hover img,
.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-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  margin-top: 2.5rem;
  border: 1px solid var(--border-soft);
}
.about-stat { background: var(--white); padding: 1.5rem 1rem; text-align: center; }
.about-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.about-stat span   { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); }

/* ── Misión & Visión ── */
.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.about-mv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,46,0.25);
  border-radius: 4px;
  padding: 1.5rem 1.25rem;
  transition: border-color 0.3s;
}
.about-mv-card:hover      { border-color: rgba(184,150,46,0.6); }
.about-mv-icon            { color: var(--gold-light); font-size: 1.3rem; margin-bottom: 0.65rem; }
.about-mv-card h5         { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--gold-light); letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.about-mv-card p          { font-size: 0.83rem; line-height: 1.75; color: var(--ink); margin: 0; }

/* ─── 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);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.4s;
}
.pillar:nth-child(3n)      { border-right: none; }
.pillar:nth-child(4),
.pillar:nth-child(5),
.pillar:nth-child(6)       { border-bottom: 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; }

/* ─── CUSTOM SECTION ─────────────────────────────────── */
.custom-section { background: var(--cream); padding: 8rem 0; border-top: 1px solid var(--border-soft); }

.custom-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.custom-section-text h2 { margin-bottom: 0; }
.custom-section-text p  { font-size: 0.87rem; color: var(--ink-muted); line-height: 1.95; margin: 1.5rem 0 2rem; }

.custom-features        { display: flex; flex-direction: column; gap: 1.2rem; }
.custom-feature         { display: flex; align-items: flex-start; gap: 1rem; }
.custom-feature-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.88rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.3s;
}
.custom-feature:hover .custom-feature-icon { background: var(--gold-glow); }
.custom-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; }
.custom-feature span    { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.7; }

.custom-carousel-container {
  position: relative;
  width: 100%;
  height: 480px;
  border: 1px solid var(--border-soft);
  background: var(--cream);
  overflow: hidden;
}

.custom-carousel { position: relative; width: 100%; height: 100%; overflow: hidden; }

.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease-in-out; }
.carousel-slide.active { opacity: 1; z-index: 2; }
.carousel-slide img    { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(184,150,46,0.75);
  border: none;
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-size: 0.9rem;
}
.carousel-btn:hover { background: var(--gold); transform: translateY(-50%) scale(1.1); }
.carousel-prev      { left: 1.5rem; }
.carousel-next      { right: 1.5rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.2); }
.carousel-dot:hover  { transform: scale(1.15); }

/* ─── VIP INDEX ──────────────────────────────────────── */
.vip-index-section {
  background: var(--ink);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184,150,46,0.12);
}
.vip-index-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%,   rgba(184,150,46,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 100% 50%,  rgba(184,150,46,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.vip-index-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.vip-crown-sm {
  width: 52px; height: 52px;
  background: rgba(184,150,46,0.12);
  border: 1px solid rgba(184,150,46,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: vipCrownPulse 3.5s ease-in-out infinite;
}
.vip-index-actions { margin-top: 0.5rem; }

.vip-index-benefits {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(184,150,46,0.1);
  border: 1px solid rgba(184,150,46,0.15);
  margin-top: 1rem;
}
.vip-index-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(28,24,16,0.5);
  padding: 1.8rem 2rem;
  transition: background 0.3s;
  position: relative;
}
.vip-index-benefit::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-index-benefit:hover            { background: rgba(28,24,16,0.75); }
.vip-index-benefit:hover::before    { transform: scaleY(1); }

/* ─── 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 ────────────────────────────────────── */
.page-header {
  padding: 10rem 0 5rem;
  background: var(--ink);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  position: relative;
  overflow: hidden;
}
.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;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-header .constellation-canvas  { opacity: 0; animation: constellationFadeIn 2.5s 0.3s ease forwards; }
.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); }
.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 ─────────────────────────────────────── */
.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; }

/* Variante fondo claro (página de producto) */
.product-breadcrumb-bar {
  background: transparent;
  border-bottom: 1px solid var(--border-soft);
  padding: 0.9rem 0;
  position: relative;
  top: 62px;
  z-index: 100;
}
.product-breadcrumb-bar .breadcrumb-item                            { color: var(--ink-muted); }
.product-breadcrumb-bar .breadcrumb-item a                          { color: var(--gold); opacity: 1; transition: color 0.3s; }
.product-breadcrumb-bar .breadcrumb-item a:hover                    { color: var(--gold-light); opacity: 1; }
.product-breadcrumb-bar .breadcrumb-item.active                     { color: var(--ink-soft); }
.product-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before { color: var(--border-dark); }

/* ─── CATEGORY CIRCLES ───────────────────────────────── */
.cat-circles-section {
  background: var(--cream-1);
  padding: 3rem 0 2.8rem;
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.cat-circles-section--index {
  background: var(--cream);
  padding: 6rem 0 5rem;
}

.cat-circles-header            { text-align: center; margin-bottom: 3.5rem; }
.cat-circles-header h2         { margin-bottom: 0; }
.cat-circles-header .gold-rule { margin: 1.2rem auto 0; }

.cat-circles-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-circles-track::-webkit-scrollbar { display: none; }

.cat-circles-section--index .cat-circles-track {
  flex-wrap: wrap;
  gap: 2.8rem 3rem;
}

.cat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.35s var(--ease-gold);
}
.cat-circle-item:hover { transform: translateY(-4px); }

.cat-circle-wrap      { position: relative; width: 110px; height: 110px; }

.cat-circle-img-outer {
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--cream-3);
  border: 2px solid transparent;
  transition: border-color 0.35s var(--ease-gold), box-shadow 0.35s var(--ease-gold);
}
.cat-circle-item:hover .cat-circle-img-outer,
.cat-circle-item.active .cat-circle-img-outer {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

.cat-circle-img-outer img {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-gold), filter 0.4s;
}

.cat-circle-overlay    { position: absolute; inset: 0; border-radius: 50%; pointer-events: none; }

.cat-circle-active-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: ringPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ringPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.04); }
}

.cat-circle-img-outer--all {
  background: var(--gold-pale);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-dim);
}
.cat-circle-item--all:hover .cat-circle-img-outer--all,
.cat-circle-item--all.active .cat-circle-img-outer--all {
  background: rgba(184,150,46,0.18);
  border-color: var(--gold);
}

.cat-circle-label {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.25;
  max-width: 120px;
  transition: color 0.3s;
}
.cat-circle-item:hover .cat-circle-label,
.cat-circle-item.active .cat-circle-label { color: var(--gold); }

/* ─── SUBCATEGORY BAR ────────────────────────────────── */
.subcat-bar   { padding: 1.2rem 0; }
.subcat-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.subcat-track::-webkit-scrollbar { display: none; }
.subcat-pill {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border: 1px solid var(--border-dark);
  color: var(--ink-soft);
  background: var(--cream);
  transition: all 0.25s var(--ease-gold);
  white-space: nowrap;
  cursor: pointer;
}
.subcat-pill:hover  { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.subcat-pill.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

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

/* ─── FILTER BAR ─────────────────────────────────────── */
.pf-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0px 4px 8px -5px var(--gold);
  position: sticky;
  top: 62px;
  z-index: 200;
}
.pf-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}
.pf-count { font-family: var(--font-body); font-size: 0.72rem; font-weight: 300; color: var(--ink-muted); letter-spacing: 0.04em; white-space: nowrap; flex-shrink: 0; }
.pf-count strong { font-weight: 500; color: var(--ink); }

.filter { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; flex: 1; flex-wrap: wrap; }

.pf-avail-inline { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.pf-avail-pill {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.06em; color: var(--ink-soft);
  background: var(--cream); border: 1.5px solid var(--border-dark);
  padding: 0.4rem 1rem; cursor: pointer;
  transition: all 0.25s var(--ease-gold);
  user-select: none; white-space: nowrap;
}
.pf-avail-pill:hover   { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.pf-avail-pill.selected { background: var(--ink); border-color: var(--ink); color: var(--white); }

.pf-search-inline .input-group {
  display: flex; align-items: stretch;
  height: 40px;
  border: 1px solid var(--border-dark);
}
.pf-search-inline .input-group-text {
  background: var(--cream-1) !important; border: none !important;
  border-right: 1px solid var(--border-dark) !important;
  color: var(--gold) !important; border-radius: 0 !important;
  padding: 0 0.85rem; display: flex; align-items: center;
  font-size: 0.8rem; flex-shrink: 0;
}
.pf-search-inline .form-control {
  background: var(--white) !important; border: none !important;
  border-radius: 0 !important; height: 100% !important;
  padding: 0 0.75rem !important; font-size: 0.78rem !important;
  color: var(--ink) !important; flex: 1; min-width: 0;
  box-shadow: none !important;
}
.pf-search-inline .form-control:focus { box-shadow: none !important; border: none !important; }

.pf-btn-inline-search {
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--gold); color: var(--white);
  border: none; border-left: 1px solid var(--border-dark);
  padding: 0 1.2rem; cursor: pointer;
  transition: background 0.25s var(--ease-gold);
  white-space: nowrap; flex-shrink: 0;
}
.pf-btn-inline-search:hover { background: var(--ink); }

.pf-btn-inline-clear {
  background: var(--cream-1); border: none;
  border-left: 1px solid var(--border-dark);
  color: var(--ink-muted); padding: 0 0.75rem;
  cursor: pointer; font-size: 0.72rem;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0; display: flex; align-items: center;
}
.pf-btn-inline-clear:hover { color: var(--gold); background: var(--gold-pale); }

.pf-clear-all {
  flex-shrink: 0; font-family: var(--font-body); font-size: 0.62rem;
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted); text-decoration: underline;
  text-underline-offset: 3px; cursor: pointer;
  border: none; background: none; transition: color 0.2s;
  white-space: nowrap; padding: 0;
}
.pf-clear-all:hover { color: var(--gold); }

/* ─── FORM CONTROLS ──────────────────────────────────── */
.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; }

/* ─── EMPTY STATE ────────────────────────────────────── */
.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); margin-top: 63px; }
.product-detail-wrap    { display: grid; grid-template-columns: 50% 50%; 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; }

.product-detail-gallery .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); border-radius: 0;
  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);
}
.product-detail-gallery .carousel-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-50%) scale(1); }
.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; }
.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); }

/* Variante multiprecio */
.product-price-wrap.mb-2 { display: block; }
.product-price-wrap.mb-2 .product-price-label { display: block; margin-bottom: 0.75rem; }
.product-price-wrap.mb-2 ul { display: flex; flex-direction: column; gap: 0.6rem; }
.product-price-wrap.mb-2 ul li {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--border-dark);
  background: var(--white);
  transition: border-color 0.25s var(--ease-gold), background 0.25s var(--ease-gold);
}
.product-price-wrap.mb-2 ul li:hover { border-color: var(--gold); background: var(--gold-pale); }
.product-price-wrap.mb-2 ul li .fw-bold   { font-family: var(--font-body); font-size: 0.82rem; font-weight: 400; color: var(--ink-soft); letter-spacing: 0.04em; flex: 1; }
.product-price-wrap.mb-2 ul li .text-success { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: var(--gold) !important; line-height: 1; }

.product-description { margin: 2rem 0; font-size: 0.84rem; color: var(--ink-muted); line-height: 1.95; }

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

/* ─── QUANTITY STEPPER ───────────────────────────────── */
.qty-wrap  { margin: 2rem 0 1rem 0; }
.qty-label { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; margin-bottom: 0.75rem; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--border-dark); background: var(--white); border-radius: 2px; width: fit-content; }
.qty-stepper button { background: var(--cream-1); border: none; color: var(--ink); width: 40px; height: 40px; font-size: 1.1rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.qty-stepper button:hover  { background: var(--gold-pale); color: var(--gold); }
.qty-stepper button:active { background: var(--gold); color: var(--white); }
.qty-stepper input { border: none; background: var(--white); width: 50px; text-align: center; font-size: 0.95rem; color: var(--ink); font-weight: 500; padding: 0; outline: none; }
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-stepper input[type=number] { -moz-appearance: textfield; }

/* ─── CART LINK ──────────────────────────────────────── */
.cart-link       { color: var(--gold); font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: all 0.2s; display: inline-block; }
.cart-link:hover { color: var(--gold-light); }

/* ─── RELATED SECTION ────────────────────────────────── */
.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; }

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

/* ─── CONTACT SECTION ────────────────────────────────── */
.contact-section { padding: 9rem 0 0; background: var(--cream); overflow: hidden; }
.contact-grid    { display: grid; grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: start; }
.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); }

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

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

.contact-map-panel  { display: flex; flex-direction: column; gap: 2.5rem; }
.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       { 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); }
.form-subtitle           { font-size: 0.8rem; color: var(--ink-muted); margin-bottom: 1.8rem; line-height: 1.7; }

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

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

.contact-location-strip  { border-top: 1px solid var(--border-soft); padding: 2.2rem 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; }

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

/* ─── 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); }

/* ─── WHOLESALE ──────────────────────────────────────── */
.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: 2fr 3fr; min-height: 580px; }
.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%); }
.wholesale-content   { padding: 5rem 4.5rem; display: flex; flex-direction: column; justify-content: center; }
.wholesale-eyebrow   { color: var(--gold-light); }
.wholesale-title     { color: var(--white); font-size: clamp(2rem, 3.5vw, 3.8rem); }
.wholesale-desc      { color: rgba(250,247,240,0.68); font-size: 0.88rem; line-height: 1.95; margin-bottom: 2.5rem; }
.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; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--ink); border-top: 1px solid rgba(201,168,76,0.15); padding: 6rem 0 2.5rem; }
.footer-brand img  { height: 100px; 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); border-radius: 25px; 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); }

/* ─── 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; }

/* ─── 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; }

/* ─── PRECIO POR PESO ────────────────────────────────── */
.precio-peso-radio {
  width: 16px; height: 16px;
  border: 1.5px solid var(--border-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.precio-peso-radio i { font-size: 5px; color: transparent; transition: color 0.2s; }

.precio-peso-check { margin-left: auto; font-size: 0.72rem; color: transparent; transition: color 0.2s; }

.precio-peso-option.selected                   { border-color: var(--gold) !important; background: var(--gold-pale) !important; }
.precio-peso-option.selected .precio-peso-radio { border-color: var(--gold); background: var(--gold); }
.precio-peso-option.selected .precio-peso-radio i { color: var(--white); font-size: 6px; }
.precio-peso-option.selected .precio-peso-check   { color: var(--gold); }

.precio-peso-alert {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 0.75rem; padding: 0.75rem 1rem;
  background: rgba(184,150,46,0.08);
  border: 1px solid rgba(184,150,46,0.35);
  color: var(--gold);
  font-size: 0.78rem; font-family: var(--font-body); font-weight: 400; line-height: 1.5;
}
.precio-peso-alert i { font-size: 0.9rem; flex-shrink: 0; }

@keyframes precioPesoShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
#precioPesoList.shake { animation: precioPesoShake 0.55s var(--ease-gold); }

/* ─── 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} }
@keyframes vipCrownPulse { 0%,100%{box-shadow:0 0 0 0 rgba(184,150,46,0)} 50%{box-shadow:0 0 0 14px rgba(184,150,46,0.07)} }

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

/* ─── CONTENT-VISIBILITY ─────────────────────────────── */
.about-section, .pillars-section, .related-section, .cta-section,
.contact-section, .store-body, .cart-body, .custom-section, .vip-index-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

@media (max-width: 1199px) {
  .about-text        { padding: 5rem 3.5rem; }
  .wholesale-content { padding: 4rem 3.5rem; }
  .custom-section-inner { gap: 4rem; }
  .vip-index-inner   { gap: 4rem; }
}

@media (max-width: 991px) {
  /* Header */
  .header-inner      { padding: 0 1rem; height: 60px; }
  .header.scrolled .header-inner { height: 60px; }

  /* Layout */
  .about-section         { grid-template-columns: 1fr; min-height: auto; }
  .about-visual          { height: 52vh; }
  .product-detail-wrap   { grid-template-columns: 1fr; min-height: auto; }
  .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); gap: 16px; }
  .wholesale-inner       { grid-template-columns: 1fr; }
  .wholesale-media       { height: 340px; }
  .wholesale-content     { padding: 4rem 3rem; }
  .custom-section-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .vip-index-inner       { grid-template-columns: 1fr; gap: 3rem; }
  .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; }

  /* Pillars — 2 columnas */
  .pillar-grid           { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(3n)  { border-right: 1px solid var(--border); }
  .pillar:nth-child(2n)  { border-right: none; }
  .pillar:nth-child(4),
  .pillar:nth-child(5),
  .pillar:nth-child(6)   { border-bottom: 1px solid var(--border); }
  .pillar:nth-child(5),
  .pillar:nth-child(6)   { border-bottom: none; }
}

@media (max-width: 767px) {
  .container  { padding: 0 1.25rem; }
  .section    { padding: 5rem 0; }

  /* Header */
  .header-logo img { height: 30px; }

  /* Strip */
  .index-strip-item    { padding: 0.4rem 1rem; font-size: 0.58rem; }
  .index-strip-divider { display: none; }

  /* Filter bar */
  .pf-bar              { position: relative; top: 0; }
  .pf-top              { flex-wrap: wrap; gap: 0.6rem; padding: 0.75rem 0; }
  .pf-count            { width: 100%; font-size: 0.65rem; }
  .filter              { width: 100%; align-items: stretch; gap: 0.6rem; }
  .pf-avail-inline     { width: 35%; justify-content: flex-start; gap: 0.4rem; }
  .pf-avail-pill       { flex: 1; justify-content: center; padding: 0.45rem 0.5rem; font-size: 0.6rem; }
  .pf-search-inline    { max-width: 100%; width: 100%; }
  .pf-search-inline .input-group { height: 38px; }
  .pf-clear-all        { width: 100%; text-align: right; padding: 0.2rem 0; font-size: 0.58rem; }

  /* Category circles */
  .cat-circles-section  { padding: 1.5rem 0; }
  .cat-circles-track    { gap: 1.2rem; padding: 0.5rem 1rem; justify-content: flex-start; }
  .cat-circle-wrap,
  .cat-circle-img-outer { width: 80px; height: 80px; }
  .cat-circle-label     { font-size: 0.65rem; max-width: 85px; }

  .cat-circles-section--index { padding: 4rem 0 3.5rem; }
  .cat-circles-section--index .cat-circles-track { flex-wrap: nowrap; justify-content: flex-start; gap: 1.5rem; padding: 0.25rem 1.25rem; }
  .cat-circles-header   { margin-bottom: 2.5rem; padding: 0 1.25rem; }

  /* Pillars — 1 columna */
  .pillar-grid  { grid-template-columns: 1fr; border: none; gap: 2px; }
  .pillar       { border-right: none !important; border: 1px solid var(--border); border-bottom: 1px solid var(--border) !important; }
  .pillar:last-child { border-bottom: 1px solid var(--border) !important; }

  /* About */
  .about-visual { height: 100%; min-height: 240px; max-height: 520px; }
  .about-visual video { object-position: center top; }
  .about-text   { padding: 4rem 1.5rem; }
  .about-stats-row { grid-template-columns: repeat(3, 1fr); }
  .about-mv-grid   { grid-template-columns: 1fr; }

  /* Product */
  .product-detail-info { padding: 3rem 1.5rem; }
  .product-breadcrumb-bar { top: 60px; padding: 0.7rem 0; }

  /* Sections */
  .wholesale-content   { padding: 3rem 1.5rem; }
  .btn-wholesale-wa    { width: 100%; justify-content: center; }
  .custom-section      { padding: 5rem 0; }
  .vip-index-section   { padding: 5rem 0; }
  .contact-section     { padding: 6rem 0 0; }
  .contact-form-row    { grid-template-columns: 1fr; }
  .contact-form-area   { padding: 2rem 1.5rem; }
  .contact-info-panel  { padding: 2rem; }
  a.contact-info-item:hover { margin: 0 -2rem; padding-left: 2rem; padding-right: 2rem; }
  .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%; }
  .footer-bottom           { flex-direction: column; text-align: center; }

  #destacados .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(2.8rem, 6vw, 2rem); }
  .hero { height: 100vh; }
  .hero-content  { padding: 0 1.5rem 5rem; }
  .hero-content h1 { font-size: clamp(3rem, 9vw, 2.6rem); }
  .hero-content p  { font-size: 0.8rem; margin-bottom: 1.8rem; }
  .hero-btns       { flex-direction: column; }

  .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 a { font-size: 1.1rem; }
  .product-card-price  { font-size: 0.84rem; }
  .product-card-cat    { font-size: 0.5rem; }

  .cat-circles-section--index { padding: 3rem 0 2.5rem; }
  .cat-circle-wrap,
  .cat-circle-img-outer { width: 68px; height: 68px; }
  .cat-circle-label     { font-size: 0.6rem; max-width: 72px; }

  .pf-avail-pill        { font-size: 0.58rem; padding: 0.4rem; }
  .pf-btn-inline-search { padding: 0 0.75rem; font-size: 0.55rem; letter-spacing: 0.1em; }

  .about-stats-row { grid-template-columns: 1fr; }
  .about-stat      { padding: 1rem; }
  .custom-carousel-container { height: 300px; }
  .carousel-btn    { width: 36px; height: 36px; font-size: 0.8rem; }
  .carousel-prev   { left: 1rem; }
  .carousel-next   { right: 1rem; }

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