/* =========================================================
   LADY AURA · Estilo mágico negro + magenta
   ========================================================= */

:root {
  --bg: #050510;
  --bg-deeper: #030308;
  --panel-soft: rgba(24, 12, 36, 0.88);
  --panel-card: rgba(15, 8, 27, 0.75);
  --text: #fff4ff;
  --muted: #d8bee8;
  --pink: #f0a3ff;
  --pink-soft: #ee9dff;
  --purple-deep: #7c35db;
  --purple-mid: #a03fff;
  --gold: #ffd98a;
  --rose: #ff7beb;
  --border: rgba(240, 163, 255, 0.36);
  --border-soft: rgba(240, 163, 255, 0.18);
  --shadow: 0 0 30px rgba(182, 82, 255, 0.32);
  --shadow-strong: 0 0 45px rgba(237, 147, 255, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(160, 63, 255, 0.20), transparent 32rem),
    radial-gradient(circle at top right, rgba(255, 132, 213, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ========== Estrellas decorativas ========== */
.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); box-shadow: 0 0 8px rgba(255, 230, 255, 0.9); }
}

main, footer, .site-header, .shipping-banner {
  position: relative;
  z-index: 1;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 6%;
  background: rgba(3, 3, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}

.brand img {
  width: 190px;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(238, 160, 255, 0.75));
  display: block;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.4rem;
  cursor: pointer;
}

.nav {
  display: flex;
  gap: 1.35rem;
  font-size: 1.05rem;
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
}

.nav a {
  opacity: 0.9;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--pink);
  border-color: var(--pink);
  opacity: 1;
}

/* ========== Botones ========== */
.header-button, .btn, .mini-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
  font-family: "Cinzel", serif;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: var(--text);
}

.header-button, .btn { padding: 0.8rem 1.35rem; font-size: 0.95rem; }
.header-button {
  background: rgba(72, 28, 92, 0.5);
  white-space: nowrap;
}

.btn:hover, .header-button:hover, .mini-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn.primary, .mini-btn.buy {
  background: linear-gradient(135deg, rgba(129, 60, 202, 0.95), rgba(226, 118, 255, 0.85));
}

.btn.secondary, .mini-btn.choose {
  background: rgba(18, 10, 31, 0.7);
}

/* ========== Banner envío gratis ========== */
.shipping-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 20px;
  background: linear-gradient(90deg,
    rgba(255, 217, 138, 0.12) 0%,
    rgba(240, 163, 255, 0.18) 50%,
    rgba(255, 217, 138, 0.12) 100%);
  border-bottom: 1px solid var(--border-soft);
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  flex-wrap: wrap;
  text-align: center;
}

/* Banner pre-apertura especial */
.shipping-banner.prelaunch {
  background: linear-gradient(90deg,
    rgba(160, 63, 255, 0.25) 0%,
    rgba(255, 132, 213, 0.30) 50%,
    rgba(160, 63, 255, 0.25) 100%);
  border-bottom-color: var(--border);
  padding: 14px 20px;
  font-size: 0.88rem;
  animation: bannerGlow 3s ease-in-out infinite;
}
@keyframes bannerGlow {
  0%, 100% { box-shadow: inset 0 0 30px rgba(240, 163, 255, 0.15); }
  50% { box-shadow: inset 0 0 50px rgba(240, 163, 255, 0.3); }
}

.shipping-banner strong {
  background: linear-gradient(135deg, var(--gold), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.shipping-banner .shine {
  display: inline-block;
  animation: shine 2.5s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { transform: scale(1) rotate(0); }
  50% { transform: scale(1.25) rotate(15deg); }
}

/* Badge pre-apertura en el hero */
.prelaunch-badge {
  display: inline-block;
  padding: 8px 22px;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(160, 63, 255, 0.4), rgba(255, 132, 213, 0.4));
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(240, 163, 255, 0.4);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 25px rgba(240, 163, 255, 0.4); }
  50% { transform: scale(1.04); box-shadow: 0 0 40px rgba(240, 163, 255, 0.65); }
}

