﻿/* =======================================================
   🌿 ALOE VERA LUXEMBOURG – FINAL CLEAN CSS
======================================================= */

/* =========================
   🌑 BACKGROUND SYSTEM
========================= */
#bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Seitenbilder */
body.home #bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45)),
    url("../../images/backgrounds/aloe-vera-hintergrund.avif");
}

body.aloe #bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),
    url("../../images/backgrounds/was-ist-aloe-vera.avif");
}

body.produits #bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),
    url("../../images/backgrounds/bg-aloe.avif");
}

body.legal #bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),
    url("../../images/backgrounds/gesetz.avif");
}

body.blog #bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.6)),
    url("../../images/backgrounds/blog.avif");
}
body.brochure #bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.6)),
    url("../../images/backgrounds/brochure.avif");
}
body.contact #bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.6)),
    url("../../images/backgrounds/contact.avif");
}
body.team #bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.6)),
    url("../../images/backgrounds/notre-team.png");
}

/* =========================
   ✨ GOLD GLOW BACKGROUND
========================= */
#bg::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 75% 50%,
    rgba(255,215,0,0.2),
    transparent 60%
  );

  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* =========================
   🧱 HERO
========================= */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 80px 20px 50px;
}

/* =========================
   ✨ LOGO + GLOW
========================= */
.logo-wrap {
  position: relative;
  display: inline-block;
}

.logo-wrap::before {
  content: "";
  position: absolute;
  inset: -40%;

  background: radial-gradient(
    circle,
    rgba(255,215,0,0.9) 0%,
    rgba(255,215,0,0.4) 40%,
    transparent 75%
  );

  filter: blur(35px);
  z-index: 0;

  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
  0% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.25); }
  100% { opacity: 0.6; transform: scale(0.9); }
}

.logo {
  position: relative;
  z-index: 1;
  width: 120px;
  max-width: 140px;
}

.logo-wrap a:hover .logo {
  transform: scale(1.05);
}

/* =========================
   📝 TITLES
========================= */
.hero h1 {
  color: #f4c430;
  letter-spacing: 4px;
  text-shadow: 0 0 12px rgba(244,196,48,0.6);
}

.catcher {
  color: rgba(255,255,255,0.85);
}

/* =========================
   🧭 NAVIGATION RESPONSIVE FIX
========================= */
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
}

.nav a {
  flex: 1 1 30% !important;   /* max. 3 pro Reihe */
  text-align: center;
  padding: 10px;

  color: #f4c430;
  text-decoration: none;

  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 8px;

  background: rgba(15,15,15,0.65);
  white-space: nowrap;
}

/* Tablet + Handy */
@media (max-width: 768px) {
  .nav a {
    flex: 1 1 45%;   /* 2 pro Reihe */
  }
}

.nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,215,0,0.2);
}

/* =========================
   💎 CONTENT
========================= */
#main {
  position: relative;
  z-index: 1;
}

#main article {
  position: relative;
  z-index: 2;

  margin: 3rem auto;
  max-width: 900px;
  padding: 2rem;

  background: rgba(15,15,15,0.6);
  backdrop-filter: blur(8px);

  border-radius: 16px;
  color: #fff;
}

/* =========================
   📄 BLOG LIST
========================= */
.blog-list {
  list-style: none;
  padding: 0;
}

.blog-list li {
  margin: 15px 0;
  padding: 15px;
  border-radius: 10px;
  background: rgba(15,15,15,0.4);
}

.blog-list a {
  color: #fff;
  text-decoration: none;
}

.blog-list a:hover {
  color: #f4c430;
}

/* =========================
   📝 ARTICLE
========================= */
.article-image {
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
}

.meta {
  font-size: 12px;
  opacity: 0.6;
}

.intro {
  font-size: 18px;
}

/* CTA */
.cta-box {
  margin: 30px 0;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,215,0,0.08);
  text-align: center;
}

/* =========================
   🔙 BACK LINK (UPGRADE)
========================= */
.back-link {
  text-align: center;
  margin: 40px 0;
}

.back-link a {
  display: inline-block;
  padding: 10px 18px;

  color: #f4c430;
  text-decoration: none;

  border-radius: 10px;
  border: 1px solid rgba(255,215,0,0.3);

  background: rgba(15,15,15,0.6);

  transition: 0.25s;
}

/* Hover */
.back-link a:hover {
  background: rgba(255,215,0,0.15);
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
  transform: translateY(-2px);
}

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 768px) {

  .hero {
    padding: 50px 20px 30px;
  }

  .logo {
    width: 90px;
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  #bg {
    background-position: center top;
  }
}

