/* ==========================================================================
   KLEOPÁTRA TITKA — EGYPTIAN LUXURY SANCTUARY DESIGN SYSTEM
   Theme: Obsidian Black, Imperial Gold, Shimmering Light, Mystical Divine Aura
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-cosmic: #030202;
  --bg-primary: #060504;
  --bg-secondary: #0d0a07;
  --bg-tertiary: #16110b;
  --bg-surface: #1e1710;
  --bg-glass: rgba(14, 11, 8, 0.78);
  --bg-glass-card: rgba(18, 14, 10, 0.72);
  --bg-glass-hover: rgba(32, 24, 16, 0.88);
  
  /* Imperial Gold Palette */
  --gold-50: #fefcf3;
  --gold-100: #fcf7df;
  --gold-200: #f7eeb8;
  --gold-300: #f0dc86;
  --gold-400: #e5c453;
  --gold-500: #d4af37; /* Canonical Imperial Gold */
  --gold-600: #b89124;
  --gold-700: #936e1c;
  --gold-800: #78571c;
  --gold-900: #49330f;
  
  /* Gold Gradients */
  --grad-gold: linear-gradient(135deg, #fff7d6 0%, #e2c062 28%, #d4af37 50%, #9e751a 78%, #dfbd5a 100%);
  --grad-gold-bright: linear-gradient(135deg, #ffffff 0%, #fbedb0 30%, #dfb743 60%, #b88d22 100%);
  --grad-gold-dark: linear-gradient(135deg, #2a2012 0%, #151009 50%, #0b0805 100%);
  --grad-gold-border: linear-gradient(135deg, rgba(255,247,214,0.6) 0%, rgba(212,175,55,0.4) 40%, rgba(147,110,28,0.1) 70%, rgba(212,175,55,0.4) 100%);
  --grad-emerald: linear-gradient(135deg, #c7f274 0%, #8fd14a 50%, #5b9b20 100%);
  --grad-overlay-hero: linear-gradient(180deg, rgba(5,4,3,0.3) 0%, rgba(6,5,4,0.7) 65%, #060504 100%);
  --grad-shimmer: linear-gradient(90deg, transparent, rgba(255,248,220,0.35), transparent);

  /* Typography */
  --font-royal: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
  --font-display: 'Cinzel', Georgia, serif;
  --font-quote: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Text Colors */
  --text-primary: #f5eee2;
  --text-secondary: rgba(240, 228, 208, 0.75);
  --text-muted: rgba(220, 202, 175, 0.55);
  --text-dim: rgba(190, 170, 140, 0.38);
  --text-gold: #f0dc86;

  /* Shadows & Glows */
  --glow-gold-sm: 0 0 12px rgba(212, 175, 55, 0.25);
  --glow-gold-md: 0 0 25px rgba(212, 175, 55, 0.35), 0 0 50px rgba(212, 175, 55, 0.15);
  --glow-gold-lg: 0 0 40px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.22);
  --glow-emerald: 0 0 25px rgba(143, 209, 74, 0.38);
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.18);
  --shadow-card-hover: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(240, 220, 134, 0.45), var(--glow-gold-sm);

  /* Borders */
  --border-gold-subtle: 1px solid rgba(212, 175, 55, 0.16);
  --border-gold-medium: 1px solid rgba(212, 175, 55, 0.32);
  --border-gold-bright: 1px solid rgba(240, 220, 134, 0.55);

  /* Layout */
  --container-width: 1240px;
  --header-height: 70px;
  --radius-sharp: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Transitions */
  --trans-fast: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  --trans-smooth: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --trans-lux: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Selection */
::selection {
  background: rgba(212, 175, 55, 0.35);
  color: #ffffff;
}

/* Custom Gold Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cosmic);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-600), var(--gold-400), var(--gold-700));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-300);
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* ==========================================================================
   BACKGROUND VISUAL EFFECTS & CANVASES
   ========================================================================== */
.egyptian-stars-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

.cosmic-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 90% 40%, rgba(143, 209, 74, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 10% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-cosmic) 0%, var(--bg-primary) 50%, #080604 100%);
}

.hieroglyph-ribbon {
  position: absolute;
  width: 100%;
  height: 24px;
  background-repeat: repeat-x;
  opacity: 0.15;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.4));
}

/* Golden Cursor Glow (Desktop Only) */
.custom-cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  margin-left: -160px;
  margin-top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

@media (pointer: coarse) {
  .custom-cursor-glow { display: none !important; }
}

/* ==========================================================================
   LAYOUT & CONTAINER
   ========================================================================== */
.site-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.container-narrow {
  max-width: 860px;
}

.container-wide {
  max-width: 1400px;
}

.section {
  position: relative;
  padding: clamp(2.4rem, 4.2vw, 3.8rem) 0;
  z-index: 2;
}

.section-tight {
  padding: clamp(1.2rem, 2vw, 1.8rem) 0;
}

/* Section Header Typography */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(1.4rem, 2.8vw, 2.2rem);
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-400);
  margin-bottom: 0.45rem;
  position: relative;
}

.eyebrow::before, .eyebrow::after {
  content: "♦";
  color: var(--gold-500);
  font-size: 0.6rem;
  opacity: 0.8;
}
.section-header.text-left .eyebrow::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 0.55rem;
}

.section-title span.gold-shine {
  background: var(--grad-gold-bright);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-desc {
  font-family: var(--font-body);
  font-size: clamp(0.96rem, 1.15vw, 1.1rem);
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: normal;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   HEADER & LUXURY NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background: rgba(6, 5, 4, 0.85);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: background var(--trans-smooth), border-color var(--trans-smooth), transform 0.3s ease;
}

.site-header.scrolled {
  background: rgba(4, 3, 2, 0.95);
  border-bottom-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

.site-header .container {
  max-width: 1540px;
  width: 100%;
  padding-left: clamp(1rem, 2.5vw, 2.5rem);
  padding-right: clamp(1rem, 2.5vw, 2.5rem);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: clamp(1rem, 2vw, 2.2rem);
}

/* Brand Wordmark (No image logo in navbar as requested) */
.brand-wordmark-group {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--trans-fast), transform var(--trans-fast);
}

.brand-wordmark-group:hover {
  transform: scale(1.02);
}

.brand-main-name {
  font-family: var(--font-royal);
  font-size: clamp(1.15rem, 1.35vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-main-name span {
  background: var(--grad-gold-bright);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Desktop Navigation Menu */
.nav-menu-desktop {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.25vw, 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 0.88vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #dfd7cc;
  padding: 0.5rem 0.35rem;
  position: relative;
  transition: color var(--trans-fast);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: width var(--trans-smooth), left var(--trans-smooth);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-200);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Dropdown Menu for Services */
.nav-item-dropdown {
  position: relative;
}

.dropdown-chevron {
  font-size: 0.62rem;
  color: var(--gold-400);
  transition: transform var(--trans-fast);
  display: inline-block;
  line-height: 1;
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--gold-200);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 320px;
  background: rgba(12, 9, 6, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-top: 2px solid var(--gold-400);
  border-radius: 4px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.92), 0 0 25px rgba(212, 175, 55, 0.18);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background var(--trans-fast), transform var(--trans-fast);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.nav-dropdown-item:last-child {
  border-bottom: none;
}

.nav-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: translateX(3px);
}

.dropdown-item-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
}

.dropdown-item-text {
  display: flex;
  flex-direction: column;
}

.dropdown-item-text strong {
  font-family: var(--font-royal);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  transition: color var(--trans-fast);
}

.nav-dropdown-item:hover .dropdown-item-text strong {
  color: var(--gold-200);
}

.dropdown-item-text small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--gold-400);
  margin-top: 0.1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Audio Ambient Toggle Button */
.audio-ambiance-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(22, 17, 11, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-400);
  cursor: pointer;
  transition: all var(--trans-fast);
  position: relative;
}

