/* ==========================================
   Optical Showroom - Premium Parallax CSS
   ========================================== */

/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800;900&family=Cormorant+Garant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #252624;
  --primary-rgb: 37, 38, 36;
  --accent-blue: #B6A58E;
  --accent-blue-rgb: 182, 165, 142;
  --gold: #B6A58E;
  --gold-rgb: 182, 165, 142;
  --white: #FFFFFF;
  --light-gray: #F8FAFC;
  --text: #FAF8F5;
  --text-muted: #DDD5CA;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Baloo Bhaijaan 2', sans-serif;
  --font-nav: 'Jost', sans-serif;
  --font-display: 'Cormorant Garant', serif;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(182, 165, 142, 0.22);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

/* Reset & Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  background-color: var(--primary);
}

/* Lenis Smooth Scroll Compatibility */
html.lenis, html.lenis body {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-aos] {
  transition-property: none !important;
  transform: none !important;
}

body {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--primary);
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative;
}

main, section, header, footer {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Coffee-Tech Custom Floating Inertia Scrollbar */
body::-webkit-scrollbar {
  display: none;
}
body {
  -ms-overflow-style: none;
}
html {
  scrollbar-width: none;
}

.custom-scrollbar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.custom-scrollbar.visible {
  opacity: 1;
  pointer-events: auto;
}

.custom-scrollbar .custom-scrollbar-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: auto;
}

.custom-scrollbar .custom-scrollbar-thumb {
  position: absolute;
  left: 2px;
  right: 2px;
  min-height: 40px;
  background: var(--gold);
  border-radius: 6px;
  pointer-events: auto;
  cursor: grab;
  transition: background 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 10px rgba(182, 165, 142, 0.4);
}

.custom-scrollbar .custom-scrollbar-thumb:hover {
  background: #C7B7A2;
  box-shadow: 0 0 14px rgba(182, 165, 142, 0.7);
}

.custom-scrollbar .custom-scrollbar-thumb:active {
  cursor: grabbing;
}

@media (hover: none), (max-width: 768px) {
  .custom-scrollbar {
    display: none !important;
  }
}

/* Coffee-Tech Autoscroll Indicator */
.cft-autoscroll-indicator {
  position: fixed;
  z-index: 100000;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  border: 1px solid rgba(182, 165, 142, 0.4);
  background: rgba(37, 38, 36, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.cft-autoscroll-indicator::before,
.cft-autoscroll-indicator::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.cft-autoscroll-indicator::before {
  top: 3px;
  border-bottom: 5px solid var(--gold);
}
.cft-autoscroll-indicator::after {
  bottom: 3px;
  border-top: 5px solid var(--gold);
}
html.cft-autoscrolling,
html.cft-autoscrolling * {
  cursor: all-scroll !important;
}

/* Section Mask & Split Line Reveals (Coffee-Tech Style) */
.cft-split-line-wrap {
  display: block;
  overflow: hidden;
  position: relative;
}

.cft-split-line {
  display: inline-block;
  will-change: transform, opacity, clip-path;
}

.cft-section-reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

/* Section Image Parallax Scrub (Coffee-Tech Style) */
.cft-parallax-wrap {
  overflow: hidden;
  position: relative;
}

.cft-parallax-wrap img,
.cft-parallax-img {
  will-change: transform;
  transform-origin: center center;
}

/* Smart Header Dynamics */
.navbar-custom {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease !important;
}

.navbar-custom.header-hidden {
  transform: translateY(-110%) !important;
}

.navbar-custom.scroll-deep {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  background: rgba(37, 38, 36, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* Footer Scrub Reveal Layer */
.footer-reveal-container {
  position: relative;
  will-change: transform;
}

/* Structural Editorial Grid Lines */
.editorial-grid-container {
  position: relative;
  width: 100%;
}

.grid-line-vertical {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 2;
}

.grid-line-v-1 { left: 15%; }
.grid-line-v-2 { left: 50%; }
.grid-line-v-3 { left: 85%; }

.border-section-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.border-col-right {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* Ambient Decorative Orbs */
.ambient-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  filter: blur(140px);
  animation: floatOrb 30s infinite alternate ease-in-out;
}
.orb-gold {
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: 10%;
  left: 2%;
}
.orb-blue {
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
  top: 50%;
  right: 2%;
  animation-delay: -8s;
}
.orb-gold-2 {
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: 8%;
  left: 10%;
  animation-delay: -15s;
}
@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 60px) scale(1.1); }
  100% { transform: translate(-40px, -60px) scale(0.95); }
}

/* Background Typographic Marquees */
.marquee-bg-text {
  position: absolute;
  font-family: var(--font-headings);
  font-size: 15rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.015);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  letter-spacing: 0.15em;
  will-change: transform;
}

/* Preloader (Percentage count style) */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.preloader-count {
  font-family: var(--font-headings);
  font-size: 4.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

@media (max-width: 767.98px) {
  .preloader-count {
    font-size: 3.5rem;
    margin-bottom: 14px;
  }
}

@media (max-width: 575.98px) {
  .preloader-count {
    font-size: 2.8rem;
    margin-bottom: 12px;
  }
}

.preloader-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-logo-img {
  height: 48px;
  width: auto;
  opacity: 0.9;
  animation: logoPulse 2s infinite ease-in-out;
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1050;
  background: transparent;
}

.scroll-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
}

/* Split-Text Mask Reveal Classes */
.reveal-text-char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.reveal-text-char {
  display: inline-block;
  will-change: transform;
  transform: translateY(100%);
}

/* Custom Interactive Cursor & Snapping */
.custom-cursor-dot,
.custom-cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
}

.custom-cursor-outline {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  opacity: 0.65;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
}

