/* ============================================
   WELT-VERZEICHNIS - HAUPT-STYLESHEET
   Premium Dark-Theme mit Gold-Akzenten
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Dunkles Mitternachts-Premium */
  --bg-deep: #0a0e1a;          /* Tiefes Mitternachtsblau */
  --bg-card: #131829;          /* Etwas heller für Cards */
  --bg-elevated: #1a2138;      /* Erhöhte Elemente */
  
  /* Champagner-Gold-Inputs (luxuriös!) */
  --bg-input: rgba(50, 42, 28, 0.5);  /* Champagner-Bronze Tint */
  --bg-input-focus: rgba(70, 58, 38, 0.6);
  
  --gold: #d4b876;
  --gold-bright: #ecd190;
  --gold-light: #f5e4b8;
  --gold-dark: #9a8255;
  --gold-glow: rgba(212, 184, 118, 0.25);
  --champagne: #e8d9a7;
  
  --royal: #3d4e8c;
  --text-primary: #faf5e8;     /* Cremig-warmes Weiß */
  --text-secondary: #c5bda5;   /* Champagner-Grau */
  --text-muted: #8a8470;       /* Gedämpftes Bronze */
  
  --border: rgba(212, 184, 118, 0.2);
  --border-hover: rgba(212, 184, 118, 0.5);
  --warm-tint: rgba(212, 184, 118, 0.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 300;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  z-index: 100;
}

/* Ambient Background Orbs */
.ambient-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: floatOrb 20s ease-in-out infinite;
}

.ambient-orb:nth-child(1) {
  width: 500px; height: 500px;
  background: var(--gold);
  top: -100px; left: -100px;
}

.ambient-orb:nth-child(2) {
  width: 400px; height: 400px;
  background: var(--royal);
  top: 50%; right: -100px;
  animation-delay: -7s;
}

.ambient-orb:nth-child(3) {
  width: 350px; height: 350px;
  background: var(--gold-dark);
  bottom: -50px; left: 30%;
  animation-delay: -14s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(26, 33, 56, 0.75);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: visible; /* Wichtig: Mobile Menü muss rausragen! */
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s ease;
  text-shadow: 0 0 25px rgba(212, 184, 118, 0.15);
}

.logo:hover {
  text-shadow: 0 0 35px rgba(212, 184, 118, 0.3);
  transform: scale(1.02);
}

.logo span {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  align-items: center;
}

.nav-links li {
  position: relative;
}

/* ===== PREMIUM NAV BUTTONS ===== */
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.7rem 1.25rem;
  border-radius: 3px;
  position: relative;
  display: inline-block;
  border: 1px solid transparent;
  overflow: hidden;
  z-index: 1;
}

/* Schimmer-Effekt im Hintergrund */
.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 184, 118, 0.08) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
  z-index: -1;
}

.nav-links a:hover::before {
  left: 100%;
}

/* Untere Gold-Linie (Unterstrich-Effekt) */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 70%;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(212, 184, 118, 0.06);
  border-color: rgba(212, 184, 118, 0.25);
  transform: translateY(-2px);
  box-shadow: 
    0 4px 15px rgba(212, 184, 118, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-shadow: 0 0 12px rgba(212, 184, 118, 0.5);
}

/* Active-State (aktuelle Seite) */
.nav-links a.active {
  color: var(--gold);
  background: rgba(212, 184, 118, 0.08);
  border-color: rgba(212, 184, 118, 0.3);
}

.nav-links a.active::after {
  width: 70%;
}

/* ===== NAV-CTA (Login - der Hauptbutton) ===== */
.nav-cta {
  background: linear-gradient(135deg, #ffe9a0 0%, #d4b876 50%, #c4a866 100%) !important;
  color: var(--bg-deep) !important;
  padding: 0.75rem 1.75rem !important;
  border-radius: 3px;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  letter-spacing: 0.15em !important;
  border: 1px solid rgba(212, 184, 118, 0.6) !important;
  box-shadow: 
    0 4px 20px rgba(212, 184, 118, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
}

.nav-cta::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  ) !important;
}

.nav-cta::after {
  display: none; /* Kein Unterstrich beim CTA */
}