/* =========================
   📱 STICKY HEADER
========================= */
.mobile-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px;
  text-align: center;

  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);

  transform: translateY(-100%);
  transition: 0.3s;

  z-index: 999;
}

.mobile-header img {
  width: 55px;
}

.mobile-header.show {
  transform: translateY(0);
}

/* =========================
   🗺️ MAP
========================= */
#mapBox {
  margin: 20px 0;
}

#luxuryMap {
  height: 300px;
  border-radius: 12px;
  display: none;
}

.map-premium {
  height: 300px;
  border-radius: 12px;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* =========================
   📇 CONTACT
========================= */
.contact-card {
  text-align: center;
  margin-top: 20px;
}

.contact-card img {
  width: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.map-overlay {
  text-align: center;
  color: white;
}

.map-title {
  color: #f4c430;
  font-size: 18px;
}
/* =========================
   🔒 LEGAL PAGES FIX
========================= */

/* Sichtbarkeit sicherstellen */
#main article {
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Logo sauber skalieren */
.logo {
  width: clamp(100px, 10vw, 150px);
  height: auto;
}

/* Wrapper zentrieren */
#wrapper {
  width: 100%;
}
#header {
  text-align: center;
  margin-top: 20px;
}
.logo {
  width: clamp(90px, 8vw, 130px);
  max-width: 140px;
  height: auto;
	
}
/* =========================
   ✨ LOGO GLOW EFFECT
========================= */

.logo-top {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

/* Glow hinter dem Logo */
.logo-top::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;

  background: radial-gradient(
    circle,
    rgba(255,215,0,0.35) 0%,
    rgba(255,215,0,0.15) 40%,
    transparent 70%
  );

  filter: blur(20px);
  z-index: 0;

  animation: logoGlowPulse 5s ease-in-out infinite;
}

/* Logo selbst */
.logo {
  position: relative;
  z-index: 1;

  width: 120px;
  max-width: 140px;
  height: auto;
}

/* Animation */
@keyframes logoGlowPulse {
  0% { opacity: 0.7; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.7; transform: scale(0.95); }
}
footer.footer {
  text-align: center;
  padding: 25px;

  color: #fff;
  background: rgba(0,0,0,0.6);
}

footer.footer p {
  margin: 5px 0;
}

footer.footer a {
  color: #f4c430;
  text-decoration: none;
}

footer.footer a:hover {
  text-decoration: underline;
}
.nav a:hover {
  background: rgba(255,215,0,0.15);
}

.nav a.active {
  background: rgba(255,215,0,0.3);
  font-weight: bold;
}
/* BLOG LIST CLEAN */
.blog-list {
  list-style: none;
  padding: 0;
}

.blog-list li {
  margin: 10px 0;
  padding: 12px 15px;

  border-radius: 8px;
  background: rgba(15,15,15,0.35);

  transition: 0.2s;
}

/* Hover = leicht, nicht zu viel */
.blog-list li:hover {
  background: rgba(255,215,0,0.12);
}

/* Link */
.blog-list a {
  display: block;
  color: #fff;
  text-decoration: none;
}

/* Titel */
.blog-list strong {
  color: #f4c430;
}

/* Datum */
.blog-list small {
  opacity: 0.6;
  font-size: 12px;
}
/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

/* ITEM */
.contact-item {
  padding: 15px;
  border-radius: 10px;
  text-align: center;

  background: rgba(15,15,15,0.5);
  transition: 0.2s;
}

.contact-item:hover {
  background: rgba(255,215,0,0.15);
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
}

/* LINKS */
.contact-item a {
  color: #f4c430;
  text-decoration: none;
  display: block;
}
.btn-premium {
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,215,0,0.4);
  background: rgba(15,15,15,0.6);
  color: #f4c430;
  cursor: pointer;
	transition: 0.25s;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,215,0,0.3);
  background: rgba(255,215,0,0.15);
}
.contact-data {
  text-align: center;
}

.btn-premium {
  display: inline-block;
  margin: 20px auto;
}
#contactContent {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 22px;

  border-radius: 30px;
  font-weight: bold;

  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;
  text-decoration: none;

  box-shadow: 0 0 15px rgba(37,211,102,0.5);

  transition: 0.25s;
}

/* Hover */
.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(37,211,102,0.8);
}

