/* ==========================================================================
   VÉRTICE — Sistema de Diseño Pixel-Perfect (Fiel a las Capturas Oficiales)
   Estética: Obsidian Deep (#070709), Architectural Ambient Glow, Brushed Copper & Warm Amber
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg-dark: #070709;
  --bg-canvas: #0b0a0f;
  --bg-card: #121117;
  --bg-card-inner: #ece6df;
  --bg-card-inner-dark: #16151c;
  --bg-pill: rgba(255, 255, 255, 0.06);
  --bg-pill-hover: rgba(255, 255, 255, 0.12);

  --copper: #c4734a;
  --copper-light: #e08b61;
  --copper-glow: rgba(196, 115, 74, 0.35);
  --amber: #f59e0b;
  --amber-bright: #fbbf24;
  --amber-btn: #d9885c;
  --amber-btn-hover: #e8996e;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-copper: rgba(196, 115, 74, 0.4);
  --border-line: rgba(196, 115, 74, 0.25);

  --text-white: #ffffff;
  --text-dim: #9e9890;
  --text-muted: #666159;
  --text-cream: #f4eee6;

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 100px;

  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.85);
  --shadow-glow: 0 0 60px rgba(196, 115, 74, 0.18);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-white);
  scrollbar-width: thin;
  scrollbar-color: var(--copper) var(--bg-dark);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #5c321d; border-radius: 3px; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Global Ambient Lights */
.ambient-halo-top {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(196, 115, 74, 0.14) 0%, transparent 70%);
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.site-frame {
  max-width: 1340px;
  margin: 24px auto 48px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-wrapper-card {
  background: #08080a;
  border: 1px solid var(--border-copper);
  border-radius: var(--r-xl);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.95), 0 0 40px rgba(196, 115, 74, 0.12);
  overflow: hidden;
  position: relative;
}

/* ==========================================================================
   1. FLOATING LUXURY PILL NAVBAR (Exacto a la Captura 1)
   ========================================================================== */
.main-navbar-capsule {
  margin: 18px 24px 0;
  padding: 10px 24px;
  background: rgba(18, 17, 23, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-card);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.nav-brand-icon {
  font-size: 1.1rem;
  color: var(--copper-light);
}
.nav-brand-text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 3px;
}

.nav-links-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.nav-link-item a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link-item a:hover, .nav-link-item a.active {
  color: #fff;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-action-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-action-link:hover { color: #fff; }

.btn-nav-bag-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-card);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-nav-bag-pill:hover {
  background: var(--copper);
  border-color: var(--copper);
}

/* ==========================================================================
   2. HERO SECTION: VÉRTICE FIT / DIGITAL WARDROBE (Exacto a la Captura 1)
   ========================================================================== */
.hero-digital-wardrobe {
  padding: 24px 28px 40px;
  position: relative;
}

.wardrobe-stage-container {
  min-height: 580px;
  border-radius: var(--r-lg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
}

/* Architectural Studio Glowing Portal Background */
.studio-portal-backdrop {
  position: absolute;
  inset: 0;
  background: #09080c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.portal-doorway-glow {
  width: 380px;
  height: 90%;
  border-radius: 8px 8px 0 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(224, 139, 97, 0.45) 0%, rgba(196, 115, 74, 0.15) 50%, transparent 80%);
  border: 2px solid rgba(224, 139, 97, 0.4);
  box-shadow: 0 0 100px rgba(196, 115, 74, 0.35), inset 0 0 50px rgba(224, 139, 97, 0.2);
}

/* Center Model Image */
.center-model-viewport {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 94%;
  width: auto;
  max-width: 380px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.center-model-viewport img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.9));
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.35s ease;
}

/* Left Hero Control Panel: "VÉRTICE FIT" */
.wardrobe-left-panel {
  position: relative;
  z-index: 5;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tag-tryon-console {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 800;
}
.title-digital-wardrobe {
  font-family: var(--font-sans);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: 0.5px;
}
.subtitle-mix-match {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
  margin-top: -6px;
}

/* Selected Items Row */
.selected-items-section {
  margin-top: 4px;
}
.selected-items-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 8px;
}
.selected-items-grid {
  display: flex;
  gap: 8px;
}
.selected-item-card {
  width: 68px;
  height: 76px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-sm);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.selected-item-card:hover, .selected-item-card.active {
  border-color: var(--copper);
  background: rgba(196, 115, 74, 0.15);
  box-shadow: 0 0 12px rgba(196, 115, 74, 0.3);
}
.selected-item-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.adjust-fit-actions {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}
.btn-action-sm {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--text-dim);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-action-sm:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Outfit Switcher Pills */
.outfit-switcher-section {
  margin-top: 4px;
}
.outfit-switcher-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 8px;
}
.outfit-pills-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.outfit-pill-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  color: var(--text-dim);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.outfit-pill-btn:hover, .outfit-pill-btn.active {
  background: rgba(196, 115, 74, 0.2);
  border-color: var(--copper);
  color: #fff;
}