/* Texto pre-reserva en lightbox */
.lightbox-prelaunch {
  background: linear-gradient(135deg, rgba(160, 63, 255, 0.15), rgba(255, 132, 213, 0.15));
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem !important;
  color: var(--muted) !important;
  margin-bottom: 1.2rem !important;
  line-height: 1.5;
  font-style: italic;
}

/* ========== HERO ========== */
.hero {
  min-height: 610px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 10, 0.78), rgba(3, 3, 10, 0.30), rgba(3, 3, 10, 0.65)),
    linear-gradient(0deg, rgba(5, 5, 16, 0.85) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  width: min(620px, 90%);
  margin-left: 8%;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  font-weight: 700;
  color: #ffe9ff;
  letter-spacing: 0.05em;
  text-shadow: 0 0 18px rgba(224, 154, 255, 0.95), 0 0 48px rgba(122, 58, 255, 0.65);
}

.kicker, .section-tag {
  font-family: "Cinzel", serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.92rem;
  display: inline-block;
  margin-top: 1rem;
}

.hero .hero-text {
  color: #fff0ff;
  font-size: 1.35rem;
  line-height: 1.45;
  margin: 1rem 0;
}

.hero-actions, .product-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}

/* ========== Tira info tienda ========== */
.shop-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.6rem 8%;
  background: rgba(16, 7, 27, 0.94);
  border-bottom: 1px solid var(--border);
}

.shop-strip div {
  border: 1px solid rgba(240, 163, 255, 0.22);
  border-radius: 18px;
  padding: 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.shop-strip span { display: block; color: var(--muted); font-size: 0.95rem; letter-spacing: 0.1em; }
.shop-strip strong { display: block; color: #ffe7ff; font-size: 1.4rem; margin-top: 0.3rem; }

/* ========== Secciones generales ========== */
.section { padding: 4.5rem 8%; }

h2 {
  margin: 0.6rem 0 1rem;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #efa4ff;
  text-shadow: 0 0 18px rgba(238, 164, 255, 0.35);
  font-weight: 700;
}

p { color: var(--muted); line-height: 1.55; margin: 0.5rem 0; }

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

/* ========== ZODIACO ========== */
.zodiac {
  border-top: 1px solid var(--border-soft);
  background: rgba(6, 5, 15, 0.62);
  padding-bottom: 2rem;
}

.zodiac-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 8% 2rem;
  margin: 0 -8%;
  scrollbar-width: thin;
  scrollbar-color: var(--purple-mid) transparent;
}
.zodiac-track::-webkit-scrollbar { height: 8px; }
.zodiac-track::-webkit-scrollbar-track { background: rgba(240, 163, 255, 0.08); border-radius: 4px; }
.zodiac-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--purple-deep), var(--rose));
  border-radius: 4px;
}

.zodiac-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--panel-card);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(10, 5, 20, 0.5);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.zodiac-card:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(122, 58, 255, 0.5), 0 0 30px rgba(255, 217, 138, 0.35);
}
.zodiac-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.zodiac-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 5, 16, 0.92) 100%);
  pointer-events: none;
}
.zodiac-card span {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  text-align: center;
  z-index: 2;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.z-symbol {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: var(--bg);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255, 217, 138, 0.5);
}

.scroll-hint {
  text-align: center;
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  opacity: 0.75;
  margin-top: 0;
}
.scroll-hint span {
  display: inline-block;
  animation: swipe 2s ease-in-out infinite;
}
@keyframes swipe {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* ========== SOBRE MÍ ========== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-cards article, .contact-card, .client-placeholder {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.3rem;
  box-shadow: 0 0 25px rgba(98, 45, 130, 0.22);
}

.feature-cards strong {
  color: #ffe6ff;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.4rem;
}

/* ========== CÓMO FUNCIONA (PASOS) ========== */
.how-it-works {
  border-top: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at center, rgba(160, 63, 255, 0.08), transparent 30rem),
    rgba(6, 5, 15, 0.5);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem 1.4rem 1.6rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 0 25px rgba(98, 45, 130, 0.18);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 0 35px rgba(237, 147, 255, 0.4);
}