/* Puls Effekt 🔥 */
.whatsapp-btn {
  animation: pulseWhatsApp 2s infinite;
}

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}
/* Toggle Button */
.contact-toggle {
  margin-top: 20px;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: #2c7a7b;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

/* Grid */
.contact-grid {
  margin-top: 15px;
  display: grid;
  gap: 10px;
}

/* Items */
.contact-item {
  display: block;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.contact-item:hover {
  background: rgba(255,255,255,0.2);
}

/* Hidden */
.hidden {
  display: none;
}
/* =========================
   📍 MAP PREMIUM UPGRADE
========================= */

.map-premium {
  position: relative;
  overflow: hidden;
}

.map-premium::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(255,215,0,0.15),
    transparent 70%
  );

  pointer-events: none;
}

/* Hover Effekt */
.map-premium:hover {
  background: rgba(255,215,0,0.1);
}

/* =========================
   📇 CONTACT IMPROVED
========================= */

/* Grid sauber */
.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* Einzelne Felder */
.contact-item {
  font-weight: 500;
  backdrop-filter: blur(6px);
}

/* WhatsApp Highlight */
/*#whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;
  box-shadow: 0 0 12px rgba(37,211,102,0.4);
	animation: pulseWhatsApp 2s infinite;
}
@keyframes pulseWhatsApp {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

#whatsapp:hover {
  transform: scale(1.03);
}
@media (max-width: 600px) {
  .contact-menu {
    width: 90%;
  }
}*/

/* Button Upgrade */
#toggle {
  margin-top: 25px;
  padding: 14px;

  border-radius: 12px;
  border: 1px solid rgba(255,215,0,0.3);

  background: rgba(15,15,15,0.7);
  color: #f4c430;

  cursor: pointer;
}

#toggle:hover {
  background: rgba(255,215,0,0.15);
}

/* OVERLAY BACKGROUND */
.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

/* MENU BOX */
.contact-menu {
  background: rgba(15,15,15,0.9);
  border-radius: 16px;
  padding: 20px;
  width: 280px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  box-shadow: 0 0 25px rgba(255,215,0,0.3);
	position: relative;
}

/* LINKS */
.contact-menu a {
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #f4c430;
  background: rgba(255,255,255,0.05);
  text-align: center;
  transition: 0.2s;
}

.contact-menu a:hover {
  background: rgba(255,215,0,0.15);
}

/* WhatsApp extra */
/*#whatsapp {
  background: linear-gradient(135deg,#25D366,#1ebe5d);
  color: white;
}*/

/* hidden */
.hidden {
  display: none;
}
/* Overlay weich einblenden */
.contact-overlay {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.contact-overlay:not(.hidden) {
  opacity: 1;
}

/* Menü leicht reinzoomen */
.contact-menu {
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.contact-overlay:not(.hidden) .contact-menu {
  transform: scale(1);
}

/* ===== GOLD CONTACT BUTTONS ===== */

.contact-menu a {
  padding: 14px;
  border-radius: 12px;

  color: #f4c430;
  text-decoration: none;

  background: rgba(15,15,15,0.6);
  border: 1px solid rgba(255,215,0,0.25);

  transition: 0.25s;
}

/* Hover Effekt */
.contact-menu a:hover {
  background: rgba(255,215,0,0.15);
  box-shadow: 0 0 15px rgba(255,215,0,0.4);
  transform: translateY(-2px);
}
/* ===== CONTACT TRIGGER (wie MAP) ===== */

.contact-trigger {
  margin-top: 25px;
  height: 120px;

  border-radius: 16px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.6);

  transition: 0.25s;
}

.contact-trigger:hover {
  background: rgba(255,215,0,0.1);
}

/* Inhalt */
.contact-trigger-inner {
  text-align: center;
  color: white;
}

.contact-icon {
  font-size: 26px;
}

.contact-text {
  color: #f4c430;
  font-size: 18px;
  margin-top: 5px;
}

.contact-sub {
  font-size: 12px;
  opacity: 0.7;
}
.back-link {
  text-align: center;
  margin: 40px 0;
  position: relative;
  z-index: 1;
}
/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;

  background: rgba(255,215,0,0.15);
  border-radius: 50%;
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #f4c430;

  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
}

.close-btn:hover {
  opacity: 1;
  transform: scale(1.2);
}
/* QR-code-2026 */
.qr-box {
  text-align: center;
  margin-top: 30px;
}

.qr-box p {
  font-size: 13px;
  opacity: 0.7;
}

.qr-box img {
  width: 140px;
  border-radius: 12px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .qr-box {
    display: none;
  }
}
.luxury-product {
  position: relative;
}

