/* ==========================================================================
   LILLITH — Tienda pública
   Paleta: burdeos profundo + oro metálico (logo)
   Tipografías: Cinzel · Cormorant Garamond Italic · Montserrat
   ========================================================================== */
:root {
  --l-bg: #140406;
  --l-bg-elevated: #1f080c;
  --l-bg-card: #261014;
  --l-burgundy: #4a0404;
  --l-burgundy-light: #6b1820;
  --l-crimson: #8b1a2e;
  --l-gold: #c9a227;
  --l-gold-bright: #e8c547;
  --l-gold-soft: #f0d78c;
  --l-ink: #faf6f0;
  --l-ink-muted: #e8d5a8;
  --l-ink-dim: #c9a227;
  --l-border: rgba(201, 162, 39, 0.22);
  --l-border-soft: rgba(255, 255, 255, 0.08);
  --l-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --l-glow-gold: 0 0 40px rgba(201, 162, 39, 0.25);
  --font-title: "Cinzel", "Times New Roman", serif;
  --font-sub: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --t-container: 1200px;
  --header-h: 108px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--l-ink);
  background: var(--l-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(74, 4, 4, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(139, 26, 46, 0.2), transparent 50%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--l-gold-soft); transition: color 0.2s; }
a:hover { color: var(--l-gold-bright); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.t-container {
  width: min(100% - 2.5rem, var(--t-container));
  margin-inline: auto;
}

/* —— Barra promocional —— */
.t-announce {
  background: linear-gradient(90deg, var(--l-burgundy), var(--l-crimson), var(--l-burgundy));
  color: var(--l-gold-soft);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.t-announce a { color: #fff; }

/* —— HEADER (fondo = color real del mp4, fundido con el video) —— */
.t-header {
  --header-video-bg: #44201d;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-video-bg);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}
.t-header.is-scrolled {
  --header-h: 88px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.t-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.5rem 0;
  padding-top: max(0.5rem, var(--safe-top));
  transition: min-height 0.35s var(--ease);
  background: transparent;
}
.t-header__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  background: transparent;
  line-height: 0;
}
.t-header__logo,
.t-header__logo-video {
  display: block;
  height: 92px;
  width: auto;
  max-width: min(340px, 55vw);
  object-fit: contain;
  object-position: left center;
  vertical-align: middle;
  background-color: var(--header-video-bg);
  filter: none;
  transition: height 0.35s var(--ease), max-width 0.35s var(--ease);
}
.t-header__brand:hover .t-header__logo,
.t-header__brand:hover .t-header__logo-video {
  filter: drop-shadow(0 2px 12px rgba(201, 162, 39, 0.28));
}
.t-header.is-scrolled .t-header__logo,
.t-header.is-scrolled .t-header__logo-video {
  height: 72px;
  max-width: 280px;
}
.t-header__name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--l-gold);
  line-height: 1.2;
  display: none;
}
@media (min-width: 640px) {
  .t-header__name { display: block; }
  .t-header__tagline {
    display: block;
    font-family: var(--font-sub);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--l-ink-muted);
    letter-spacing: 0.06em;
    margin-top: 0.15rem;
  }
}
.t-header__tagline { display: none; }

.t-nav { display: none; align-items: center; gap: 0.15rem; }
@media (min-width: 900px) { .t-nav { display: flex; } }
.t-nav__link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--l-ink-muted);
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 4px;
  position: relative;
  transition: color 0.25s;
}
.t-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0.2rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--l-gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.t-nav__link:hover,
.t-nav__link.is-active {
  color: var(--l-gold-soft);
}
.t-nav__link:hover::after,
.t-nav__link.is-active::after { transform: scaleX(1); }

.t-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--l-border);
  border-radius: 8px;
  background: var(--l-bg-elevated);
  cursor: pointer;
  padding: 0;
}
@media (min-width: 900px) { .t-menu-btn { display: none; } }
.t-menu-btn__bars { width: 22px; height: 16px; position: relative; }
.t-menu-btn__bars span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--l-gold); border-radius: 1px;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease), opacity 0.2s;
}
.t-menu-btn__bars span:nth-child(1) { top: 0; }
.t-menu-btn__bars span:nth-child(2) { top: 7px; }
.t-menu-btn__bars span:nth-child(3) { top: 14px; }
.t-menu-btn.is-open span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.t-menu-btn.is-open span:nth-child(2) { opacity: 0; }
.t-menu-btn.is-open span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.t-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 2, 4, 0.75);
  z-index: 1040;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.t-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
