/* ═══════════════════════════════════════════
   ALMA ARTESANA — Velas de Miel
   Estilos principales
   ═══════════════════════════════════════════ */

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

:root {
  --ink:      #1a1612;
  --cream:    #f5f0e8;
  --warm:     #ede5d5;
  --gold:     #c8973a;
  --amber:    #a0621a;
  --mist:     #8c8070;
  --white:    #fdfaf5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 64px;
  background: var(--ink);
  transition: background 0.4s;
}
nav.light {
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Tangerine', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--cream);
  text-decoration: none;
}
nav.light .nav-logo { color: var(--ink); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
nav.light .nav-links a { color: var(--mist); }
.nav-links a:hover,
nav.light .nav-links a:hover { color: var(--gold); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  position: fixed;
  top: 12px;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  padding: 0;
}
.hamburger span {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.hamburger span:nth-child(1) { top: 8px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.light span { background: var(--ink); }
.hamburger.open span {
  background: var(--cream);
}
.hamburger.open span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

/* ── NAV OVERLAY ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.nav-overlay-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-overlay-link:hover { color: var(--gold); }
.nav-overlay-logo {
  font-family: 'Tangerine', cursive;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 3rem;
  text-align: center;
}

/* ── HERO ── */
#inicio {
  min-height: auto;
  background: var(--ink);
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  padding: 6rem 6rem 2.5rem;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,58,0.18) 0%, transparent 70%);
  top: 50%; right: 15%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-text { padding-top: 4rem; max-width: 100%; padding-right: 3rem; }
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.6);
  max-width: 620px;
}
.hero-subtitle em {
  font-style: italic;
  color: var(--gold);
}
.hero-ctas {
  margin-top: 2.8rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--amber); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245,240,232,0.6);
  border-bottom: 1px solid rgba(245,240,232,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.hero-stats {
  margin-top: 2.5rem;
  display: flex;
  gap: 3rem;
  padding-bottom: 1rem;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
}
.hero-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-top: 0.2rem;
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-candle-visual {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.hero-candle-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 2rem; left: -1rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.8rem 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── MANIFESTO BAND ── */
.manifesto-band {
  background: var(--ink);
  padding: 1.5rem 4rem 3rem;
  text-align: center;
}
.manifesto-band p {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream);
  max-width: 640px;
  margin: 0 auto 1.2rem;
  line-height: 1.8;
}
.manifesto-band .manifesto-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.manifesto-band .manifesto-sign {
  margin-top: 1.8rem;
  font-size: 0.95rem;
}
.manifesto-band em { color: var(--gold); font-style: italic; }

@media (min-width: 481px) {
  .manifesto-band { padding: 1rem 4rem 2.5rem; }
  .manifesto-band p { margin-bottom: 0.9rem; }
  .manifesto-band .manifesto-headline { margin-bottom: 1.2rem; }
  .manifesto-band .manifesto-sign { margin-top: 1.3rem; }
}

/* ── VALORES ── */
.valores {
  background: var(--white);
  padding: 6rem 4rem;
}
.valores-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
  max-width: 640px;
}
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold); }
.valores-desc {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--mist);
  max-width: 380px;
}
.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.valor-card {
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(200,151,58,0.3);
}
.valor-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: block;
}
.valor-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.valor-text {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--mist);
}
.valor-text strong { color: var(--ink); font-weight: 400; }
.valor-text em { font-style: italic; color: var(--gold); }

/* ── VALORES: GALERÍA ── */
.valores-gallery {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 3rem;
}
.valores-gallery-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 0;
}
.valores-gallery-item {
  position: relative;
  width: 22%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.valores-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease, transform 0.4s ease;
}
.valores-gallery-item:hover img {
  filter: brightness(0.55);
  transform: scale(1.05);
}

.valores-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.valores-gallery-item:hover .valores-gallery-overlay {
  opacity: 1;
  transform: scale(1);
}
.valores-gallery-overlay p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 400;
  text-align: center;
}
.valores-gallery-overlay p:last-child {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.7);
  margin-top: 0.4rem;
  text-align: center;
  max-width: 200px;
}

@media (max-width: 480px) {
  .valores-gallery { flex-direction: column; align-items: center; gap: 0.8rem; }
  .valores-gallery-item { width: 80%; }
  .valores-gallery-sep svg { width: 26px; height: 26px; }
}

