/* ============================================================
   BLESSED SNEAKERS — Complete Design System
   Blessed Blue #1B45E0 | Ink Black #0A0A0A
   Bone Cream #F2EFE6 | Hype Red #FF4D2E | Pure White #FFFFFF
   Fonts: Anton (Display) · Inter (Body) · JetBrains Mono (Technical)
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colors */
  --blue:    #1B45E0;
  --blue-dk: #1438c0;
  --black:   #0A0A0A;
  --cream:   #F2EFE6;
  --red:     #FF4D2E;
  --white:   #FFFFFF;

  /* Semantic Colors */
  --bg:          var(--white);
  --bg-alt:      var(--cream);
  --bg-dark:     var(--black);
  --text:        var(--black);
  --text-muted:  #666666;
  --text-light:  #999999;
  --text-inv:    var(--white);
  --border:      rgba(0,0,0,0.10);
  --border-dark: rgba(255,255,255,0.10);

  /* Typography */
  --f-display: 'Anton', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  /* Spacing (4px grid) */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 20px;
  --s6: 24px; --s8: 32px; --s10: 40px; --s12: 48px;
  --s16: 64px; --s20: 80px; --s24: 96px;

  /* Radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(0,0,0,0.08);
  --sh-md: 0 4px 20px rgba(0,0,0,0.12);
  --sh-lg: 0 8px 40px rgba(0,0,0,0.16);
  --sh-xl: 0 16px 64px rgba(0,0,0,0.20);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-normal: 250ms ease;
  --t-slow:   400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Layout */
  --nav-h:    72px;
  --bar-h:    40px;
  --max-w:    1440px;
  --max-w-sm: 1200px;

  /* Z-index */
  --z10: 10; --z20: 20; --z100: 100;
  --z-nav: 200; --z-overlay: 300; --z-modal: 400; --z-float: 1000;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--f-display);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s6);
}
.container-sm {
  width: 100%;
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 0 var(--s6);
}
.section          { padding: var(--s16) 0; }
.section-sm       { padding: var(--s10) 0; }
.section-lg       { padding: var(--s24) 0; }
.bg-white         { background: var(--bg); }
.bg-cream         { background: var(--bg-alt); }
.bg-dark          { background: var(--bg-dark); }
.text-center      { text-align: center; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar {
  background: var(--black);
  color: rgba(255,255,255,0.9);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  position: relative;
  overflow: hidden;
}
.ann-bar b { color: var(--blue); }
.ann-bar .ann-sep { opacity: 0.3; }
.ann-scroll {
  display: flex;
  align-items: center;
  gap: var(--s8);
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--white);
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-normal);
}
.navbar.scrolled { box-shadow: var(--sh-md); }

.nav-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s8);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--black);
  transition: opacity var(--t-fast);
}
.nav-logo:hover { opacity: 0.75; }
.logo-svg { display: flex; align-items: center; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px var(--s4);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  white-space: nowrap;
  transition: color var(--t-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--s4);
  right: var(--s4);
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-normal);
}
.nav-link:hover { color: var(--blue); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--blue); }
.nav-link.active::after { transform: scaleX(1); }

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--t-normal);
  stroke: currentColor;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  box-shadow: var(--sh-xl);
  min-width: 540px;
  padding: var(--s8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s8);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-normal);
  pointer-events: none;
  z-index: var(--z100);
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.mega-col h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-light);
  margin-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--s2);
}
.mega-col a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: var(--s2) 0;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mega-col a:hover { color: var(--blue); padding-left: var(--s2); }
.mega-col a small {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-shrink: 0;
}
.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  color: var(--text);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-icon-btn:hover { background: var(--bg-alt); color: var(--blue); }
.nav-wa-btn {
  display: flex;
  align-items: center;
  gap: var(--s2);
  background: #25D366;
  color: white;
  padding: var(--s2) var(--s4);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.nav-wa-btn:hover { background: #1da851; transform: scale(1.03); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: all var(--t-normal);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s4) var(--s6);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  flex-shrink: 0;
}
.mob-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.mob-close:hover { background: var(--bg-alt); }

.mob-nav { flex: 1; padding: var(--s4) 0; }
.mob-nav-item { border-bottom: 1px solid var(--border); }
.mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s4) var(--s6);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}
.mob-nav-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
}
.mob-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-normal);
  background: var(--bg-alt);
}
.mob-nav-item.open .mob-submenu { max-height: 400px; }
.mob-submenu a {
  display: block;
  padding: var(--s3) var(--s8);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--t-fast), background var(--t-fast);
}
.mob-submenu a:hover { color: var(--blue); background: rgba(27,69,224,0.05); }