/* Snapped state */
.custom-cursor-outline.snapped {
  width: 60px;
  height: 60px;
  border-color: var(--white);
  border-width: 2px;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Hover state with text tooltip */
.custom-cursor-outline.has-text {
  width: 90px;
  height: 90px;
  background-color: rgba(212, 175, 55, 0.95);
  border-color: var(--gold);
  color: var(--primary);
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

@media (pointer: coarse) {
  .custom-cursor-dot,
  .custom-cursor-outline {
    display: none;
  }
}

/* =============================================
   PREMIUM NAVBAR — Redesigned
   ============================================= */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 16px 0;
  transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s ease,
              box-shadow 0.5s ease;
  background: linear-gradient(180deg, rgba(37, 38, 36, 0.90) 0%, rgba(37, 38, 36, 0) 100%);
  border-bottom: none;
  z-index: 1000;
}

.navbar-custom.navbar-scrolled {
  background-color: rgba(37, 38, 36, 0.96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(182, 165, 142, 0.25);
}

/* Brand logo */
.navbar-custom .navbar-brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0;
}

.navbar-logo {
  height: 68px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 12px rgba(212, 175, 55, 0.35));
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-custom.navbar-scrolled .navbar-logo {
  height: 54px;
}

.navbar-logo.logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.navbar-custom .navbar-brand:hover .logo-default {
  opacity: 0;
}

.navbar-custom .navbar-brand:hover .logo-hover {
  opacity: 1;
}

/* Nav items wrapper — spaced for interactive luxury pills */
.navbar-custom .navbar-nav {
  align-items: center;
  gap: 6px;
}

/* Nav links — clean default, luxury brand effect strictly on hover */
.navbar-custom .nav-link {
  font-family: var(--font-nav);
  font-size: 0.80rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.72);
  padding: 8px 16px !important;
  margin: 0 2px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  transform: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

/* On hover ONLY: brand logo hover effect (gold tint, gold border, lift & scale, glowing shadow) */
.navbar-custom .nav-link:hover {
  color: #FFFFFF;
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.25);
  text-shadow: 0 0 12px rgba(182, 165, 142, 0.7);
}

/* Active state — elegant gold text */
.navbar-custom .nav-link.active {
  color: var(--gold);
}

/* Hamburger toggler */
.navbar-custom .navbar-toggler {
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 6px 10px;
  transition: all 0.3s ease;
}

.navbar-custom .navbar-toggler:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.55);
}

.navbar-custom .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Adjust nav-link sizing on standard screen resolutions to prevent wrapping */
@media (min-width: 992px) and (max-width: 1400px) {
  .navbar-custom .nav-link {
    margin: 0 1px;
    font-size: 0.73rem;
    letter-spacing: 0.13em;
    padding: 6px 10px !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-custom .navbar-collapse {
    background: rgba(25, 26, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(182, 165, 142, 0.25);
    border-radius: 16px;
    padding: 16px 20px;
    margin-top: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  }

  .navbar-custom .navbar-nav {
    align-items: stretch;
    gap: 8px;
  }

  .navbar-custom .nav-link {
    font-size: 0.88rem;
    padding: 10px 16px !important;
    text-align: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    margin: 2px 0;
  }

  .navbar-custom .nav-link:hover,
  .navbar-custom .nav-link:active {
    background: rgba(182, 165, 142, 0.15);
    color: var(--gold);
    transform: none;
  }
}

/* Hero Cinematic Frame Section */
.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.hero-frame-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

@media (min-width: 992px) {
  .hero-frame-container {
    padding-top: 60px;
  }
}

.hero-video-bg-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.88) contrast(1.05);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 38, 36, 0.38) 0%, rgba(25, 26, 24, 0.78) 100%),
              radial-gradient(circle at 70% 45%, rgba(37, 38, 36, 0.18) 0%, rgba(25, 26, 24, 0.74) 85%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--white);
  pointer-events: auto;
}

/* Hero animated elements — hidden until JS sets .js-loaded on body.
   This prevents the flash-then-snap jank from GSAP overriding CSS opacity. */
.hero-subtitle-animate,
.hero-title-reveal span,
.hero-desc-animate,
.hero-btn-animate .btn-premium,
.floating-glasses,
.scroll-indicator {
  will-change: opacity, transform;
}

/* When JS has loaded: pre-hide elements so GSAP animates them in cleanly */
body.js-loaded .hero-subtitle-animate,
body.js-loaded .hero-title-reveal span,
body.js-loaded .hero-desc-animate,
body.js-loaded .hero-btn-animate .btn-premium,
body.js-loaded .floating-glasses,
body.js-loaded .scroll-indicator {
  opacity: 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

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

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Premium Action Buttons */
.hero-buttons {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn-premium {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.80rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1.2;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.btn-premium.btn-sm,
.btn-premium-sm {
  padding: 8px 18px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.06em !important;
}

.btn-premium-primary {
  background-color: var(--gold);
  color: var(--primary);
  border: 1px solid var(--gold);
}

.btn-premium-primary:hover {
  background-color: transparent;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(182, 165, 142, 0.35);
  transform: translateY(-2px);
}

.btn-premium-secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-left: 0;
}

.btn-premium-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(182, 165, 142, 0.2);
  transform: translateY(-2px);
}

/* Floating Glasses parallax graphics */
.floating-glasses {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 36%;
  max-width: 480px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7));
  animation: floatGlasses 7s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes floatGlasses {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(calc(-50% - 18px)) rotate(3deg); }
}

/* =============================================
   COFFEE-TECH HERO 3D ANIMATED SHOWCASE
   ============================================= */