/* ── CATÁLOGO ── */
#catalogo {
  background: var(--cream);
  padding: 6rem 4rem;
}
.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(26,22,18,0.1);
  padding-bottom: 2rem;
}
.catalog-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.tab-btn {
  padding: 0.45rem 1.1rem;
  font-size: 0.65rem;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(26,22,18,0.2);
  background: transparent;
  color: var(--mist);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.catalog-count {
  font-size: 0.7rem;
  color: var(--mist);
  letter-spacing: 0.1em;
}
.collections-grid {
  display: grid;
  gap: 5rem;
}
.catalog-minimum {
  font-size: 0.8rem;
  color: var(--mist);
  border: 1px solid rgba(200,151,58,0.35);
  border-left: 3px solid var(--gold);
  background: rgba(200,151,58,0.06);
  padding: 0.8rem 1.1rem;
  margin: -2rem 0 2.5rem;
  line-height: 1.6;
}
.catalog-minimum strong { color: var(--ink); font-weight: 500; }
.collection-label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.collection-label-wrap {
  position: relative;
  padding-top: 1.2rem;
}
.numero-decorativo {
  position: absolute;
  top: -1rem;
  left: -1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.collection-eyebrow {
  position: relative;
  z-index: 1;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.collection-label h3 {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin: 0;
}
.collection-label h3 em { font-style: italic; color: var(--gold); }
.collection-divider {
  flex: 1;
  height: 1px;
  background: rgba(26,22,18,0.1);
}
.line-subsection {
  margin-top: 3rem;
}
.line-subsection + .line-subsection {
  margin-top: 4rem;
}
.line-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.line-subtitle em { font-style: italic; color: var(--gold); }
.line-texto {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  max-width: 640px;
  margin: 0.5rem 0 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(61,61,53,0.12);
}
.line-texto em { color: var(--gold); font-style: italic; }
.line-texto .line-texto-cierre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--ink);
  display: block;
  margin-top: 0.6rem;
}
.line-subtitle span {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}
.products-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  cursor: pointer;
  transition: transform 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); }
.product-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #ede5d5 0%, #e0d4be 100%);
  position: relative;
  overflow: hidden;
}
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.08) 0%, transparent 50%);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.product-img-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(160,135,80,0.45);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.product-info {
  flex: 1;
  padding: 1.2rem 1rem 1rem;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.product-desc {
  font-size: 0.7rem;
  color: var(--mist);
  letter-spacing: 0.05em;
}
.product-price {
  margin-top: 0.45rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
}
.price-vat-note {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
}
.btn-add-cart {
  flex-shrink: 0;
  width: 100%;
  background: transparent;
  color: var(--ink);
  border: none;
  border-top: 1px solid rgba(26,22,18,0.08);
  padding: 0.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-add-cart:hover { background: var(--gold); color: var(--ink); }
.product-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
}
.catalog-cta-band {
  margin-top: 5rem;
  background: var(--ink);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.catalog-cta-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
}
.catalog-cta-text h3 em { color: var(--gold); font-style: italic; }
.catalog-cta-text p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  margin-top: 0.6rem;
}

/* ── NOSOTRAS ── */
#nosotras {
  background: var(--white);
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}
.about-main-img {
  width: 100%;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.about-main-img img {
  width: 100%;
  height: auto;
  display: block;
}
.about-main-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(200,151,58,0.2) 0%, transparent 65%);
}
.about-accent-box {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 110px;
  background: var(--gold);
  padding: 1rem 1rem;
}
.about-accent-box .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.about-accent-box .label {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,22,18,0.65);
  margin-top: 0.2rem;
}
.about-text .section-eyebrow { margin-bottom: 1rem; }
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.about-title em { font-style: italic; color: var(--gold); }
.about-body p {
  font-size: 0.87rem;
  line-height: 1.9;
  color: var(--mist);
  margin-bottom: 1.2rem;
}
.about-body strong { color: var(--ink); font-weight: 400; }
.about-body em { font-style: italic; color: var(--gold); }
.about-rules {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.rule-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.rule-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.rule-text {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink);
}
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-top: 5rem;
}
.gallery-item {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #2a2218, #3d2e18);
  overflow: hidden;
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200,151,58,0.08);
  transition: background 0.3s;
}
.gallery-item:hover::after { background: rgba(200,151,58,0.18); }

