/* ==========================================================================
   SANTIS CLUIB - MASTER STYLE SHEET (REBUILT v2.7)
   Theme: Quiet Luxury (Dark Mode Default)
   ========================================================================== */

:root {
  /* --- COLOR PALETTE (Luxury Dark) --- */
  --bg-dark: #0a0c10;
  --bg-card: #141414;
  --bg-overlay: rgba(0, 0, 0, 0.7);

  --text-main: #f0f0f0;
  --text-muted: #a0a0a0;
  --text-gold: #D4AF37;

  --gold: #D4AF37;
  --gold-dim: #8a7035;

  --border-light: rgba(255, 255, 255, 0.08);

  /* --- SPACING & SIZING --- */
  --nav-height: 80px;
  --container-max: 1400px;

  /* --- Z-INDEX SCALE (Single Source of Truth) --- */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-navbar: 1000;
  --z-hamburger: 1100;
  --z-mobile-menu: 1200;
  --z-overlay: 2000;
  --z-modal: 3000;
  --z-max: 9999;

  /* --- ANIMATIONS --- */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- ULTRA FINE TUNING (Santis V3) --- */

/* 1. Premium Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* 2. Luxe Selection */
::selection {
  background: var(--gold);
  color: #000;
  text-shadow: none;
}

/* 3. Font Rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- BASICS --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  /* Changed to original var name */
  color: var(--text-main);
  /* Changed to original var name */
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  /* SAFETY OVERRIDE */
  cursor: auto !important;
}

/* 5. Utility Classes (No Inline Styles) */
.nv-z-max {
  z-index: var(--z-max);
}

.nv-gap-y-trends {
  margin-top: 40px;
  margin-bottom: 60px;
}

.nv-bg-trend-tokyo {
  background-image: url('/assets/img/cards/santis_card_hammam_v1.webp');
}

.nv-bg-trend-bangkok {
  background-image: url('/assets/img/cards/santis_card_massage_v1.webp');
}

.nv-bg-trend-italy {
  background-image: url('/assets/img/cards/santis_card_skincare_v1.webp');
}

.nv-bg-trend-beauty {
  background-image: url('/assets/img/cards/santis_card_skincare_cover.webp');
}

.nv-text-blue {
  color: blue;
  /* Example from prompt, kept for completeness if needed */
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin: 0 0 1rem 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* --- LAYOUT UTILITIES --- */
.nv-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.nv-section {
  padding: 100px 0;
}

.nv-section-header {
  margin-bottom: 60px;
  text-align: center;
}

/* --- TYPOGRAPHY --- */
.nv-title {
  font-size: 3rem;
  line-height: 1.1;
}

.nv-kicker {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* --- BUTTONS --- */
.nv-btn {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nv-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- CARD GRIDS --- */
.product-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--border-light);
  padding: 80px 0;
  margin-top: 100px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nv-title {
    font-size: 2.2rem;
  }

  .nv-section {
    padding: 60px 0;
  }
}

/* --- PREMIUM MOBILE MENU (Santis V5) --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 12, 16, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: var(--z-mobile-menu);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
  /* Responsive Gap */
}

/* Staggered Animation Effect */
.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  /* Responsive Font Size */
  color: var(--text-main);
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.mobile-menu-overlay.active .mobile-link {
  opacity: 0.8;
  transform: translateY(0);
}

/* Delay Loop (for staggering) */
.mobile-menu-overlay.active .mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(7) {
  transition-delay: 0.4s;
}

.mobile-link:hover {
  color: var(--gold);
  opacity: 1;
  letter-spacing: 2px;
}

.hamburger-btn {
  display: none;
  cursor: pointer;
  flex-direction: column;
  width: 30px;
  gap: 6px;
  z-index: var(--z-hamburger);
  position: relative;
  padding: 10px;
}

.hamburger-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
}

/* Hamburger Animation (2-bar X) */
.hamburger-btn.active .bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.hamburger-btn.active .bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}


@media (max-width: 992px) {
  .hamburger-btn {
    display: flex;
  }

  .mobile-hide {
    display: none;
  }

  /* Hide Desktop Nav explicitly if not hidden by other classes */
  .nav-links.nav-center {
    display: none;
  }
}

/* Remove Shine Effect (Too flashy) */
.nv-btn::after {
  display: none;
}

/* --- MEGA MENU (Quiet Luxury Navigation) --- */
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nv-mega-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(10, 12, 14, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: var(--z-dropdown);
}

