/* ==========================================================================
   LÍLIA BARROS | MODA FEMININA — DESIGN SYSTEM & LUXURY MOBILE FIRST
   Palette: Warm Obsidian, Antique Champagne Gold, Ivory Silk & Frosted Glass
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-base: #0D0C0B;
  --bg-deep: #080706;
  --bg-surface: rgba(26, 23, 20, 0.78);
  --bg-card: rgba(30, 26, 22, 0.72);
  --bg-card-hover: rgba(38, 33, 28, 0.92);
  --bg-glass: rgba(22, 19, 17, 0.85);

  /* Gold & Accent Tokens */
  --gold-primary: #D4AF37;
  --gold-light: #F7E7C4;
  --gold-mid: #C5A059;
  --gold-dark: #9A772B;
  --gold-border: rgba(212, 175, 55, 0.25);
  --gold-border-bright: rgba(212, 175, 55, 0.55);
  --gold-glow: rgba(212, 175, 55, 0.18);
  --gold-gradient: linear-gradient(135deg, #F9ECCC 0%, #D4AF37 50%, #9E782F 100%);
  --gold-gradient-shine: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);

  /* WhatsApp Token */
  --whatsapp-green: #25D366;
  --whatsapp-glow: rgba(37, 211, 102, 0.28);

  /* Typography Tokens */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Text Colors */
  --text-primary: #FAF7F2;
  --text-secondary: #C8BFB5;
  --text-muted: #8E857B;
  --text-gold: #E4C882;

  /* Shadows & Depth Elevation */
  --shadow-level-1: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 1px rgba(212, 175, 55, 0.15);
  --shadow-level-2: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.12);
  --shadow-level-3: 0 12px 40px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 175, 55, 0.28);
  --shadow-glow-gold: 0 0 35px rgba(212, 175, 55, 0.3);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  /* Motion & Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  background: var(--bg-base);
  background-image: 
    radial-gradient(circle at 50% 0%, #29231B 0%, transparent 65%),
    radial-gradient(circle at 10% 30%, #1A1612 0%, transparent 45%),
    radial-gradient(circle at 90% 70%, #1B1713 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.5;
  padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}

/* Ambient Background Lights */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.45;
}

.glow-top {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, transparent 70%);
}

.glow-middle {
  top: 50%;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
}

/* Top Announcement Ribbon */
.top-ribbon {
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, #18140F, #2A2216, #18140F);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
}

.ribbon-track {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  animation: ribbonMarquee 26s linear infinite;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.ribbon-track .dot {
  color: var(--gold-primary);
  opacity: 0.7;
}

@keyframes ribbonMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Main Container */
.page-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

@media (min-width: 768px) {
  .page-container {
    max-width: 580px;
    padding: 36px 20px 60px;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 28px;
}

/* Avatar with Gold Halo */
.avatar-wrapper {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring-outer {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #D4AF37, #F9ECCC, #9E782F, #F9ECCC, #D4AF37);
  opacity: 0.85;
  filter: blur(2px);
  animation: spinSlow 18s linear infinite;
}

.avatar-ring-inner {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--bg-base);
  z-index: 1;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.avatar-img {
  position: relative;
  z-index: 2;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.verified-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #12100C;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
  border: 2px solid var(--bg-base);
}

/* Brand Titles */
.handle-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 6px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.brand-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sub-line {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.sub-text {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-mid);
}

.brand-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Trust Stats */
.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-level-1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: var(--gold-border);
}

/* Feature Pills Row */
.features-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.feature-pill .pill-icon {
  font-size: 0.8rem;
}

/* ==========================================================================
   PRIMARY HERO CTA BUTTON (LEVEL 3 ELEVATION)
   ========================================================================== */
.hero-cta-box {
  width: 100%;
}

.btn-primary-cta {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  background: var(--gold-gradient);
  color: #12100C;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  overflow: hidden;
  box-shadow: 
    0 12px 32px rgba(212, 175, 55, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 16px 40px rgba(212, 175, 55, 0.5),
    0 6px 16px rgba(0, 0, 0, 0.7);
}

.btn-primary-cta:active {
  transform: scale(0.985);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: var(--gold-gradient-shine);
  transform: rotate(25deg);
  animation: shineLoop 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes shineLoop {
  0% { left: -100%; }
  35% { left: 160%; }
  100% { left: 160%; }
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-icon-pulse {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #11100D;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-fast);
}

.btn-primary-cta:hover .btn-icon-pulse {
  transform: scale(1.08) rotate(6deg);
}

.btn-text-group {
  flex: 1;
  text-align: left;
}

.btn-headline {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #12100C;
  line-height: 1.2;
}

.btn-subline {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: #382C17;
  letter-spacing: 0.01em;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #12100C;
  transition: transform var(--transition-fast);
}

.btn-primary-cta:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   LOOKBOOK / CARROSSEL DE PRODUTOS EM LOOPING INFINITO
   ========================================================================== */
.lookbook-section {
  margin-top: 32px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 18px;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-mid);
  margin-bottom: 4px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.section-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  max-width: 380px;
  margin: 0 auto;
}

/* Carousel Outer Viewport */
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 16px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.carousel-wrapper.is-dragging {
  cursor: grabbing;
}

/* Continuous Sliding Track */
.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

/* Individual Look Card */
.look-card {
  flex: 0 0 240px;
  width: 240px;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-level-2);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

@media (min-width: 420px) {
  .look-card {
    flex: 0 0 260px;
    width: 260px;
  }
}

.look-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border-bright);
  box-shadow: var(--shadow-level-3);
}

.look-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #181512;
}

.look-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.look-card:hover .look-img {
  transform: scale(1.05);
}

.look-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 12, 11, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.look-info {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.look-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.look-tagline {
  font-size: 0.74rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}

.btn-look-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-look-cta:hover {
  background: var(--gold-primary);
  color: #12100C;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

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

/* Carousel Navigation & Gesture Indicators */
.carousel-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}

.carousel-arrow {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-arrow:hover {
  background: var(--gold-primary);
  color: #12100C;
  border-color: var(--gold-primary);
}

.carousel-arrow:active {
  transform: scale(0.92);
}

.carousel-indicator-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.25);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.carousel-dot.active {
  width: 20px;
  border-radius: var(--radius-full);
  background: var(--gold-primary);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.gesture-cue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ==========================================================================
   ACTIONS HUB (CARDS COM HIERARQUIA RIGOROSA)
   ========================================================================== */
.actions-section {
  margin-top: 40px;
}

.action-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-level-1);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.action-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-border-bright);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-level-2);
}