/* ── CONTACTO ── */
#contacto {
  background: var(--cream);
  padding: 6rem 4rem;
}
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.contact-title em { font-style: italic; color: var(--gold); }
.contact-intro {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--mist);
  margin-bottom: 3rem;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-method:hover {
  transform: translateX(4px);
  box-shadow: -3px 0 0 var(--gold);
}
.method-icon { font-size: 1.5rem; flex-shrink: 0; color: var(--gold); }
.method-icon svg { width: 1em; height: 1em; }
.method-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.2rem;
}
.method-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
}
.contact-form-side .section-eyebrow { margin-bottom: 1.5rem; }
.contact-form-side h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.contact-form-side h3 em { font-style: italic; color: var(--gold); }
.form-note {
  font-size: 0.85rem;
  color: rgba(26,22,18,0.55);
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid rgba(26,22,18,0.12);
  border-radius: 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--gold); color: var(--ink); }

.form-consent { margin-top: -0.2rem; }
.form-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  margin: 0;
}
.form-consent-label input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
  margin-top: 0.15rem;
  appearance: auto;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}
.form-consent-label span {
  font-size: 0.72rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mist);
  font-weight: 300;
}
.form-consent-label span a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 4rem 4rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
  text-align: center;
}
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.footer-brand span {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.4);
  line-height: 1.7;
  display: block;
  max-width: 300px;
  margin: 0 auto;
}
.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding-top: 2rem;
}
.footer-bottom span {
  font-size: 0.68rem;
  color: rgba(245,240,232,0.25);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(245,240,232,0.35);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.reveal-el {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-el.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

/* ═══════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,22,18,0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overscroll-behavior: contain;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  width: min(920px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: fixed;
  top: 1rem; right: 1rem;
  z-index: 210;
  background: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: all 0.2s;
}
.modal-close:hover { background: var(--gold); color: var(--white); }
.modal-close:hover { color: var(--ink); }

.modal-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #ede5d5, #e0d4be);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}
.modal-img-placeholder {
  font-size: 5rem;
  opacity: 0.6;
}
.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.modal-info {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.modal-code {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.modal-price {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}
.modal-vat-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1rem;
}
.modal-size-select {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.modal-ft {
  flex-direction: column;
  align-items: stretch;
}
.modal-ft.modal-size-select {
  margin-bottom: 0;
}
.modal-ft .modal-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.modal-ft .modal-qty-slot .modal-qty {
  margin-bottom: 0;
}
.size-option {
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(26,22,18,0.2);
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--ink);
}
.size-option:hover {
  border-color: var(--gold);
}
.size-option.active {
  background: var(--ink);
  color: #f5f0e8;
  border-color: var(--ink);
}
.modal-qty {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.modal-tramo-ladder {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}
.tramo-step {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(26,22,18,0.18);
  border-radius: 999px;
  color: var(--ink);
  transition: all 0.2s;
}
.tramo-step.active {
  background: var(--ink);
  color: #f5f0e8;
  border-color: var(--ink);
}
.modal-qty-amount {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.35rem;
}
.modal-qty-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.modal-qty .qty-btn {
  width: 36px;
  height: 36px;
  font-size: 1.15rem;
}
.qty-input {
  width: 88px;
  height: 36px;
  border: 1px solid rgba(26,22,18,0.2);
  border-radius: 4px;
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  text-align: center;
  color: var(--ink);
  appearance: textfield;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-input:focus {
  outline: none;
  border-color: var(--gold);
}
.qty-input.pop {
  animation: qtyPop 0.25s ease;
}
@keyframes qtyPop {
  0% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* ── SELECTOR DE COLOR ── */
.modal-color-select {
  margin-bottom: 1.2rem;
}
.color-select-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.6rem;
}
.color-select-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}
.color-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(26,22,18,0.2);
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  text-transform: capitalize;
  transition: all 0.2s;
}
.color-option:hover { border-color: var(--gold); }
.color-option.active {
  background: var(--ink);
  color: #f5f0e8;
  border-color: var(--ink);
}
.color-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.9;
  border: 1px solid rgba(0,0,0,0.12);
}
.modal-extra {
  margin-bottom: 1rem;
}
.extra-plus {
  color: var(--gold-deep);
  font-weight: 500;
}
.color-select-info {
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1.5;
}
.modal-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--mist);
  margin-bottom: 1.5rem;
}
.modal-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.8rem;
  border-top: 1px solid rgba(26,22,18,0.08);
}
.modal-field {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(26,22,18,0.08);
}
.modal-field-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  min-width: 90px;
  flex-shrink: 0;
}
.modal-field-value {
  font-size: 0.85rem;
  color: var(--ink);
  white-space: pre-line;
}
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: auto;
}
.modal-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-btn-cart:hover { background: var(--amber); }
.modal-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.modal-btn-wa:hover { background: #25a244; }
.modal-btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem;
  background: transparent;
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(26,22,18,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.modal-btn-email:hover { border-color: var(--gold); color: var(--gold); }

.modal-band {
  background: var(--ink);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.modal-band-text p:first-child {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.modal-band-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}
.modal-band-text h4 em { font-style: italic; color: var(--gold); }
.modal-band-text p.band-body {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.75;
  margin-top: 0.8rem;
}
.chakra-line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}
.chakra-line > span:last-child { flex: 1; }
.chakra-candle {
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.chakra-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 0.85;
}
.modal-band-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a2218, #3d2e18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.7;
}
.modal-band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-related {
  padding: 2.5rem 2.5rem 2rem;
  background: var(--cream);
}
.modal-related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.modal-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.modal-related-card {
  cursor: pointer;
  background: var(--white);
  transition: transform 0.2s;
}
.modal-related-card:hover { transform: translateY(-3px); }
.modal-related-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #ede5d5, #e0d4be);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
}
.modal-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-related-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  padding: 0.7rem 0.8rem 0.5rem;
  color: var(--ink);
}
.modal-related-col {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  padding: 0 0.8rem 0.8rem;
}