.mob-footer {
  padding: var(--s6);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mob-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r-sm);
}
.mob-info {
  margin-top: var(--s4);
  font-size: 12px;
  color: var(--text-light);
  font-family: var(--f-mono);
  text-align: center;
  line-height: 1.8;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 14px 28px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-normal);
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,69,224,0.35);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn-wa {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-wa:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 18px 36px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - var(--bar-h));
  background: var(--black);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Decorative background (when no image) */
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.40) 50%,
    rgba(10,10,10,0.10) 100%
  );
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Blue orb decoration */
.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,69,224,0.4) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,46,0.15) 0%, transparent 70%);
  bottom: 100px;
  right: 30%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--s6) var(--s20);
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
}
.hero-title {
  font-size: clamp(72px, 12vw, 160px);
  color: var(--white);
  line-height: 0.88;
  margin-bottom: var(--s6);
  letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--blue); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: var(--s8);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
  text-transform: none;
}
.hero-actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: stretch;
  z-index: 2;
}
.hero-stat {
  padding: var(--s5) var(--s8);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.hero-stat-num {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* ============================================================
   CATEGORY SHOWCASE
   ============================================================ */
.categories {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  height: 65vh;
  min-height: 480px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.cat-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat-card:hover .cat-bg { transform: scale(1.06); }
.cat-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.92;
  transition: opacity 0.4s ease;
}
.cat-card:hover .cat-bg img { opacity: 1; }

/* Placeholder gradients for categories */
.cat-hombre .cat-bg {
  background: linear-gradient(160deg, #0a1a5e 0%, #1B45E0 40%, #0a0a0a 100%);
}
.cat-damas .cat-bg {
  background: linear-gradient(160deg, #3d0a05 0%, #FF4D2E 40%, #1a0805 100%);
}
.cat-guayos .cat-bg {
  background: linear-gradient(160deg, #111111 0%, #2a2a2a 50%, #1B45E0 100%);
}

/* Decorative shoe shape placeholder */
.cat-bg-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.12;
}
.cat-bg-deco svg { width: 70%; height: auto; }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
}
.cat-content {
  position: relative;
  z-index: 2;
  padding: var(--s8);
  width: 100%;
}
.cat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--s2);
}
.cat-title {
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--white);
  margin-bottom: var(--s4);
  line-height: 0.95;
}
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: all var(--t-normal);
}
.cat-link .arrow { transition: transform var(--t-normal); }
.cat-card:hover .cat-link { color: var(--white); border-color: var(--white); }
.cat-card:hover .cat-link .arrow { transform: translateX(5px); }
.cat-card:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.08); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--s8);
  gap: var(--s4);
}
.section-ey {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: var(--s2);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.section-ey::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--blue);
}
.section-title { font-size: clamp(28px, 4vw, 52px); }
.section-see-all {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: var(--s1);
  white-space: nowrap;
  transition: gap var(--t-normal);
}
.section-see-all:hover { gap: var(--s3); }
.section-see-all .arr { font-size: 16px; }