.nav-item:hover .nv-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.mega-col h4 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.mega-col a {
  display: block;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.mega-col a:hover {
  color: #fff;
  transform: translateX(5px);
}

.mega-feature {
  grid-column: 4;
  /* Last Column */
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
}

.mega-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.mega-feature-content {
  position: relative;
  padding: 20px;
  color: #fff;
  z-index: 2;
}

.mega-feature h5 {
  font-family: 'Playfair Display';
  font-size: 18px;
  margin-bottom: 5px;
}

.mega-feature span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

/* --- PAGE: CODE OF SILENCE (MANIFESTO) --- */
:root {
  --bg-silence: #0a0a0a;
  --text-silence: #b0b0b0;
  --accent-silence: #4a4a4a;
}

body.code-of-silence {
  background-color: var(--bg-silence);
  color: var(--text-silence);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
}

.silence-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px;
  position: relative;
  z-index: 2;
}

.silence-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.5s forwards;
}

.silence-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-silence);
  display: block;
  margin-bottom: 20px;
}

.silence-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
  color: #e0e0e0;
  margin: 0;
  font-style: italic;
}

.manifesto-item {
  margin-bottom: 60px;
  padding-left: 40px;
  border-left: 1px solid var(--accent-silence);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.manifesto-item:hover {
  border-left-color: #d4af37;
  padding-left: 50px;
}

.manifesto-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent-silence);
  margin-bottom: 10px;
  display: block;
}

.manifesto-text {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 300;
}

.manifesto-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
  display: block;
}

.fog-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 10, 10, 0.8) 100%),
    url('/assets/img/texture/marble-noise.png');
  opacity: 0.1;
  z-index: 1;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signature-section {
  text-align: center;
  margin-top: 100px;
  opacity: 0;
  animation: fadeUp 1s ease 2s forwards;
}

.signature {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
}

.silence-subtext {
  font-family: 'Inter';
  font-size: 12px;
  margin-top: 10px;
  color: #444;
}


/* --- PAGE: WORLD RITUALS --- */
.world-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/img/hero_world.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  background: -webkit-linear-gradient(#fff, #aaa);
  background: linear-gradient(#fff, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 2s infinite ease-in-out;
  opacity: 0.7;
}

@keyframes float {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}

/* SECTIONS */
.culture-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.culture-section:nth-child(even) {
  flex-direction: row-reverse;
  background: #0f0f0f;
}

.culture-text {
  flex: 1;
  padding: 4rem;
  z-index: 2;
}

.culture-visual {
  flex: 1;
  height: 70vh;
  position: relative;
  z-index: 1;
}

.culture-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.1);
  transition: all 0.7s ease;
}

.culture-section:hover .culture-visual img {
  filter: grayscale(0%) contrast(1.2);
  transform: scale(1.02);
}

.flag-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.culture-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.culture-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #999;
  margin-bottom: 2rem;
}

.ritual-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.ritual-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
  color: #ddd;
}

.explore-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.explore-btn:hover {
  background: var(--gold);
  color: #000;
}


/* --- UTILITIES --- */
.nv-mt-32 {
  margin-top: 2rem;
}

.nv-mt-16 {
  margin-top: 1rem;
}

.nv-mb-32 {
  margin-bottom: 2rem;
}

/* ==========================================================================
   SANTIS LAYOUT PATCH (Alignment & Container Fix)
   ========================================================================== */

/* 1. Global Container Fix */
.nv-container,
.main-wrapper,
.container {
  width: 100%;
  max-width: var(--container-max, 1400px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* 2. Hero Section Alignment */
.nv-hero-slider,
section.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}

/* 3. Section Alignment */
.nv-section,
section {
  position: relative;
  width: 100%;
}

/* 4. Global Reset Reinforcement */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

/* 5. Navbar Alignment Fix */
.nv-navbar-inner {
  max-width: var(--container-max, 1400px);
  margin: 0 auto;
}

/* ==========================================================================
   SANTIS Z-INDEX & INTERACTION SYSTEM (Consolidated v3.0)
   Single source of truth — uses --z-* tokens from :root
   ========================================================================== */

/* --- NAVBAR (Fixed Header) --- */
#nv-main-nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #0b0d11;
  padding: 0 40px;
  box-sizing: border-box;
  z-index: var(--z-navbar);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* Scroll transition — Quiet Luxury */
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Navbar Scrolled State (Quiet Luxury Shrink) --- */
#nv-main-nav.navbar.navbar--scrolled {
  height: 64px;
  background: rgba(10, 12, 16, 0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(212, 175, 55, 0.08);
}

#nv-main-nav.navbar.navbar--scrolled .logo-icon img {
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#nv-main-nav.navbar.navbar--scrolled .nav-link {
  font-size: 13px;
  transition: font-size 0.3s ease;
}