.audio-ambiance-btn:hover {
  border-color: var(--gold-300);
  color: var(--gold-200);
  box-shadow: var(--glow-gold-sm);
  transform: scale(1.05);
}

.audio-ambiance-btn.playing {
  border-color: var(--gold-400);
  color: var(--gold-200);
  box-shadow: var(--glow-gold-md);
  animation: pulseGoldAudio 2s infinite ease-in-out;
}

@keyframes pulseGoldAudio {
  0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 22px rgba(212, 175, 55, 0.7); }
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: rgba(22, 17, 11, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold-300);
  transition: transform var(--trans-smooth), opacity var(--trans-smooth);
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: rgba(6, 5, 4, 0.98);
  backdrop-filter: blur(24px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--gold-300);
  border-bottom-color: var(--gold-400);
}

/* ==========================================================================
   LUXURY BUTTONS & CTAS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sharp);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
  transition: transform var(--trans-smooth), box-shadow var(--trans-smooth), filter var(--trans-fast), background var(--trans-smooth);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary Imperial Gold Button */
.btn-gold {
  background: var(--grad-gold);
  color: #0d0a04;
  border-color: rgba(255, 247, 214, 0.6);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35), 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: var(--grad-shimmer);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.btn-gold:hover {
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6), 0 0 20px rgba(255, 240, 180, 0.4);
  filter: brightness(1.08);
}

.btn-gold:hover::before {
  left: 140%;
}

/* High Conversion Emerald / Peridot CTA */
.btn-emerald {
  background: var(--grad-emerald);
  color: #0a1804;
  font-weight: 800;
  border-color: rgba(200, 245, 120, 0.6);
  box-shadow: 0 4px 20px rgba(143, 209, 74, 0.38);
}

.btn-emerald:hover {
  box-shadow: 0 6px 30px rgba(143, 209, 74, 0.65), 0 0 25px rgba(200, 245, 120, 0.5);
  filter: brightness(1.1);
}

/* Ghost & Outline Button */
.btn-outline {
  background: rgba(18, 14, 10, 0.6);
  color: var(--gold-200);
  border: 1px solid rgba(212, 175, 55, 0.45);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-300);
  color: #ffffff;
  box-shadow: var(--glow-gold-sm);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 0.98rem;
}

.btn-block {
  width: 100%;
}

/* Specialist Action Groups */
.specialist-cta-actions, .sanctuary-btn-group {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.specialist-cta-actions .btn, .sanctuary-btn-group .btn {
  flex: 1 1 200px;
  min-width: 170px;
  text-align: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.86rem;
    letter-spacing: 0.05em;
  }
  .btn-lg {
    padding: 0.88rem 1.45rem;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
  }
  .specialist-cta-actions, .sanctuary-btn-group {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.65rem;
  }
  .specialist-cta-actions .btn, .sanctuary-btn-group .btn {
    width: 100%;
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.72rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    gap: 0.4rem;
  }
  .btn-lg {
    padding: 0.8rem 1.15rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
  }
}

/* ==========================================================================
   CARDS, PANELS & GLASSMORPHISM
   ========================================================================== */
.lux-card {
  position: relative;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-sharp);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
  transition: transform var(--trans-smooth), border-color var(--trans-smooth), box-shadow var(--trans-smooth), background var(--trans-smooth);
  overflow: hidden;
}

.lux-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.6;
}

.lux-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(240, 220, 134, 0.48);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

/* Ornate Corner Accent Box */
.ornate-corners {
  position: relative;
}

.ornate-corners::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  pointer-events: none;
}

/* ==========================================================================
   HERO SECTION — FULL CINEMATIC EGYPTIAN TEMPLE & GOLDEN SHIMMER
   ========================================================================== */
.hero-sanctuary {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vh, 4rem) 0;
  background: 
    linear-gradient(135deg, rgba(4, 3, 2, 0.94) 0%, rgba(14, 10, 6, 0.82) 48%, rgba(5, 4, 3, 0.93) 100%),
    url('../assets/kt-hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
  box-sizing: border-box;
}

/* Streaming Egyptian God-Rays */
.hero-god-rays {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 25%, rgba(255, 235, 140, 0.22) 0%, rgba(212, 175, 55, 0.12) 42%, transparent 75%);
  pointer-events: none;
  z-index: 2;
  animation: godRaysPulse 8s ease-in-out infinite alternate;
}

@keyframes godRaysPulse {
  0% { opacity: 0.65; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}

/* Live Golden Shimmer & Sparkling Stardust Canvas */
.hero-shimmer-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Glowing Hieroglyphic Cartouche Ribbons */
.hieroglyphic-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  font-size: 1.15rem;
  letter-spacing: 0.45em;
  color: var(--gold-400);
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.85);
  opacity: 0.42;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
  overflow: hidden;
}

.hieroglyphic-ribbon.top {
  top: 14px;
}

.hieroglyphic-ribbon.bottom {
  bottom: 14px;
}

.hero-container-inner {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 3.5vw, 4rem);
  align-items: center;
  width: 100%;
}

.hero-copy-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 1.25rem;
  background: rgba(26, 19, 11, 0.95);
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), var(--glow-gold-sm);
  width: fit-content;
}

.hero-badge-dot {
  width: 9px;
  height: 9px;
  background: var(--emerald-cta);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--emerald-cta);
  animation: pulseDot 2s infinite;
}

.hero-badge-text {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-200);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.1vw, 2.95rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin-bottom: 1.15rem;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.35);
}

.hero-headline span.gold-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #fff2be 22%, #e5be48 55%, #b88a1e 85%, #fcebb6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  filter: drop-shadow(0 2px 16px rgba(212, 175, 55, 0.45));
  margin-top: 0.25rem;
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 400;
  line-height: 1.68;
  color: rgba(242, 235, 222, 0.9);
  max-width: 530px;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero-actions-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-actions-wrap .btn {
  padding: 0.9rem 1.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  max-width: 550px;
}

