/* ============================================================
   DONHERS — v2 visual overrides
   Carga después de styles.css — override por cascade
   ============================================================ */

/* ── Nueva paleta ───────────────────────────────────────────── */
:root {
  --bg-deep:        #030303;
  --bg-section:     #0A0A08;
  --bg-card:        #0F0F0D;
  --bg-card-hover:  #161614;
  --gold:           #B99A52;
  --gold-soft:      #D6BD73;
  --gold-aged:      #9F7D35;
  --gold-muted:     rgba(185, 154, 82, 0.10);
  --gold-glow:      rgba(185, 154, 82, 0.28);
  --text-primary:   #F5EFE3;
  --text-secondary: rgba(245, 239, 227, 0.55);
  --text-muted:     rgba(245, 239, 227, 0.28);
  --border:         rgba(245, 239, 227, 0.07);
  --border-gold:    rgba(185, 154, 82, 0.28);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar-logo {
  width: clamp(96px, 9vw, 148px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(185,154,82,.18));
  opacity: 0.92;
}

/* ── Hero intro logo ────────────────────────────────────────── */
.hero-intro-logo {
  width: min(420px, 72%);
  filter:
    drop-shadow(0 0 60px rgba(185,154,82,0.50))
    drop-shadow(0 0 22px rgba(185,154,82,0.28))
    drop-shadow(0 4px 24px rgba(0,0,0,0.75));
  animation: hero-intro-logo-anim-v2 5.5s ease forwards;
}

@keyframes hero-intro-logo-anim-v2 {
  0%   { opacity: 0; transform: scale(0.88) translateY(12px); }
  11%  { opacity: 1; transform: scale(1)    translateY(0); }
  56%  { opacity: 1; transform: scale(1)    translateY(0); }
  90%  { opacity: 0; transform: scale(1.05) translateY(-8px); }
  100% { opacity: 0; }
}

.hero-tagline--delayed,
.hero-subtext--delayed,
.hero-cta--delayed {
  animation-delay: 3.8s !important;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* ── Hero background layers ─────────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(20rem, 38vw, 48rem);
  color: var(--text-primary);
  opacity: 0.026;
  letter-spacing: -0.06em;
  line-height: 1;
  left: -3%;
  top: 50%;
  transform: translateY(-52%);
  user-select: none;
  pointer-events: none;
}

.hero-signature {
  position: absolute;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(5rem, 12vw, 14rem);
  color: var(--text-primary);
  opacity: 0.038;
  bottom: 10%;
  left: 0;
  letter-spacing: 0.02em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

/* ── Hero content ────────────────────────────────────────────── */
.hero-tagline {
  font-size: clamp(1.0rem, 1.8vw, 1.2rem);
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.07;
  margin-bottom: 26px;
}

.hero-gold-divider {
  width: 52px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  margin-bottom: 22px;
  opacity: 0.68;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-cta-wa {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.80rem;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}
.hero-cta-wa:hover { color: var(--gold); }

/* ── Circular seal ───────────────────────────────────────────── */
.hero-seal {
  position: absolute;
  bottom: 52px;
  right: 5%;
  width: min(108px, 14vw);
  height: min(108px, 14vw);
  z-index: 3;
  opacity: 0.58;
  pointer-events: none;
}

.hero-seal-ring {
  transform-origin: 60px 60px;
  animation: seal-spin 28s linear infinite;
}

@keyframes seal-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.seal-text {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2.4px;
  fill: var(--gold);
}

/* ── Gallery cards premium ──────────────────────────────────── */
.gallery-card {
  border-color: rgba(185,154,82,0.22);
}

.gallery-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(185,154,82,0.12);
  transform: translateY(-8px);
}

/* ── Porque section: 4 columns ──────────────────────────────── */
.porque-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
}

/* ── Tradición section ───────────────────────────────────────── */
.tradicion {
  background: var(--bg-deep);
  padding: 120px 7%;
  border-top: 1px solid var(--border);
}

.tradicion-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.tradicion-image {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.tradicion-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A0A08 0%, #161410 45%, #1C1812 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tradicion-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(185,154,82,0.06) 0%, transparent 70%);
}

.tradicion-dh-bg {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(8rem, 18vw, 18rem);
  color: var(--gold);
  opacity: 0.07;
  letter-spacing: -0.06em;
  user-select: none;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.tradicion-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tradicion-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.08;
  margin-bottom: 28px;
}

.tradicion-text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 440px;
}