/* --- Navbar Container --- */
.navbar-container {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* --- Nav Links (Desktop) --- */
.nav-links,
.nav-center {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: static;
}

.nav-item {
  display: block;
  position: relative;
  height: auto;
}

.nav-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  opacity: 1;
  visibility: visible;
  height: 100%;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #D4AF37;
  z-index: var(--z-base);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* --- Actions --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --- Dropdowns & Submenus --- */
.dropdown-menu,
.submenu {
  z-index: var(--z-dropdown);
}

.main-nav,
.os-sidebar {
  z-index: var(--z-sticky);
}

/* --- Ghost Layer Interaction Block --- */
/* Background effects: visible but never clickable */
.hero-overlay,
.bento-overlay,
.motion-layer,
.ultra-motion,
.fx-layer,
.nv-hero-overlay,
.background-effects,
.santis-soul-layer,
#heroProgress {
  pointer-events: none !important;
}

/* --- Navbar Clickability --- */
#nv-main-nav.navbar,
.navbar,
.navbar-container,
.nav-links,
.nav-item,
.nav-link,
.logo,
.nav-actions,
.nv-btn,
#hamburger {
  pointer-events: auto;
  cursor: pointer;
}

/* --- Layer Killer (Unused Overlays) --- */
.modal-overlay,
.intro-panel,
.preloader,
.santis-intro,
#santisIntro,
#preloader {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}


/* FORCE CARDS VISIBLE - ANIMATION BYPASS */
.prod-card-v2,
.bento-card,
.nv-card,
.nv-trend-card {
  opacity: 1 !important;
  visibility: visible !important;
  /* transform kept for hover effects */
  animation: none !important;
  display: flex !important;
  /* Ensure layout */
}

/* ==========================================================================
   🔴 NUCLEAR CARD CLICK FIX v2.0
   Garantili tıklanabilirlik — Tüm kart tipleri ve linkleri
   ========================================================================== */

/* 1. Tüm kart <a> tagları tıklanabilir olmalı */
a.nv-signature-card,
a.nv-trend-card,
a.bento-card,
a.nv-card,
a.prod-card-v2 {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 1;
}

/* 2. Kartların içindeki tüm overlay ve dekoratif katmanlar tıklamayı ENGELLEMEMELİ */
.nv-signature-card *::before,
.nv-signature-card *::after,
.nv-trend-card *::before,
.nv-trend-card *::after,
.nv-signature-card::before,
.nv-signature-card::after,
.nv-trend-card::before,
.nv-trend-card::after,
.nv-signature-overlay,
.nv-trend-overlay,
.nv-trend-bg,
.nv-hero-overlay {
  pointer-events: none !important;
}

/* 3. Backdrop-filter kartlarda sorun yaratabilir — deaktive et */
a.nv-signature-card,
a.nv-trend-card {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.curtain-reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* GLOBAL NAV OVERRIDE (USER REQUEST) */
.nav-item,
.nav-link {
  color: #fff !important;
}

/* ==========================================================================
   MEGA MENU STYLES (Phase 23)
   ========================================================================== */
.nav-item.has-mega {
  position: static;
}

.nv-mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 12, 16, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  /* ... existing code ... */

  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: var(--z-dropdown);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.nav-item.has-mega:hover .nv-mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-grid-2-col {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.mega-grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.mega-title {
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 10px;
  display: inline-block;
}

.mega-links {
  list-style: none;
  padding: 0;
}

.mega-links li {
  margin-bottom: 12px;
}

.mega-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
  display: block;
}

.mega-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.mega-links span {
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
  margin-right: 10px;
  opacity: 0.5;
  font-size: 0.8rem;
}

.mega-card-col {
  display: flex;
  justify-content: flex-end;
}

.mega-feature-card {
  display: block;
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.mega-feature-card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #fff;
}

.card-overlay span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #D4AF37;
  display: block;
  margin-bottom: 5px;
}

.card-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
}

/* Mobile Overrides */
@media (max-width: 991px) {
  .nv-mega-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    display: none;
  }

  .nav-item.has-mega.active .nv-mega-dropdown {
    display: block;
    animation: slideDown 0.3s ease;
    padding-left: 20px;
    box-sizing: border-box;
  }

  .nav-item.has-mega>a>span.arr {
    float: right;
    transition: transform 0.3s;
  }

  .nav-item.has-mega.active>a>span.arr {
    transform: rotate(180deg);
  }

  .mega-grid-2-col,
  .mega-grid-4-col {
    display: block;
  }

  .mega-card-col {
    display: none;
  }

  .mega-list-col {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mega-title {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
    border: none;
  }
}