.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--text-secondary);
}

.hero-trust-item strong {
  color: var(--gold-200);
  font-size: 0.88rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.15rem;
}

.hero-trust-icon {
  color: var(--gold-400);
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

/* ==========================================================================
   HERO VISUAL FRAME & MULTI-SLIDE ROYAL ALTAR
   ========================================================================== */
.hero-visual-frame {
  position: relative;
  perspective: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-showcase-altar {
  position: relative;
  width: 100%;
  max-width: 590px;
  height: clamp(420px, 58vh, 520px);
  border-radius: var(--radius-sharp);
  padding: 8px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.55), rgba(35, 24, 12, 0.95)), #080604;
  border: 2px solid rgba(212, 175, 55, 0.75);
  box-shadow: 0 25px 75px rgba(0, 0, 0, 0.95), 0 0 50px rgba(212, 175, 55, 0.32);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-showcase-altar::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  pointer-events: none;
  z-index: 5;
}

/* Slideshow Container */
.hero-slideshow-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1px;
  cursor: pointer;
  user-select: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060504;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transform: scale(1);
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active img {
  transform: scale(1.035);
}

/* Compact Glass Pill Caption — Never Obscures the Photos */
.hero-slide-caption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: auto;
  max-width: calc(100% - 135px);
  padding: 0.35rem 0.85rem;
  background: rgba(8, 6, 4, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 4;
  color: #ffffff;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.caption-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.15);
  padding: 2px 7px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-slide-caption .hero-slide-title {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Dedicated Large Royal Logo Slide in the Altar */
.hero-slide.hero-slide-logo {
  background: radial-gradient(circle at 50% 50%, #1a1309 0%, #080604 70%, #020202 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.hero-slide-logo .hero-logo-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  overflow: hidden;
}

.logo-sacred-rays {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(212, 175, 55, 0.16) 30deg,
    transparent 60deg,
    rgba(212, 175, 55, 0.16) 90deg,
    transparent 120deg,
    rgba(212, 175, 55, 0.16) 150deg,
    transparent 180deg,
    rgba(212, 175, 55, 0.16) 210deg,
    transparent 240deg,
    rgba(212, 175, 55, 0.16) 270deg,
    transparent 300deg,
    rgba(212, 175, 55, 0.16) 330deg,
    transparent 360deg
  );
  animation: rotateRays 28s linear infinite;
  pointer-events: none;
  filter: blur(1px);
}

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

.hero-logo-showcase-large {
  position: relative;
  width: min(84%, 340px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(5, 4, 3, 0.75) 85%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.35), inset 0 0 35px rgba(0, 0, 0, 0.85);
  z-index: 2;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s ease;
}

.hero-slide.hero-slide-logo.active .hero-logo-showcase-large {
  transform: scale(1.04);
  box-shadow: 0 0 65px rgba(212, 175, 55, 0.55), inset 0 0 35px rgba(0, 0, 0, 0.85);
}

.hero-logo-large-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.45));
}

/* Slideshow Controls */
.hero-slideshow-controls {
  position: absolute;
  bottom: 10px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
  background: rgba(8, 6, 4, 0.82);
  backdrop-filter: blur(10px);
  padding: 0.35rem 0.7rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-slide-arrow {
  background: none;
  border: none;
  color: var(--gold-300);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.2rem;
  transition: color var(--trans-fast), transform var(--trans-fast);
}

.hero-slide-arrow:hover {
  color: #ffffff;
  transform: scale(1.2);
}

.hero-slide-dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.slide-dot.active {
  width: 20px;
  border-radius: 10px;
  background: var(--gold-400);
  box-shadow: 0 0 10px var(--gold-400);
}

/* Floating Seal Top Right — Prominent Imperial Gold Logo */
.hero-floating-seal {
  position: absolute;
  top: -22px;
  right: -22px;
  width: clamp(96px, 11vw, 126px);
  height: clamp(96px, 11vw, 126px);
  border-radius: 50%;
  background: radial-gradient(circle, #22180d 20%, #090604 100%);
  border: 2.5px solid var(--gold-400);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.52), inset 0 0 18px rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.hero-floating-seal:hover {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.98), 0 0 50px rgba(212, 175, 55, 0.75);
}

.seal-rays-aura {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px dashed rgba(212, 175, 55, 0.6);
  animation: rotateRays 20s linear infinite;
  pointer-events: none;
}

.hero-floating-seal img {
  width: 96%;
  height: 96%;
  border-radius: 50%;
  object-fit: contain; /* 100% uncropped logo */
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
}

/* Signature Quote Banner below the Altar Frame */
.hero-floating-card-quote {
  position: relative;
  margin-top: 0.75rem;
  width: 100%;
  max-width: 590px;
  background: rgba(14, 10, 7, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-left: 3px solid var(--gold-400);
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 6;
  box-sizing: border-box;
}

.hero-floating-card-quote p {
  font-family: var(--font-quote);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--gold-200);
  line-height: 1.3;
  margin: 0;
}

.hero-floating-card-quote span {
  font-family: var(--font-display);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  white-space: nowrap;
}

/* ==========================================================================
   AEO & AI SEARCH / QUICK KNOWLEDGE SNIPPET
   ========================================================================== */
.aeo-knowledge-box {
  background: linear-gradient(145deg, rgba(26, 20, 14, 0.8), rgba(12, 9, 6, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 4px solid var(--gold-500);
  padding: 1.25rem 1.6rem;
  border-radius: var(--radius-sharp);
  margin-top: 0;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 5;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.aeo-knowledge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.aeo-knowledge-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.aeo-knowledge-text {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.aeo-knowledge-text strong {
  color: var(--gold-100);
}

/* ==========================================================================
   SERVICE SANCTUARIES (4 KIEMELT ÁG)
   ========================================================================== */
.services-quad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.service-sanctuary-card {
  position: relative;
  background: var(--bg-glass-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sharp);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform var(--trans-smooth), border-color var(--trans-smooth), box-shadow var(--trans-smooth);
}

.service-sanctuary-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 220, 134, 0.55);
  box-shadow: var(--shadow-card-hover);
}

.service-card-media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.service-sanctuary-card:hover .service-card-media img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 14, 10, 0.95) 100%);
}

.service-sanctuary-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(6, 5, 4, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-300);
  border-radius: 2px;
  z-index: 2;
}

.service-card-content {
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-num {
  font-family: var(--font-royal);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--gold-400);
  letter-spacing: 0.2em;
  margin-bottom: 0.4rem;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.service-card-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.service-card-link-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--trans-fast), gap var(--trans-fast);
}