.badge-new {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4CAF50;
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: bold;
  z-index: 2;
}
.badge-new {
  background: linear-gradient(45deg, #4CAF50, #2e7d32);
}
/* anleitung fuer produits seite */
.guide-content {
  max-height: 60vh;
  overflow-y: auto;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
}
/* anleitung fuer produits seite END */

.contact-menu {
  position: relative;
  padding-top: 40px; /* 🔥 Platz für X */
	max-height: 80vh;
  overflow: hidden;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;

  background: rgba(255,215,0,0.15);
  border-radius: 50%;
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #f4c430;

  cursor: pointer;
  z-index: 10;

}
.guide-content {
  max-height: 60vh;
  overflow-y: auto;
}
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 22px;
  border-radius: 30px;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;

  color: #f4c430;
  background: rgba(15,15,15,0.7);

  border: 1px solid rgba(255,215,0,0.4);

  cursor: pointer;
  transition: all 0.25s ease;

  line-height: 1; /* 🔥 fix für dein Problem */
}
.btn-premium:hover {
  background: rgba(255,215,0,0.15);
  box-shadow: 0 5px 20px rgba(255,215,0,0.3);
  transform: translateY(-2px) scale(1.02);
}
.btn-premium {
  position: relative;
}

.btn-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;

  background: radial-gradient(
    circle,
    rgba(255,215,0,0.4),
    transparent 70%
  );
  opacity: 0;
  transition: 0.3s;
}

.btn-premium:hover::after {
  opacity: 1;
}

/* ===== GLOBAL LAYOUT FIX (ALLE SEITEN) ===== */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ALLES außer Footer wächst */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Nur definierter Content wächst */
main {
  flex: 1;
}

/* Zentrierung */
.nav,
footer.footer,
#main {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
/* =========================
   PRODUKT GRID FIX
========================= */

.luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* =========================
   PRODUCT CARD FIX
========================= */

.luxury-product {
  position: relative;
  overflow: hidden;
}

/* Bild sauber */
.luxury-product img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* =========================
   OVERLAY FIX
========================= */

.product-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.85);
  color: white;

  opacity: 0;
  transition: 0.3s ease;

  padding: 20px;
  overflow-y: auto;
}

/* Hover Effekt */
.luxury-product:hover .product-overlay {
  opacity: 1;
}
.nav-section {
  text-align: center;
  margin-top: 30px;
}

.category-text {
  margin-bottom: 20px;
  color: #ddd;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}


.hero-produits {
  position: relative;
  background: url("../images/produits/nouveaux-produits.jpg") center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* =========================
   🏷️ TITLE OVER IMAGE
========================= */

.luxury-product .product-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;

  margin: 0;
  padding: 8px 10px;

  font-size: 14px;
  color: white;
  text-align: center;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2)
  );

  border-radius: 8px;
  z-index: 2;
}

/* =======================================================
   💎 PREMIUM CATEGORY NAV (STICKY + BUTTON STYLE)
======================================================= */

/* Wrapper */
.category-nav-modern {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;

  padding: 15px 10px;
  margin: 25px auto;

  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);

  border-radius: 16px;
  max-width: 1000px;
}

/* LINKS → BUTTONS */
.category-nav-modern a {
  display: inline-block;

  padding: 10px 18px;
  border-radius: 30px;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;

  text-decoration: none;
  color: #222;

  background: linear-gradient(135deg, #d4af37, #b8962e);
  border: 1px solid rgba(255,215,0,0.4);

  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Glow */
.category-nav-modern a:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

/* leichter Glow Effekt */
.category-nav-modern a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;

  background: radial-gradient(
    circle,
    rgba(255,215,0,0.4),
    transparent 70%
  );

  opacity: 0;
  transition: 0.3s;
}

.category-nav-modern a:hover::after {
  opacity: 1;
}

/* =========================
   📌 STICKY BEHAVIOR
========================= */

.category-nav-modern.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 999;

  border-radius: 0 0 16px 16px;
  margin-top: 0;
}

/* Schatten beim Scroll */
.category-nav-modern.sticky-nav {
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

/* =========================
   📱 MOBILE OPTIMIERUNG
========================= */

@media (max-width: 768px) {

  .category-nav-modern {
    gap: 8px;
    padding: 12px 8px;
  }

  .category-nav-modern a {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* =========================
   ⚡ SMOOTH SCROLL
========================= */

html {
  scroll-behavior: smooth;
}
/* =========================
   🔥 ACTIVE BUTTON PREMIUM
========================= */

.category-nav-modern a.active {
  background: linear-gradient(135deg, #ffd700, #fff3a0);
  color: #000;

  transform: scale(1.08);

  box-shadow:
    0 0 10px rgba(255,215,0,0.8),
    0 0 20px rgba(255,215,0,0.6),
    0 0 30px rgba(255,215,0,0.4);

  border: 1px solid rgba(255,215,0,0.9);
}