.t-drawer {
  position: fixed; top: 0; left: 0;
  width: min(90vw, 340px); height: 100dvh;
  background: linear-gradient(180deg, #2a0c12 0%, var(--l-bg) 100%);
  border-right: 1px solid var(--l-border);
  z-index: 1050;
  padding: max(1.5rem, var(--safe-top)) 1.5rem 2rem;
  transform: translateX(-105%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.t-drawer.is-open { transform: translateX(0); }
.t-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--l-border);
}
.t-drawer__title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: var(--l-gold);
  margin: 0;
}
.t-drawer__close {
  width: 42px; height: 42px; border: 1px solid var(--l-border);
  background: transparent; color: var(--l-gold); border-radius: 8px;
  font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.t-drawer__nav { list-style: none; margin: 0; padding: 0; }
.t-drawer__nav a {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--l-border-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--l-gold-soft);
}
.t-drawer__nav a i { color: var(--l-gold); width: 1.25rem; text-align: center; }
body.menu-open { overflow: hidden; }

/* —— MAIN —— */
.t-main { min-height: 40vh; }

/* —— SLIDER full bleed —— */
.t-slider-section {
  position: relative;
  width: 100%;
  margin: 0;
  background: var(--l-bg-elevated);
  border-bottom: 1px solid var(--l-border);
}
.t-slider-section::before,
.t-slider-section::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--l-gold), transparent);
  z-index: 3;
  pointer-events: none;
}
.t-slider-section::before { top: 0; }
.t-slider-section::after { bottom: 0; }

.tienda-slider-wrap.t-slider,
.t-slider-wrap {
  position: relative;
  width: 100%;
  padding-bottom: min(48vh, 520px);
  height: 0;
  overflow: hidden;
  background: #0a0204;
}
.t-slider-wrap .carousel,
.tienda-slider-wrap .carousel {
  position: absolute;
  inset: 0;
}
.t-slider-wrap .carousel-inner,
.t-slider-wrap .carousel-inner > .item,
.tienda-slider-wrap .carousel-inner,
.tienda-slider-wrap .carousel-inner > .item {
  height: 100%;
}
.t-slider-wrap .item,
.tienda-slider-wrap .item {
  position: relative;
  background: #0a0204;
}
.t-slider-wrap .slider-media-wrap,
.tienda-slider-wrap .item .slider-media-wrap {
  position: absolute;
  inset: 0;
}
.t-slider-wrap .item img,
.t-slider-wrap .item video,
.tienda-slider-wrap .item img,
.tienda-slider-wrap .item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.t-slider-wrap .slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 4, 6, 0.92) 0%,
    rgba(20, 4, 6, 0.35) 45%,
    rgba(74, 4, 4, 0.25) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.t-slider-wrap .slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  pointer-events: none;
}
@media (min-width: 768px) {
  .t-slider-wrap .slider-caption { padding: 3rem 2rem 4rem; }
}
.t-slider-wrap .slider-caption__title {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--l-gold-bright);
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
}
.t-slider-wrap .slider-caption__sub {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--l-gold-soft);
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.t-slider-wrap .carousel-indicators {
  bottom: 18px;
  z-index: 4;
}
.t-slider-wrap .carousel-indicators li {
  width: 10px; height: 10px;
  border: 1px solid var(--l-gold);
  background: transparent;
  margin: 0 5px;
}
.t-slider-wrap .carousel-indicators .active {
  background: var(--l-gold);
  box-shadow: var(--l-glow-gold);
}
.t-slider-wrap .carousel-control {
  width: 48px;
  background: rgba(20, 4, 6, 0.5) !important;
  opacity: 0.8;
  z-index: 4;
}
.t-slider-wrap .carousel-control:hover { opacity: 1; }
.t-slider-wrap .carousel-control .fa {
  color: var(--l-gold);
  text-shadow: none;
  font-size: 1.25rem;
}
.t-slider-wrap .tienda-slider-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.t-header__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.t-slider-empty {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--l-bg-card);
  border-bottom: 1px solid var(--l-border);
}
.t-slider-empty p { color: var(--l-ink-muted); margin: 0; }