.hero-glow {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translate(30%, -50%) scale(0.9);
  width: 580px;
  height: 580px;
  background: radial-gradient(ellipse at center, rgba(182, 165, 142, 0.4) 0%, rgba(182, 165, 142, 0.12) 45%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

@keyframes heroGlowPulse {
  0% { transform: translate(30%, -50%) scale(0.85); opacity: 0.65; }
  100% { transform: translate(30%, -50%) scale(1.18); opacity: 1; }
}



.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-indicator-mouse {
  width: 20px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  position: relative;
  margin-top: 10px;
}

.scroll-indicator-wheel {
  width: 3px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.6s infinite;
}

/* Section Header styling */
.section-header {
  margin-bottom: 28px;
  text-align: center;
  position: relative;
  z-index: 4;
}

.section-subtitle {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 4px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.section-header p,
.section-header-desc,
.section-desc {
  font-size: 1.08rem;
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.section-header-line {
  width: 48px;
  height: 2px;
  background-color: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
  display: block;
}

/* General Section Setup */
.py-section {
  padding: 70px 0;
  background-color: var(--primary);
  position: relative;
  z-index: 3;
}

.bg-secondary-section {
  background-color: #1c1d1a;
}

/* Pinned Horizontal Collections Section (Signature Parallax Effect) */
.horizontal-scroll-section {
  height: auto;
  background-color: #1c1d1a;
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(182, 165, 142, 0.12);
}

.horizontal-scroll-viewport {
  position: relative;
  height: auto;
  width: 100%;
}

.horizontal-scroll-track {
  display: flex;
  flex-wrap: wrap;
  padding: 80px 24px;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.horizontal-scroll-card-wrap {
  width: 100%;
  max-width: 385px;
  display: flex;
  flex-direction: column;
}

.horizontal-scroll-intro {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  color: var(--white);
  text-align: center;
}

@media (min-width: 992px) {
  body.js-horizontal-scroll .horizontal-scroll-section {
    height: 100vh;
    overflow: hidden;
  }

  body.js-horizontal-scroll .horizontal-scroll-viewport {
    width: 100vw;
    height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    position: absolute;
    top: 90px;
    left: 0;
    overflow: hidden;
  }

  body.js-horizontal-scroll .horizontal-scroll-track {
    flex-wrap: nowrap;
    will-change: transform;
    padding-left: 10vw;
    padding-right: 18vw;
    gap: 0;
    justify-content: flex-start;
  }

  body.js-horizontal-scroll .horizontal-scroll-card-wrap {
    flex-shrink: 0;
    width: 385px;
    min-width: 385px;
    max-width: 385px;
    margin-right: 60px;
    display: flex;
    flex-direction: column;
  }

  .horizontal-scroll-intro {
    flex-shrink: 0;
    width: 440px;
    min-width: 440px;
    max-width: 440px;
    margin-right: 120px;
    text-align: left;
  }

  .horizontal-scroll-intro .section-header-line {
    margin: 12px 0 0;
  }
}

.marquee-bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 15vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  letter-spacing: 0.05em;
  font-family: var(--font-headings);
}

.horizontal-scroll-intro h2,
.horizontal-scroll-intro h3 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.12;
  color: #FFFFFF;
}

.horizontal-scroll-intro .section-subtitle {
  color: var(--gold) !important;
}

.horizontal-scroll-intro p:not(.section-subtitle),
.horizontal-scroll-intro .section-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.68;
}

/* Collections Cards */
.collection-card {
  border-radius: 14px;
  overflow: hidden;
  background-color: #252624;
  border: 1px solid rgba(182, 165, 142, 0.22);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.collection-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(182, 165, 142, 0.2);
}

.collection-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background-color: #1a1b19;
}

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

.collection-card:hover .collection-img {
  transform: scale(1.08) rotate(1deg);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37, 38, 36, 0.95) 0%, transparent 60%);
  z-index: 1;
}

.collection-body {
  padding: 22px 24px 24px 24px;
  background-color: #252624;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.collection-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.collection-desc {
  font-size: 0.9rem;
  color: #E2DBD2;
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.6;
  min-height: 4.8em;
}

.btn-collection-link {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  transition: var(--transition-smooth);
}

.btn-collection-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.collection-card:hover .btn-collection-link {
  color: var(--white);
}

.collection-card:hover .btn-collection-link i {
  transform: translateX(6px);
}

/* Fallback on Mobile & Tablet */
@media (max-width: 991.98px) {
  .horizontal-scroll-viewport {
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
    padding: 60px 0;
  }
  .horizontal-scroll-track {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 30px;
    justify-content: center;
    transform: none !important;
  }
  .horizontal-scroll-intro {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .horizontal-scroll-card-wrap {
    width: 100%;
    max-width: 360px;
  }
}


/* Virtual Try-On Studio (Compact & High-End Luxury Studio) */
#tryon {
  padding: 42px 0 50px;
}
#tryon .container {
  padding-left: 28px;
  padding-right: 28px;
  max-width: 1280px;
}
@media (max-width: 991.98px) {
  #tryon {
    padding: 35px 0;
  }
  #tryon .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.tryon-workspace {
  background: transparent;
  border: none;
  border-radius: 0px;
  padding: 0;
  position: relative;
  z-index: 5;
}

.tryon-canvas-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
  flex: 1 1 auto;
  background-color: #25272E;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
}

.tryon-canvas-container:active {
  cursor: grabbing;
}

#tryon-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.tryon-canvas-instructions {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(35, 37, 42, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(182, 165, 142, 0.4);
  border-radius: 30px;
  padding: 5px 12px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.tryon-controls-panel {
  background-color: #1e1f1d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 20px 18px 20px;
  height: 100%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  box-sizing: border-box;
}

.tryon-step-label {
  font-family: var(--font-headings) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  display: inline-block;
  margin-bottom: 0;
}

.tryon-badge-styles {
  font-family: var(--font-headings) !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: var(--gold) !important;
  background: rgba(182, 165, 142, 0.14) !important;
  border: 1px solid rgba(182, 165, 142, 0.35) !important;
  border-radius: 20px !important;
  padding: 2px 8px !important;
  line-height: 1.2 !important;
  white-space: nowrap;
}