.service-sanctuary-card:hover .service-card-link-text {
  color: var(--gold-100);
  gap: 0.7rem;
}

/* ==========================================================================
   THE FOUNDERS / RÓLUNK SZENTÉLY
   ========================================================================== */
.founders-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.founder-card {
  background: linear-gradient(160deg, rgba(22, 17, 11, 0.85), rgba(10, 8, 5, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sharp);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  position: relative;
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}

.founder-avatar-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid var(--gold-400);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
  overflow: hidden;
  flex-shrink: 0;
}

.founder-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-title-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-200);
  line-height: 1.2;
}

.founder-title-wrap .founder-role {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 0.2rem;
}

.founder-bio-text {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.founder-quote-pill {
  font-family: var(--font-quote);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-200);
  border-left: 2px solid var(--gold-400);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

.together-manifesto-banner {
  margin-top: 3rem;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 70%), linear-gradient(180deg, #151009, #080604);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-sharp);
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  position: relative;
}

.together-manifesto-banner blockquote {
  font-family: var(--font-quote);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  color: var(--gold-100);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.together-manifesto-banner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   INTERACTIVE ORACLE / QUIZ ("MELYIK KEZELÉS VALÓ NEKED?")
   ========================================================================== */
.oracle-sanctuary-shell {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(22, 17, 11, 0.92), rgba(8, 6, 4, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-sharp);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--glow-gold-sm);
  position: relative;
}

.oracle-progress-bar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.2rem;
  position: relative;
}

.oracle-step-indicators {
  display: flex;
  gap: 0.6rem;
}

.oracle-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: transparent;
  transition: all var(--trans-fast);
}

.oracle-step-dot.active {
  background: var(--gold-400);
  box-shadow: 0 0 12px var(--gold-400);
  border-color: var(--gold-200);
}

.oracle-step-dot.done {
  background: var(--gold-600);
}

.oracle-step-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--gold-200);
  margin-bottom: 1.5rem;
}

.oracle-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.oracle-option-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: rgba(15, 11, 8, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-sharp);
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: all var(--trans-smooth);
}

.oracle-option-btn:hover {
  background: rgba(36, 27, 16, 0.95);
  border-color: var(--gold-300);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.2);
}

.oracle-option-label {
  font-size: 1.05rem;
  font-weight: 500;
}

.oracle-option-icon {
  color: var(--gold-400);
  font-size: 1.2rem;
  transition: transform var(--trans-fast);
}

.oracle-option-btn:hover .oracle-option-icon {
  transform: translateX(4px);
  color: var(--gold-200);
}

/* Oracle Result Box */
.oracle-result-container {
  display: none;
  animation: fadeInLux 0.6s ease;
}

.oracle-result-container.active {
  display: block;
}

.oracle-result-header {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1.5rem;
  margin-bottom: 1.8rem;
}

.oracle-result-tag {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-cta);
  margin-bottom: 0.5rem;
}

.oracle-result-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gold-100);
  margin-bottom: 0.8rem;
}

.oracle-result-body {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.oracle-result-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  background: rgba(10, 8, 5, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-sharp);
  margin-bottom: 2.2rem;
}

.oracle-spec-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.2rem;
}

.oracle-spec-item span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.oracle-result-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   PRICE LIST & RITUAL CODEX
   ========================================================================== */
.pricing-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.price-tab-btn {
  padding: 0.65rem 1.3rem;
  background: rgba(18, 14, 10, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sharp);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.price-tab-btn:hover {
  border-color: var(--gold-400);
  color: var(--gold-200);
}

.price-tab-btn.active {
  background: var(--grad-gold);
  color: #0d0a04;
  border-color: rgba(255, 247, 214, 0.6);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  font-weight: 700;
}

.price-category-group {
  margin-bottom: 2.5rem;
}

.price-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, rgba(30, 23, 14, 0.9), rgba(14, 11, 7, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sharp);
  margin-bottom: 1px;
}

.price-category-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-200);
}

.price-item-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.1rem 1.5rem;
  background: rgba(14, 11, 7, 0.75);
  border-left: 1px solid rgba(212, 175, 55, 0.15);
  border-right: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: background var(--trans-fast);
}

.price-item-row:hover {
  background: rgba(28, 21, 13, 0.9);
}

.price-item-name {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-primary);
}

.price-item-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.price-item-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-300);
  white-space: nowrap;
}

.price-item-action {
  white-space: nowrap;
}

/* ==========================================================================
   PACKAGE BUILDER / RITUAL BASKET CALCULATOR
   ========================================================================== */
.package-calculator-panel {
  background: linear-gradient(145deg, rgba(22, 17, 11, 0.95), rgba(10, 8, 5, 0.98));
  border: 1px solid var(--gold-400);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), var(--glow-gold-md);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: var(--radius-sharp);
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.package-calc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
}

.package-calc-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-200);
}

.package-calc-list {
  list-style: none;
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
}

.package-calc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  font-size: 0.9rem;
}

.package-calc-item-remove {
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  font-size: 1.1rem;
  margin-left: 0.5rem;
}

.package-calc-total-wrap {
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  padding-top: 1.2rem;
  margin-bottom: 1.5rem;
}

.package-calc-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-100);
}

/* ==========================================================================
   OFFICIAL SALONIC LIVE ONLINE BOOKING EMBED
   ========================================================================== */
.salonic-embed-card {
  background: linear-gradient(160deg, rgba(22, 17, 11, 0.95), rgba(8, 6, 4, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-sharp);
  padding: clamp(1.2rem, 2.5vw, 2.2rem);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), var(--glow-gold-sm);
  position: relative;
  overflow: hidden;
}

.salonic-embed-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.salonic-embed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-300);
}

.salonic-embed-badge .live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 10px #25d366;
  animation: pulseSalonicDot 2s infinite ease-in-out;
}

@keyframes pulseSalonicDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.salonic-category-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  background: rgba(10, 8, 5, 0.85);
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  align-items: center;
}

.salonic-cat-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.salonic-cat-btn:hover {
  border-color: var(--gold-400);
  color: var(--gold-100);
  background: rgba(212, 175, 55, 0.12);
}

.salonic-cat-btn.active {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: #0b0906 !important;
  font-weight: 700;
  border-color: var(--gold-200);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
}