/* Fallback hero cuando no hay slider */
.t-hero-banner {
  position: relative;
  min-height: min(70vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--l-border);
}
.t-hero-banner__bg {
  position: absolute;
  inset: 0;
  background: url("/logo.jpeg") center/cover no-repeat;
  filter: brightness(0.35) saturate(1.1);
  transform: scale(1.05);
}
.t-hero-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 4, 6, 0.5) 0%,
    rgba(74, 4, 4, 0.65) 50%,
    rgba(20, 4, 6, 0.95) 100%
  );
}
.t-hero-banner__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 42rem;
}
.t-hero-banner__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--l-gold);
  margin: 0 0 1rem;
}
.t-hero-banner__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--l-gold-bright);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.t-hero-banner__sub {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  color: var(--l-gold-soft);
  margin: 0 0 1.75rem;
  line-height: 1.5;
}
.t-hero-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--l-bg);
  background: linear-gradient(135deg, var(--l-gold-bright), var(--l-gold));
  border-radius: 2px;
  box-shadow: var(--l-glow-gold);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.t-hero-banner__cta:hover {
  color: var(--l-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.45);
}

/* —— PASARELA (productos) —— */
.t-pasarela {
  padding: 3.5rem 0 4.5rem;
  position: relative;
}
.t-pasarela::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--l-gold), transparent);
}
.t-pasarela__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.t-pasarela__title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--l-gold);
  margin: 0 0 0.5rem;
}
.t-pasarela__sub {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--l-ink-muted);
  margin: 0;
  max-width: 36rem;
  margin-inline: auto;
}

/* Filtros */
.tienda-filtros-wrapper {
  background: var(--l-bg-card);
  border: 1px solid var(--l-border);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--l-shadow);
}
.tienda-filtros-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--l-gold);
  cursor: pointer;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .tienda-filtros-header { display: flex; }
  .tienda-filtros-row:not(.show) {
    max-height: 0; overflow: hidden; opacity: 0; margin: 0;
  }
  .tienda-filtros-row.show {
    max-height: 900px; opacity: 1; margin-top: 1rem;
    transition: max-height 0.4s var(--ease), opacity 0.3s;
  }
}
.tienda-filtros-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
}
.tienda-filtros-buscar { flex: 1; min-width: 200px; position: relative; }
.tienda-filtros-buscar .input-icon {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--l-gold);
  pointer-events: none;
}
.tienda-filtros-categoria,
.tienda-filtros-marca,
.tienda-filtros-orden,
.tienda-filtros-por-pagina { min-width: 140px; flex: 1; }
.tienda-filtros-buscar input,
.tienda-filtros-categoria select,
.tienda-filtros-marca select,
.tienda-filtros-orden select,
.tienda-filtros-por-pagina select,
.form-control {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 16px;
  border: 1px solid var(--l-border);
  border-radius: 2px;
  background: var(--l-bg-elevated);
  color: var(--l-ink);
}
.tienda-filtros-buscar input:focus,
select:focus {
  outline: none;
  border-color: var(--l-gold);
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.2);
}
.tienda-filtros-acciones { display: flex; gap: 0.5rem; flex-shrink: 0; }
.btn-filtro-buscar {
  padding: 0.7rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--l-gold-bright), var(--l-gold));
  color: var(--l-bg);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-filtro-buscar:hover {
  transform: translateY(-2px);
  box-shadow: var(--l-glow-gold);
  color: var(--l-bg);
}
.btn-filtro-limpiar {
  padding: 0.7rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--l-gold);
  border: 1px solid var(--l-border);
  background: transparent;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-filtro-limpiar:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--l-gold-bright);
}

/* Grid productos */
.t-page-head { margin-bottom: 2rem; text-align: center; }
.page-header-tienda,
.t-page-head h1 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--l-gold);
  margin: 0 0 0.5rem;
}
.page-descripcion-tienda,
.t-page-head p {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--l-ink-muted);
  margin: 0;
}

.productos-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .productos-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
}

