/* ==========================================================================
   CABANA DA ÁRVORE GUARAMIRANGA - DESIGN SYSTEM PREMIUM (MODELO 03)
   ========================================================================== */

:root {
  --color-primary: #15271E;       /* Verde Floresta Nobre */
  --color-primary-dark: #0D1913;  /* Sombra da Mata Profunda */
  --color-primary-light: #223F31; /* Musgo Aveludado */
  --color-gold: #C8923C;          /* Dourado Imperial / Bronze */
  --color-gold-light: #E0B066;    /* Ouro Champanhe */
  --color-gold-dark: #A37125;     /* Ouro Envelhecido */
  --color-cream: #FAF6EE;         /* Pérola Creme Suave */
  --color-cream-card: #FFFFFF;    /* Branco Puro para Cards */
  --color-sand: #EFE7D8;          /* Areia Quente */
  --color-dark: #121413;          /* Carvão Floresta */
  --color-text: #2A2825;          /* Texto Principal Quente */
  --color-text-muted: #6B665F;    /* Texto Secundário Neutro */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-accent: 'Cinzel', serif;
  --font-script: 'Dancing Script', cursive;
  --radius-card: 16px;
  --radius-pill: 9999px;
  --transition-smooth: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-lux: 0 20px 50px -15px rgba(21, 39, 30, 0.12);
  --shadow-hover: 0 30px 60px -15px rgba(21, 39, 30, 0.22);
  --shadow-gold: 0 10px 30px -5px rgba(200, 146, 60, 0.35);
}

/* Reset Básico & Aceleração */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
  line-height: 1.65;
}

/* Tipografia Editorial */
h1, h2, h3, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.font-accent {
  font-family: var(--font-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.font-script {
  font-family: var(--font-script);
}

/* ==========================================================================
   GLASSMORPHISM & HEADER
   ========================================================================== */
#navbar-premium {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar-premium.scrolled {
  background: rgba(13, 25, 19, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(200, 146, 60, 0.2);
}

.glass-pill {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-dark {
  background: rgba(13, 25, 19, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 146, 60, 0.25);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(239, 231, 216, 0.8);
}

/* ==========================================================================
   HERO SECTION & SLIDER
   ========================================================================== */
#hero-experience {
  height: 100vh;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out, transform 8s ease-out;
  transform: scale(1.08);
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg, 
    rgba(13, 25, 19, 0.45) 0%, 
    rgba(13, 25, 19, 0.3) 40%, 
    rgba(13, 25, 19, 0.85) 85%,
    rgba(13, 25, 19, 0.98) 100%
  );
}

/* ==========================================================================
   HERO ACTIONS & LUXURY CTA (DESIGN AUTÊNTICO BOUTIQUE)
   ========================================================================== */
.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-cta-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 1.75rem;
  }
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1E382A 0%, #112319 100%);
  color: #FAF6EE;
  border: 1px solid rgba(200, 146, 60, 0.7);
  padding: 15px 34px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #264634 0%, #152B1E 100%);
  border-color: var(--color-gold-light);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(13, 25, 19, 0.55);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 6px;
  position: relative;
  transition: all 0.3s ease;
}

.hero-btn-secondary::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(200, 146, 60, 0.6);
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  color: var(--color-gold-light);
  transform: translateX(3px);
}

.hero-btn-secondary:hover::after {
  background: var(--color-gold-light);
  height: 2px;
}

/* Scroll Indicator elegante e sem colisão */
.hero-scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-scroll-cue:hover {
  color: var(--color-gold-light);
}

.hero-scroll-line {
  width: 1px;
  height: 26px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  animation: scrollPulse 2.2s infinite ease-in-out;
}

/* ==========================================================================
   MOTOR DE RESERVAS (BOOKING ENGINE FLUTUANTE SEM COLISÃO)
   ========================================================================== */