.salonic-specialists-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.salonic-spec-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 8, 5, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.salonic-spec-pill:hover {
  border-color: var(--gold-400);
  background: rgba(28, 22, 14, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.salonic-embed-wrapper {
  position: relative;
  width: 100%;
  min-height: 840px;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.salonic-embed-frame {
  width: 100%;
  height: 840px;
  border: none;
  display: block;
  background: #ffffff;
}

.salonic-fallback-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1rem 1.4rem;
  background: rgba(10, 8, 5, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .salonic-embed-wrapper {
    min-height: 720px;
  }
  .salonic-embed-frame {
    height: 720px;
  }
  .salonic-embed-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   BOOKING DUAL ENGINE: LUXURY WIZARD & SALONIC TABS
   ========================================================================== */
.booking-mode-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.booking-mode-tab-btn {
  background: rgba(14, 11, 7, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sharp);
  cursor: pointer;
  transition: all var(--trans-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-mode-tab-btn:hover {
  border-color: var(--gold-400);
  color: var(--gold-100);
  background: rgba(28, 22, 14, 0.95);
}

.booking-mode-tab-btn.active {
  background: var(--grad-gold);
  color: #0d0a04;
  border-color: rgba(255, 247, 214, 0.8);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.booking-wizard-card {
  background: linear-gradient(160deg, rgba(22, 17, 11, 0.95), rgba(8, 6, 4, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-sharp);
  padding: clamp(1.8rem, 3.5vw, 3rem);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), var(--glow-gold-sm);
}

.booking-steps-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  gap: 1rem;
}

.booking-step-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.booking-step-tab.active {
  color: var(--gold-200);
}

.booking-step-tab.active .step-num {
  background: var(--gold-400);
  color: #0d0a04;
  box-shadow: 0 0 10px var(--gold-400);
}

.booking-step-tab .step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Date & Time Slots Grid */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.time-slot-btn {
  padding: 0.75rem 0.5rem;
  background: rgba(14, 11, 7, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sharp);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.time-slot-btn:hover {
  border-color: var(--gold-400);
  background: rgba(30, 23, 14, 0.9);
}

.time-slot-btn.selected {
  background: var(--grad-gold);
  color: #0d0a04;
  border-color: rgba(255, 247, 214, 0.8);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Form Controls */
.lux-form-group {
  margin-bottom: 1.4rem;
}

.lux-form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 0.5rem;
}

.lux-form-input, .lux-form-select, .lux-form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(10, 8, 5, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-sharp);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.lux-form-input:focus, .lux-form-select:focus, .lux-form-textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.therapist-pick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.rosacea-actives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .therapist-pick-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .rosacea-actives-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
}

/* ==========================================================================
   GALLERY & SANCTUARY ATMOSPHERE
   ========================================================================== */
.gallery-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 1.2rem;
}

.gallery-mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sharp);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.gallery-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.gallery-mosaic-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.gallery-mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 4, 3, 0.8) 100%);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.gallery-mosaic-item:hover::after {
  opacity: 0.3;
}

.gallery-col-6 { grid-column: span 6; grid-row: span 2; }
.gallery-col-4 { grid-column: span 4; grid-row: span 2; }
.gallery-col-3 { grid-column: span 3; grid-row: span 1; }

/* Lightbox Modal */
.lux-lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 2, 2, 0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lux-lightbox-modal.active {
  display: flex;
}

.lux-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border: 2px solid var(--gold-400);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
  object-fit: contain;
}

.lux-lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: var(--gold-300);
  background: none;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   TESTIMONIALS / VENDÉGVÉLEMÉNYEK
   ========================================================================== */
.testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.testimonial-card {
  background: linear-gradient(160deg, rgba(22, 17, 11, 0.85), rgba(12, 9, 6, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-sharp);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: var(--gold-400);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-family: var(--font-quote);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 1rem;
}

.testimonial-author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  background: #1a140d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-300);
  font-size: 0.9rem;
}

.testimonial-author-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-200);
}

.testimonial-author-service {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ / GYIK ACCORDION
   ========================================================================== */
.faq-search-box {
  margin-bottom: 2.5rem;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 1.1rem 1.4rem 1.1rem 3.2rem;
  background: rgba(14, 11, 7, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-sharp);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.faq-search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-400);
  font-size: 1.2rem;
}

.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item-details {
  background: rgba(14, 11, 7, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sharp);
  transition: all var(--trans-smooth);
}

.faq-item-details[open] {
  background: rgba(24, 18, 11, 0.92);
  border-color: rgba(240, 220, 134, 0.45);
  box-shadow: var(--shadow-card);
}

.faq-summary-btn {
  padding: 1.3rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-200);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-summary-btn::-webkit-details-marker {
  display: none;
}

.faq-summary-icon {
  color: var(--gold-400);
  font-size: 1.4rem;
  transition: transform var(--trans-smooth);
}

.faq-item-details[open] .faq-summary-icon {
  transform: rotate(45deg);
}

.faq-content-body {
  padding: 0 1.6rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ==========================================================================
   BLOG / TUDÁSTÁR STYLES
   ========================================================================== */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2rem;
}

.blog-article-card {
  background: var(--bg-glass-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sharp);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans-smooth), border-color var(--trans-smooth), box-shadow var(--trans-smooth);
}

.blog-article-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 220, 134, 0.5);
  box-shadow: var(--shadow-card-hover);
}

.blog-card-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-article-card:hover .blog-card-thumb img {
  transform: scale(1.08);
}

.blog-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.8rem;
  background: rgba(6, 5, 4, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  border-radius: 2px;
}