.card-producto {
  background: var(--l-bg-card);
  border: 1px solid var(--l-border);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
@media (hover: hover) {
  .card-producto:hover {
    transform: translateY(-8px);
    border-color: var(--l-gold);
    box-shadow: var(--l-shadow), var(--l-glow-gold);
  }
}
.card-producto-link {
  text-decoration: none;
  color: var(--l-ink);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-img-wrap {
  aspect-ratio: 1;
  background: var(--l-bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
.card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 4, 6, 0.4), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.card-producto:hover .card-img-wrap::after { opacity: 1; }
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.card-producto:hover .card-img-wrap img { transform: scale(1.05); }
.card-body-tienda {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
  background: linear-gradient(180deg, #32181e 0%, #261014 100%);
  -webkit-font-smoothing: antialiased;
}
.card-body-tienda p,
.card-body-tienda h2 {
  margin: 0;
}
.card-marca {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--l-gold-bright);
  margin: 0;
}
.card-title-tienda {
  font-family: var(--font-title);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
  color: var(--l-ink);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-modelo {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--l-gold-soft);
  margin: 0;
  letter-spacing: 0.04em;
}
.card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: #f3e6c8;
  margin: 0.15rem 0 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-information {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 162, 39, 0.38);
}
.precio-tienda {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--l-gold-bright);
  margin: 0;
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(232, 197, 71, 0.25);
}
.card-ref {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--l-gold-soft);
  margin: 0.35rem 0 0;
  letter-spacing: 0.06em;
}
.card-cta,
.card-producto .button.button--secondary {
  display: block;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l-bg) !important;
  background: linear-gradient(135deg, var(--l-gold-bright) 0%, var(--l-gold) 100%) !important;
  border: 1px solid var(--l-gold-bright) !important;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.3);
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  pointer-events: none;
}
.card-producto:hover .card-cta,
.card-producto:hover .button.button--secondary {
  background: linear-gradient(135deg, #fff4c4 0%, var(--l-gold-bright) 100%) !important;
  color: var(--l-bg) !important;
  border-color: #fff4c4 !important;
  box-shadow: 0 4px 20px rgba(232, 197, 71, 0.45);
  transform: translateY(-1px);
}

.tienda-reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.tienda-reveal-item.tienda-reveal-item--visible {
  opacity: 1;
  transform: none;
}

.tienda-paginacion {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--l-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.tienda-paginacion-info {
  font-size: 0.85rem;
  color: var(--l-ink-muted);
  margin: 0;
}
.tienda-paginacion-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.tienda-paginacion-num,
.tienda-paginacion-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--l-gold-soft);
  border: 1px solid var(--l-border);
  background: var(--l-bg-card);
  transition: border-color 0.2s, background 0.2s;
}
.tienda-paginacion-num:hover,
.tienda-paginacion-btn:hover {
  border-color: var(--l-gold);
  color: var(--l-gold);
  background: rgba(201, 162, 39, 0.08);
}
.tienda-paginacion-num.active {
  background: linear-gradient(135deg, var(--l-gold-bright), var(--l-gold));
  color: var(--l-bg);
  border-color: transparent;
  pointer-events: none;
}

.lead.text-muted,
.text-muted,
.t-main .text-muted,
.t-pasarela .text-muted,
.t-inner .text-muted,
small.text-muted,
p.text-muted {
  color: var(--l-ink-muted) !important;
}
.text-info { color: var(--l-gold-bright) !important; }
.text-info a,
.text-info small { color: var(--l-gold-soft) !important; }
.text-info a:hover { color: var(--l-gold-bright) !important; }

/* Textos secundarios → paleta dorada */
.page-descripcion-tienda,
.t-pasarela__sub,
.t-slider-empty p,
.tienda-paginacion-info,
.breadcrumb-tienda-list,
.breadcrumb-tienda-list .active,
.breadcrumb-tienda-list .sep,
.product-description-texto,
.product-gallery-thumbnails .small,
.t-hero-banner__sub,
.slider-caption__sub,
.tienda-filtros-header,
label.sr-only + input::placeholder,
.tienda-filtros-buscar input::placeholder {
  color: var(--l-ink-muted);
}
.breadcrumb-tienda-list a { color: var(--l-gold-soft) !important; }
.breadcrumb-tienda-list a:hover { color: var(--l-gold-bright) !important; }
.t-main label,
.t-pasarela label {
  color: var(--l-gold-soft);
}

