/* ============================================
   SUSY FOTOGRAFÍA — MOBILE FIRST
   Header fijo + drawer estable + sin overflow
   ============================================ */

:root {
  --bg: #080808;
  --text: #f0ece4;
  --muted: #a89e8e;
  --gold: #c9a84c;
  --gold-soft: #e8d49a;
  --gold-glow: rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.24);
  --surface: rgba(255,255,255,0.03);
  --line: rgba(255,255,255,0.07);
  --white: #ffffff;
  --max: 1400px;
  --header-h: 64px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  padding-top: var(--header-h);
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.bodas-container {
  width: min(calc(100% - 32px), var(--max));
  max-width: 100%;
  margin-inline: auto;
}

/* ===================== HEADER ===================== */
.bodas-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1100;
  background: rgba(8,8,8,0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.bodas-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bodas-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.bodas-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--gold-border);
  background: #111;
  flex-shrink: 0;
}

.bodas-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bodas-brand-text strong {
  display: block;
  font-size: 0.80rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bodas-brand-text span {
  display: none;
}

/* ===================== HAMBURGER ===================== */
.bodas-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 11px;
  cursor: pointer;
  position: relative;
  z-index: 1103;
  flex-shrink: 0;
  transition: background 250ms, border-color 250ms;
}

.bodas-menu-toggle:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--gold-border);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 18px;
  height: 18px;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transform-origin: center;
  transition: transform 280ms ease, opacity 180ms ease, width 280ms ease;
}

.bodas-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bodas-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.bodas-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================== NAV DRAWER ===================== */
.bodas-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 86vw;
  max-width: 300px;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #0d0d0d;
  border-left: 1px solid rgba(255,255,255,.07);
  box-shadow: -20px 0 50px rgba(0,0,0,.55);
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition: transform 300ms var(--ease), visibility 0s linear 300ms;
  z-index: 1102;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 28px;
}

.bodas-nav.open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 300ms var(--ease), visibility 0s;
}

.bodas-nav-header {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}

.bodas-nav-title {
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.bodas-nav-links {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.bodas-nav-links a {
  display: block;
  padding: 13px 22px;
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
  transition: color 200ms, background 200ms, padding-left 200ms;
  position: relative;
}

.bodas-nav-links a:hover,
.bodas-nav-links a.active {
  color: var(--gold);
  padding-left: 28px;
  background: rgba(201,168,76,.04);
}

.bodas-nav-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
  transition: height 200ms;
}

.bodas-nav-links a:hover::before,
.bodas-nav-links a.active::before {
  height: 55%;
}

.bodas-nav-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 8px 0;
}

.bodas-nav-section-label {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 24px 6px;
}

.bodas-nav-galleries {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 16px 8px;
}

.bodas-nav-gallery-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 220ms, background 220ms, color 220ms;
}

.bodas-nav-gallery-link:hover {
  border-color: rgba(201,168,76,.35);
  background: rgba(201,168,76,.06);
  color: var(--gold);
}

.bodas-nav-gallery-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.active-gallery {
  border-color: rgba(201,168,76,.35);
  background: rgba(201,168,76,.08);
  color: var(--gold);
}

.xv-theme .xv-active-gallery {
  border-color: rgba(196,127,160,.35);
  background: rgba(196,127,160,.08);
  color: var(--gold);
}

.bodas-nav-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 16px 0;
  min-height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #a07830);
  color: #0a0800;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity 200ms, transform 200ms;
}

.bodas-nav-wa:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.xv-theme .bodas-nav-wa.xv-wa {
  background: linear-gradient(135deg, var(--gold), #a0607a);
  color: #fff;
}

/* Overlay */
.bodas-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.50);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms, visibility 0s linear 300ms;
  z-index: 1090;
}

.bodas-nav-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 300ms, visibility 0s;
}

/* ===================== HERO ===================== */
.bodas-hero {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 52px;
}

.bodas-hero-slider,
.bodas-hero-slide {
  position: absolute;
  inset: 0;
}

.bodas-hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1400ms var(--ease), transform 8s linear;
  will-change: transform, opacity;
}