/* Right Floating Garment Card Carousel (Exacto a la Captura 1) */
.wardrobe-right-panel {
  position: relative;
  z-index: 5;
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.carousel-floating-card {
  width: 100%;
  background: rgba(20, 19, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.carousel-nav-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-card);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
  z-index: 2;
}
.carousel-nav-arrow:hover { background: var(--copper); }
.carousel-nav-arrow.prev { left: -12px; }
.carousel-nav-arrow.next { right: -12px; }

.carousel-img-canvas {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  background: #ece6df;
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.carousel-img-canvas img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.carousel-dots-pagination {
  display: flex;
  gap: 4px;
  margin-top: 10px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.carousel-dot.active {
  background: var(--copper-light);
  width: 14px;
  border-radius: 4px;
}

.btn-share-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  color: var(--text-dim);
  padding: 8px;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.2s;
}
.btn-share-card:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Master Button: "TRY ON THIS LOOK" */
.tryon-cta-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 5;
}
.btn-tryon-master {
  background: linear-gradient(135deg, #e08b61 0%, #c4734a 100%);
  color: #070709;
  border: none;
  padding: 15px 44px;
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(196, 115, 74, 0.4);
  transition: all 0.25s ease;
}
.btn-tryon-master:hover {
  background: linear-gradient(135deg, #f09f78 0%, #e08b61 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(196, 115, 74, 0.6);
}
.tryon-footer-tagline {
  font-size: 0.76rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ==========================================================================
   3. SECTION 2: BENTO GRID PRODUCT CATALOG (Exacto a la Captura 2)
   ========================================================================== */
.bento-catalog-section {
  padding: 48px 28px;
  border-top: 1px solid var(--border-line);
}

.bento-header-group {
  margin-bottom: 28px;
}
.bento-header-tag {
  font-size: 0.74rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.bento-main-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.bento-six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bento-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.bento-product-card:hover {
  border-color: var(--copper);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.bento-item-canvas {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  background: #ece6df;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 12px;
}
.bento-item-canvas img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.bento-product-card:hover .bento-item-canvas img {
  transform: scale(1.05);
}

.bento-item-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(20, 19, 25, 0.85);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.bento-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}
.bento-item-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.bento-more-dots {
  color: var(--text-dim);
  font-size: 0.9rem;
  cursor: pointer;
}

.bento-item-brand {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bento-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border-subtle);
}

.bento-swatches-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.bento-swatch-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.bento-item-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}

.bento-loadmore-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.btn-loadmore-pill {
  background: transparent;
  border: 1px solid var(--border-copper);
  color: var(--text-dim);
  padding: 10px 32px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-loadmore-pill:hover {
  border-color: var(--copper-light);
  color: #fff;
  background: rgba(196, 115, 74, 0.1);
}

/* ==========================================================================
   4. SECTION 3: EDITORIAL LOOKBOOK PHOTOGRAPHY (Exacto a las Capturas 3 & 4)
   ========================================================================== */
.lookbook-editorial-section {
  padding: 48px 28px;
  border-top: 1px solid var(--border-line);
}

.lookbook-section-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 24px;
}

.lookbook-asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lookbook-photo-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  display: flex;
  flex-direction: column;
}

.lookbook-img-frame {
  width: 100%;
  aspect-ratio: 4 / 3.8;
  overflow: hidden;
  background: #000;
}
.lookbook-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.lookbook-photo-card:hover .lookbook-img-frame img {
  transform: scale(1.04);
}

.lookbook-caption-box {
  padding: 18px;
}
.lookbook-caption-title {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.lookbook-caption-desc {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ==========================================================================
   5. SECTION 4: CAJAMARCA'S SOUL: OUR ALPACA HERITAGE (Exacto a la Captura 5)
   ========================================================================== */
.heritage-story-section {
  padding: 48px 28px;
  border-top: 1px solid var(--border-line);
}

.heritage-main-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.heritage-composite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.heritage-story-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.heritage-card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-card);
}
.heritage-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-card-heading {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.heritage-card-body {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.45;
}

/* ==========================================================================
   6. SECTION 5: HELP & GUIDANCE / ACCORDION (Exacto a la Captura 6)
   ========================================================================== */
.help-guidance-section {
  padding: 48px 28px;
  border-top: 1px solid var(--border-line);
}

.help-small-tag {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 800;
  margin-bottom: 4px;
}
.help-main-heading {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.help-accordion-container {
  display: flex;
  flex-direction: column;
}

.help-accordion-item {
  border-bottom: 1px solid var(--border-line);
}
.help-accordion-header {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-cream);
}
.help-accordion-header:hover { color: #fff; }
.help-accordion-icon {
  font-size: 1rem;
  color: var(--copper-light);
}

.help-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.help-accordion-item.active .help-accordion-content {
  max-height: 250px;
  padding-bottom: 20px;
}

/* Size Guide Table inside Accordion (Exacto a la Captura 6) */
.size-guide-dark-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #141318;
  border: 1px solid var(--border-card);
  border-radius: var(--r-md);
  overflow: hidden;
}
.size-guide-dark-table th {
  padding: 10px 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--copper-light);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.size-guide-dark-table td {
  padding: 10px 14px;
  font-size: 0.72rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-subtle);
}
.size-guide-dark-table tr:last-child td { border-bottom: none; }

/* ==========================================================================
   7. SLIDE-OVER YAPE QR PAYMENT DRAWER (Exacto a la Captura 7)
   ========================================================================== */
.yape-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.yape-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.yape-checkout-modal-card {
  position: fixed;
  top: 50%;
  right: 60px;
  transform: translateY(-50%) scale(0.95);
  width: 380px;
  max-width: calc(100% - 40px);
  background: rgba(18, 17, 23, 0.95);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--border-card);
  border-radius: var(--r-xl);
  z-index: 201;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(196, 115, 74, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.yape-modal-backdrop.open .yape-checkout-modal-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.yape-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.yape-modal-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}
.btn-close-modal {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.btn-close-modal:hover { color: #fff; }

.yape-inner-qr-frame {
  background: #18171e;
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.yape-tag-sub {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--copper-light);
}

.yape-qr-image-box {
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yape-qr-image-box svg {
  width: 100%;
  height: 100%;
}

.yape-scan-instructions {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.yape-amount-highlight {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--amber-bright);
}

.btn-confirm-payment-action {
  width: 100%;
  background: linear-gradient(135deg, #e08b61 0%, #c4734a 100%);
  color: #070709;
  border: none;
  padding: 14px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-confirm-payment-action:hover {
  background: linear-gradient(135deg, #f09f78 0%, #e08b61 100%);
}

/* ==========================================================================
   8. LUXURY BRAND FOOTER (Exacto a la Captura 7)
   ========================================================================== */
.luxury-brand-footer {
  padding: 36px 28px 24px;
  border-top: 1px solid var(--border-line);
  position: relative;
}

.footer-glowing-top-line {
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: radial-gradient(circle, var(--copper-light) 0%, transparent 80%);
  box-shadow: 0 0 16px var(--copper);
}

.footer-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand-logo {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #fff;
}

.footer-horizontal-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-horizontal-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-horizontal-links a:hover { color: #fff; }

.footer-social-row {
  display: flex;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.footer-social-row a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social-row a:hover { color: var(--copper-light); }

.footer-bottom-copyright-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 12px;
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  background: rgba(18, 17, 23, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--copper);
  border-radius: var(--r-pill);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

/* Responsive */
@media (max-width: 1024px) {
  .wardrobe-stage-container { flex-direction: column; gap: 24px; }
  .center-model-viewport { position: relative; left: auto; transform: none; height: 420px; }
  .bento-six-grid { grid-template-columns: 1fr 1fr; }
  .heritage-composite-grid { grid-template-columns: 1fr 1fr; }
  .yape-checkout-modal-card { right: 50%; transform: translate(50%, -50%) scale(0.95); }
  .yape-modal-backdrop.open .yape-checkout-modal-card { transform: translate(50%, -50%) scale(1); }
}

@media (max-width: 768px) {
  .site-frame { margin: 10px auto; padding: 0 10px; }
  .main-navbar-capsule { margin: 12px; padding: 8px 16px; }
  .nav-links-menu { display: none; }
  .bento-six-grid { grid-template-columns: 1fr; }
  .lookbook-asymmetric-grid { grid-template-columns: 1fr; }
  .heritage-composite-grid { grid-template-columns: 1fr; }
}