.blog-card-content {
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.blog-card-excerpt {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ==========================================================================
   FOOTER (IMPERIAL SANCTUARY CLOSING)
   ========================================================================== */
.site-footer {
  position: relative;
  background: #040302;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: clamp(2.8rem, 4.5vw, 4.5rem) 0 2rem;
  color: var(--text-muted);
  z-index: 10;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 2px;
  background: var(--grad-gold);
  box-shadow: 0 0 20px var(--gold-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 4rem;
}

.footer-col-brand .footer-brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-400);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  margin-bottom: 1.2rem;
}

.footer-motto {
  font-family: var(--font-quote);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-200);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.4rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav-link {
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: color var(--trans-fast), transform var(--trans-fast);
  display: inline-block;
}

.footer-nav-link:hover {
  color: var(--gold-200);
  transform: translateX(4px);
}

.footer-contact-info p {
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact-info strong {
  color: var(--gold-200);
}

.footer-bottom-row {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

/* ==========================================================================
   STICKY MOBILE BOTTOM ACTION BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(6, 5, 4, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  z-index: 90;
  gap: 0.8rem;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.8);
}

/* Cookie Consent Banner */
.lux-cookie-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 360px;
  background: rgba(14, 11, 7, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-sharp);
  padding: 1.4rem;
  z-index: 1000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), var(--glow-gold-sm);
  display: none;
  animation: slideUpToast 0.4s ease;
}

.lux-cookie-toast.show {
  display: block;
}

@keyframes slideUpToast {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Toast Notifications */
.lux-toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  pointer-events: none;
}

.lux-toast {
  background: rgba(18, 14, 10, 0.95);
  border: 1px solid var(--gold-400);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8), var(--glow-gold-sm);
  color: var(--text-primary);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-sharp);
  font-size: 0.95rem;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: fadeInLux 0.3s ease;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes fadeInLux {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-height: 780px) and (min-width: 1081px) {
  .hero-headline {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  .hero-subtext {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 1.2rem;
  }
  .hero-actions-wrap {
    margin-bottom: 1.3rem;
  }
  .hero-trust-bar {
    padding-top: 1rem;
    gap: 0.9rem;
  }
  .hero-showcase-altar {
    height: clamp(420px, 58vh, 510px);
    max-width: 530px;
  }
}

@media (max-width: 1080px) {
  .hero-sanctuary {
    height: auto;
    max-height: none;
    min-height: calc(100vh - var(--header-height));
    padding: 3rem 0;
  }
  .hero-grid, .founders-duo-grid, .voucher-interactive-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-copy-column {
    align-items: center;
    text-align: center;
  }
  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions-wrap {
    justify-content: center;
  }
  .hero-trust-bar {
    margin: 0 auto;
    max-width: 520px;
    text-align: left;
  }
  .hero-visual-frame {
    max-width: 580px;
    margin: 0 auto;
  }
  .hero-showcase-altar {
    max-width: 100%;
    height: 480px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-col-6, .gallery-col-4, .gallery-col-3 {
    grid-column: span 6;
    grid-row: span 2;
  }
}

@media (max-width: 1140px) {
  .nav-menu-desktop, .header-cta-btn {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
}

@media (max-width: 860px) {
  .mobile-sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
  .lux-cookie-toast {
    left: 1rem;
    right: 1rem;
    max-width: calc(100% - 2rem);
    bottom: calc(75px + env(safe-area-inset-bottom));
  }
  .gallery-mosaic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-col-6, .gallery-col-4, .gallery-col-3 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .hero-headline {
    font-size: 1.85rem;
  }
  .hero-showcase-altar {
    height: 340px;
  }
  .hero-floating-card-quote {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .price-item-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding: 1rem 0.9rem;
  }
  .price-item-val {
    font-size: 1.15rem;
    color: var(--gold-200);
    font-weight: 700;
  }
  .price-item-action .add-to-calc-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.55rem 0.8rem;
  }
  .salonic-specialists-quick {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .salonic-category-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }
  .salonic-embed-wrapper {
    min-height: 640px;
  }
  .salonic-embed-frame {
    height: 640px;
  }
  .vip-card-preview-stage {
    padding: 1.2rem 1rem;
    gap: 0.8rem;
  }
  .vip-card-amount {
    font-size: 1.75rem;
  }
  .vip-card-recipient {
    font-size: 1.15rem;
  }
  .vip-card-brand-title {
    font-size: 0.95rem;
  }
  .voucher-action-bar {
    flex-direction: column;
    width: 100%;
  }
  .arlista-filter-nav {
    gap: 0.4rem;
  }
  .arlista-tab-btn {
    padding: 0.6rem 0.95rem;
    font-size: 0.84rem;
    width: 100%;
    justify-content: center;
  }
  .specialist-arlista-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.2rem;
  }
  .specialist-arlista-banner .btn {
    width: 100%;
  }
  .lux-toast-container {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    align-items: stretch;
  }
  .lux-toast {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
  .together-manifesto-banner {
    padding: 1.5rem 1rem;
  }
  .booking-mode-tabs {
    flex-direction: column;
  }
  .booking-mode-tab-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   13. BEFORE / AFTER COMPARISON SLIDER & 3D SANCTUARY
   ========================================================================== */
.before-after-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2.4rem, 4.2vw, 3.8rem) 0;
}

.ba-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.ba-tab-btn {
  background: rgba(18, 14, 10, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--text-secondary);
  padding: 0.65rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 40px;
  cursor: pointer;
  transition: all var(--trans-smooth);
}

.ba-tab-btn:hover {
  border-color: var(--gold-300);
  color: var(--gold-100);
  transform: translateY(-2px);
}

.ba-tab-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(180, 140, 30, 0.15));
  border-color: var(--gold-400);
  color: var(--gold-100);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Stepper Navigation Bar */
.ba-stepper-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 1.5rem auto;
  gap: 1rem;
  padding: 0.5rem 0.9rem;
  background: rgba(14, 11, 8, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 40px;
}

.ba-step-btn {
  background: rgba(22, 18, 14, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-200);
  padding: 0.55rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--trans-smooth);
}

.ba-step-btn:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(180, 140, 30, 0.2));
  border-color: var(--gold-400);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.28);
}

.ba-step-indicator {
  font-family: var(--font-royal);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  color: var(--gold-300);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.ba-stage-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(12, 9, 6, 0.88);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  color: var(--gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 12;
  transition: all var(--trans-smooth);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.75);
}

.ba-stage-arrow:hover {
  background: var(--gold-400);
  color: #0c0906;
  border-color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.85);
}

.ba-stage-arrow.prev { left: 0.8rem; }
.ba-stage-arrow.next { right: 0.8rem; }

@media (max-width: 600px) {
  .ba-stepper-bar {
    padding: 0.4rem;
    gap: 0.4rem;
  }
  .ba-step-btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
  .ba-step-indicator {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
  .ba-stage-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .ba-stage-arrow.prev { left: 0.4rem; }
  .ba-stage-arrow.next { right: 0.4rem; }
}

.ba-comparison-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.8rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(14, 11, 8, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-sharp);
  padding: 2.4rem;
  box-shadow: var(--shadow-card), 0 0 35px rgba(0, 0, 0, 0.9);
}

.ba-slider-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85);
  user-select: none;
  touch-action: pan-y;
  background: #080605;
  transition: aspect-ratio 0.3s ease;
}

.ba-slider-stage.is-landscape {
  aspect-ratio: 16 / 10;
  max-width: 580px;
}

.ba-image-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.ba-image-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
  clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
  will-change: clip-path;
}

.ba-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos, 50%);
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold-300), #ffffff, var(--gold-300), transparent);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.95);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
}

.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #faeb9e, #9e7512);
  color: #0c0906;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 18px rgba(212, 175, 55, 0.85);
  border: 2px solid #ffffff;
  pointer-events: none;
}

.ba-range-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
}

.ba-badge-label {
  position: absolute;
  top: 1.1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(8, 6, 4, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-200);
  border-radius: 3px;
  z-index: 6;
  pointer-events: none;
}

.ba-badge-before {
  left: 1.1rem;
}

.ba-badge-after {
  right: 1.1rem;
  color: var(--emerald-cta);
  border-color: rgba(78, 205, 143, 0.45);
}

.ba-details-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ba-treatment-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  color: var(--gold-100);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.ba-treatment-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.ba-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.25rem 0.65rem;
  font-size: 0.8rem;
  color: var(--gold-300);
  border-radius: 2px;
}