.bodas-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.bodas-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.22) 40%,
    rgba(0,0,0,0.82) 72%,
    rgba(8,8,8,0.98) 100%
  );
  z-index: 1;
}

.bodas-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.bodas-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.60rem;
  font-weight: 600;
  margin-bottom: 16px;
  background: rgba(201,168,76,0.06);
}

.bodas-kicker::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.bodas-hero h1 {
  font-size: clamp(2.2rem, 9vw, 5rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white);
}

.bodas-hero h1 span {
  color: var(--gold);
}

.bodas-hero p {
  max-width: 520px;
  color: rgba(240,236,228,0.68);
  font-size: 0.90rem;
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.75;
}

.bodas-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bodas-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
  border: 1px solid transparent;
  width: 100%;
}

.bodas-btn:active {
  transform: scale(0.97);
}

.bodas-btn-primary {
  background: var(--gold);
  color: #0a0800;
  box-shadow: 0 8px 24px rgba(201,168,76,0.28);
}

.bodas-btn-secondary {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

/* ===================== GALLERY SECTION ===================== */
.bodas-gallery-section {
  padding: 56px 0 80px;
}

.bodas-gallery-head {
  margin-bottom: 4px;
}

.bodas-gallery-head h2 {
  font-size: clamp(1.7rem, 7vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 4px;
}

.bodas-gallery-head h2 span {
  color: var(--gold);
}

.bodas-photo-count {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 4px;
}

/* TOOLBAR */
.bodas-gallery-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bodas-gallery-tools::-webkit-scrollbar {
  display: none;
}

.bodas-tool-btn {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: transparent;
  color: var(--muted);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 200ms var(--ease);
}

.bodas-tool-btn:hover,
.bodas-tool-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

/* SKELETONS */
.bodas-skeleton-grid {
  columns: 1;
  gap: 10px;
}

.bodas-skeleton-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  position: relative;
}

.bodas-skeleton-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* MASONRY GRID */
.bodas-gallery-grid {
  columns: 1;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* PHOTO CARD */
.bodas-photo-card {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0e0e0e;
  cursor: pointer;
  isolation: isolate;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 460ms var(--ease), transform 460ms var(--ease);
  width: 100%;
  max-width: 100%;
}

.bodas-photo-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.bodas-photo-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 560ms var(--ease);
}

.bodas-photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 240ms;
  z-index: 1;
}

.bodas-photo-card:active::before {
  background: rgba(0,0,0,0.22);
}

.bodas-photo-card::after {
  content: '⊕';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--white);
  opacity: 0.85;
  z-index: 2;
}

/* EMPTY STATE */
.bodas-empty-state {
  display: none;
  padding: 40px 24px;
  border-radius: 18px;
  border: 1px dashed var(--gold-border);
  color: var(--muted);
  background: var(--surface);
  text-align: center;
  font-size: 0.86rem;
}

/* ===================== LIGHTBOX ===================== */
.bodas-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4,4,4,0.97);
  display: flex;
  flex-direction: column;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease);
  overscroll-behavior: contain;
  max-width: 100%;
  overflow-x: hidden;
}
.bodas-lightbox-bar {
  position: relative;
  z-index: 2002;
}

.bodas-lightbox-close {
  position: relative;
  z-index: 2003;
}

.bodas-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.bodas-lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--line);
}

.bodas-lightbox-counter {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--muted);
  text-transform: uppercase;
}

.bodas-lightbox-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: background 200ms;
}

.bodas-lightbox-close:hover {
  background: rgba(255,255,255,0.10);
}

.bodas-lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 12px;
  max-width: 100%;
}

.bodas-lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
  user-select: none;
  -webkit-user-drag: none;
}

.bodas-lightbox-stage img.fade-out {
  opacity: 0;
  transform: scale(0.97);
}

.bodas-lightbox-prev,
.bodas-lightbox-next {
  display: none;
}

.bodas-lightbox-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  overflow-x: hidden;
}

.bodas-lb-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 200ms, color 200ms;
}

.bodas-lb-nav-btn:hover {
  background: var(--gold-glow);
  border-color: var(--gold-border);
  color: var(--gold);
}