.booking-engine-wrapper {
  position: relative;
  z-index: 30;
  margin-top: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.booking-form-box {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 20px 50px -10px rgba(13, 25, 19, 0.18), 0 0 0 1px rgba(200, 146, 60, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-input-group {
  position: relative;
  transition: all 0.3s ease;
}

.booking-input-group:focus-within {
  border-color: var(--color-gold);
}

.booking-input {
  width: 100%;
  font-family: var(--font-sans);
  color: var(--color-text);
  font-weight: 500;
  outline: none;
  background: transparent;
}

.booking-input:focus {
  outline: none;
}

/* Validação Visual Estrita */
.input-error {
  border-color: #E53E3E !important;
  background-color: #FFF5F5 !important;
  animation: shake 0.4s ease-in-out;
}

.error-hint {
  color: #C53030;
  font-size: 0.75rem;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* ==========================================================================
   MICRO-GALERIA INTERATIVA (CARDS DE ACOMODAÇÕES)
   ========================================================================== */
.micro-gallery-container {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
  border-top-left-radius: var(--radius-card);
  border-top-right-radius: var(--radius-card);
  background-color: #1A2820;
}

@media (min-width: 1024px) {
  .card-horizontal .micro-gallery-container {
    width: 45%;
    height: 100%;
    min-height: 380px;
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--radius-card);
  }
}

.micro-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.micro-gallery-item {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.micro-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.cabana-card:hover .micro-gallery-item img {
  transform: scale(1.04);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 25, 19, 0.6);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0.85;
}

.gallery-btn:hover {
  background: var(--color-gold);
  color: #FFFFFF;
  border-color: var(--color-gold);
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

.gallery-btn.prev { left: 12px; }
.gallery-btn.next { right: 12px; }

.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-dot.active {
  width: 22px;
  border-radius: 999px;
  background: var(--color-gold-light);
}

/* ==========================================================================
   BOTÕES & GHOST BUTTONS DE ALTO PADRÃO
   ========================================================================== */
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(200, 146, 60, 0.45);
}

.btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-ghost-light:hover {
  background: #FFFFFF;
  color: var(--color-primary-dark);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-ghost-dark {
  border: 1px solid rgba(21, 39, 30, 0.25);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.4s ease;
  text-decoration: none;
}

.btn-ghost-dark:hover {
  background: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   CARDS DE ACOMODAÇÃO (PREMIUM CARDS)
   ========================================================================== */
.cabana-card {
  background: var(--color-cream-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lux);
  border: 1px solid rgba(230, 222, 208, 0.8);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.cabana-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200, 146, 60, 0.4);
}

.tag-badge {
  background: rgba(200, 146, 60, 0.12);
  color: var(--color-gold-dark);
  border: 1px solid rgba(200, 146, 60, 0.25);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   EXPERIÊNCIAS & PROVAS SOCIAIS
   ========================================================================== */
.exp-card-hover {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-card-hover:hover {
  transform: translateY(-8px);
}

.exp-card-hover:hover .exp-img {
  transform: scale(1.08);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 146, 60, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 146, 60, 0.45);
  transform: translateY(-4px);
}

/* ==========================================================================
   BOTÃO FLUTUANTE DE WHATSAPP (ESTILO DISCRETO DE LUXO)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
  background: #20BA5A;
}

/* ==========================================================================
   ANIMAÇÃO DE REVELAÇÃO SUAVE (INTERSECTION OBSERVER)
   ========================================================================== */
.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Micro animação de Scroll Down */
@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(8px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 0.8; }
}

.scroll-indicator-arrow {
  animation: scrollPulse 2.2s infinite ease-in-out;
}

/* ==========================================================================
   BOTÃO "VER FOTOS" E MODAL DE GALERIA EM TAMANHO GRANDE
   ========================================================================== */
.btn-view-photos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 9999px;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold-dark);
  background: rgba(200, 146, 60, 0.08);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-view-photos:hover {
  background: var(--color-gold);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200, 146, 60, 0.35);
}

/* ==========================================================================
   MOSAICO EDITORIAL ESTILO AIRBNB LUXE (ACOMODAÇÕES)
   ========================================================================== */
.luxe-suite-item {
  background: #FFFFFF;
  border-radius: 28px;
  border: 1px solid #EFE7D8;
  box-shadow: 0 12px 40px -10px rgba(13, 25, 19, 0.07);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxe-suite-item:hover {
  box-shadow: 0 24px 60px -12px rgba(13, 25, 19, 0.13);
  border-color: rgba(200, 146, 60, 0.4);
}

.luxe-mosaic-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12px;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  margin-bottom: 24px;
}

.luxe-mosaic-main {
  position: relative;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
}

.luxe-mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxe-mosaic-main:hover img {
  transform: scale(1.04);
}

.luxe-mosaic-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13, 25, 19, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-gold-light);
  border: 1px solid rgba(200, 146, 60, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

.luxe-mosaic-tag-main {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(13, 25, 19, 0.75);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.luxe-mosaic-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 100%;
}

.luxe-mosaic-thumb {
  position: relative;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: 14px;
}

.luxe-mosaic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.luxe-mosaic-thumb:hover img {
  transform: scale(1.06);
}

.luxe-mosaic-more {
  position: absolute;
  inset: 0;
  background: rgba(13, 25, 19, 0.65);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #FFFFFF;
  transition: all 0.3s ease;
  padding: 8px;
  text-align: center;
}

.luxe-mosaic-thumb:hover .luxe-mosaic-more {
  background: rgba(200, 146, 60, 0.9);
}

.luxe-mosaic-more-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .luxe-suite-item {
    padding: 18px;
    border-radius: 20px;
  }
  .luxe-mosaic-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 8px;
  }
  .luxe-mosaic-main {
    height: 250px;
  }
  .luxe-mosaic-subgrid {
    height: 160px;
    gap: 8px;
  }
}