/* ============================================================
   PRODUCT GRID & CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
.product-grid-3 { grid-template-columns: repeat(3, 1fr); }

.prod-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.prod-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: var(--s4);
  flex-shrink: 0;
}
.prod-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.07); }

/* Placeholder */
.prod-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  position: relative;
  overflow: hidden;
}
.prod-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,0.3) 10px,
    rgba(0,0,0,0.3) 11px
  );
}
.prod-placeholder svg {
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.prod-placeholder .ph-sku {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
}

/* Placeholder color variants */
.ph-blue  { background: linear-gradient(135deg, #1B45E0 0%, #0a1240 100%); color: rgba(255,255,255,0.7); }
.ph-blue2 { background: linear-gradient(135deg, #0d2b9e 0%, #1B45E0 100%); color: rgba(255,255,255,0.7); }
.ph-blue3 { background: linear-gradient(135deg, #1a3dcc 0%, #05103a 100%); color: rgba(255,255,255,0.7); }
.ph-dark  { background: linear-gradient(135deg, #111111 0%, #1B45E0 100%); color: rgba(255,255,255,0.7); }
.ph-dark2 { background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);    color: rgba(255,255,255,0.6); }
.ph-red   { background: linear-gradient(135deg, #FF4D2E 0%, #6b1a0b 100%); color: rgba(255,255,255,0.7); }
.ph-red2  { background: linear-gradient(135deg, #c73621 0%, #FF4D2E 100%); color: rgba(255,255,255,0.7); }
.ph-cream { background: linear-gradient(135deg, #F2EFE6 0%, #d8d0c0 100%); color: rgba(10,10,10,0.5); }

/* Badge */
.prod-badge {
  position: absolute;
  top: var(--s3);
  left: var(--s3);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  z-index: 3;
}
.badge-new  { background: var(--blue); color: white; }
.badge-hot  { background: var(--red);  color: white; }
.badge-exc  { background: var(--black); color: white; }

/* Hover WhatsApp overlay */
.prod-hover-action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: var(--s2);
  transform: translateY(100%);
  opacity: 0;
  transition: all var(--t-normal);
}
.prod-card:hover .prod-hover-action {
  transform: translateY(0);
  opacity: 1;
}
.prod-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  width: 100%;
  padding: 12px;
  background: #25D366;
  color: white;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--t-fast);
  border: none;
  cursor: pointer;
}
.prod-wa-btn:hover { background: #1da851; }

/* Product Info */
.prod-cat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.prod-name {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--text);
  margin-bottom: var(--s2);
  line-height: 1.15;
  transition: color var(--t-fast);
}
.prod-card:hover .prod-name { color: var(--blue); }
.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.prod-sizes {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-muted);
}
.prod-wa-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #25D366;
  transition: color var(--t-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.prod-wa-link:hover { color: #1da851; }

/* ============================================================
   BRAND STORY
   ============================================================ */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.bs-text {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s16) var(--s12);
}
.bs-ey {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.bs-ey::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--blue);
}
.bs-title {
  font-size: clamp(42px, 5vw, 72px);
  color: var(--white);
  margin-bottom: var(--s6);
  line-height: 0.95;
}
.bs-title span { color: var(--blue); }
.bs-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--s8);
  max-width: 400px;
  font-family: var(--f-body);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}
.bs-img {
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}
.bs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.bs-img:hover img { transform: scale(1.04); }
.bs-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F2EFE6 0%, #e0dcd0 100%);
  color: rgba(10,10,10,0.25);
  font-family: var(--f-display);
  font-size: 100px;
  letter-spacing: -5px;
}

/* ============================================================
   INFO STRIP
   ============================================================ */
.info-strip { background: var(--bg-alt); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s8);
  padding: var(--s12) 0;
}
.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s3);
}
.info-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  box-shadow: var(--sh-sm);
}
.info-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  font-family: var(--f-body);
}
.info-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--blue);
  padding: var(--s16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: 'BLESSED';
  position: absolute;
  font-family: var(--f-display);
  font-size: 180px;
  color: rgba(255,255,255,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -10px;
}
.nl-title {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--white);
  margin-bottom: var(--s3);
  position: relative;
}
.nl-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--s8);
  font-family: var(--f-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
}
.nl-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: var(--sh-xl);
  position: relative;
}
.nl-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 14px;
  background: var(--white);
  color: var(--text);
  border: none;
  outline: none;
  font-family: var(--f-body);
}
.nl-input::placeholder { color: var(--text-light); }
.nl-submit {
  padding: 16px 24px;
  background: var(--black);
  color: white;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast);
}
.nl-submit:hover { background: #222; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding-top: var(--s16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--s12);
  margin-bottom: var(--s12);
}
.footer-logo { margin-bottom: var(--s5); color: var(--white); }
.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: var(--s6);
  max-width: 260px;
}
.footer-social { display: flex; gap: var(--s2); }
.soc-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background var(--t-fast), color var(--t-fast);
}
.soc-link:hover { background: var(--blue); color: white; }
.footer-col-title {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: var(--s5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--s3); }
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.footer-link:hover { color: var(--white); padding-left: var(--s2); }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--s4);
  line-height: 1.55;
}
.contact-row svg { flex-shrink: 0; color: var(--blue); margin-top: 2px; }
.footer-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--s6);
}
.footer-bottom {
  padding-bottom: var(--s8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}
.footer-bottom a { transition: color var(--t-fast); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-links-inline { display: flex; gap: var(--s6); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  z-index: var(--z-float);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s3);
}
.float-wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  transition: transform var(--t-normal), box-shadow var(--t-normal);
  animation: wa-pulse 3s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 42px rgba(37,211,102,0.75); }
}
.float-wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,0.65);
  animation: none;
}
.float-wa-label {
  background: var(--black);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--t-normal);
  pointer-events: none;
}
.float-wa:hover .float-wa-label {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: var(--s16) 0 var(--s12);
  position: relative;
  overflow: hidden;
}
.page-hero-geo {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--blue);
  opacity: 0.07;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.page-hero-geo2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.04;
  transform: translate(-50%, 50%);
  pointer-events: none;
}
.page-hero-ey {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.page-hero-ey::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--blue);
}
.page-hero-title {
  font-size: clamp(52px, 9vw, 108px);
  color: var(--white);
  line-height: 0.92;
  position: relative;
}
.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-top: var(--s5);
  font-family: var(--f-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ============================================================
   FILTERS BAR
   ============================================================ */
.filters-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s5) 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s8);
  gap: var(--s4);
  flex-wrap: wrap;
}
.filter-tabs {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: var(--f-body);
}
.filter-tab:hover { border-color: var(--blue); color: var(--blue); }
.filter-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.prod-count {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}
.contact-card {
  background: var(--bg-alt);
  padding: var(--s8);
  margin-bottom: var(--s6);
}
.contact-card-title {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: var(--s5);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  margin-bottom: var(--s5);
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: white;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.contact-value a { color: var(--blue); }
.contact-value a:hover { text-decoration: underline; }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s1) var(--s6);
}
.hours-day { font-size: 14px; color: var(--text-muted); line-height: 2; }
.hours-time { font-size: 14px; font-weight: 600; color: var(--text); line-height: 2; font-family: var(--f-mono); }