.bodas-lb-thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
  padding: 2px;
  max-width: 100%;
}

.bodas-lb-thumbs::-webkit-scrollbar {
  display: none;
}

.bodas-lb-thumb {
  width: 46px;
  height: 46px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
  scroll-snap-align: center;
  border: 2px solid transparent;
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 200ms, border-color 200ms;
}

.bodas-lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bodas-lb-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

/* ===================== FOOTER ===================== */
.bodas-footer {
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
}

.bodas-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.76rem;
}

/* DROPDOWN DESKTOP */
.bodas-nav-dropdown {
  display: none;
}

.bodas-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  background: transparent;
  transition: color 220ms, background 220ms, border-color 220ms;
}

.bodas-nav-dropdown-toggle:hover {
  color: var(--gold);
  background: rgba(201,168,76,.06);
  border-color: rgba(201,168,76,.24);
}

.bodas-nav-dropdown-arrow {
  font-size: .8rem;
  transition: transform 220ms ease;
}

.bodas-nav-dropdown-menu {
  display: none;
}








/* ===================== REVEAL ===================== */
.bodas-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 580ms var(--ease), transform 580ms var(--ease);
}

.bodas-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== SMALL MOBILE ===================== */
@media (max-width: 420px) {
  .bodas-nav {
    width: 82vw;
    max-width: 280px;
  }

  .bodas-container {
    width: min(calc(100% - 24px), var(--max));
  }
}

/* ============================================================
   TABLET ≥ 600px
   ============================================================ */
@media (min-width: 600px) {
  :root {
    --header-h: 72px;
  }

  .bodas-brand-text span {
    display: block;
    font-size: 0.66rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .bodas-hero-actions {
    flex-direction: row;
  }

  .bodas-btn {
    width: auto;
  }

  .bodas-skeleton-grid,
  .bodas-gallery-grid {
    columns: 2;
    gap: 10px;
  }

  .bodas-lb-thumb {
    width: 54px;
    height: 54px;
  }
}

/* ============================================================
   DESKTOP ≥ 960px
   ============================================================ */
@media (min-width: 960px) {
  :root {
    --header-h: 78px;
  }

  .bodas-hero {
    padding-bottom: 80px;
  }

  .bodas-hero p {
    font-size: 1.02rem;
  }

  .bodas-gallery-section {
    padding: 96px 0 120px;
  }

  .bodas-skeleton-grid,
  .bodas-gallery-grid {
    columns: 3;
    gap: 12px;
  }

  .bodas-photo-card {
    border-radius: 18px;
    margin-bottom: 12px;
  }

  .bodas-skeleton-item {
    margin-bottom: 12px;
  }

  .bodas-photo-card:hover img {
    transform: scale(1.04);
  }

  .bodas-photo-card::after {
    bottom: 14px;
    right: 14px;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 220ms, transform 220ms var(--ease);
  }

  .bodas-photo-card:hover::after {
    opacity: 1;
    transform: scale(1);
  }

  .bodas-lightbox-prev,
  .bodas-lightbox-next {
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-size: 1.4rem;
    z-index: 10;
    transition: background 200ms, border-color 200ms, color 200ms;
    backdrop-filter: blur(8px);
  }

  .bodas-lightbox-prev {
    left: 20px;
  }

  .bodas-lightbox-next {
    right: 20px;
  }

  .bodas-lightbox-prev:hover,
  .bodas-lightbox-next:hover {
    background: var(--gold-glow);
    border-color: var(--gold-border);
    color: var(--gold);
  }

  .bodas-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .bodas-menu-toggle {
    display: none;
  }

  .bodas-nav-overlay {
    display: none;
  }

    .bodas-nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) !important;
    width: min(calc(100% - 32px), var(--max));
    max-width: var(--max);
    height: var(--header-h);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    visibility: visible !important;
    pointer-events: none;
    overflow: visible;
    padding: 0;
    z-index: 1101;
  }

  .bodas-nav-header,
  .bodas-nav-divider,
  .bodas-nav-section-label,
  .bodas-nav-galleries,
  .bodas-nav-wa {
    display: none;
  }
  .bodas-nav-links {
    flex-direction: row;
    padding: 0;
    gap: 2px;
    margin-left: auto;
    pointer-events: auto;
  }