.tryon-btn-upload {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 16px;
  border-radius: 0px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.tryon-btn-upload-pill {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(182, 165, 142, 0.35);
  padding: 5px 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
  flex-shrink: 0;
}

.tryon-btn-upload-pill:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.tryon-btn-upload-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(182, 165, 142, 0.35);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  font-size: 0.95rem;
}

.tryon-btn-upload-icon:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(182, 165, 142, 0.3);
}

.tryon-btn-upload-icon .upload-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: rgba(17, 20, 36, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid rgba(182, 165, 142, 0.4);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  z-index: 30;
}

.tryon-btn-upload-icon .upload-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 11px;
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: rgba(182, 165, 142, 0.4) transparent transparent transparent;
}

.tryon-btn-upload-icon:hover .upload-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.model-thumbnails {
  display: flex;
  gap: 12px;
  align-items: center;
}

.model-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.55;
}

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

.model-thumb:hover,
.model-thumb.active {
  border-color: var(--gold);
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(182, 165, 142, 0.45);
}

/* Eyewear Style Card Grid (Consistent 3-Column Luxury Grid) */
.eyewear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 6px;
}

.eyewear-thumb {
  min-height: 52px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  gap: 3px;
  transition: all 0.25s ease;
  user-select: none;
}

.eyewear-thumb img,
.eyewear-thumb .eyewear-product-img {
  width: 54px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
  transition: all 0.25s ease;
  pointer-events: none;
}

.eyewear-thumb svg {
  width: 48px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.85);
  transition: all 0.25s ease;
}

.eyewear-thumb .eyewear-name {
  font-family: var(--font-headings) !important;
  font-size: 0.62rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  color: #DDD5CA !important;
  text-transform: uppercase !important;
  transition: color 0.25s ease;
  line-height: 1.1;
  text-align: center;
  margin-top: 1px;
}

.eyewear-thumb:hover {
  background-color: rgba(182, 165, 142, 0.08);
  border-color: rgba(182, 165, 142, 0.4);
  transform: translateY(-2px);
}

.eyewear-thumb:hover img,
.eyewear-thumb:hover .eyewear-product-img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(182, 165, 142, 0.4));
}

.eyewear-thumb:hover svg {
  stroke: var(--gold);
  transform: scale(1.05);
}

.eyewear-thumb:hover .eyewear-name {
  color: #FFFFFF !important;
}

.eyewear-thumb.active {
  background: linear-gradient(145deg, rgba(182, 165, 142, 0.16) 0%, rgba(182, 165, 142, 0.04) 100%);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(182, 165, 142, 0.25);
  transform: translateY(-1px);
}

.eyewear-thumb.active img,
.eyewear-thumb.active .eyewear-product-img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(182, 165, 142, 0.75));
}

.eyewear-thumb.active svg {
  stroke: var(--gold);
  filter: drop-shadow(0 0 6px rgba(182, 165, 142, 0.6));
}

.eyewear-thumb.active .eyewear-name {
  color: var(--gold) !important;
  font-weight: 700 !important;
}

/* Try-On Fine Adjustments Sliders & Controls */
.tryon-sliders-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .tryon-sliders-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.tryon-slider-group {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 9px 12px;
  transition: border-color 0.25s ease;
}

.tryon-slider-group:focus-within,
.tryon-slider-group:hover {
  border-color: rgba(182, 165, 142, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.tryon-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.tryon-slider-title {
  font-family: var(--font-headings) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-transform: uppercase !important;
  display: inline-flex;
  align-items: center;
}

.tryon-slider-value {
  font-family: var(--font-headings) !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  letter-spacing: 0.03em !important;
}

/* Custom Luxury Gold/Dark Range Slider */
.tryon-custom-range {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  height: 5px !important;
  border-radius: 5px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  outline: none !important;
  margin: 6px 0 2px 0 !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}

.tryon-custom-range:hover {
  background: rgba(255, 255, 255, 0.22) !important;
}

.tryon-custom-range::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: var(--gold) !important;
  border: 2px solid #1E1F1D !important;
  box-shadow: 0 0 10px rgba(182, 165, 142, 0.6) !important;
  cursor: pointer !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.tryon-custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.25) !important;
  box-shadow: 0 0 14px rgba(182, 165, 142, 0.9) !important;
}