.action-card:active {
  transform: scale(0.985);
}

/* Highlighted VIP Card */
.action-card.card-highlight {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, rgba(38, 32, 25, 0.9) 0%, rgba(26, 22, 18, 0.85) 100%);
  box-shadow: var(--shadow-level-2);
}

.action-card.card-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
}

.card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.card-icon-box.gold {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-border);
  color: var(--gold-primary);
}

.card-icon-box.champagne {
  background: rgba(247, 231, 196, 0.12);
  border-color: rgba(247, 231, 196, 0.25);
  color: var(--gold-light);
}

.card-icon-box.ig-gradient {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
  color: #FFFFFF;
  border: none;
}

.action-card:hover .card-icon-box {
  transform: scale(1.08);
}

.card-text-group {
  flex: 1;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
}

.card-tag.neutral {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.1);
}

.card-tag.shipping {
  background: rgba(80, 160, 255, 0.15);
  color: #92C5FD;
  border-color: rgba(80, 160, 255, 0.25);
}

.card-tag.ig {
  background: rgba(225, 48, 108, 0.18);
  color: #FFA5C0;
  border-color: rgba(225, 48, 108, 0.3);
}

.card-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 6px;
}

.card-action-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: inline-block;
}

/* ==========================================================================
   SECTION: LOCALIZAÇÃO & MAPA INTERATIVO TÁTIL
   ========================================================================== */
.location-section {
  margin-top: 40px;
}

.location-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-level-2);
}

.location-details {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.loc-pin-beacon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beacon-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
}

.beacon-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  animation: beaconWave 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes beaconWave {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.loc-text {
  display: flex;
  flex-direction: column;
}

.loc-sub {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
}

.loc-address {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
}

.loc-district {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Interactive Map Container */
.map-embed-container {
  position: relative;
  width: 100%;
  height: 260px;
  background: #14120F;
  overflow: hidden;
  touch-action: pan-x pan-y pinch-zoom;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: contrast(1.05) brightness(0.95);
  pointer-events: auto;
  touch-action: pan-x pan-y pinch-zoom;
}

.map-touch-helper {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 12, 11, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-light);
  z-index: 5;
  pointer-events: none;
  animation: floatHelper 3s ease-in-out infinite;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease;
}

@keyframes floatHelper {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -4px); }
}

/* GPS Action Buttons */
.location-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
  padding: 12px;
  background: rgba(18, 15, 12, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.btn-loc-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-loc-action:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-loc-action:active {
  transform: scale(0.96);
}

.btn-gmaps {
  color: #8AB4F8;
}

.btn-waze {
  color: #33CCFF;
}

.btn-copy-address {
  color: var(--gold-light);
  font-family: inherit;
}

/* ==========================================================================
   BRAND MANIFESTO QUOTE CARD
   ========================================================================== */
.brand-manifesto-card {
  margin-top: 36px;
  position: relative;
  background: linear-gradient(135deg, rgba(30, 26, 20, 0.7) 0%, rgba(18, 15, 12, 0.8) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: var(--shadow-level-1);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-primary);
  opacity: 0.35;
  margin-bottom: -16px;
}

.quote-body {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.quote-author {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-mid);
  text-transform: uppercase;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.page-footer {
  margin-top: 40px;
  text-align: center;
  padding-bottom: 10px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-mini-logo {
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.74rem;
}

.footer-links a {
  color: var(--gold-mid);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-links span {
  color: var(--text-muted);
}

/* ==========================================================================
   STICKY MOBILE BOTTOM BAR (CRO ACCELERATOR)
   ========================================================================== */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(14, 12, 10, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--gold-border);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.7);
}

.sticky-bar-inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  box-shadow: 0 0 10px var(--whatsapp-green);
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--whatsapp-green);
  animation: beaconWave 2s infinite;
}

.status-texts {
  display: flex;
  flex-direction: column;
}

.status-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.status-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.btn-sticky-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--gold-gradient);
  color: #12100C;
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-sticky-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.55);
}

.btn-sticky-cta:active {
  transform: scale(0.96);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translate(-50%, -80px);
  background: rgba(18, 16, 13, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--gold-border-bright);
  color: var(--gold-light);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.3);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.toast-notification.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* ==========================================================================
   ACCESSIBILITY & REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