/* Detalle producto */
.page-title-tienda {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--l-border);
}
.breadcrumb-tienda-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--l-gold);
}
.breadcrumb-tienda-list a { color: var(--l-gold-soft); text-decoration: none; }
.product-details-section .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}
.product-details-section .col-lg-6 {
  padding: 0 0.75rem;
  width: 100%;
}
@media (min-width: 992px) {
  .product-details-section .col-lg-6 { width: 50%; }
}
.product-image-container {
  background: var(--l-bg-card);
  border: 1px solid var(--l-border);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: var(--l-shadow);
}
.product-main-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
  cursor: zoom-in;
}
.product-gallery-grid {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 1rem;
}
.gallery-thumbnail-tienda {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 2px solid var(--l-border-soft);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--l-bg-elevated);
}
.gallery-thumbnail-tienda.active,
.gallery-thumbnail-tienda:hover {
  border-color: var(--l-gold);
}
.gallery-thumbnail-tienda img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-title-tienda {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
  color: var(--l-gold-bright);
}
.product-meta-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.badge-tienda {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.65rem;
  background: rgba(201, 162, 39, 0.15);
  color: var(--l-gold-soft);
  border: 1px solid var(--l-border);
  border-radius: 2px;
}
.badge-tienda-info {
  background: var(--l-bg-elevated);
  color: var(--l-gold-soft);
}
.product-price-large {
  padding: 1.35rem 1.5rem;
  background: var(--l-bg-card);
  border: 1px solid var(--l-border);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.product-price-large .price-amount {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 600;
  color: var(--l-gold-bright);
  letter-spacing: 0.08em;
  display: block;
}
.product-price-large .price-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--l-gold-soft);
  margin-top: 0.25rem;
  display: block;
}
.product-pago-tienda,
.product-description-tienda {
  background: var(--l-bg-card);
  border: 1px solid var(--l-border);
  border-radius: 4px;
  padding: 1.35rem 1.5rem;
  margin-bottom: 1.25rem;
}
.product-pago-tienda h3,
.product-desc-title {
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l-gold);
  margin: 0 0 1rem;
}
.product-description-texto {
  font-family: var(--font-body);
  color: var(--l-ink-muted);
  line-height: 1.7;
  margin: 0;
}
.product-actions-tienda {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.btn-primary-tienda {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--l-gold-bright), var(--l-gold));
  color: var(--l-bg) !important;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary-tienda:hover {
  transform: translateY(-2px);
  box-shadow: var(--l-glow-gold);
  color: var(--l-bg) !important;
}
.btn-outline-tienda {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--l-border);
  color: var(--l-gold) !important;
  background: transparent;
  border-radius: 2px;
  text-decoration: none;
}
.btn-outline-tienda:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--l-gold-bright) !important;
}
.btn-pago-transferencia {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: #25d366;
  color: #fff !important;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}
.btn-pago-transferencia:hover { background: #1ebe5d; color: #fff !important; }
.btn-tienda-admin {
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, var(--l-gold-bright), var(--l-gold));
  color: var(--l-bg);
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.detalle-producto-vacio { text-align: center; padding: 4rem 1rem; }
.alert-success {
  background: rgba(34, 120, 80, 0.2);
  border: 1px solid rgba(34, 120, 80, 0.4);
  color: #a7f3d0;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.product-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 2, 4, 0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 1rem;
}
.product-lightbox img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  border: 1px solid var(--l-border);
}

/* —— FOOTER —— */
.t-footer,
.tienda-footer {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(74, 4, 4, 0.55), transparent 65%),
    linear-gradient(180deg, #22080c 0%, #0a0204 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  padding: 4.5rem 0 3rem;
  margin-top: 0;
  position: relative;
}
.t-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 5%, var(--l-gold-bright) 50%, transparent 95%);
  box-shadow: 0 0 24px rgba(232, 197, 71, 0.4);
}
.tienda-footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Grid: logo izq · eslogan+nav centro · redes der */
.tienda-footer-main,
.tienda-footer-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
}
@media (min-width: 768px) {
  .tienda-footer-main,
  .tienda-footer-row {
    grid-template-columns: minmax(200px, 28%) 1fr minmax(160px, 22%);
    gap: 2rem 2.5rem;
    align-items: center;
  }
}
.tienda-footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}
@media (min-width: 768px) {
  .tienda-footer-col--brand {
    align-items: flex-start;
    justify-content: center;
    align-self: center;
  }
  .tienda-footer-col--center {
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    padding: 0 0.5rem;
  }
  .tienda-footer-col--social {
    align-items: center;
    justify-content: center;
    align-self: center;
  }
}