.tradicion-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 40px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(185,154,82,0.35);
  transition: color 0.25s, border-color 0.25s, gap 0.25s;
}
.tradicion-cta:hover {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
  gap: 14px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #000;
  border-top: 1px solid rgba(185,154,82,0.30);
  padding: 0 7% 40px;
}

.footer-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  margin-bottom: 40px;
}

.footer-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  border-right: 1px solid var(--border);
}
.footer-benefit:first-child { padding-left: 0; }
.footer-benefit:last-child  { border-right: none; }

.footer-benefit-icon {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.80;
}

.footer-benefit-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-benefit-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.footer-benefit-sub {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .porque-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .tradicion-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-ctas  { align-items: center; }
  .hero-seal-img  { display: none; }
  .hero-dh-watermark { opacity: 0.016; }

  .porque-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 100%;
  }

  .footer-benefits {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
  .footer-benefit {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }
  .footer-benefit:last-child { border-bottom: none; }
}

/* ============================================================
   NUEVOS ASSETS — v2.1
   ============================================================ */

/* ── Hero: noise texture ────────────────────────────────────── */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url('images/Recursos/noise-dark.png');
  background-size: cover;
  opacity: .12;
  pointer-events: none;
}

/* ── Hero: DH watermark SVG ─────────────────────────────────── */
.hero-dh-watermark {
  position: absolute;
  left: -4%;
  top: 50%;
  transform: translateY(-52%);
  width: clamp(18rem, 36vw, 46rem);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}

/* ── Hero: signature watermark SVG ──────────────────────────── */
.hero-signature-watermark {
  position: absolute;
  bottom: 6%;
  left: 0;
  width: clamp(18rem, 48vw, 68rem);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

/* ── Hero: gold divider SVG ─────────────────────────────────── */
.hero-gold-divider-img {
  width: 120px;
  height: auto;
  margin-bottom: 22px;
  opacity: 0.72;
  flex-shrink: 0;
  display: block;
}

/* ── Hero: seal SVG img ─────────────────────────────────────── */
.hero-seal-img {
  position: absolute;
  bottom: 48px;
  right: 5%;
  width: min(108px, 14vw);
  height: auto;
  z-index: 3;
  opacity: 0.62;
  pointer-events: none;
  animation: seal-spin 28s linear infinite;
  transform-origin: center center;
}

/* ── Watch animation: image layers ─────────────────────────── */
.watch-animation {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: min(50vw, 680px);
  aspect-ratio: 1 / 1;
  z-index: 1;
  pointer-events: none;
}
.watch-animation::before {
  content: '';
  position: absolute;
  inset: -15%;
  background: radial-gradient(ellipse at center, rgba(3,3,3,0.96) 30%, rgba(3,3,3,0.82) 55%, transparent 78%);
  z-index: -1;
  pointer-events: none;
}

.watch-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform, opacity;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.65));
}

.watch-complete {
  animation: watchComplete 14s ease-in-out infinite;
}
.layer-strap-bottom { animation: strapBottomExplode 14s ease-in-out infinite; }
.layer-strap-top    { animation: strapTopExplode 14s ease-in-out infinite; }
.layer-case         { animation: caseExplode 14s ease-in-out infinite; }
.layer-movement     { animation: movementExplode 14s ease-in-out infinite; }
.layer-dial         { animation: dialExplode 14s ease-in-out infinite; }
.layer-hands        { animation: handsExplode 14s ease-in-out infinite; }
.layer-bezel        { animation: bezelExplode 14s ease-in-out infinite; }
.layer-crystal      { animation: crystalExplode 14s ease-in-out infinite; }