.tryon-custom-range::-moz-range-thumb {
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: var(--gold) !important;
  border: 2px solid #1E1F1D !important;
  box-shadow: 0 0 10px rgba(182, 165, 142, 0.6) !important;
  cursor: pointer !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.tryon-custom-range::-moz-range-thumb:hover {
  transform: scale(1.25) !important;
  box-shadow: 0 0 14px rgba(182, 165, 142, 0.9) !important;
}

/* Bottom Frame Info and Reset Button */
.tryon-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.tryon-current-frame {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  white-space: nowrap;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tryon-frame-tag {
  font-family: var(--font-headings) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.tryon-frame-name {
  font-family: var(--font-headings) !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  color: var(--gold) !important;
}

#tryon-reset-btn,
.tryon-reset-action {
  font-family: var(--font-headings) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  padding: 5px 14px !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: fit-content !important;
  margin: 0 !important;
}

.tryon-spec-sheet {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0px;
  padding: 18px;
  margin-top: 20px;
}

.tryon-spec-title {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 6px;
}

.tryon-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.tryon-spec-row span:last-child {
  color: var(--white);
  font-weight: 600;
}

/* Customizer Section Styles */
.customizer-workspace {
  background: transparent;
  border: none;
  border-radius: 0px;
  padding: 0;
  position: relative;
  z-index: 5;
}

.customizer-preview-panel {
  position: relative;
  width: 100%;
  height: 440px;
  background-color: #04060c;
  border-radius: 0px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  perspective: 600px;
}

.customizer-svg-wrap {
  width: 75%;
  max-width: 420px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.customizer-options-panel {
  background-color: rgba(7, 10, 19, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px;
  height: 100%;
}

.color-swatch-list {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  list-style: none;
  padding: 0;
}

.color-swatch-item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.color-swatch-item.active {
  border-color: var(--white);
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.swatch-tint-rose { background: radial-gradient(circle, #ff9a9e 0%, #fecfef 99%); }
.swatch-tint-blue { background: radial-gradient(circle, #a1c4fd 0%, #c2e9fb 100%); }
.swatch-tint-green { background: radial-gradient(circle, #5ee7a5 0%, #b4ffd6 100%); }
.swatch-tint-gold { background: radial-gradient(circle, #f6d365 0%, #fda085 100%); }
.swatch-tint-smoke { background: radial-gradient(circle, #667eea 0%, #764ba2 100%); }

.material-tab-list {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.material-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255,255,255,0.7);
  padding: 8px 18px;
  border-radius: 0px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.material-tab:hover, .material-tab.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
}

.customizer-spec-receipt {
  background: rgba(212, 175, 55, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 0px;
  padding: 20px;
  margin-top: 20px;
}

.customizer-receipt-title {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 6px;
}

.customizer-receipt-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.customizer-receipt-item span:last-child {
  color: var(--white);
  font-weight: 700;
}

/* Why Choose Us Grid Layout */
.grid-asymmetric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.grid-asymmetric-item {
  display: flex;
  height: 100%;
}

.choose-card {
  background-color: #2d2f2c;
  border: 1px solid rgba(182, 165, 142, 0.2);
  border-radius: 0px;
  padding: 45px 35px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--gold);
  transition: var(--transition-smooth);
}

.choose-card:hover {
  transform: translateY(-5px);
  background-color: #343632;
  border-color: rgba(182, 165, 142, 0.9);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.choose-card:hover::before {
  height: 100%;
}

.choose-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: rgba(182, 165, 142, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--gold);
  font-size: 1.6rem;
  transition: var(--transition-smooth);
}

.choose-card:hover .choose-icon-wrap {
  background: var(--gold);
  color: var(--primary);
  transform: scale(1.05);
}

.choose-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.choose-desc {
  font-size: 0.96rem;
  color: #E2DBD2;
  line-height: 1.65;
}

/* Achievements Counter banner */
.stats-banner {
  background: linear-gradient(135deg, #1f201d, #252624);
  border-top: 1px solid rgba(182, 165, 142, 0.12);
  border-bottom: 1px solid rgba(182, 165, 142, 0.12);
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-headings);
  margin-bottom: 10px;
  display: inline-block;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* Dual-Row Brand Logo Carousel */
.media-brands-section {
  padding: 60px 0;
  background-color: var(--primary);
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.media-brands-card {
  max-width: 1280px;
  margin: 0 auto;
}

.media-brands-header {
  text-align: center;
  margin-bottom: 30px;
}

.media-brands-title {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.media-brands-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-bottom: 0;
}

.brand-carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
  user-select: none;
}

.brand-carousel-wrapper::before,
.brand-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.brand-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--primary) 0%, transparent 100%);
}

.brand-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--primary) 0%, transparent 100%);
}

.brand-carousel-track {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.brand-carousel-rail {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 24px;
  min-width: 100%;
  justify-content: space-around;
  padding: 8px 12px;
}

.brand-carousel-forward .brand-carousel-rail {
  animation: brandMarqueeForward 32s linear infinite;
}

.brand-carousel-reverse .brand-carousel-rail {
  animation: brandMarqueeReverse 35s linear infinite;
}

.brand-carousel-track:hover .brand-carousel-rail {
  animation-play-state: paused;
}

.brand-carousel-item {
  flex-shrink: 0;
  width: 175px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 18px;
  padding: 8px 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.brand-carousel-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.25);
}

.brand-carousel-item img,
.brand-carousel-item svg {
  width: 100% !important;
  height: 100% !important;
  max-width: 145px;
  max-height: 50px;
  object-fit: contain;
  display: block;
  opacity: 0.92;
  transition: all 0.3s ease;
  pointer-events: none;
}

.brand-carousel-item:hover img,
.brand-carousel-item:hover svg {
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(182, 165, 142, 0.7));
}

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

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

@media (max-width: 767.98px) {
  .brand-carousel-item {
    width: 140px;
    height: 60px;
    padding: 6px 10px;
    border-radius: 14px;
  }
  .brand-carousel-item svg {
    max-width: 120px;
    max-height: 40px;
  }
  .brand-carousel-rail {
    gap: 14px;
  }
  .brand-carousel-wrapper::before,
  .brand-carousel-wrapper::after {
    width: 45px;
  }
}

/* Why Choose Us Section with Signature Giant Luxury Watermark */
#why-choose-us {
  position: relative;
  overflow: hidden;
}

.why-us-bg-watermark {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-headings);
  font-size: 14vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.022);
  -webkit-text-stroke: 1.5px rgba(212, 175, 55, 0.06);
  white-space: nowrap;
  letter-spacing: 0.12em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  text-transform: uppercase;
  will-change: transform;
  transition: transform 0.2s ease-out;
}

.why-us-ambient-glow {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

/* Stats Banner (Clean Luxury Minimalist) */
.stats-banner {
  position: relative;
  padding: 85px 0;
  background-color: #121417;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.12);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFF0B8 0%, #D4AF37 50%, #AA771C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-family: var(--font-headings);
  font-size: 0.90rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 767.98px) {
  .why-us-bg-watermark {
    font-size: 18vw;
    letter-spacing: 0.05em;
  }
  .stats-banner {
    padding: 60px 0;
  }
  .stat-number {
    font-size: 2.8rem;
  }
  .stat-item {
    padding: 20px 16px;
    border-radius: 16px;
  }
}

/* Testimonial reviews */
.reviews-section {
  padding: 70px 0 !important;
  background: linear-gradient(rgba(7, 10, 19, 0.9), rgba(7, 10, 19, 0.95)), 
              url('https://images.unsplash.com/photo-1543002588-bfa74002ed7e?q=80&w=2000&auto=format&fit=crop') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.reviews-swiper {
  padding: 20px 0 45px 0;
}

.review-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  z-index: 5;
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.review-quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.2rem;
  color: rgba(212, 175, 55, 0.12);
  pointer-events: none;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 25px;
}

.review-profile {
  display: flex;
  align-items: center;
}

.review-avatar-container {
  position: relative;
  margin-right: 15px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.review-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.review-rating {
  color: var(--gold);
  font-size: 0.8rem;
}

.review-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 6px !important;
  transition: var(--transition-smooth);
}

.review-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* 360 Viewer Section */
.glass-container-360 {
  background: transparent;
  border: none;
  border-radius: 0px;
  padding: 0;
  box-shadow: none;
  position: relative;
  z-index: 5;
}

.showroom-features-list {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.showroom-feature-item {
  color: #F0EAE1;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 500;
}

.showroom-feature-item i {
  font-size: 1.08rem;
}

@media (max-width: 767.98px) {
  .showroom-features-list {
    font-size: 0.98rem;
    gap: 12px 20px !important;
  }
}

@media (max-width: 575.98px) {
  .showroom-features-list {
    font-size: 0.94rem;
    gap: 10px 16px !important;
  }
}

.showroom-viewer-wrapper {
  position: relative;
  width: 100%;
  height: 680px;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0px;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showroom-fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.6s ease;
}

/* Symmetrical status badges for the tour */
.showroom-status-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(7, 10, 19, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  border-radius: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.showroom-status-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.showroom-hint-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 10, 19, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text);
  border-radius: 8px;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.showroom-active {
  cursor: grab;
}
.showroom-active:active {
  cursor: grabbing;
}

.showroom-exit-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(7, 10, 19, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 0px;
  z-index: 10;
  cursor: pointer;
  display: none;
  transition: var(--transition-smooth);
}

.showroom-exit-btn:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

/* Hotspots on mock 360 */
.hotspot {
  position: absolute;
  z-index: 8;
  display: none;
}

.hotspot-trigger {
  width: 24px;
  height: 24px;
  background-color: var(--gold);
  border-radius: 50%;
  border: 1.5px solid var(--white);
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  transition: transform 0.3s ease;
}

.hotspot-trigger::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0;
  animation: pulseHotspot 2.2s infinite;
}

.hotspot-trigger:hover {
  transform: scale(1.15);
}

.hotspot-card {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 210px;
  background-color: rgba(7, 10, 19, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 15px;
  border-radius: 0px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  color: var(--white);
}

.hotspot-card::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: rgba(7, 10, 19, 0.95);
  border-right: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.hotspot:hover .hotspot-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Gallery Section */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}

.filter-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 26px;
  border-radius: 0px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
}

.filter-btn:hover, 
.filter-btn.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
}

.filter-count-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 0px;
  margin-left: 10px;
}

.filter-btn:hover .filter-count-badge,
.filter-btn.active .filter-count-badge {
  background: var(--primary);
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  position: relative;
  z-index: 5;
}

.gallery-item {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7, 10, 19, 0.1), rgba(7, 10, 19, 0.9));
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  z-index: 2;
}

.gallery-title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-category {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.05s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-category {
  transform: translateY(0);
}

/* Custom Lightbox Styles */
.custom-lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 10, 19, 0.98);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.custom-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrap {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 0px;
  object-fit: contain;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lightbox-img.loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption {
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 1.15rem;
  margin-top: 25px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 2005;
}

.lightbox-arrow:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
}

.lightbox-prev { left: -75px; }
.lightbox-next { right: -75px; }

/* Contact Section Map */
.contact-map-container {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 5;
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) contrast(120%);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 0px;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-right: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.contact-info-text h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info-text p, 
.contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-text a:hover {
  color: var(--gold);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  border: 1px solid #25D366;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 10px;
}

.btn-whatsapp i {
  margin-right: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.btn-whatsapp:hover {
  background-color: transparent;
  color: #25D366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* Contact Form Card */
.contact-form-card {
  background: transparent;
  border: none;
  border-radius: 0px;
  padding: 0;
  box-shadow: none;
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-form-title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 35px;
  font-weight: 700;
}

.form-control-custom {
  background-color: #24262A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 0px;
  padding: 14px 20px;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  background-color: #1e1f1d;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(182, 165, 142, 0.25);
  color: var(--white);
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Footer Section */
.footer-custom {
  background-color: #1b1c1a;
  position: relative;
  z-index: 5;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-top {
  padding: 90px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo-img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
  transition: var(--transition-smooth);
}

.footer-logo-img.logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.footer-logo a:hover .logo-default {
  opacity: 0;
}

.footer-logo a:hover .logo-hover {
  opacity: 1;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-heading {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #04060c;
}

.footer-bottom-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 1040;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45),
              0 2px 8px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  padding: 0;
}

.floating-whatsapp-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.floating-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: #ffffff !important;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65),
              0 4px 12px rgba(0, 0, 0, 0.5);
  width: 165px;
  border-radius: 50px;
  padding-left: 18px;
  padding-right: 18px;
  justify-content: flex-start;
  gap: 10px;
}

.floating-whatsapp-btn .whatsapp-tooltip {
  font-family: var(--font-headings);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  display: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  max-width: 110px;
  display: inline-block;
}

/* WhatsApp Pulse Ring Animation */
.whatsapp-pulse-ring {
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: whatsappPulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 98px;
  right: 34px;
  width: 48px;
  height: 48px;
  background: rgba(18, 20, 23, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(182, 165, 142, 0.45);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(182, 165, 142, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--primary) !important;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(182, 165, 142, 0.5);
}

.back-to-top i {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.back-to-top:hover i {
  transform: translateY(-2px);
}

/* Mobile Sticky Action Bar */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 10, 19, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  z-index: 1030;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
}

.mobile-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.mobile-action-item i {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.mobile-action-item:hover,
.mobile-action-item:focus {
  color: var(--gold);
}

#mobile-action-whatsapp {
  color: #25D366 !important;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 0 !important;
  }
}

/* Responsive Media Queries */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .lightbox-prev { left: -50px; }
  .lightbox-next { right: -50px; }
}

@media (max-width: 991.98px) {
  .navbar-logo {
    height: 54px;
  }
  .navbar-custom.navbar-scrolled .navbar-logo {
    height: 44px;
  }
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-frame-container {
    min-height: 100vh;
    height: auto;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    padding-top: 110px !important;
    padding-bottom: 80px !important;
    margin: auto 0 !important;
  }
  .hero-subtitle-animate,
  .section-subtitle {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: 2.9rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .hero-desc {
    font-size: 1.16rem;
    line-height: 1.68;
    color: #EDE7DF;
    max-width: 100%;
    margin-bottom: 28px;
  }
  .btn-premium {
    font-size: 0.84rem;
    font-weight: 700;
    padding: 12px 24px;
    letter-spacing: 0.08em;
  }
  .section-title,
  .tryon-title,
  .why-title,
  .gallery-title,
  .media-brands-title,
  .customizer-title {
    font-size: 2.65rem;
    font-weight: 600;
    line-height: 1.18;
    color: #FFFFFF;
    margin-bottom: 12px;
  }
  .section-header p,
  .section-header-desc {
    font-size: 1.15rem;
    line-height: 1.68;
    color: #EDE7DF;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .py-section {
    padding: 70px 0;
  }
  .hero-bg-frame {
    height: 100%;
  }
  .floating-glasses {
    position: relative;
    right: 0;
    top: 0;
    width: 60%;
    margin: 50px auto 0 auto;
    display: block;
  }
  .grid-asymmetric {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .lightbox-prev { left: -20px; }
  .lightbox-next { right: -20px; }
  .glass-container-360, .tryon-workspace, .customizer-workspace {
    padding: 30px;
  }
  .showroom-viewer-wrapper { height: 420px; }
  .tryon-canvas-container { height: 400px; }
  .customizer-preview-panel { height: 380px; }
  
  /* Stack vertical fallback on mobile */
  .horizontal-scroll-section {
    height: auto;
  }
  .horizontal-scroll-viewport {
    position: relative;
    height: auto;
    width: 100%;
  }
  .horizontal-scroll-track {
    flex-wrap: wrap;
    padding: 80px 20px;
    justify-content: center;
  }
  .horizontal-scroll-card-wrap {
    width: 100%;
    max-width: 460px;
    margin-right: 0;
    margin-bottom: 35px;
  }
  .horizontal-scroll-intro {
    width: 100%;
    max-width: 640px;
    margin-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }
  .horizontal-scroll-intro h2 {
    font-size: 2.65rem;
    font-weight: 600;
    line-height: 1.18;
    color: #FFFFFF;
    margin-bottom: 16px;
  }
  .horizontal-scroll-intro p:not(.section-subtitle),
  .horizontal-scroll-intro .section-desc {
    font-size: 1.12rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
  }
  .collection-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
  }
  .collection-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #EDE7DF;
    margin-bottom: 20px;
  }
  .btn-collection-link {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--gold);
  }

  /* Mobile Navbar Customizations */
  .navbar-custom {
    padding: 12px 0;
  }
  
  .navbar-toggler {
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 10px;
    padding: 6px 10px;
    background: rgba(8, 12, 24, 0.7);
    outline: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }

  .navbar-custom .navbar-collapse {
    background: rgba(8, 12, 24, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 20px 18px;
    border-radius: 16px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                inset 0 1px 0 rgba(212, 175, 55, 0.15);
  }

  .navbar-custom .navbar-nav {
    gap: 6px;
  }

  .navbar-custom .nav-link {
    margin: 4px 0;
    padding: 12px 18px !important;
    border-radius: 14px;
    background: transparent;
    border: 1px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: #F0EAE1 !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .navbar-custom .nav-link:hover {
    letter-spacing: 0.12em;
    background: rgba(212, 175, 55, 0.10);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 16px rgba(212, 175, 55, 0.25);
    color: #FFFFFF !important;
    text-shadow: 0 0 10px rgba(182, 165, 142, 0.7);
  }

  .navbar-custom .nav-link.active {
    color: var(--gold) !important;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 0 !important;
  }
  .hero-title {
    font-size: 2.6rem;
    line-height: 1.15;
  }
  .hero-desc {
    font-size: 1.12rem;
    line-height: 1.65;
  }
  .btn-premium {
    padding: 11px 22px;
    font-size: 0.80rem;
    letter-spacing: 0.08em;
  }
  .btn-premium-secondary {
    margin-left: 0;
  }
  .section-title,
  .tryon-title,
  .why-title,
  .gallery-title,
  .media-brands-title,
  .customizer-title {
    font-size: 2.35rem;
    line-height: 1.18;
  }
  .section-subtitle {
    font-size: 0.92rem;
    letter-spacing: 0.20em;
  }
  .section-header p,
  .section-header-desc {
    font-size: 1.12rem;
    line-height: 1.65;
  }
  .horizontal-scroll-intro h2 {
    font-size: 2.35rem;
    line-height: 1.18;
  }
  .horizontal-scroll-intro p:not(.section-subtitle),
  .horizontal-scroll-intro .section-desc {
    font-size: 1.10rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
  }
  .choose-card h4, .why-card h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
  }
  .choose-card p, .why-card p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #EDE7DF;
  }
  .tryon-step-label {
    font-size: 1.10rem;
    font-weight: 700;
    color: #FFFFFF;
  }
  .py-section {
    padding: 60px 0;
  }
  .grid-asymmetric {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-container {
    height: 300px;
    min-height: 0;
    margin-bottom: 30px;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-content-wrap { height: 60vh; }
  .virtual-deck-wrapper { height: 380px; }
  .tryon-canvas-container { height: 340px; }
  .customizer-preview-panel { height: 320px; }
}

@media (max-width: 575.98px) {
  .navbar-logo {
    height: 46px;
  }
  .navbar-custom.navbar-scrolled .navbar-logo {
    height: 40px;
  }
  .hero-title {
    font-size: 2.30rem;
    line-height: 1.18;
    font-weight: 600;
  }
  .hero-subtitle-animate,
  .section-subtitle {
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    font-weight: 800;
  }
  .hero-desc {
    font-size: 1.08rem;
    line-height: 1.62;
    color: #EDE7DF;
    margin-bottom: 24px;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .btn-premium {
    width: 100%;
    text-align: center;
    padding: 14px 26px;
    font-size: 0.92rem;
    font-weight: 700;
  }
  .section-title,
  .tryon-title,
  .why-title,
  .gallery-title,
  .media-brands-title,
  .customizer-title {
    font-size: 2.05rem;
    line-height: 1.20;
    font-weight: 600;
  }
  .section-header p,
  .section-header-desc {
    font-size: 1.08rem;
    line-height: 1.65;
    color: #EDE7DF;
  }
  .horizontal-scroll-intro {
    padding: 0 10px;
    margin-bottom: 40px;
  }
  .horizontal-scroll-intro h2 {
    font-size: 2.05rem;
    line-height: 1.20;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 14px;
  }
  .horizontal-scroll-intro p:not(.section-subtitle),
  .horizontal-scroll-intro .section-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
  }
  .collection-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
  }
  .collection-desc {
    font-size: 1.02rem;
    line-height: 1.60;
    color: #EDE7DF;
  }
  .btn-collection-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
  }
  .floating-whatsapp-btn {
    bottom: 76px !important;
    right: 16px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 1.5rem !important;
    z-index: 1050 !important;
    display: flex !important;
  }
  .back-to-top {
    bottom: 136px !important;
    right: 18px !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.15rem !important;
    z-index: 1050 !important;
  }
  .py-section {
    padding: 50px 0;
  }
  .virtual-deck-wrapper { height: 320px !important; }
  .deck-controls-floating {
    bottom: 12px !important;
    padding: 8px 14px !important;
    gap: 8px !important;
  }
  .deck-controls-floating button {
    padding: 7px 14px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
  }
  .tryon-canvas-container { height: 300px !important; }
  .eyewear-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  .eyewear-thumb {
    padding: 6px 4px !important;
  }
  .eyewear-name {
    font-size: 0.76rem !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
  }
  .spec-item .spec-label {
    font-size: 0.92rem;
    color: #DDD5CA;
  }
  .spec-item .spec-val {
    font-size: 1.08rem;
    font-weight: 800;
    color: #FFFFFF;
  }
  .form-label {
    font-size: 0.98rem;
    font-weight: 700;
    color: #FFFFFF;
  }
  .form-control {
    font-size: 1.05rem;
  }
  .mobile-action-item {
    font-size: 0.80rem;
    font-weight: 700;
  }
}

/* ==========================================
   Reference Adapted Styles (Typographic Marquees & glow orbs)
   ========================================== */

/* Stunning Dual-Marquee Section */
.rolling-banners-section {
  padding: 22px 0;
  background-color: #050811;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.rolling-banner {
  display: flex;
  overflow: hidden;
  user-select: none;
  padding: 8px 0;
}

.rolling-banner-rail {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  gap: 35px;
  animation: marqueeRoll 32s linear infinite;
}

.reverse-banner .rolling-banner-rail {
  animation: marqueeRollReverse 36s linear infinite;
}

.rolling-banner-rail span {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(240, 244, 255, 0.88);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.16em;
  display: inline-block;
  vertical-align: middle;
  padding-right: 35px;
}

.rolling-banner-rail span .highlight {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.5);
}