.ba-treatment-desc {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.ba-key-points {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ba-key-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.ba-key-points li span.icon {
  color: var(--gold-400);
  font-weight: bold;
}


@media (max-width: 960px) {
  .ba-comparison-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.6rem;
  }
}

/* ==========================================================================
   INTERACTIVE BEFORE & AFTER GALLERY GRID & CARDS
   ========================================================================== */
.ba-gallery-section {
  margin-top: 3.5rem;
}

.ba-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.ba-gallery-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.ba-filter-chip {
  background: rgba(18, 14, 10, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--trans-smooth);
}

.ba-filter-chip:hover {
  border-color: var(--gold-400);
  color: #fff;
  background: rgba(212, 175, 55, 0.15);
}

.ba-filter-chip.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(180, 140, 30, 0.2));
  border-color: var(--gold-400);
  color: var(--gold-100);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.ba-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ba-gallery-card {
  background: linear-gradient(160deg, rgba(22, 17, 11, 0.95), rgba(12, 9, 6, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--trans-smooth), border-color var(--trans-smooth), box-shadow var(--trans-smooth);
  position: relative;
}

.ba-gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-400);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 22px rgba(212, 175, 55, 0.3);
}

.ba-gallery-card.active {
  border-color: var(--gold-300);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
}

.ba-gallery-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #080605;
  display: flex;
}

.ba-gallery-thumb-half {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ba-gallery-thumb-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.ba-gallery-card:hover .ba-gallery-thumb-half img {
  transform: scale(1.08);
}

.ba-gallery-thumb-badge {
  position: absolute;
  top: 0.5rem;
  padding: 0.2rem 0.5rem;
  background: rgba(8, 6, 4, 0.85);
  backdrop-filter: blur(4px);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

.ba-gallery-thumb-badge.before {
  left: 0.5rem;
  color: var(--gold-200);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.ba-gallery-thumb-badge.after {
  right: 0.5rem;
  color: var(--emerald-cta);
  border: 1px solid rgba(78, 205, 143, 0.4);
}

.ba-gallery-thumb-split {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, var(--gold-300), transparent);
  transform: translateX(-50%);
  z-index: 3;
}

.ba-gallery-thumb-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-400);
  color: #0c0906;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.85);
  border: 1px solid #fff;
}

.ba-gallery-info {
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.ba-gallery-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  margin-bottom: 0.35rem;
}

.ba-gallery-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.ba-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold-200);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  transition: all var(--trans-fast);
  margin-top: auto;
}

.ba-gallery-card:hover .ba-gallery-btn {
  background: var(--gold-400);
  color: #0c0906;
  border-color: #fff;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   14. INTERACTIVE VIP GOLD VOUCHER DESIGNER
   ========================================================================== */
.voucher-interactive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .voucher-interactive-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.vip-card-preview-wrapper {
  position: relative;
  perspective: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vip-card-preview-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: auto !important;
  aspect-ratio: auto !important;
  background: radial-gradient(circle at 35% 25%, #241a0e 0%, #0d0905 60%, #020202 100%);
  border: 2px solid var(--gold-400);
  border-radius: 12px;
  padding: 1.8rem 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.35), inset 0 0 20px rgba(212, 175, 55, 0.1);
  overflow: hidden;
  user-select: none;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  box-sizing: border-box;
}

.vip-card-preview-stage::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}

/* Watermark Lotus Logo in background */
.vip-card-preview-stage::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 260px;
  height: 260px;
  background: url('../assets/logo-seal.webp') no-repeat center center;
  background-size: contain;
  opacity: 0.12;
  pointer-events: none;
  border-radius: 50%;
  z-index: 1;
}

/* Holographic dynamic gold sheen across the card surface */
.vip-card-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 235, 170, 0.12) 45%,
    rgba(212, 175, 55, 0.28) 50%,
    rgba(255, 235, 170, 0.12) 55%,
    transparent 70%
  );
  background-size: 250% 250%;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.vip-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  position: relative;
  z-index: 3;
}

.vip-card-brand-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.vip-card-seal {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-400);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  object-fit: cover;
}

.vip-card-brand-title {
  font-family: var(--font-royal);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--gold-200);
  line-height: 1.15;
  display: block;
}

.vip-card-brand-sub {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  display: block;
}

.vip-card-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.vip-card-mid {
  margin: 0.2rem 0;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.vip-card-amount {
  font-family: var(--font-royal);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-100);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.vip-card-recipient-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.vip-card-recipient-label {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-400);
  font-family: var(--font-display);
  display: block;
}

.vip-card-recipient {
  font-family: var(--font-quote);
  font-size: 1.35rem;
  color: #ffffff;
  font-style: italic;
  letter-spacing: 0.03em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  line-height: 1.25;
}

.vip-card-note {
  font-family: var(--font-quote);
  font-size: 0.90rem;
  color: var(--gold-300);
  font-style: italic;
  line-height: 1.3;
  opacity: 0.92;
}

.vip-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 0.8rem;
  font-size: 0.72rem;
  color: var(--gold-400);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 3;
  margin-top: 0.2rem;
}

.voucher-action-bar {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  width: 100%;
  max-width: 520px;
}

/* Print styling for printing voucher as formal gift certificate */
@media print {
  body * {
    visibility: hidden;
  }
  .vip-card-preview-stage, .vip-card-preview-stage * {
    visibility: visible;
  }
  .vip-card-preview-stage {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    width: 600px;
    height: 380px;
    box-shadow: none !important;
    border: 3px solid #b8860b !important;
    background: #0d0905 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* ==========================================================================
   15. 24K GOLD LUXURY MOUSE CURSOR & CARD SPOTLIGHT
   ========================================================================== */
.gold-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffffff, 0 0 16px #ffd700, 0 0 28px #d4af37;
  pointer-events: none;
  z-index: 9999999;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.04s linear;
  will-change: transform;
}

.gold-cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  margin-left: -19px;
  margin-top: -19px;
  border: 1.5px solid rgba(255, 215, 0, 0.85);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.04) 60%, transparent 80%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
  pointer-events: none;
  z-index: 9999998;
  opacity: 0;
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              margin 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease,
              background 0.25s ease,
              box-shadow 0.25s ease,
              opacity 0.3s ease;
  will-change: transform;
}

.gold-cursor-aura.hovering {
  width: 58px;
  height: 58px;
  margin-left: -29px;
  margin-top: -29px;
  border-color: #ffe066;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.35) 0%, rgba(212, 175, 55, 0.12) 65%, transparent 85%);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.75), inset 0 0 15px rgba(212, 175, 55, 0.4);
}

.gold-sparkle-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  margin-top: -2.5px;
  background: #fff6c4;
  border-radius: 50%;
  box-shadow: 0 0 10px #ffe57f, 0 0 18px #d4af37;
  pointer-events: none;
  z-index: 9999997;
  animation: fadeSparkle 0.65s cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
}

@keyframes fadeSparkle {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.15) translateY(9px);
  }
}