@keyframes watchComplete {
  0%       { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 32px 64px rgba(0,0,0,.70)); }
  11%      { opacity: 1; transform: translateY(-8px) scale(1.012) rotate(.6deg); filter: drop-shadow(0 42px 72px rgba(0,0,0,.78)); }
  22%      { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 32px 64px rgba(0,0,0,.70)); }
  34%, 74% { opacity: 0; transform: translateY(-6px) scale(.97); filter: none; }
  88%, 100%{ opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 32px 64px rgba(0,0,0,.70)); }
}
@keyframes crystalExplode {
  0%, 22%, 88%, 100% { opacity: 0; transform: translate3d(0,0,0) scale(.92); }
  36% { opacity: .7;  transform: translate3d(-150px,-8px,0) scale(.68) rotate(-4deg); }
  49% { opacity: .7;  transform: translate3d(-162px,-18px,0) scale(.685) rotate(-6.5deg); }
  62% { opacity: .7;  transform: translate3d(-150px,-2px,0) scale(.68) rotate(-3deg); }
  74% { opacity: .55; transform: translate3d(-230px,-4px,0) scale(.64) rotate(-8deg); }
}
@keyframes bezelExplode {
  0%, 22%, 88%, 100% { opacity: 0; transform: translate3d(0,0,0) scale(.9); }
  36% { opacity: .9;  transform: translate3d(-90px,0,0) scale(.70) rotate(-5deg); }
  49% { opacity: .9;  transform: translate3d(-98px,-9px,0) scale(.705) rotate(-7deg); }
  62% { opacity: .9;  transform: translate3d(-90px,5px,0) scale(.70) rotate(-4deg); }
  74% { opacity: .85; transform: translate3d(-165px,0,0) scale(.68) rotate(-9deg); }
}
@keyframes dialExplode {
  0%, 22%, 88%, 100% { opacity: 0; transform: translate3d(0,0,0) scale(.74); }
  36% { opacity: 1; transform: translate3d(0,0,0) scale(.62) rotate(0deg); }
  49% { opacity: 1; transform: translate3d(0,-7px,0) scale(.625) rotate(1.5deg); }
  62% { opacity: 1; transform: translate3d(0,2px,0) scale(.62) rotate(0deg); }
  74% { opacity: 1; transform: translate3d(-14px,0,0) scale(.58); }
}
@keyframes handsExplode {
  0%, 22%, 88%, 100% { opacity: 0; transform: translate3d(0,0,0) scale(.5); }
  36% { opacity: 1;  transform: translate3d(6px,-80px,0) scale(.40) rotate(7deg); }
  49% { opacity: 1;  transform: translate3d(10px,-92px,0) scale(.405) rotate(10deg); }
  62% { opacity: 1;  transform: translate3d(6px,-74px,0) scale(.40) rotate(5deg); }
  74% { opacity: .9; transform: translate3d(0,-125px,0) scale(.36) rotate(12deg); }
}
@keyframes movementExplode {
  0%, 22%, 88%, 100% { opacity: 0; transform: translate3d(0,0,0) scale(.55); }
  36% { opacity: .95; transform: translate3d(100px,0,0) scale(.50) rotate(0deg); }
  49% { opacity: .95; transform: translate3d(108px,-8px,0) scale(.505) rotate(8deg); }
  62% { opacity: .95; transform: translate3d(100px,4px,0) scale(.50) rotate(4deg); }
  74% { opacity: 1;   transform: translate3d(160px,0,0) scale(.48) rotate(12deg); }
}
@keyframes caseExplode {
  0%, 22%, 88%, 100% { opacity: 0; transform: translate3d(0,0,0) scale(.7); }
  36% { opacity: .92; transform: translate3d(185px,0,0) scale(.60) rotate(3deg); }
  49% { opacity: .92; transform: translate3d(196px,-9px,0) scale(.605) rotate(5.5deg); }
  62% { opacity: .92; transform: translate3d(185px,4px,0) scale(.60) rotate(2deg); }
  74% { opacity: .9;  transform: translate3d(260px,0,0) scale(.58) rotate(5deg); }
}
@keyframes strapTopExplode {
  0%, 22%, 88%, 100% { opacity: 0; transform: translate3d(0,0,0) scale(.58); }
  36% { opacity: .9;  transform: translate3d(145px,-150px,0) scale(.40) rotate(8deg); }
  49% { opacity: .9;  transform: translate3d(155px,-162px,0) scale(.405) rotate(11deg); }
  62% { opacity: .9;  transform: translate3d(145px,-144px,0) scale(.40) rotate(6deg); }
  74% { opacity: .85; transform: translate3d(225px,-185px,0) scale(.38) rotate(12deg); }
}
@keyframes strapBottomExplode {
  0%, 22%, 88%, 100% { opacity: 0; transform: translate3d(0,0,0) scale(.58); }
  36% { opacity: .9;  transform: translate3d(145px,155px,0) scale(.40) rotate(-7deg); }
  49% { opacity: .9;  transform: translate3d(155px,167px,0) scale(.405) rotate(-10deg); }
  62% { opacity: .9;  transform: translate3d(145px,149px,0) scale(.40) rotate(-5deg); }
  74% { opacity: .85; transform: translate3d(225px,190px,0) scale(.38) rotate(-12deg); }
}