.bodas-nav-galleries {
  display: none;
}

.bodas-nav-dropdown {
  display: block;
  position: relative;
  margin-left: 10px;
  pointer-events: auto;
}

.bodas-nav-dropdown:hover .bodas-nav-dropdown-menu,
.bodas-nav-dropdown:focus-within .bodas-nav-dropdown-menu {
  display: flex;
}

.bodas-nav-dropdown:hover .bodas-nav-dropdown-arrow,
.bodas-nav-dropdown:focus-within .bodas-nav-dropdown-arrow {
  transform: rotate(180deg);
}

.bodas-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(12,12,12,.98);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(16px);
  z-index: 1200;
}

.bodas-nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
  transition: background 200ms, color 200ms, padding-left 200ms;
}

.bodas-nav-dropdown-menu a:hover {
  background: rgba(201,168,76,.06);
  color: var(--gold);
  padding-left: 16px;
}

  /* ============================================================
  bodas menu prueba
   ============================================================ */
  .bodas-nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: var(--header-h);
    padding: 0 10px;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    position: relative;
  }

  .bodas-nav-links {
    flex-direction: row;
    padding: 0;
    gap: 2px;
  }

  .bodas-nav-links a {
    padding: 6px 10px;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .bodas-nav-links a:hover,
  .bodas-nav-links a.active {
    padding-left: 10px;
    background: transparent;
  }

  .bodas-nav-links a::before {
    display: none;
  }

  .bodas-nav-links a::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 1px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 240ms ease;
  }

  .bodas-nav-links a:hover::after,
  .bodas-nav-links a.active::after {
    transform: scaleX(1);
  }


.bodas-nav-galleries {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin-left: 10px;
}

.bodas-nav-gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  transition: color 220ms, background 220ms, border-color 220ms, transform 220ms;
}

.bodas-nav-gallery-link:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,.25);
  background: rgba(201,168,76,.06);
  transform: translateY(-1px);
}

.bodas-nav-gallery-link .bodas-nav-gallery-icon {
  font-size: .9rem;
}
/* Dropdown desktop */
.bodas-nav-dropdown {
  display: none;
}

.bodas-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color 220ms, background 220ms, border-color 220ms;
  border: 1px solid transparent;
}

.bodas-nav-dropdown-toggle:hover {
  color: var(--gold);
  background: rgba(201,168,76,.06);
  border-color: rgba(201,168,76,.24);
}

.bodas-nav-dropdown-arrow {
  font-size: .8rem;
  transition: transform 220ms ease;
}

.bodas-nav-dropdown-menu {
  display: none;
}

.active-gallery {
  color: var(--gold);
  border-color: rgba(201,168,76,.28);
  background: rgba(201,168,76,.08);
}