/* Card Mouse-Follow 24K Gold Spotlight Effect */
.lux-card, .ornate-corners, .vip-card-preview-stage, .hero-showcase-altar {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
}

.lux-card::before, .ornate-corners::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--mouse-x) var(--mouse-y),
    rgba(212, 175, 55, 0.12),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.lux-card:hover::before, .ornate-corners:hover::before {
  opacity: 1;
}

/* ==========================================================================
   ARLISTA FILTER TABS & SPECIALIST SECTIONS
   ========================================================================== */
.arlista-filter-nav {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.arlista-tab-btn {
  background: rgba(18, 14, 10, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--trans-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.arlista-tab-btn:hover {
  border-color: var(--gold-300);
  color: var(--gold-100);
  background: rgba(35, 26, 17, 0.95);
  transform: translateY(-2px);
}

.arlista-tab-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(18, 14, 10, 0.95));
  border: 1px solid var(--gold-400);
  color: var(--gold-100);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.specialist-arlista-banner {
  background: linear-gradient(135deg, rgba(25, 19, 13, 0.95), rgba(12, 9, 6, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.specialist-contact-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.specialist-contact-card {
  background: rgba(18, 14, 10, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform var(--trans-smooth), border-color var(--trans-smooth), box-shadow var(--trans-smooth);
}

.specialist-contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-card-hover);
}

.specialist-contact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.specialist-contact-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
}

/* ==========================================================================
   16. RESPONSIVE ARLISTA GRID & MENS SHOWCASE
   ========================================================================== */
.arlista-layout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .arlista-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.kozmetika-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .kozmetika-duo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.men-grooming-showcase {
  background: linear-gradient(135deg, rgba(22, 16, 11, 0.95), rgba(12, 8, 5, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 4px;
  overflow: hidden;
  margin: 1.5rem 0 1rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.men-grooming-showcase img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

.men-grooming-showcase-content {
  padding: 1.2rem 1.4rem;
}

@media (max-width: 768px) {
  .men-grooming-showcase {
    grid-template-columns: 1fr;
  }
  .men-grooming-showcase img {
    max-height: 200px;
  }
}

/* ==========================================================================
   19. PROMOTIONAL POPUP MODAL (20% KEDVEZMÉNY OKTÓBER 31-IG)
   ========================================================================== */
.kt-promo-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 3, 2, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 100000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  cursor: pointer;
}

.kt-promo-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.kt-promo-modal {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: auto;
  background: radial-gradient(circle at top, rgba(38, 28, 16, 0.99) 0%, rgba(14, 11, 7, 0.99) 100%);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 8px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.98), 0 0 45px rgba(212, 175, 55, 0.25);
  padding: 2.8rem 2rem 2rem;
  text-align: center;
  transform: scale(0.96) translateY(15px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.kt-promo-modal-backdrop.is-open .kt-promo-modal {
  transform: scale(1) translateY(0);
}

/* Decorative Gold Top Edge */
.kt-promo-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-400), var(--gold-200), var(--gold-400), transparent);
  z-index: 10;
}

.kt-promo-close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(28, 22, 14, 0.96);
  border: 1.5px solid var(--gold-400);
  color: #efe8dc;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 70;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.85);
  transition: all 0.2s ease;
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.kt-promo-close-btn:hover,
.kt-promo-close-btn:active {
  background: var(--gold-400);
  color: #0b0805;
  border-color: #fff;
  transform: scale(1.08);
}

.kt-promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-300);
  padding: 0.35rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 30px;
  margin-bottom: 1.1rem;
}

.kt-promo-discount-badge {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff7dc 0%, #e6ca65 40%, #b8860b 80%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.kt-promo-flyer-wrap {
  text-align: center;
  margin: 1rem auto 1.2rem;
  max-width: 320px;
}

.kt-promo-flyer-img {
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  display: block;
  margin: 0 auto;
}

.kt-promo-title {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-100, #f7eed8);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.kt-promo-desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-secondary, #dcd4c7);
  margin-bottom: 1.5rem;
}

.kt-promo-perks {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.4rem;
  text-align: left;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: rgba(10, 8, 5, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  padding: 1rem 1.2rem;
}

.kt-promo-perks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #efe8dc;
}

.kt-promo-perks li .icon {
  color: var(--gold-400);
  font-size: 1rem;
  font-weight: bold;
}

.kt-promo-validity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--gold-300);
  font-weight: 600;
  margin-bottom: 1.5rem;
  background: rgba(212, 175, 55, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.kt-promo-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: stretch;
}

.kt-promo-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: linear-gradient(135deg, #e4c466, #bf9427);
  color: #0c0905 !important;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.45);
  transition: all 0.3s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.kt-promo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.65);
  filter: brightness(1.08);
}

.kt-promo-dismiss-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #efe8dc;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.85rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  width: 100%;
  transition: all 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.kt-promo-dismiss-btn:hover,
.kt-promo-dismiss-btn:active {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-400);
  color: #fff;
}

/* Floating Trigger Badge */
.kt-promo-floating-badge {
  position: fixed;
  bottom: 85px;
  right: 20px;
  background: linear-gradient(135deg, rgba(28, 22, 14, 0.95), rgba(16, 12, 8, 0.98));
  border: 1px solid var(--gold-400);
  color: var(--gold-200);
  padding: 0.55rem 1rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.35);
  z-index: 9980;
  transition: all 0.3s ease;
  animation: promoPulse 3s infinite;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.kt-promo-floating-badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.6);
  border-color: #fff;
  color: #fff;
}

@keyframes promoPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 12px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.65); }
}

@media (max-width: 600px) {
  .kt-promo-modal-backdrop {
    padding: 1.5rem 0.75rem calc(1.5rem + env(safe-area-inset-bottom));
  }
  .kt-promo-modal {
    padding: 2.2rem 1.1rem 1.6rem;
    border-radius: 6px;
  }
  .kt-promo-close-btn {
    top: 0.5rem;
    right: 0.5rem;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }
  .kt-promo-discount-badge {
    font-size: 2.3rem;
  }
  .kt-promo-title {
    font-size: 1.2rem;
  }
  .kt-promo-flyer-wrap {
    max-width: 210px;
    margin: 0.6rem auto 0.8rem;
  }
  .kt-promo-flyer-img {
    max-height: 150px;
  }
  .kt-promo-perks {
    padding: 0.8rem 1rem;
    gap: 0.45rem;
    font-size: 0.85rem;
  }
  .kt-promo-floating-badge {
    bottom: calc(75px + env(safe-area-inset-bottom));
    right: 12px;
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }
}

.booking-promo-applied-banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(30, 22, 12, 0.9));
  border: 1px solid var(--gold-400);
  border-radius: 6px;
  padding: 0.9rem 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.25);
  animation: fadeIn 0.4s ease;
}