/* Logo — columna izquierda, tamaño del mockup */
.tienda-footer-logo-link {
  display: block;
  width: 100%;
  max-width: 220px;
  line-height: 0;
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.tienda-footer-logo-link:hover {
  opacity: 0.92;
  transform: scale(1.02);
}
.tienda-footer-logo {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 22px rgba(201, 162, 39, 0.38));
}

/* Eslogan — columna central, arriba */
.tienda-footer-tagline {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  font-weight: 600;
  color: var(--l-gold-bright);
  text-align: center;
  margin: 0;
  padding: 1.15rem 0.5rem 1.35rem;
  width: 100%;
  max-width: 22rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(232, 197, 71, 0.28);
  border: none;
  position: relative;
}
.tienda-footer-tagline::before,
.tienda-footer-tagline::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.55), transparent);
}
.tienda-footer-tagline::before {
  top: 0;
  width: min(90px, 40%);
}
.tienda-footer-tagline::after {
  bottom: 0;
  width: min(200px, 85%);
}

.tienda-footer-nav-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.tienda-footer-title {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--l-gold-bright);
  margin: 0 0 1.25rem;
  padding: 0 0 0.75rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.4);
  width: 100%;
  max-width: 12rem;
}

.tienda-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
}
.tienda-footer-links li { margin: 0; width: 100%; max-width: 10rem; }
.tienda-footer-links a {
  font-family: var(--font-body);
  color: var(--l-gold-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.5rem;
  display: block;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.tienda-footer-links a:hover {
  color: var(--l-gold-bright);
  background: rgba(201, 162, 39, 0.1);
  padding-left: 0.5rem;
}
.tienda-footer-links i { display: none; }

.tienda-footer-redes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.tienda-redes-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.45);
  background: rgba(255, 255, 255, 0.04);
  color: var(--l-gold-bright) !important;
  font-size: 1.5rem;
  transition: background 0.25s, transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.tienda-redes-link:hover {
  background: rgba(201, 162, 39, 0.2);
  border-color: var(--l-gold-bright);
  transform: translateY(-4px);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.tienda-redes-link[title="WhatsApp"]:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: #25d366;
}
.tienda-redes-link[title="Instagram"]:hover {
  background: rgba(225, 48, 108, 0.25);
  border-color: #e1306c;
}
.tienda-footer-sin-redes {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--l-ink-muted);
  line-height: 1.5;
  text-align: center;
  max-width: 14rem;
}
.tienda-footer-sin-redes a { color: var(--l-gold-bright); }

/* Barra inferior — legal y créditos */
.tienda-footer-bottom {
  width: 100%;
  max-width: 52rem;
  margin: 2rem auto 0;
  padding-top: 0.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
}
.tienda-footer-texto {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--l-ink-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 36rem;
}
.tienda-footer-credit {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--l-ink-dim);
  margin: 0;
  letter-spacing: 0.03em;
}
.tienda-footer-credit a {
  color: var(--l-gold-bright);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s, text-shadow 0.2s;
}
.tienda-footer-credit a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(232, 197, 71, 0.4);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .tienda-footer-col--brand .tienda-footer-logo-link {
    max-width: min(200px, 58vw);
    margin-inline: auto;
  }
  .tienda-footer-col--brand {
    align-items: center;
  }
  .tienda-footer-col--center {
    gap: 2rem;
  }
  .tienda-footer-tagline {
    padding: 1.25rem 1rem 1.5rem;
  }
  .tienda-footer-main {
    padding-bottom: 2rem;
  }
}

/* Legacy hide */
.tienda-header,
.tienda-hero-strip,
.tienda-menu-toggle,
.tienda-mobile-menu,
.tienda-mobile-menu-overlay,
.tienda-nav { display: none !important; }
.t-hero { display: none; }

/* Inner page wrapper */
.t-inner { padding: 2.5rem 0 4rem; }

@media (max-width: 767px) {
  .productos-grid { gap: 1rem; }
  .product-main-image { height: 280px; }
  .t-header__logo,
  .t-header__logo-video { height: 76px; max-width: min(280px, 70vw); }
  .t-header.is-scrolled .t-header__logo,
  .t-header.is-scrolled .t-header__logo-video { height: 64px; }
  .tienda-paginacion { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tienda-reveal-item,
  .card-producto,
  .card-img-wrap img { transition: none !important; }
  .card-producto:hover { transform: none; }
}