.xv-theme .xv-active-gallery {
  color: var(--gold);
  border-color: rgba(196,127,160,.35);
  background: rgba(196,127,160,.08);
}

  .bodas-menu-toggle {
    display: none;
  }

  .bodas-nav-overlay {
    display: none;
  }

  .bodas-nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) !important;
    width: min(calc(100% - 32px), var(--max));
    max-width: var(--max);
    height: var(--header-h);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    background: transparent;
    border: none;
    box-shadow: none;
    visibility: visible !important;
    pointer-events: none;
    overflow: visible;
    padding: 0;
    z-index: 1101;
  }

  .bodas-nav-header,
  .bodas-nav-divider,
  .bodas-nav-section-label,
  .bodas-nav-wa {
    display: none;
  }

  .bodas-nav-links {
    flex-direction: row;
    padding: 0;
    gap: 2px;
    margin-left: auto;
    pointer-events: auto;
  }

  .bodas-nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: var(--header-h);
    padding: 0 10px;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    position: relative;
  }

  .bodas-nav-links a:hover,
  .bodas-nav-links a.active {
    padding-left: 10px;
    background: transparent;
  }

  .bodas-nav-links a::before {
    display: none;
  }

  .bodas-nav-links a::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 18px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 240ms ease;
  }

  .bodas-nav-links a:hover::after,
  .bodas-nav-links a.active::after {
    transform: scaleX(1);
  }

  /* ocultar lista mobile en desktop */
  .bodas-nav-galleries {
    display: none;
  }

  /* mostrar dropdown en desktop */
  .bodas-nav-dropdown {
    display: block;
    position: relative;
    pointer-events: auto;
  }

  .bodas-nav-dropdown:hover .bodas-nav-dropdown-menu,
  .bodas-nav-dropdown:focus-within .bodas-nav-dropdown-menu {
    display: flex;
  }

  .bodas-nav-dropdown:hover .bodas-nav-dropdown-arrow,
  .bodas-nav-dropdown:focus-within .bodas-nav-dropdown-arrow {
    transform: rotate(180deg);
  }

  .bodas-nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    right: 0;
    min-width: 220px;
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(12,12,12,.98);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 50px rgba(0,0,0,.35);
    backdrop-filter: blur(16px);
    z-index: 1200;
  }

  .bodas-nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: .86rem;
    font-weight: 600;
    color: var(--text);
    transition: background 200ms, color 200ms, padding-left 200ms;
  }

  .bodas-nav-dropdown-menu a:hover {
    background: rgba(201,168,76,.06);
    color: var(--gold);
    padding-left: 16px;
  }







}

/* ============================================================
   WIDE ≥ 1280px
   ============================================================ */
@media (min-width: 1280px) {
  .bodas-skeleton-grid,
  .bodas-gallery-grid {
    columns: 4;
    gap: 14px;
  }

  .bodas-photo-card,
  .bodas-skeleton-item {
    margin-bottom: 14px;
  }

  .bodas-menu-toggle {
    display: none;
  }

  .bodas-nav-overlay {
    display: none;
  }

  .bodas-nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) !important;
    width: min(calc(100% - 32px), var(--max));
    max-width: var(--max);
    height: var(--header-h);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    background: transparent;
    border: none;
    box-shadow: none;
    visibility: visible !important;
    pointer-events: none;
    overflow: visible;
    padding: 0;
    z-index: 1101;
  }

  .bodas-nav-header,
  .bodas-nav-divider,
  .bodas-nav-section-label,
  .bodas-nav-wa {
    display: none;
  }

  .bodas-nav-links {
    flex-direction: row;
    padding: 0;
    gap: 2px;
    margin-left: auto;
    pointer-events: auto;
  }

  .bodas-nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: var(--header-h);
    padding: 0 10px;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    position: relative;
  }

  .bodas-nav-links a:hover,
  .bodas-nav-links a.active {
    padding-left: 10px;
    background: transparent;
  }

  .bodas-nav-links a::before {
    display: none;
  }

  .bodas-nav-links a::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 18px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 240ms ease;
  }

  .bodas-nav-links a:hover::after,
  .bodas-nav-links a.active::after {
    transform: scaleX(1);
  }

  /* ocultar lista mobile en desktop */
  .bodas-nav-galleries {
    display: none;
  }

  /* mostrar dropdown en desktop */
  .bodas-nav-dropdown {
    display: block;
    position: relative;
    pointer-events: auto;
  }

  .bodas-nav-dropdown:hover .bodas-nav-dropdown-menu,
  .bodas-nav-dropdown:focus-within .bodas-nav-dropdown-menu {
    display: flex;
  }

  .bodas-nav-dropdown:hover .bodas-nav-dropdown-arrow,
  .bodas-nav-dropdown:focus-within .bodas-nav-dropdown-arrow {
    transform: rotate(180deg);
  }

  .bodas-nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    right: 0;
    min-width: 220px;
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(12,12,12,.98);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 50px rgba(0,0,0,.35);
    backdrop-filter: blur(16px);
    z-index: 1200;
  }

  .bodas-nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: .86rem;
    font-weight: 600;
    color: var(--text);
    transition: background 200ms, color 200ms, padding-left 200ms;
  }

  .bodas-nav-dropdown-menu a:hover {
    background: rgba(201,168,76,.06);
    color: var(--gold);
    padding-left: 16px;
  }






}