.map-box {
  background: var(--bg-alt);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-align: center;
  padding: var(--s8);
}
.map-box svg { color: var(--blue); }

.policies-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
.policy-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--s6);
}
.policy-icon { color: var(--blue); margin-bottom: var(--s3); }
.policy-title {
  font-size: 15px;
  margin-bottom: var(--s3);
  font-family: var(--f-body);
  font-weight: 700;
}
.policy-body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.policy-body li { margin-bottom: var(--s2); padding-left: var(--s3); border-left: 2px solid var(--blue); }

/* Social links in contact */
.social-row { display: flex; flex-wrap: wrap; gap: var(--s3); }
.social-chip {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--t-fast);
}
.social-chip:hover { border-color: var(--blue); color: var(--blue); background: rgba(27,69,224,0.04); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .product-grid     { grid-template-columns: repeat(3, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: var(--s8); }
}

@media (max-width: 1024px) {
  .nav-links        { display: none; }
  .nav-wa-btn       { display: none; }
  .hamburger        { display: flex; }
  .categories       { grid-template-columns: 1fr; height: auto; }
  .cat-card         { min-height: 300px; }
  .brand-story      { grid-template-columns: 1fr; }
  .bs-img           { min-height: 380px; order: -1; }
  .info-grid        { grid-template-columns: repeat(2, 1fr); }
  .contact-grid     { grid-template-columns: 1fr; }
  .policies-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root             { --nav-h: 60px; }
  .product-grid     { grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
  .product-grid-3   { grid-template-columns: repeat(2, 1fr); }
  .hero-stats       { display: none; }
  .nl-form          { flex-direction: column; }
  .nl-input         { width: 100%; }
  .footer-grid      { grid-template-columns: 1fr; gap: var(--s8); }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .footer-links-inline { gap: var(--s4); }
  .bs-text          { padding: var(--s10) var(--s6); }
  .section-hd       { flex-direction: column; align-items: flex-start; }
  .hero-content     { padding: 0 var(--s4) var(--s12); }
  .ann-scroll       { animation-duration: 15s; }
}

@media (max-width: 480px) {
  .product-grid     { grid-template-columns: 1fr 1fr; gap: var(--s2); }
  .info-grid        { grid-template-columns: 1fr; }
  .hero-actions     { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .float-wa-btn     { width: 52px; height: 52px; }
  .categories       { grid-template-columns: 1fr; }
  .cat-card         { min-height: 260px; }
  .filters-bar      { flex-direction: column; align-items: flex-start; }
  .footer-links-inline { flex-direction: column; gap: var(--s2); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.55s ease both; }
.fade-up-1 { animation-delay: 0.10s; }
.fade-up-2 { animation-delay: 0.20s; }
.fade-up-3 { animation-delay: 0.30s; }
.fade-up-4 { animation-delay: 0.40s; }

/* Scroll-triggered reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   BUTTON ANIMATIONS — Micro-interacciones UX/UI
   ============================================================ */

/* Botones primarios y secundarios */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.18s ease,
              background-color 0.2s ease,
              color 0.2s ease;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: inherit;
}
.btn:hover  { transform: translateY(-2px) scale(1.025); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(0) scale(0.97); transition-duration: 0.08s; }
.btn-primary:hover { box-shadow: 0 8px 24px rgba(27,69,224,0.38); }
.btn-outline:hover { box-shadow: 0 8px 20px rgba(27,69,224,0.22); }

/* Botón WA flotante — pulso sutil */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); }
}
.float-wa-btn {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  animation: waPulse 2.8s ease-in-out infinite;
}
.float-wa-btn:hover  { transform: scale(1.12); animation-play-state: paused; }
.float-wa-btn:active { transform: scale(0.95); }