@media (max-width: 700px) {
  .modal-top { grid-template-columns: 1fr; }
  .modal-band { grid-template-columns: 1fr; gap: 1.5rem; }
  .modal-band-img { display: none; }
  .modal-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   CART FLOATING BUTTON
   ═══════════════════════════════════════════ */
.cart-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--gold);
  border: 1px solid rgba(200,151,58,0.3);
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(26,22,18,0.25);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.cart-float svg { width: 24px; height: 24px; }
.cart-float:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(200,151,58,0.3);
}
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 22px; height: 22px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0 4px;
}
@media (max-width: 560px) {
  .cart-float { bottom: 1.2rem; left: 1.2rem; width: 48px; height: 48px; }
}

/* ── CART MODAL VIEWS ── */
.cart-modal { max-height: 85vh; }
.cart-view-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  padding: 2rem 2rem 0;
}
.cart-empty {
  padding: 3rem 2rem;
  text-align: center;
  color: var(--mist);
  font-size: 0.9rem;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(26,22,18,0.06);
}
.cart-item-emoji { font-size: 1.8rem; flex-shrink: 0; }
.cart-item-img {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(26,22,18,0.1);
  background: #f5f0e8;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-img.no-img::after {
  content: '🕯️';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  width: 100%;
  height: 100%;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
}
.cart-item-price {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--mist);
  margin-top: 0.2rem;
}
.cart-item-subtotal {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-deep);
  min-width: 3.2rem;
  text-align: right;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn {
  background: none;
  border: 1px solid rgba(26,22,18,0.15);
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.qty-btn:hover { border-color: var(--gold); }
.qty-num { font-size: 0.9rem; min-width: 1.2rem; text-align: center; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--mist);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.3rem;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #c0392b; }
.cart-footer {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.cart-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  text-align: right;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.5rem;
}
.cart-total-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
}
.cart-item-subtotal {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-deep);
  min-width: 3.2rem;
  text-align: right;
}
.btn-cart-checkout, .btn-cart-back {
  width: 100%;
  padding: 0.85rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cart-checkout { background: var(--ink); color: var(--cream); }
.btn-cart-checkout:hover { background: var(--gold); color: var(--ink); }
.btn-cart-back { background: transparent; border: 1px solid rgba(26,22,18,0.2); color: var(--ink); }
.btn-cart-back:hover { border-color: var(--gold); color: var(--gold); }

/* ── CHECKOUT FORM ── */
.checkout-form { padding: 1.5rem 2rem 2rem; }
.checkout-form .form-group { margin-bottom: 1rem; }
.checkout-form .form-group label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.4rem;
}
.checkout-form .form-group input,
.checkout-form .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1px solid rgba(26,22,18,0.12);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.checkout-form .form-group input:focus,
.checkout-form .form-group textarea:focus { border-color: var(--gold); }
.checkout-form .form-group textarea { resize: vertical; min-height: 80px; }
.checkout-actions { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1rem; }
.btn-checkout-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-checkout-submit:hover { background: var(--amber); }
.btn-checkout-submit:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── SUCCESS VIEW ── */
.success-view {
  padding: 4rem 2rem;
  text-align: center;
}
.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.success-msg {
  font-size: 0.85rem;
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .cart-modal { max-height: none; }
  .cart-item { padding: 0.9rem 1rem; gap: 0.7rem; }
  .cart-item-subtotal { min-width: auto; font-size: 0.78rem; }
  .cart-item-price { font-size: 0.66rem; }
  .cart-view-title { padding: 1.5rem 1.2rem 0; }
  .cart-footer { padding: 1.2rem 1.2rem 1.5rem; }
  .checkout-form { padding: 1.2rem; }
  .success-view { padding: 3rem 1.2rem; }
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink);
  color: var(--gold);
  border: 1px solid rgba(200,151,58,0.3);
  padding: 0.75rem 1.2rem 0.75rem 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(26,22,18,0.25);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(200,151,58,0.3);
}
.wa-float svg {
  flex-shrink: 0;
  transition: stroke 0.25s;
}
.wa-float-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .wa-float { padding: 0.85rem; border-radius: 0; }
  .wa-float-label { display: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet (900px)
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }

  #inicio {
    grid-template-columns: 1fr;
    padding: 7rem 1.8rem 3rem;
    gap: 2rem;
    min-height: auto;
  }
  .hero-image { display: flex; }
  .hero-candle-visual { max-width: 100%; aspect-ratio: 16/9; }
  .hero-text { padding-top: 0; padding-right: 0; }
  .hero-title { font-size: 3rem; }
  .hero-stats { margin-top: 2rem; gap: 2rem; }

  .manifesto-band { padding: 3rem 1.8rem; }
  .manifesto-band p { font-size: 1.2rem; }

  .valores { padding: 4rem 1.8rem; }
  .valores-header { grid-template-columns: 1fr; gap: 1.2rem; }
  .valores-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }

  #catalogo { padding: 4rem 1.8rem; }
  .catalog-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .products-row { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .catalog-cta-band { flex-direction: column; padding: 2.5rem 1.8rem; text-align: center; }

  #nosotras { grid-template-columns: 1fr; padding: 4rem 1.8rem; gap: 2.5rem; }
  .about-visual { display: block; }
  .about-accent-box { right: 0; bottom: -1rem; }
  .about-rules { grid-template-columns: 1fr 1fr; }

  #contacto { padding: 4rem 1.8rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  footer { padding: 3rem 1.8rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Móvil (768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; height: 56px; }
  .nav-logo { font-size: 1.4rem; letter-spacing: 0.02em; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Móvil pequeño (480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  #inicio { padding: 6rem 1.2rem 2.5rem; }
  .nav-overlay-logo { font-size: 2.2rem; margin-bottom: 2rem; }
  .hero-candle-visual { aspect-ratio: 3/4; max-width: 100%; }
  .hero-badge { left: 0; }
  .hero-eyebrow { font-size: 0.6rem; margin-bottom: 1rem; }
  .hero-title { font-size: 2.4rem; line-height: 1.08; }
  .hero-subtitle { font-size: 0.82rem; margin-top: 1.2rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: 1.8rem; }
  .btn-primary { width: 100%; text-align: center; padding: 0.9rem 1.5rem; }
  .hero-stats { margin-top: 2rem; gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.5rem; }

  .manifesto-band { padding: 2.5rem 1.2rem; }
  .manifesto-band p { font-size: 0.85rem; line-height: 1.8; }
  .manifesto-band .manifesto-headline { font-size: 1.2rem; }
  .manifesto-band .manifesto-sign { font-size: 0.9rem; }

  .valores { padding: 3rem 1.2rem; }
  .section-title { font-size: 1.8rem; }
  .valores-grid { grid-template-columns: 1fr; gap: 0; }
  .valor-card { padding: 1.5rem 0; border-top: 1px solid rgba(200,151,58,0.2); border-bottom: none; }
  .valor-card:first-child { border-top: 1px solid rgba(200,151,58,0.3); }
  .valor-card:last-child { border-bottom: none; }

  #catalogo { padding: 3rem 1.2rem; }
  .catalog-tabs { gap: 0.4rem; }
  .tab-btn { padding: 0.4rem 0.8rem; font-size: 0.6rem; }
  .products-row { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .product-name { font-size: 0.9rem; }
  .product-desc { font-size: 0.65rem; }
  .catalog-cta-band { padding: 2rem 1.2rem; }
  .catalog-cta-text h3 { font-size: 1.6rem; }
  .collection-label h3 { font-size: 1.3rem; }
  .collection-label { margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
  .collection-divider { display: none; }

  #nosotras { padding: 3rem 1.2rem; gap: 2rem; }
  .about-main-img { width: 100%; }
  .about-accent-box { right: 0; bottom: -1rem; width: 120px; height: 120px; }
  .about-accent-box .num { font-size: 2.2rem; }
  .about-accent-box .label { font-size: 0.55rem; }
  .about-title { font-size: 1.8rem; }
  .about-body p { font-size: 0.82rem; }
  .about-rules { grid-template-columns: 1fr; gap: 0.8rem; }

  #contacto { padding: 3rem 1.2rem; }
  .contact-title { font-size: 2.2rem; }
  .contact-intro { font-size: 0.82rem; }
  .contact-method { padding: 1rem 1.2rem; }
  .method-value { font-size: 0.95rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 0.85rem; padding: 0.75rem 0.9rem; }
  .form-submit { width: 100%; justify-content: center; }

  footer { padding: 2.5rem 1.2rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .modal-overlay { align-items: flex-start; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .modal { width: 100vw; max-height: none; border-radius: 0; overflow: visible; margin: auto 0; }
  .modal-overlay.open .modal { transform: translateY(0) scale(1); }
  .modal-top { grid-template-columns: 1fr; }
  .modal-img { aspect-ratio: 1; }
  .modal-info { padding: 1.5rem 1.2rem; }
  .modal-name { font-size: 1.6rem; }
  .modal-band { grid-template-columns: 1fr; padding: 2rem 1.2rem; gap: 1rem; }
  .modal-band-img { display: none; }
  .modal-related { padding: 1.5rem 1.2rem; }
  .modal-related-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .modal-related-name { font-size: 0.75rem; padding: 0.5rem 0.5rem 0.2rem; }
  .modal-related-col { font-size: 0.55rem; padding: 0 0.5rem 0.5rem; }

  .wa-float { bottom: 1.2rem; right: 1.2rem; padding: 0.9rem; }
  .wa-float-label { display: none; }
}

/* ── AVISO DE COOKIES ── */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 620px;
  width: calc(100% - 2rem);
  background: rgba(26, 22, 18, 0.96);
  color: var(--cream);
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.cookie-banner-text {
  font-size: 0.78rem;
  line-height: 1.6;
  flex: 1;
}
.cookie-banner-text strong {
  color: var(--gold);
  font-weight: 500;
}
.cookie-banner-btn {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--ink);
  border: none;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cookie-banner-btn:hover {
  background: #b88734;
}
.cookie-banner.hidden {
  display: none;
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1rem 1.1rem;
  }
  .cookie-banner-btn {
    width: 100%;
    text-align: center;
  }
}

/* ── PÁGINA LEGAL ── */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
}
.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.legal-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 2rem 0 0.8rem;
  color: var(--ink);
}
.legal-section p {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--mist);
  margin-bottom: 1rem;
}
.legal-list {
  list-style: none;
  margin: 0 0 1rem 1.2rem;
}
.legal-list li {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--mist);
  position: relative;
  padding-left: 0.8rem;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.legal-list strong { color: var(--ink); font-weight: 400; }
.legal-back {
  margin-top: 3rem;
}
.legal-back a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
}
.legal-back a:hover { text-decoration: underline; }
.footer-legal {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
}
.footer-legal:hover { text-decoration: underline; }