.nav-cta:hover {
  background: linear-gradient(135deg, #fff5c8 0%, #ffe9a0 50%, #d4b876 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 
    0 8px 30px rgba(212, 184, 118, 0.5),
    0 0 40px rgba(212, 184, 118, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
  border-color: rgba(212, 184, 118, 0.8) !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.nav-cta:active {
  transform: translateY(-1px) !important;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  animation: fadeUp 1.2s ease-out;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--border-hover);
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  background: rgba(212, 184, 118, 0.08);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.search-box {
  max-width: 700px;
  margin: 0 auto 3rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1.4rem 5rem 1.4rem 3.5rem;
  background: rgba(35, 43, 69, 0.8);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.search-input::placeholder { color: var(--text-muted); }

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

.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--bg-deep);
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: 3px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.search-btn:hover {
  background: var(--gold-bright);
  box-shadow: 0 5px 20px var(--gold-glow);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.stat { 
  text-align: center; 
  position: relative;
  transition: all 0.4s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  background: linear-gradient(135deg, #fff5c8 0%, #ffe9a0 30%, #d4b876 70%, #b89855 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 4px 15px rgba(212, 184, 118, 0.3));
  transition: all 0.4s ease;
}

.stat:hover .stat-number {
  filter: drop-shadow(0 6px 25px rgba(212, 184, 118, 0.5));
  transform: scale(1.05);
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  margin-top: 0.85rem;
  font-weight: 500;
  position: relative;
}

.stat-label::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.4s ease;
}

.stat:hover .stat-label::after {
  width: 60px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.section.compact {
  padding: 3rem 2rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title .italic {
  font-style: italic;
  color: var(--gold);
}

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

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  padding: 7rem 2rem 0;
  position: relative;
  z-index: 1;
}

.breadcrumb-list {
  max-width: 1400px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-list a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-list a:hover { color: var(--gold); }

.breadcrumb-list li:not(:last-child)::after {
  content: '›';
  margin-left: 0.75rem;
  color: var(--gold);
}

/* ===== KATEGORIEN GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--gold-glow) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--bg-elevated);
}

.category-card:hover::before { opacity: 1; }
.category-card:hover::after { opacity: 1; }

.category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  background: rgba(212, 184, 118, 0.1);
  border-radius: 3px;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.category-card:hover .category-icon {
  background: rgba(212, 184, 118, 0.18);
  border-color: var(--gold);
  transform: scale(1.05);
}

.category-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.category-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.category-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.category-count strong {
  color: var(--gold);
  font-weight: 500;
}

.category-subs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SUB-KATEGORIE-LISTE (auf Kategorie-Seite) ===== */
.sub-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.sub-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.sub-category-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-elevated);
  transform: translateX(4px);
}

.sub-category-card-name {
  color: var(--text-primary);
  font-weight: 400;
  font-size: 1rem;
}

.sub-category-card-count {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 184, 118, 0.1);
  border-radius: 2px;
}

/* ===== LISTING CARDS ===== */
.listing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 1rem;
}

.listing-card.gold {
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 184, 118, 0.06) 100%);
}

.listing-card.silber {
  border-left: 3px solid var(--gold);
}

.listing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.listing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.listing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.listing-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.listing-name a:hover { color: var(--gold); }

.listing-category {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.listing-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.listing-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.listing-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.listing-link:hover { color: var(--gold-bright); }

/* ===== FEATURED-SEKTION ===== */
.featured-section {
  background: linear-gradient(180deg, transparent 0%, var(--bg-card) 50%, transparent 100%);
}

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

/* ===== EMPTY-STATE ===== */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.empty-state h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.empty-state p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.empty-cta {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--bg-deep);
  text-decoration: none;
  border-radius: 2px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.empty-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-card);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.65rem; }

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero-stats { gap: 2.5rem; }
  .stat-number { font-size: 3.2rem; }
  .stat-label { font-size: 0.8rem; letter-spacing: 0.18em; }
  .section { padding: 4rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================ */
/* HAMBURGER MENU */
/* ============================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px) {
  .logo { font-size: 1.6rem; }
  .nav-hamburger { display: flex; }

  /* Menü versteckt */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    padding: 80px 2rem 2rem;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Versteckt via visibility + opacity statt transform (Android zuverlässiger) */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
  }

  /* Offen */
  .nav-links.mobile-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(212,184,118,0.12);
    width: 100%;
  }
  .nav-links li:last-child { border-bottom: none; }

  .nav-links a:not(.nav-cta):not(.user-menu-trigger) {
    display: block;
    padding: 1.1rem 0.5rem;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
  }
  .nav-links a:not(.nav-cta):not(.user-menu-trigger):hover,
  .nav-links a:not(.nav-cta):not(.user-menu-trigger):active {
    color: var(--gold);
    padding-left: 1rem;
  }
  .nav-links a.active { color: var(--gold); }

  /* Login CTA */
  .nav-links .nav-cta {
    display: block;
    margin-top: 1.5rem;
    text-align: center;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-radius: 6px;
  }

  /* User-Menü mobile */
  .user-menu-li { width: 100%; }
  .user-menu-trigger {
    width: 100%;
    padding: 1rem 0.5rem !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 1.1rem;
    color: var(--text-primary) !important;
  }
  .user-menu-dropdown {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(212,184,118,0.1) !important;
    border-radius: 8px !important;
    margin: 0.5rem 0 1rem;
  }

  /* Close Button */
  .nav-close-btn {
    position: fixed;
    top: 1.1rem;
    right: 1.25rem;
    z-index: 10002;
    background: rgba(212,184,118,0.12);
    border: 1px solid rgba(212,184,118,0.3);
    color: var(--gold);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .nav-close-btn.visible { display: flex; }
}