/* Botón WA en tarjetas */
.prod-wa-btn {
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
              background-color 0.18s ease,
              box-shadow 0.18s ease;
}
.prod-wa-btn:hover  { transform: scale(1.05); box-shadow: 0 4px 14px rgba(37,211,102,0.4); }
.prod-wa-btn:active { transform: scale(0.95); }

/* Link WA pequeño en pie de tarjeta */
.prod-wa-link {
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.15s ease;
}
.prod-wa-link:hover  { transform: scale(1.1); }
.prod-wa-link:active { transform: scale(0.92); }

/* Tabs de filtro */
.filter-tab {
  position: relative;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.15s ease;
}
.filter-tab::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: left 0.2s ease, right 0.2s ease;
}
.filter-tab.active::after { left: 8%; right: 8%; }
.filter-tab:hover:not(.active) { transform: translateY(-1px); }
.filter-tab:active { transform: scale(0.96); }

/* Tarjetas de producto — cursor zoom-in en imagen */
.prod-img-wrap { cursor: zoom-in; }

/* Links de redes sociales en footer */
.soc-link {
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
              background-color 0.18s ease,
              color 0.18s ease;
}
.soc-link:hover  { transform: translateY(-3px) scale(1.1); }
.soc-link:active { transform: scale(0.92); }

/* Nav WA button */
.nav-wa-btn {
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
              background-color 0.18s ease,
              box-shadow 0.18s ease;
}
.nav-wa-btn:hover  { transform: scale(1.04); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.nav-wa-btn:active { transform: scale(0.96); }

/* Categorías — efecto de escala en hover */
.cat-card {
  transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.28s ease;
}
.cat-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 40px rgba(0,0,0,0.22); }

/* ============================================================
   LIGHTBOX — Vista previa de producto
   ============================================================ */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  cursor: zoom-out;
}
.lb-overlay.open {
  opacity: 1;
  visibility: visible;
}
.lb-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2001;
}
.lb-close:hover  { background: rgba(255,255,255,0.22); transform: scale(1.1) rotate(90deg); }
.lb-close:active { transform: scale(0.9); }
.lb-img-wrap {
  position: relative;
  max-width: min(620px, 90vw);
  max-height: 80vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  cursor: default;
  transform: scale(0.9);
  transition: transform 0.32s cubic-bezier(0.34, 1.36, 0.64, 1);
}
.lb-overlay.open .lb-img-wrap {
  transform: scale(1);
}
.lb-img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #111;
  transition: opacity 0.22s ease;
}
.lb-spinner {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 36px; height: 36px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lbSpin 0.7s linear infinite;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes lbSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.lb-caption {
  margin-top: 16px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  max-width: 500px;
}