/* ── Part labels (desktop only) ─────────────────────────────── */
.part-label {
  position: absolute;
  z-index: 8;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  animation: labelsIn 14s ease-in-out infinite;
  white-space: nowrap;
  pointer-events: none;
}
.part-label::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  margin: 7px auto 0;
  background: linear-gradient(to bottom, rgba(185,154,82,.8), transparent);
}
@keyframes labelsIn {
  0%, 32%, 86%, 100% { opacity: 0; transform: translateY(6px); }
  44%, 72%           { opacity: .85; transform: translateY(0); }
}
.label-crystal  { left: 5%;  top: 10%; }
.label-bezel    { left: 18%; top: 6%;  }
.label-dial     { left: 40%; top: 7%;  }
.label-movement { left: 56%; top: 6%;  }
.label-case     { left: 71%; top: 10%; }

/* ── Mobile hero layout ─────────────────────────────────────── */
@media (max-width: 768px) {

  /* Hero: columna, contenido abajo */
  .hero {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 72px;
    min-height: 100svh;
  }

  /* Watch: centrado arriba, escalado para que el despiece quepa */
  .watch-animation {
    position: absolute !important;
    left: 50%;
    top: 7%;
    right: auto;
    width: min(78vw, 360px);
    margin: 0;
    transform: translateX(-50%) scale(0.62);
    transform-origin: center center;
  }
  /* Despiece activo en mobile: el scale del contenedor reduce los offsets */
  .watch-layer { display: block; }
  .part-label { display: none; }
  .watch-complete {
    animation: watchComplete 14s ease-in-out infinite !important;
  }

  /* Contenido: full width, left-aligned */
  .hero-content {
    padding: 0 6%;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 3;
    align-items: flex-start;
    text-align: left;
  }

  /* Eyebrow */
  .hero-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-align: left;
  }

  /* H1 */
  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.2rem) !important;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-align: left;
  }

  /* Subtext */
  .hero-subtext {
    font-size: 0.82rem;
    max-width: 100%;
    line-height: 1.7;
    text-align: left;
  }

  /* CTAs: izquierda, botón auto */
  .hero-ctas {
    align-items: flex-start;
    gap: 14px;
  }

  .hero-cta {
    padding: 13px 28px;
    font-size: 0.72rem;
  }

  .hero-cta-wa {
    font-size: 0.75rem;
    text-align: left;
  }

  /* Gold divider */
  .hero-gold-divider-img {
    width: 160px;
    margin-bottom: 18px;
  }

  /* Seal: ocultar en mobile */
  .hero-seal-img { display: none; }

  /* Watermarks: más sutiles */
  .hero-dh-watermark { opacity: 0.03; }
  .hero-signature-watermark { opacity: 0.03; }
}

@keyframes mobileWatchFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-10px) scale(1.02); }
}

/* ── Colecciones: textura ornamental ─────────────────────────── */
.colecciones {
  position: relative;
}
.colecciones::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/Recursos/ornamental-dark-pattern.png');
  background-size: cover;
  opacity: .10;
  pointer-events: none;
  z-index: 0;
}
.colecciones > * { position: relative; z-index: 1; }

/* ── Gallery cards: premium hover ───────────────────────────── */
.gallery-card {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.gallery-card img {
  transition: transform .5s ease, filter .5s ease;
}
.gallery-card:hover img {
  transform: scale(1.045);
  filter: contrast(1.04) saturate(1.02);
}

/* ── Tradición: imagen editorial real ───────────────────────── */
.tradicion-image {
  position: relative;
}
.tradicion-editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tradicion-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,.68)),
    radial-gradient(circle at 30% 40%, rgba(185,154,82,.10), transparent 35%);
  pointer-events: none;
}
.story-dh {
  position: absolute;
  left: 4%;
  bottom: 4%;
  width: 52%;
  opacity: .20;
  pointer-events: none;
}