.step-number {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: var(--bg);
  border-radius: 50%;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 6px 18px rgba(255, 217, 138, 0.5);
  border: 3px solid var(--bg);
}

.step-card h3 {
  margin: 0.6rem 0 0.6rem;
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  color: #fff0ff;
  letter-spacing: 0.05em;
}

.step-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.step-icon {
  font-size: 2rem;
  margin-top: 1rem;
  filter: drop-shadow(0 0 8px rgba(240, 163, 255, 0.4));
}

.community-cta {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 1.8rem 2rem;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.18), rgba(160, 63, 255, 0.18));
  border: 1px solid rgba(24, 119, 242, 0.4);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 0 30px rgba(24, 119, 242, 0.2);
}

.community-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--text);
  line-height: 1.5;
}

.community-cta strong {
  color: var(--gold);
}

/* ========== GALERÍA ========== */
.gallery, .clients {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(6, 5, 15, 0.62);
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.art-card {
  background: var(--panel-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.art-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.image-open {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.image-open img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.image-open:hover img {
  transform: scale(1.045);
  filter: brightness(1.08);
}

/* Badges y lazos sobre imagen */
.badge-new {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: var(--bg);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255, 217, 138, 0.4);
  font-family: "Cinzel", serif;
}

.sale-ribbon {
  position: absolute;
  top: 14px;
  left: -6px;
  background: linear-gradient(135deg, #ff4889, #ff7beb);
  color: white;
  padding: 7px 16px 7px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(255, 72, 137, 0.6);
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%, 7px 50%);
  animation: ribbon-pulse 2s ease-in-out infinite;
  font-family: "Cinzel", serif;
}
@keyframes ribbon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.product-info {
  padding: 1.1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.art-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #fff0ff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.2;
}

.product-size {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.product-price {
  margin: 0.2rem 0 0;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.product-price-old {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(240, 163, 255, 0.6);
  opacity: 0.7;
  font-family: "Cormorant Garamond", serif;
}

.mini-btn {
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  flex: 1;
  min-width: 130px;
  letter-spacing: 0.1em;
}

/* Botón WhatsApp */
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  border-color: rgba(37, 211, 102, 0.5) !important;
}
.whatsapp-btn:hover {
  background: linear-gradient(135deg, #2eed75, #14a092) !important;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.5) !important;
}

/* Botón Email */
.email-btn {
  background: rgba(18, 10, 31, 0.7) !important;
  border-color: var(--border) !important;
}

.product-actions {
  margin-top: auto;
  padding-top: 0.4rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ========== CLIENTES ========== */
.client-placeholder {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.client-placeholder strong {
  font-size: 1.5rem;
  color: #ffe7ff;
  display: block;
  margin-bottom: 0.4rem;
}

/* ========== CONTACTO ========== */
.contact {
  background:
    radial-gradient(circle at left, rgba(198, 93, 255, 0.14), transparent 28rem),
    radial-gradient(circle at right, rgba(255, 190, 113, 0.10), transparent 25rem);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(237, 147, 255, 0.4);
}

.icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--purple-deep), var(--rose));
  font-size: 2rem;
  box-shadow: 0 0 25px rgba(240, 163, 255, 0.38);
  color: white;
  font-family: "Cinzel", serif;
  font-weight: 700;
}

/* Iconos por marca */
.contact-card.whatsapp .icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}
.contact-card.whatsapp:hover {
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.5);
}

.contact-card.instagram .icon {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 0 25px rgba(220, 39, 67, 0.5);
}
.contact-card.instagram:hover {
  box-shadow: 0 0 35px rgba(220, 39, 67, 0.5);
}

.contact-card.facebook .icon {
  background: linear-gradient(135deg, #1877f2, #0a5dc2);
  box-shadow: 0 0 25px rgba(24, 119, 242, 0.5);
}
.contact-card.facebook:hover {
  box-shadow: 0 0 35px rgba(24, 119, 242, 0.5);
}

.contact-card.youtube .icon {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}
.contact-card.youtube:hover {
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.5);
}

.contact-card.email .icon {
  background: linear-gradient(135deg, var(--gold), var(--rose));
  box-shadow: 0 0 25px rgba(255, 217, 138, 0.5);
}
.contact-card.email:hover {
  box-shadow: 0 0 35px rgba(255, 217, 138, 0.5);
}

.contact-card h3, .contact-card p { margin: 0.1rem 0; }
.contact-card h3 { font-size: 1.2rem; color: #fff0ff; }
.contact-card small { color: var(--muted); font-size: 0.85rem; }

/* Botones del lightbox */
.lightbox-buttons {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.lightbox-buttons .btn {
  flex: 1;
  min-width: 150px;
}

/* ========== FOOTER ========== */
footer {
  text-align: center;
  padding: 1.6rem;
  border-top: 1px solid var(--border-soft);
  background: rgba(3, 3, 10, 0.85);
}

footer p { margin: 0; font-size: 0.95rem; }

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(2, 2, 8, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox.active { display: grid; }

.lightbox-card {
  width: min(1100px, 96vw);
  max-height: 92vh;
  display: grid;
  grid-template-columns: minmax(280px, 650px) 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(16, 7, 27, 0.96);
  box-shadow: 0 0 60px rgba(237, 147, 255, 0.35);
  animation: popIn 0.18s ease-out;
}

.lightbox-card img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.lightbox-caption { padding: 1rem; }

.lightbox-caption h3 {
  margin: 0 0 0.6rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff0ff;
}

.lightbox-caption p {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.2rem;
  z-index: 101;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(24, 12, 36, 0.96);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

@keyframes popIn {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ========== RESPONSIVE ========== */

/* Tablets */
@media (max-width: 1050px) {
  .site-header { padding: 0.85rem 5%; }
  .nav { gap: 1rem; }
  .nav a { font-size: 0.85rem; }
  .about { grid-template-columns: 1fr; gap: 2rem; }
  .shop-strip { grid-template-columns: 1fr; gap: 0.7rem; }
  .feature-cards { grid-template-columns: repeat(3, 1fr); }
  .grid-gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3.5rem 6%; }
}

/* Móviles grandes */
@media (max-width: 820px) {
  body { font-size: 18px; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .header-button { display: none; }
  .nav {
    position: absolute;
    top: 100%;
    right: 5%;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    flex-direction: column;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    display: none;
    min-width: 200px;
    box-shadow: var(--shadow);
  }
  .nav.active { display: flex; }
  .feature-cards { grid-template-columns: 1fr; }
  .lightbox { padding: 1rem; }
  .lightbox-card {
    grid-template-columns: 1fr;
    overflow-y: auto;
    padding: 0.5rem;
  }
  .lightbox-card img { max-height: 55vh; }
  .lightbox-caption { text-align: center; padding: 0.5rem; }
}

/* Móviles */
@media (max-width: 620px) {
  .site-header { padding: 0.7rem 5%; }
  .brand img { width: 145px; max-height: 50px; }
  .shipping-banner { font-size: 0.72rem; padding: 10px 14px; gap: 8px; }
  .hero { min-height: 540px; }
  .hero-content {
    margin: 0 auto;
    width: min(680px, 96%);
    padding: 1.4rem;
    background: rgba(5, 5, 16, 0.55);
    border-radius: 24px;
    backdrop-filter: blur(4px);
  }
  .hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .grid-gallery, .contact-cards, .steps-grid { grid-template-columns: 1fr; }
  .client-placeholder { flex-direction: column; text-align: center; }
  .section { padding: 3rem 5%; }
  .zodiac-card { flex: 0 0 180px; }
  .shop-strip strong { font-size: 1.2rem; }
}

/* Móviles muy pequeños */
@media (max-width: 380px) {
  .brand img { width: 130px; }
  .hero h1 { font-size: 2.8rem; }
  .nav { right: 2%; min-width: 170px; }
}