.rolling-banner-rail svg.divider-star {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px;
}

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

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

@media (max-width: 767.98px) {
  .rolling-banners-section {
    padding: 14px 0;
  }
  .rolling-banner-rail span {
    font-size: 1.0rem;
    padding-right: 20px;
  }
  .rolling-banner-rail svg.divider-star {
    width: 14px;
    height: 14px;
  }
}

/* Dynamic Radial Orbs behind showroom viewer */
.ambient-glow-ref-1 {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  top: 15%;
  right: 5%;
}

.ambient-glow-ref-2 {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  bottom: 15%;
  left: 5%;
}

/* Minimal Luxury Footer Logo */
.footer-logo-img {
  height: 32px !important;
  width: auto !important;
  opacity: 0.88;
  transition: var(--transition-smooth);
}

.footer-logo:hover .footer-logo-img {
  opacity: 1;
}

/* ==========================================
   360° Virtual Tour Pannellum Custom Styles
   ========================================== */
.virtual-deck-wrapper {
  position: relative;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #090D16;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(9, 13, 22, 0.8);
}

.virtual-deck-wrapper #panorama-viewer {
  width: 100%;
  height: 100%;
}

.deck-controls-floating {
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
}

.deck-controls-floating button {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  line-height: 1.2 !important;
}

.deck-controls-floating button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 161, 81, 0.3);
}

/* Custom Pannellum Tooltip & Controls Overrides */
.pnm-tooltip span, .pannellum-container .pnm-tooltip span {
  font-family: inherit;
  background: rgba(9, 13, 22, 0.9) !important;
  color: #ffffff !important;
  border: 1px solid rgba(201, 161, 81, 0.4) !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  font-size: 0.82rem !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5) !important;
}

@media (max-width: 767.98px) {
  .virtual-deck-wrapper {
    height: 380px;
    border-radius: 20px;
  }
}

@media (max-width: 575.98px) {
  .virtual-deck-wrapper {
    height: 300px;
    border-radius: 16px;
  }
}