/* ── Footer: logo imagen ────────────────────────────────────── */
.footer-logo-img {
  width: clamp(64px, 8vw, 110px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(185,154,82,.15));
  opacity: 0.88;
  animation: footerLogoGlow 6s ease-in-out infinite;
}

/* ============================================================
   MOVIMIENTO DE RECURSOS — v2.2
   Animaciones sutiles para dar vida sin distraer
   ============================================================ */

/* Hero: watermark DH flotando lento con leve giro */
.hero-dh-watermark {
  animation: dhFloat 16s ease-in-out infinite;
}
@keyframes dhFloat {
  0%, 100% { transform: translateY(-52%) rotate(0deg); }
  50%      { transform: translateY(-49%) rotate(1deg); }
}

/* Hero: firma con drift horizontal muy lento */
.hero-signature-watermark {
  animation: signatureDrift 22s ease-in-out infinite;
}
@keyframes signatureDrift {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(2.5%); }
}

/* Hero: divisor dorado con brillo pulsante */
.hero-gold-divider-img {
  animation: dividerGlow 5s ease-in-out infinite;
}
@keyframes dividerGlow {
  0%, 100% { opacity: 0.55; filter: drop-shadow(0 0 0 rgba(185,154,82,0)); }
  50%      { opacity: 0.9;  filter: drop-shadow(0 0 6px rgba(185,154,82,.45)); }
}

/* Tradición: imagen editorial con zoom lento tipo Ken Burns */
.tradicion-editorial-img {
  animation: kenBurns 20s ease-in-out infinite alternate;
  transform-origin: 60% 40%;
}
@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.07); }
}

/* Tradición: DH watermark con respiración */
.story-dh {
  animation: storyDhBreathe 7s ease-in-out infinite;
}
@keyframes storyDhBreathe {
  0%, 100% { opacity: 0.16; }
  50%      { opacity: 0.26; }
}

/* Footer: logo con glow dorado respirando */
@keyframes footerLogoGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(185,154,82,.12)); }
  50%      { filter: drop-shadow(0 0 16px rgba(185,154,82,.30)); }
}

/* Colecciones: textura ornamental con leve deriva */
.colecciones::before {
  animation: ornamentDrift 40s linear infinite;
}
@keyframes ornamentDrift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* Nota: la transición del reloj y el movimiento de recursos son parte de la
   experiencia de marca y deben verse igual en desktop y mobile, por eso NO se
   desactivan con prefers-reduced-motion. */

/* ============================================================
   CHECKOUT — Mercado Pago (link directo) — v2.3
   ============================================================ */
.mp-intro {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 18px 0 16px;
}

.mp-amount-card {
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 16px 18px;
  background: rgba(185,154,82,0.04);
  margin-bottom: 16px;
}
.mp-amount-row,
.mp-ref-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.mp-amount-row { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.mp-amount-label,
.mp-ref-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.mp-amount-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-soft);
}
.mp-ref-num {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.mp-warning {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.55;
  background: rgba(185,154,82,0.06);
  border-left: 2px solid var(--gold);
  padding: 10px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.mp-warning strong { color: var(--gold-soft); }

/* Botón pagar (es <a>) */
#btn-mp-pay {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-bottom: 12px;
}

.btn-mp-confirm {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.btn-mp-confirm:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
}
.btn-mp-confirm:disabled { opacity: 0.5; cursor: default; }

.mp-comprobante-hint {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Badge de estado de pago en "Mis pedidos" */
.order-pay-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 2px 0 10px;
}
.order-pay-badge--pending {
  background: rgba(185,154,82,0.12);
  color: var(--gold-soft);
  border: 1px solid var(--border-gold);
}

/* Link secundario "Consultar por WhatsApp" debajo del botón de cada producto */
.gallery-card-consultar {
  display: block;
  text-align: center;
  margin-top: 9px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-decoration: none;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}
.gallery-card-consultar:hover {
  opacity: 1;
  text-decoration: underline;
}