.cabana-cover-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
}

.cabana-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cabana-cover-wrap:hover .cabana-cover-img {
  transform: scale(1.06);
}

.cabana-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(13,25,19,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  transition: background 0.3s ease;
}

.cabana-cover-badge {
  align-self: flex-start;
  background: rgba(13, 25, 19, 0.75);
  backdrop-filter: blur(8px);
  color: var(--color-gold-light);
  border: 1px solid rgba(200, 146, 60, 0.4);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cabana-cover-cta {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--color-forest-deep);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.cabana-cover-wrap:hover .cabana-cover-cta {
  background: var(--color-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Modal Lightbox de Fotos em Tamanho Grande */
.suite-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 18, 14, 0.96);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.suite-modal.active {
  opacity: 1;
  visibility: visible;
}

.suite-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  color: #FFFFFF;
  z-index: 20;
}

.suite-modal-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #FFFFFF;
  font-weight: 600;
}

.suite-modal-counter {
  font-size: 0.8rem;
  color: var(--color-gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.suite-modal-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.suite-modal-close:hover {
  background: var(--color-gold);
  color: #FFFFFF;
  transform: rotate(90deg);
}

.suite-modal-stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-height: 0;
}

.suite-modal-img-wrap {
  max-width: 1100px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.suite-modal-img {
  max-height: 64vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(200, 146, 60, 0.25);
  transition: opacity 0.25s ease;
}

.suite-modal-caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  text-align: center;
  font-weight: 400;
  max-width: 700px;
}

.suite-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(13, 25, 19, 0.85);
  border: 1px solid rgba(200, 146, 60, 0.5);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.suite-modal-nav:hover {
  background: var(--color-gold);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}

.suite-modal-nav.prev {
  left: 16px;
}

.suite-modal-nav.next {
  right: 16px;
}

.suite-modal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 6px;
  z-index: 20;
}

.suite-modal-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: 100%;
  padding: 4px 8px;
  scrollbar-width: none;
}

.suite-modal-thumbs::-webkit-scrollbar {
  display: none;
}

.suite-modal-thumb {
  width: 56px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.suite-modal-thumb:hover {
  opacity: 0.85;
}

.suite-modal-thumb.active {
  opacity: 1;
  border-color: var(--color-gold);
  transform: scale(1.08);
}

@media (max-width: 640px) {
  .suite-modal {
    padding: 12px;
  }
  .suite-modal-img {
    max-height: 52vh;
  }
  .suite-modal-nav {
    width: 40px;
    height: 40px;
  }
  .suite-modal-nav.prev { left: 4px; }
  .suite-modal-nav.next { right: 4px; }
  .suite-modal-title { font-size: 1.1rem; }
  .suite-modal-caption { font-size: 0.82rem; }
}
