/* =========================================================
   LaserCreations Erding - Main Styles
   =========================================================
   
   🎨 DESIGN: Brushed Metal + Neon (Grün #4CAD2F, Orange #C9641F)
   📱 RESPONSIVE: Mobile-First Approach
   ⚡ PERFORMANCE: Optimiert für schnelle Ladezeiten
   
   TODO: Performance-Optimierungen vor Production:
   - CSS minifizieren (Build-Prozess macht dies automatisch)
   - Kritisches CSS inline in <head> einfügen
   - Nicht-kritisches CSS async laden
   - Unused CSS entfernen (mit PurgeCSS)
   
   ========================================================= */

/* =========
   DESIGN-TOKENS
   ========= */
:root {
  --bg-dark: #050607;
  --bg-panel: #0d0f12;
  --accent-green: #4CAD2F;
  --accent-orange: #C9641F;
  --text-main: #f3f3f3;
  --text-muted: #b7b7b7;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.7);
  --radius-soft: 10px;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* SPLASHSCREEN */
.splashscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 1.5s ease-out;
  overflow: hidden;
  perspective: 1000px;
  perspective-origin: center center;
}

.splashscreen.fade-out {
  opacity: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 25% 35%, rgba(255,100,0,0.5) 0%, transparent 35%),
    radial-gradient(circle at 70% 55%, rgba(255,80,0,0.45) 0%, transparent 30%),
    radial-gradient(circle at center, 
      rgba(255,120,0,0.7) 0%, 
      rgba(255,90,0,0.6) 30%,
      rgba(255,140,0,0.4) 60%, 
      transparent 100%) !important;
  box-shadow: 0 0 400px rgba(255,100,0,0.9), 0 0 300px rgba(255,140,0,0.8);
  animation: fadeOutGradient 1.5s ease-out forwards;
  will-change: opacity, transform;
}

.splashscreen.fade-out::before {
  background: 
    radial-gradient(circle at 40% 45%, rgba(255,90,0,0.8) 0%, transparent 25%),
    radial-gradient(circle at 65% 35%, rgba(255,70,0,0.7) 0%, transparent 22%),
    radial-gradient(circle at center, 
      rgba(255,110,0,0.85) 0%, 
      rgba(255,80,0,0.7) 35%, 
      rgba(255,150,0,0.4) 70%,
      transparent 100%) !important;
  animation: pulseOut 1.5s ease-in-out forwards;
  will-change: opacity, transform, filter;
  filter: blur(3px) brightness(1.4);
}

.splashscreen.flash {
  animation: brightnessFlash 1.5s ease-out forwards;
  background: radial-gradient(circle at center, 
    rgba(255,255,100,1) 0%, 
    rgba(200,220,50,1) 30%, 
    rgba(100,180,40,1) 60%, 
    rgba(50,120,30,1) 100%) !important;
  box-shadow: 0 0 150px rgba(200,220,50,1), inset 0 0 150px rgba(255,255,100,0.9);
}

.splashscreen.flash::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, 
    rgba(255,255,150,1) 0%, 
    rgba(220,230,80,0.9) 30%, 
    rgba(120,190,50,0.8) 60%, 
    rgba(60,140,40,0.6) 100%);
  z-index: 100000;
  box-shadow: 0 0 200px rgba(200,220,50,1);
}

.splashscreen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splash-logo {
  position: fixed;
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  z-index: 100001;
  opacity: 0;
  transform-style: preserve-3d;
  filter: drop-shadow(0 0 50px rgba(255,200,100,0.8));
  animation-delay: 0s;
  left: 0;
  top: 0;
  margin: 0;
}

.splash-logo.fly-in {
  animation: logoFlight3D 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, 
             logoFlash 3s ease-out forwards;
  will-change: transform, filter, opacity;
}

/* LANDING ZONE - 3D Landefläche */
.landing-zone {
  position: fixed;
  left: 160px;
  top: 130px;
  width: 220px;
  height: 220px;
  z-index: 100000;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.landing-zone.active {
  opacity: 1;
}

.landing-pad {
  width: 180px;
  height: 180px;
  border: 3px solid rgba(76,173,47,0.6);
  border-radius: 50%;
  background: radial-gradient(circle at center, 
    rgba(76,173,47,0.1) 0%, 
    rgba(76,173,47,0.05) 50%, 
    transparent 100%);
  box-shadow: 
    0 0 20px rgba(76,173,47,0.4),
    inset 0 0 30px rgba(76,173,47,0.2);
  transform: rotateX(70deg) translateZ(-50px);
  transform-style: preserve-3d;
}

.landing-pad.flash {
  animation: padFlash 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes logoFlight3D {
  0% {
    opacity: 1;
    width: 100vw;
    height: 100vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) 
               translate3d(0, 0, 800px) 
               rotateY(0deg) 
               rotateX(0deg) 
               scale(2);
    filter: blur(8px) drop-shadow(0 0 100px rgba(255,200,100,1));
  }
  25% {
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) 
               translate3d(0, 0, 600px) 
               rotateY(-12deg) 
               rotateX(6deg) 
               scale(1.8);
    filter: blur(6px) drop-shadow(0 0 90px rgba(255,200,100,1));
  }
  40% {
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) 
               translate3d(0, 0, 400px) 
               rotateY(-20deg) 
               rotateX(10deg) 
               scale(1.5);
    filter: blur(4px) drop-shadow(0 0 70px rgba(255,200,100,0.9));
  }
  55% {
    opacity: 1;
    left: 50%;
    top: 45%;
    width: 60vw;
    height: 60vh;
    transform: translate(-50%, -50%) 
               translate3d(0, 0, 200px) 
               rotateY(-15deg) 
               rotateX(8deg) 
               scale(1.3);
    filter: blur(3px) drop-shadow(0 0 60px rgba(255,200,100,0.85));
  }
  70% {
    opacity: 1;
    left: 160px;
    top: 130px;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%) 
               translate3d(0, 0, 80px) 
               rotateY(-8deg) 
               rotateX(4deg) 
               scale(1.15);
    filter: blur(2px) drop-shadow(0 0 50px rgba(255,200,100,0.8));
  }
  80% {
    opacity: 1;
    width: 240px;
    height: 240px;
    left: 160px;
    top: 130px;
    transform: translate(-50%, -50%) 
               translate3d(0, 0, 20px) 
               rotateY(-3deg) 
               rotateX(2deg) 
               scale(1.05);
    filter: blur(1px) drop-shadow(0 0 30px rgba(255,200,100,0.7));
  }
  85% {
    opacity: 1;
    width: 220px;
    height: 220px;
    left: 160px;
    top: 130px;
    transform: translate(-50%, -50%) 
               translate3d(0, 0, 5px) 
               rotateY(-1deg) 
               rotateX(1deg) 
               scale(1.02);
    filter: blur(0.5px) drop-shadow(0 0 20px rgba(255,200,100,0.6));
  }
  90% {
    opacity: 1;
    width: 220px;
    height: 220px;
    left: 160px;
    top: 130px;
    transform: translate(-50%, -50%) 
               translate3d(0, 0, 0) 
               rotateY(0deg) 
               rotateX(0deg) 
               scale(1);
    filter: blur(0px) drop-shadow(0 0 15px rgba(255,200,100,0.5));
  }
  100% {
    opacity: 1;
    width: 220px;
    height: 220px;
    left: 160px;
    top: 130px;
    transform: translate(-50%, -50%) 
               translate3d(0, 0, 0) 
               rotateY(0deg) 
               rotateX(0deg) 
               scale(1);
    filter: blur(0px) drop-shadow(0 0 10px rgba(255,200,100,0.3));
  }
}

/* LOGO FLASH beim Landen */
@keyframes logoFlash {
  0%, 84% {
    filter: brightness(1) drop-shadow(0 0 50px rgba(255,200,100,0.8));
  }
  88% {
    filter: brightness(4) drop-shadow(0 0 120px rgba(255,200,100,1)) drop-shadow(0 0 80px rgba(76,173,47,0.8));
  }
  92% {
    filter: brightness(2.5) drop-shadow(0 0 80px rgba(255,200,100,0.9));
  }
  100% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(255,200,100,0.3));
  }
}

/* LANDING PAD FLASH */
@keyframes padFlash {
  0% {
    border-color: rgba(76,173,47,0.6);
    box-shadow: 
      0 0 20px rgba(76,173,47,0.4),
      inset 0 0 30px rgba(76,173,47,0.2);
  }
  50% {
    border-color: rgba(76,173,47,1);
    box-shadow: 
      0 0 80px rgba(76,173,47,1),
      0 0 120px rgba(255,200,100,0.8),
      inset 0 0 60px rgba(76,173,47,0.6);
    background: radial-gradient(circle at center, 
      rgba(76,173,47,0.4) 0%, 
      rgba(76,173,47,0.2) 50%, 
      transparent 100%);
  }
  100% {
    border-color: rgba(76,173,47,0.6);
    box-shadow: 
      0 0 20px rgba(76,173,47,0.4),
      inset 0 0 30px rgba(76,173,47,0.2);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes brightnessFlash {
  0% {
    background: #000000;
  }
  20% {
    background: radial-gradient(circle at center, 
      rgba(255,255,100,1) 0%, 
      rgba(200,220,50,1) 30%, 
      rgba(100,180,40,1) 60%, 
      rgba(50,120,30,1) 100%);
    box-shadow: 0 0 100px rgba(200,220,50,1), inset 0 0 100px rgba(255,255,100,0.8);
  }
  100% {
    background: radial-gradient(circle at center, 
      rgba(255,255,100,1) 0%, 
      rgba(200,220,50,1) 30%, 
      rgba(100,180,40,1) 60%, 
      rgba(50,120,30,1) 100%);
    box-shadow: 0 0 100px rgba(200,220,50,1), inset 0 0 100px rgba(255,255,100,0.8);
  }
}

@keyframes fadeOutGradient {
  0% {
    transform: scale(1);
    filter: blur(0px) brightness(1);
  }
  15% {
    transform: scale(1.01);
    filter: blur(0px) brightness(3.5);
  }
  25% {
    transform: scale(1.02);
    filter: blur(1px) brightness(2);
  }
  50% {
    transform: scale(1.05);
    filter: blur(5px) brightness(1.2);
  }
  100% {
    transform: scale(1.15);
    filter: blur(20px) brightness(0.8);
  }
}

@keyframes pulseOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

@keyframes nebelDrift {
  0% {
    filter: blur(3px) brightness(1);
    transform: scale(1) rotate(0deg);
  }
  50% {
    filter: blur(8px) brightness(1.2);
    transform: scale(1.2) rotate(5deg);
  }
  100% {
    filter: blur(20px) brightness(0.8);
    transform: scale(1.5) rotate(10deg);
  }
}

/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top left, #131519 0, #020204 55%, #000 100%);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* STERNENFELD HINTERGRUND */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(76,173,47,0.6), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(201,100,31,0.5), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(76,173,47,0.6), transparent),
    radial-gradient(1px 1px at 33% 90%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 15% 80%, rgba(201,100,31,0.5), transparent),
    radial-gradient(1px 1px at 45% 15%, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 70% 40%, rgba(76,173,47,0.4), transparent),
    radial-gradient(1px 1px at 25% 55%, rgba(201,100,31,0.4), transparent),
    radial-gradient(2px 2px at 88% 85%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 12% 25%, rgba(76,173,47,0.5), transparent),
    radial-gradient(2px 2px at 55% 75%, rgba(201,100,31,0.6), transparent),
    radial-gradient(1px 1px at 40% 35%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 65% 20%, rgba(76,173,47,0.5), transparent),
    radial-gradient(1px 1px at 30% 65%, rgba(201,100,31,0.4), transparent),
    radial-gradient(2px 2px at 75% 95%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 18% 45%, rgba(76,173,47,0.6), transparent),
    radial-gradient(2px 2px at 82% 30%, rgba(201,100,31,0.5), transparent),
    radial-gradient(1px 1px at 38% 88%, rgba(255,255,255,0.7), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: stars 120s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

@keyframes stars {
  0%, 100% {
    background-position: 0% 0%;
    opacity: 0.8;
  }
  50% {
    background-position: 100% 100%;
    opacity: 1;
  }
}

/* Brushed Metal Base for Panels */
.brushed-panel {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.09) 0, rgba(0,0,0,0.8) 25%, rgba(255,255,255,0.04) 50%, rgba(0,0,0,0.85) 75%, rgba(255,255,255,0.07) 100%);
  background-size: 260% 260%;
  border-radius: var(--radius-soft);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-soft);
}

/* =========
   TOP BAR
   ========= */
.top-bar {
  display: none;
}

/* =========
   HEADER
   ========= */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4vw;
  background: radial-gradient(circle at 0 0, rgba(76,173,47,0.25), transparent 55%),
              radial-gradient(circle at 100% 0, rgba(201,100,31,0.18), transparent 55%),
              #050608;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: visible;
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 20px rgba(0,0,0,0.6),
    0 1px 0 rgba(255,255,255,0.05);
}

/* Stardust Glow Sterne im Header */
.site-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  background-image:
    radial-gradient(circle at 8% 15%, rgba(76,173,47,1) 0px, rgba(76,173,47,0.9) 1px, rgba(76,173,47,0.5) 2px, rgba(76,173,47,0.2) 4px, transparent 8px),
    radial-gradient(circle at 15% 60%, rgba(201,100,31,1) 0px, rgba(201,100,31,0.85) 1.5px, rgba(201,100,31,0.4) 3px, rgba(201,100,31,0.15) 5px, transparent 10px),
    radial-gradient(circle at 22% 35%, rgba(255,255,255,1) 0px, rgba(255,255,255,0.95) 1px, rgba(255,255,255,0.6) 2px, rgba(255,255,255,0.25) 4px, transparent 8px),
    radial-gradient(circle at 35% 75%, rgba(76,173,47,1) 0px, rgba(76,173,47,0.9) 1.5px, rgba(76,173,47,0.5) 3px, rgba(76,173,47,0.2) 5px, transparent 9px),
    radial-gradient(circle at 42% 25%, rgba(201,100,31,1) 0px, rgba(201,100,31,0.95) 1px, rgba(201,100,31,0.7) 2px, rgba(201,100,31,0.3) 4px, transparent 8px),
    radial-gradient(circle at 51% 80%, rgba(255,255,255,1) 0px, rgba(255,255,255,0.8) 2px, rgba(255,255,255,0.4) 4px, rgba(255,255,255,0.15) 6px, transparent 10px),
    radial-gradient(circle at 58% 45%, rgba(76,173,47,1) 0px, rgba(76,173,47,1) 1px, rgba(76,173,47,0.6) 2px, rgba(76,173,47,0.25) 4px, transparent 8px),
    radial-gradient(circle at 65% 20%, rgba(201,100,31,1) 0px, rgba(201,100,31,0.9) 1.5px, rgba(201,100,31,0.5) 3px, rgba(201,100,31,0.2) 5px, transparent 9px),
    radial-gradient(circle at 73% 65%, rgba(255,255,255,1) 0px, rgba(255,255,255,0.95) 1px, rgba(255,255,255,0.65) 2px, rgba(255,255,255,0.3) 4px, transparent 8px),
    radial-gradient(circle at 82% 40%, rgba(76,173,47,1) 0px, rgba(76,173,47,0.85) 2px, rgba(76,173,47,0.45) 4px, rgba(76,173,47,0.15) 6px, transparent 10px),
    radial-gradient(circle at 88% 70%, rgba(201,100,31,1) 0px, rgba(201,100,31,1) 1px, rgba(201,100,31,0.6) 2px, rgba(201,100,31,0.25) 4px, transparent 8px),
    radial-gradient(circle at 92% 30%, rgba(255,255,255,1) 0px, rgba(255,255,255,0.9) 1.5px, rgba(255,255,255,0.5) 3px, rgba(255,255,255,0.2) 5px, transparent 9px),
    radial-gradient(circle at 12% 50%, rgba(76,173,47,1) 0px, rgba(76,173,47,0.8) 1px, rgba(76,173,47,0.4) 3px, rgba(76,173,47,0.15) 5px, transparent 8px),
    radial-gradient(circle at 28% 85%, rgba(201,100,31,1) 0px, rgba(201,100,31,0.9) 1.5px, rgba(201,100,31,0.5) 3px, rgba(201,100,31,0.2) 5px, transparent 9px),
    radial-gradient(circle at 45% 10%, rgba(255,255,255,1) 0px, rgba(255,255,255,0.95) 1px, rgba(255,255,255,0.6) 2px, rgba(255,255,255,0.25) 4px, transparent 8px),
    radial-gradient(circle at 68% 55%, rgba(76,173,47,1) 0px, rgba(76,173,47,0.9) 1.5px, rgba(76,173,47,0.5) 3px, rgba(76,173,47,0.2) 5px, transparent 9px),
    radial-gradient(circle at 78% 15%, rgba(201,100,31,1) 0px, rgba(201,100,31,0.85) 2px, rgba(201,100,31,0.4) 4px, rgba(201,100,31,0.15) 6px, transparent 10px),
    radial-gradient(circle at 95% 50%, rgba(255,255,255,1) 0px, rgba(255,255,255,0.95) 1px, rgba(255,255,255,0.6) 2px, rgba(255,255,255,0.25) 4px, transparent 8px),
    radial-gradient(circle at 18% 40%, rgba(76,173,47,1) 0px, rgba(76,173,47,0.9) 1px, rgba(76,173,47,0.5) 3px, rgba(76,173,47,0.2) 5px, transparent 8px),
    radial-gradient(circle at 38% 55%, rgba(201,100,31,1) 0px, rgba(201,100,31,0.85) 1.5px, rgba(201,100,31,0.4) 3px, rgba(201,100,31,0.15) 5px, transparent 9px),
    radial-gradient(circle at 55% 30%, rgba(255,255,255,1) 0px, rgba(255,255,255,0.9) 1px, rgba(255,255,255,0.5) 2px, rgba(255,255,255,0.2) 4px, transparent 8px),
    radial-gradient(circle at 85% 55%, rgba(76,173,47,1) 0px, rgba(76,173,47,0.95) 1.5px, rgba(76,173,47,0.6) 3px, rgba(76,173,47,0.25) 5px, transparent 9px);
  background-size: 100% 100%;
  filter: blur(0.6px) brightness(1.5) saturate(1.4);
  animation: laserStardustTwinkle 3s ease-in-out infinite;
}

@keyframes laserStardustTwinkle {
  0%, 100% {
    opacity: 0.9;
    filter: blur(0.6px) brightness(1.5) saturate(1.4);
  }
  50% {
    opacity: 1;
    filter: blur(0.9px) brightness(2) saturate(1.8);
  }
}

/* BANNER BILD ALS HINTERGRUND - NUR AUSSCHNITT */
.header-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
}

.banner-bg-image {
  width: 100%;
  height: 120px;
  object-fit: none;
  object-position: center;
  transform: scaleX(3);
  opacity: 0.7;
  filter: 
    blur(8px)
    drop-shadow(0 0 30px rgba(76,173,47,0.6)) 
    drop-shadow(0 0 50px rgba(201,100,31,0.5));
  box-shadow: 
    0 0 40px 10px rgba(76,173,47,0.6),
    0 0 80px 20px rgba(201,100,31,0.4),
    inset 0 0 40px rgba(76,173,47,0.3),
    inset 0 0 40px rgba(201,100,31,0.3);
}

/* Laser-Glow nach außen */
.header-banner-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  width: 100px;
  height: 60px;
  transform: translateY(-50%);
  background: linear-gradient(to right, 
    transparent,
    rgba(76,173,47,0.5) 50%,
    rgba(201,100,31,0.3)
  );
  box-shadow: 
    0 0 40px rgba(76,173,47,0.8),
    0 0 80px rgba(201,100,31,0.6);
  filter: blur(20px);
  pointer-events: none;
}

.header-banner-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 100px;
  height: 60px;
  transform: translateY(-50%);
  background: linear-gradient(to left, 
    transparent,
    rgba(201,100,31,0.5) 50%,
    rgba(76,173,47,0.3)
  );
  box-shadow: 
    0 0 40px rgba(201,100,31,0.8),
    0 0 80px rgba(76,173,47,0.6);
  filter: blur(20px);
  pointer-events: none;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  overflow: visible;
}

/* Link nur um das Logo-Bild */
.logo-area a,
.logo-area .logo-link {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  position: static;
}

/* Greller weißlicher Glow direkt hinter dem Logo */
.logo-area::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, 
    rgba(255,140,0,1) 0%, 
    rgba(255,100,0,0.9) 15%,
    rgba(76,173,47,0.8) 30%,
    rgba(255,140,0,0.6) 45%,
    rgba(76,173,47,0.4) 60%,
    transparent 75%
  );
  filter: blur(40px) brightness(1.5);
  z-index: -1;
  animation: whiteGlowPulse 2.5s ease-in-out infinite alternate;
  border-radius: 50%;
  pointer-events: none;
}

/* Laser-Impuls vom Logo zum Text */
.logo-area::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 200px;
  width: 0px;
  height: 4px;
  background: linear-gradient(90deg,
    rgba(76,173,47,0.9) 0%,
    rgba(76,173,47,0.6) 50%,
    rgba(255,255,255,0.4) 100%
  );
  box-shadow: 
    0 0 20px rgba(76,173,47,0.8),
    0 0 40px rgba(76,173,47,0.5);
  transform: translateY(-50%);
  filter: blur(1px);
  z-index: 5;
  pointer-events: none;
  animation: laserPulse 6s ease-in-out infinite;
}

@keyframes laserPulse {
  0%, 10% {
    width: 0px;
    opacity: 0;
    box-shadow: 
      0 0 10px rgba(76,173,47,0.5),
      0 0 20px rgba(76,173,47,0.3);
  }
  15% {
    width: 300px;
    opacity: 1;
    box-shadow: 
      0 0 30px rgba(76,173,47,1),
      0 0 60px rgba(76,173,47,0.8),
      0 0 100px rgba(76,173,47,0.5);
  }
  25%, 100% {
    width: 0px;
    opacity: 0;
    left: 500px;
  }
}

@keyframes whiteGlowPulse {
  0% {
    opacity: 0.7;
    transform: translate(0, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%) scale(1.15);
  }
}

.brand-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Echtes Logo */
.logo-image {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(76,173,47,0.6)) drop-shadow(0 0 20px rgba(201,100,31,0.4));
  transition: filter 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.logo-image::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -80px;
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg,
    rgba(255,140,0,1) 0%,
    rgba(255,100,0,0.9) 30%,
    rgba(255,140,0,0.6) 60%,
    transparent 100%
  );
  box-shadow: 
    0 0 20px rgba(255,140,0,1),
    0 0 40px rgba(255,100,0,0.8),
    0 0 60px rgba(201,100,31,0.6);
  filter: blur(1.5px);
  animation: laserShoot 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
  transform: translateY(-50%);
}

@keyframes laserShoot {
  0%, 8% {
    opacity: 0;
    width: 0px;
    right: -20px;
  }
  10% {
    opacity: 1;
    width: 70px;
    right: -80px;
  }
  14% {
    opacity: 1;
    width: 70px;
    right: -80px;
  }
  16% {
    opacity: 0;
    width: 0px;
    right: -80px;
  }
  17%, 100% {
    opacity: 0;
    width: 0px;
    right: -20px;
  }
}

@keyframes goldenSweep {
  0% {
    left: -10%;
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    left: 80%;
    opacity: 0;
  }
}

.logo-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, 
    rgba(201,100,31,0.6) 0%, 
    rgba(76,173,47,0.5) 30%,
    rgba(201,100,31,0.4) 60%,
    transparent 80%
  );
  filter: blur(25px);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite alternate;
  border-radius: 50%;
}

@keyframes glowPulse {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.logo-image:hover {
  filter: drop-shadow(0 0 18px rgba(76,173,47,0.9)) drop-shadow(0 0 28px rgba(201,100,31,0.6));
  transform: scale(1.05);
}

.logo-domain {
  font-size: 2.0rem;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  position: relative;
  -webkit-text-stroke: 1px rgba(76,173,47,0.5);
  text-shadow: 
    0 0 3px rgba(255,255,255,0.9),
    0 0 8px rgba(255,255,255,0.7),
    0 0 12px rgba(76,173,47,0.6),
    0 0 20px rgba(76,173,47,0.4);
  overflow: visible;
  animation: beingLasered 6s ease-in-out infinite;
}

/* Tagline unter dem Logo */
.logo-tagline {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255,200,100,0.9);
  position: relative;
  display: block;
  margin-top: 5px;
  margin-bottom: 8px;
  text-shadow: 
    0 0 8px rgba(255,200,100,0.6),
    0 0 15px rgba(255,140,0,0.4),
    0 0 20px rgba(255,140,0,0.2);
  letter-spacing: 1px;
}

.logo-domain::after {
  content: '';
  position: absolute;
  left: 0%;
  width: 4px;
  height: 90px;
  top: calc(-90px - 20px);
  background: linear-gradient(to bottom, 
    transparent 0%,
    rgba(255,100,0,0.15) 25%,
    rgba(255,140,0,0.4) 50%,
    rgba(255,100,0,0.7) 70%,
    rgba(255,200,0,0.9) 85%,
    rgba(255,255,255,1) 95%,
    rgba(255,255,255,1) 100%
  );
  box-shadow: 
    0 0 6px 2px rgba(255,140,0,0.9),
    0 0 12px 3px rgba(255,100,0,0.7),
    0 0 20px 5px rgba(255,200,0,0.5),
    0 0 35px 8px rgba(255,140,0,0.3),
    0 90px 25px 8px rgba(255,255,255,1),
    0 90px 45px 15px rgba(255,200,0,0.9),
    0 90px 65px 20px rgba(255,140,0,0.7),
    0 90px 90px 30px rgba(255,100,0,0.5);
  animation: laserFromTop 6s ease-in-out infinite;
  filter: blur(0.4px) brightness(2.2);
  z-index: 99;
  pointer-events: none;
  transform-origin: top center;
  transform: rotate(8deg);
}

/* Britzelnder Stern - DIREKT am Ende des Laserstrahls */
.logo-domain::before {
  content: '✦';
  position: absolute;
  left: 0%;
  top: -20px;
  font-size: 4rem;
  color: rgba(255,255,255,1);
  text-shadow: 
    0 0 20px rgba(255,255,255,1),
    0 0 30px rgba(255,200,0,1),
    0 0 40px rgba(255,140,0,0.9),
    0 0 50px rgba(255,100,0,0.7),
    0 0 70px rgba(255,140,0,0.5);
  animation: laserFromTop 6s ease-in-out infinite, sternNeonPulse 2s ease-in-out infinite;
  z-index: 102;
  pointer-events: none;
  filter: brightness(3) drop-shadow(0 0 15px rgba(255,200,0,0.8));
  transform: translateX(-70%) rotate(0deg);
}

/* Animation für Stern wurde entfernt - verwendet jetzt laserFromTop */

@keyframes beingLasered {
  0%, 10% {
    text-shadow: 
      0 0 3px rgba(255,255,255,0.9),
      0 0 8px rgba(255,255,255,0.7),
      0 0 12px rgba(76,173,47,0.6),
      0 0 20px rgba(76,173,47,0.4);
    filter: brightness(1);
  }
  11%, 55% {
    text-shadow: 
      0 0 6px rgba(255,255,255,1),
      0 0 12px rgba(255,200,0,0.8),
      0 0 18px rgba(255,140,0,0.6),
      0 0 25px rgba(255,100,0,0.4);
    filter: brightness(1.2);
  }
  56%, 60% {
    text-shadow: 
      0 0 8px rgba(255,255,255,1),
      0 0 15px rgba(255,200,0,0.9),
      0 0 22px rgba(255,140,0,0.7),
      0 0 30px rgba(255,100,0,0.5);
    filter: brightness(1.4);
  }
  61%, 100% {
    text-shadow: 
      0 0 3px rgba(255,255,255,0.9),
      0 0 8px rgba(255,255,255,0.7),
      0 0 12px rgba(76,173,47,0.6),
      0 0 20px rgba(76,173,47,0.4);
    filter: brightness(1);
  }
}

@keyframes laserFromTop {
  0%, 10% {
    left: 0%;
    opacity: 0;
  }
  11% {
    left: 0%;
    opacity: 1;
  }
  55% {
    left: 100%;
    opacity: 1;
  }
  60%, 100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes sternNeonPulse {
  0% {
    text-shadow: 
      0 0 25px rgba(255,140,0,1),
      0 0 40px rgba(255,140,0,0.9),
      0 0 60px rgba(255,100,0,0.8),
      0 0 80px rgba(255,140,0,0.7),
      0 0 100px rgba(255,140,0,0.5);
    filter: brightness(4) drop-shadow(0 0 25px rgba(255,140,0,1));
  }
  50% {
    text-shadow: 
      0 0 25px rgba(76,173,47,1),
      0 0 40px rgba(76,173,47,0.9),
      0 0 60px rgba(76,173,47,0.8),
      0 0 80px rgba(76,173,47,0.7),
      0 0 100px rgba(76,173,47,0.5);
    filter: brightness(4) drop-shadow(0 0 25px rgba(76,173,47,1));
  }
  100% {
    text-shadow: 
      0 0 25px rgba(255,140,0,1),
      0 0 40px rgba(255,140,0,0.9),
      0 0 60px rgba(255,100,0,0.8),
      0 0 80px rgba(255,140,0,0.7),
      0 0 100px rgba(255,140,0,0.5);
    filter: brightness(4) drop-shadow(0 0 25px rgba(255,140,0,1));
  }
}

.logo-subline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* HEADER RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 10;
}

.search-form {
  position: relative;
}

.search-form::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(90deg, 
    rgba(76,173,47,0.7), 
    rgba(255,140,0,0.7),
    rgba(255,255,255,0.8),
    rgba(255,140,0,0.7),
    rgba(76,173,47,0.7)
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.5;
  animation: slideGradient 4s linear infinite;
  pointer-events: none;
}

@keyframes slideGradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.search-form input {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 999px;
  border: 2px solid rgba(255,140,0,0.3);
  padding: 12px 20px;
  color: var(--text-main);
  min-width: 280px;
  font-size: 1.05rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  animation: glowingBorderInput 6s ease-in-out infinite;
}

@keyframes glowingBorderInput {
  0%, 100% {
    border-color: rgba(76,173,47,0.6);
    box-shadow: 
      0 0 15px rgba(76,173,47,0.4),
      0 0 25px rgba(76,173,47,0.2);
  }
  33% {
    border-color: rgba(255,140,0,0.7);
    box-shadow: 
      0 0 15px rgba(255,140,0,0.5),
      0 0 25px rgba(255,140,0,0.3);
  }
  66% {
    border-color: rgba(255,255,255,0.8);
    box-shadow: 
      0 0 20px rgba(255,255,255,0.6),
      0 0 30px rgba(255,220,100,0.4);
  }
}

.search-form input:focus {
  outline: none;
  border-color: rgba(255,140,0,0.9);
  box-shadow: 0 0 20px rgba(255,140,0,0.6);
}

.search-form:focus-within::before {
  opacity: 0.8;
}

.search-form input::placeholder {
  color: var(--text-muted);
  font-size: 1rem;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-icons button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255,140,0,0.6);
  background: radial-gradient(circle at 30% 0, rgba(255,140,0,0.2), rgba(5,6,8,0.95) 70%);
  color: rgba(255,255,255,1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 
    0 0 15px rgba(0,0,0,0.9),
    0 0 10px rgba(255,140,0,0.3);
  transition: all 0.3s ease;
  position: relative;
  animation: glowingBorder 6s ease-in-out infinite;
  text-shadow: 
    0 0 8px rgba(255,255,255,0.9),
    0 0 15px rgba(255,255,255,0.7),
    0 0 20px rgba(255,255,255,0.5);
  filter: brightness(1.3);
}

@keyframes glowingBorder {
  0%, 100% {
    border-color: rgba(76,173,47,0.8);
    box-shadow: 
      0 0 15px rgba(0,0,0,0.9),
      0 0 15px rgba(76,173,47,0.6),
      0 0 25px rgba(76,173,47,0.4);
  }
  33% {
    border-color: rgba(255,140,0,0.9);
    box-shadow: 
      0 0 15px rgba(0,0,0,0.9),
      0 0 15px rgba(255,140,0,0.7),
      0 0 25px rgba(255,140,0,0.5);
  }
  66% {
    border-color: rgba(255,255,255,0.95);
    box-shadow: 
      0 0 15px rgba(0,0,0,0.9),
      0 0 20px rgba(255,255,255,0.8),
      0 0 30px rgba(255,220,100,0.6);
  }
}

.header-icons button::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, 
    rgba(76,173,47,0.7), 
    rgba(255,140,0,0.7),
    rgba(255,255,255,0.8),
    rgba(255,140,0,0.7),
    rgba(76,173,47,0.7)
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.5;
  animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.header-icons button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 0 25px rgba(255,140,0,0.8),
    0 0 35px rgba(76,173,47,0.6),
    inset 0 0 20px rgba(255,140,0,0.4);
  border-color: rgba(255,140,0,1);
}

.header-icons button:hover::before {
  opacity: 0.8;
}

/* Warenkorb überhitzt - Brandeffekt */
.header-icons button:nth-child(3) {
  animation: glowingBorder 6s ease-in-out infinite, overheatCart 3s ease-in-out infinite;
  position: relative;
}

/* Warenkorb Badge */
#cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff3d00 0%, #ff6f00 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 61, 0, 0.6);
  border: 2px solid #1a1a1a;
  display: none;
  z-index: 10;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes overheatCart {
  0%, 100% {
    background: radial-gradient(circle at 30% 0, rgba(255,140,0,0.2), rgba(5,6,8,0.95) 70%);
    filter: brightness(1);
  }
  50% {
    background: radial-gradient(circle at 30% 0, rgba(255,80,0,0.6), rgba(5,6,8,0.95) 70%);
    filter: brightness(1.3) drop-shadow(0 0 15px rgba(255,100,0,0.8));
  }
}

.header-icons button:nth-child(3)::after {
  content: '🔥';
  position: absolute;
  font-size: 1.8rem;
  top: -32px;
  right: 2px;
  animation: flameFlicker 0.8s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255,100,0,0.8));
  z-index: 10;
}

@keyframes flameFlicker {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1) translateY(0px);
  }
  25% {
    opacity: 1;
    transform: scale(1.1) translateY(-2px);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95) translateY(0px);
  }
  75% {
    opacity: 1;
    transform: scale(1.05) translateY(-1px);
  }
}

/* =========
   NAVIGATION
   ========= */
.main-nav {
  background: 
    linear-gradient(135deg, 
      rgba(255,255,255,0.05) 0%,
      rgba(255,255,255,0.02) 25%,
      transparent 50%,
      rgba(0,0,0,0.3) 75%,
      rgba(0,0,0,0.5) 100%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 0px,
      transparent 2px,
      transparent 4px,
      rgba(0,0,0,0.15) 6px
    ),
    linear-gradient(180deg, #1a1d24 0%, #0d0f14 50%, #000000 100%);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 2px solid rgba(0,0,0,0.8);
  box-shadow: 
    0 2px 0 rgba(255,255,255,0.08),
    0 4px 20px rgba(76,173,47,0.3),
    0 6px 40px rgba(201,100,31,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  z-index: 90;
  backdrop-filter: blur(5px);
}

.main-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.1) 45%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0.1) 55%,
    transparent 100%
  );
  animation: shine 8s linear infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0 4vw;
}

.main-nav li {
  margin-right: 18px;
}

.main-nav a {
  display: inline-block;
  padding: 14px 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  text-shadow: 
    0 0 10px rgba(0,0,0,0.8),
    0 1px 0 rgba(255,255,255,0.3);
}

.main-nav a:hover {
  color: var(--accent-green);
  text-shadow: 
    0 0 15px rgba(76,173,47,0.8),
    0 0 25px rgba(76,173,47,0.5),
    0 1px 0 rgba(255,255,255,0.5);
  border-bottom-color: var(--accent-green);
}

.main-nav a.active {
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
  text-shadow: 
    0 0 15px rgba(201,100,31,0.8),
    0 0 25px rgba(201,100,31,0.5),
    0 1px 0 rgba(255,255,255,0.5);
}

/* =========
   HERO SLIDESHOW
   ========= */
.hero-slideshow {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #000, #0a0a0a);
  border-bottom: 2px solid rgba(76,173,47,0.3);
  box-shadow: 
    0 10px 40px rgba(0,0,0,0.9),
    inset 0 -2px 0 rgba(76,173,47,0.2);
  padding: 30px 0;
}

/* STERNE NEBEN SLIDESHOW */
.hero-slideshow::before,
.hero-slideshow::after {
  content: '';
  position: absolute;
  top: 0;
  width: 350px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  background-image: 
    radial-gradient(3px 3px at 30% 20%, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 60% 40%, rgba(76,173,47,0.8), transparent),
    radial-gradient(3px 3px at 20% 60%, rgba(201,100,31,0.7), transparent),
    radial-gradient(2px 2px at 70% 80%, rgba(255,255,255,0.8), transparent),
    radial-gradient(3px 3px at 45% 35%, rgba(76,173,47,0.7), transparent),
    radial-gradient(1px 1px at 15% 75%, rgba(201,100,31,0.6), transparent),
    radial-gradient(3px 3px at 80% 50%, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 25% 15%, rgba(76,173,47,0.6), transparent),
    radial-gradient(1px 1px at 55% 65%, rgba(201,100,31,0.5), transparent),
    radial-gradient(3px 3px at 35% 85%, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 75% 25%, rgba(76,173,47,0.7), transparent),
    radial-gradient(1px 1px at 40% 55%, rgba(201,100,31,0.6), transparent),
    radial-gradient(3px 3px at 65% 70%, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 18% 45%, rgba(76,173,47,0.8), transparent),
    radial-gradient(1px 1px at 85% 90%, rgba(201,100,31,0.7), transparent);
  background-size: 100% 100%;
  animation: twinkle 3s ease-in-out infinite;
}

.hero-slideshow::before {
  left: 0;
  background-position: 0% 0%;
}

.hero-slideshow::after {
  right: 0;
  background-position: 100% 0%;
  animation-delay: 1.5s;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 320px;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 60px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
  padding: 0 10px;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.8),
    0 0 20px rgba(76,173,47,0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
  filter: brightness(0.85) contrast(1.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.slide img:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: rgba(76,173,47,0.5);
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.9),
    0 0 30px rgba(76,173,47,0.4),
    0 0 50px rgba(201,100,31,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
  filter: brightness(1) contrast(1.15);
  z-index: 10;
}

.slide-overlay {
  display: none;
}

/* Navigation Arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(76,173,47,0.85), rgba(76,173,47,0.65));
  border: 1px solid rgba(76,173,47,0.5);
  color: white;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 15px rgba(0,0,0,0.7),
    0 0 20px rgba(76,173,47,0.3),
    inset 0 1px 0 rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  opacity: 0.8;
}

.slide-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 
    0 6px 20px rgba(0,0,0,0.8),
    0 0 30px rgba(76,173,47,0.6),
    inset 0 1px 0 rgba(255,255,255,0.4);
  background: linear-gradient(135deg, rgba(76,173,47,1), rgba(76,173,47,0.8));
}

.slide-arrow.prev {
  left: 10px;
}

.slide-arrow.next {
  right: 10px;
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: rgba(76,173,47,0.6);
  border-color: var(--accent-green);
  transform: scale(1.2);
}

.indicator.active {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-orange));
  border-color: var(--accent-green);
  box-shadow: 
    0 0 10px rgba(76,173,47,0.8),
    0 0 20px rgba(201,100,31,0.5);
  transform: scale(1.3);
}

/* Responsive Slideshow */
@media (max-width: 1200px) {
  .slideshow-container {
    height: 280px;
    padding: 0 50px;
  }

  .slide img {
    width: 240px;
    height: 240px;
  }

  .slide {
    gap: 15px;
  }
}

@media (max-width: 960px) {
  .slideshow-container {
    height: 240px;
    padding: 0 45px;
  }

  .slide img {
    width: 200px;
    height: 200px;
  }

  .slide {
    gap: 12px;
  }

  .slide-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-slideshow {
    padding: 20px 0;
  }

  .slideshow-container {
    height: 200px;
    padding: 0 40px;
  }

  .slide {
    gap: 10px;
  }

  .slide img {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 640px) {
  .slideshow-container {
    height: 180px;
    padding: 0 35px;
  }

  .slide img {
    width: 140px;
    height: 140px;
  }

  .slide {
    gap: 8px;
  }

  .slide-arrow {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
    opacity: 0.7;
  }

  .slide-arrow.prev {
    left: 5px;
  }

  .slide-arrow.next {
    right: 5px;
  }

  .slide-indicators {
    padding: 6px 12px;
    gap: 6px;
    bottom: -30px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .slideshow-container {
    height: 150px;
  }

  .slide img {
    width: 120px;
    height: 120px;
  }

  .slide {
    gap: 6px;
  }
}

/* =========
   PAGE WRAPPER (SIDEBAR + CONTENT)
   ========= */
.page-wrapper {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  padding: 24px 4vw 80px;
  min-height: 60vh;
}

/* SIDEBAR BASIC – Details in Einheit 2 */
.sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-box {
  padding: 18px 18px 16px;
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.9) 30%, rgba(255,255,255,0.03) 60%, rgba(0,0,0,0.95) 100%),
    rgba(8,9,13,0.96);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 
    var(--shadow-soft),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.sidebar-box:hover {
  transform: translateX(2px);
  border-color: rgba(76,173,47,0.3);
  box-shadow: 
    0 20px 42px rgba(0,0,0,0.8),
    0 0 20px rgba(76,173,47,0.15),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(0,0,0,0.5);
}

.sidebar-title {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--accent-green);
  text-shadow: 0 0 8px rgba(76,173,47,0.6);
  font-weight: 600;
}

.sidebar-menu {
  list-style: none;
  font-size: 0.9rem;
}

.sidebar-menu li {
  margin-bottom: 4px;
}

.sidebar-menu a {
  display: block;
  padding: 6px 8px;
  text-decoration: none;
  color: var(--text-muted);
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  position: relative;
}

.sidebar-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 60%;
  background: linear-gradient(90deg, var(--accent-green), transparent);
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
  border-radius: 0 4px 4px 0;
}

.sidebar-menu li.active a,
.sidebar-menu a:hover {
  background: linear-gradient(90deg, rgba(76,173,47,0.25), rgba(76,173,47,0.08) 70%, transparent 100%);
  color: #ffffff;
  padding-left: 14px;
  border-left-color: var(--accent-orange);
  text-shadow: 0 0 6px rgba(76,173,47,0.5);
}

.sidebar-menu a:hover::before {
  width: 4px;
  opacity: 1;
}

/* =========
   CONTENT
   ========= */
.content {
  padding: 0 4px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  margin-bottom: 20px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(0,0,0,0.6));
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  font-size: 0.9rem;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-item a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(76,173,47,0.7);
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

.breadcrumb-separator {
  color: var(--text-muted);
  user-select: none;
}

.content-section {
  margin-bottom: 28px;
  padding: 24px 28px;
  background: 
    linear-gradient(140deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.95) 25%, rgba(255,255,255,0.02) 55%, rgba(0,0,0,0.98) 100%),
    radial-gradient(circle at top left, rgba(76,173,47,0.11), transparent 60%),
    radial-gradient(circle at bottom right, rgba(201,100,31,0.08), transparent 55%),
    rgba(8,10,15,0.95);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 
    var(--shadow-soft),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -2px 0 rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transition: left 0.6s ease;
}

.content-section:hover::before {
  left: 100%;
}

.content-section:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 24px 48px rgba(0,0,0,0.85),
    0 0 30px rgba(76,173,47,0.08),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -2px 0 rgba(0,0,0,0.6);
}

.content-section h1,
.content-section h2 {
  margin-bottom: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.content-section h1::after,
.content-section h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), transparent);
  box-shadow: 0 0 8px var(--accent-orange);
}

.content-section h1 {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}

.content-section h2 {
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

.content-section p {
  line-height: 1.7;
  color: var(--text-main);
}

.content-section p + p {
  margin-top: 12px;
  color: var(--text-muted);
}

.content-section strong {
  color: var(--accent-green);
  font-weight: 600;
  text-shadow: 0 0 4px rgba(76,173,47,0.4);
}

/* Banner-Karte */
.banner-section {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.banner-section::before {
  display: none;
}

.banner-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.95) 30%, rgba(255,255,255,0.04) 65%, rgba(0,0,0,0.98) 100%),
    radial-gradient(circle at left, rgba(76,173,47,0.28), transparent 60%),
    radial-gradient(circle at right, rgba(201,100,31,0.25), transparent 60%),
    #050608;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 
    0 24px 50px rgba(0,0,0,0.95),
    inset 0 2px 0 rgba(255,255,255,0.15),
    inset 0 -2px 0 rgba(0,0,0,0.7),
    0 0 40px rgba(76,173,47,0.2),
    0 0 60px rgba(201,100,31,0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.02) 10px,
    rgba(255,255,255,0.02) 20px
  );
  animation: shine 20s linear infinite;
}

@keyframes shine {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(50%, 50%) rotate(360deg); }
}

.banner-card:hover {
  transform: scale(1.02);
  box-shadow: 
    0 28px 60px rgba(0,0,0,1),
    inset 0 2px 0 rgba(255,255,255,0.2),
    inset 0 -2px 0 rgba(0,0,0,0.7),
    0 0 50px rgba(76,173,47,0.35),
    0 0 80px rgba(201,100,31,0.25);
}

.banner-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 20%, #ffffff90, #4CAD2F 40%, #000 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-shadow: 
    0 0 15px rgba(76,173,47,1),
    0 0 30px rgba(76,173,47,0.7);
  box-shadow: 
    0 0 20px rgba(76,173,47,0.6),
    inset 0 2px 0 rgba(255,255,255,0.5),
    inset 0 -2px 0 rgba(0,0,0,0.8);
  border: 2px solid rgba(76,173,47,0.5);
  flex-shrink: 0;
}

.banner-text {
  flex: 1;
}

.banner-text p {
  font-size: 1rem;
  margin: 0;
  color: var(--text-muted);
}

.banner-strong {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-green) 50%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(76,173,47,0.5);
  display: block;
  margin-top: 4px;
}

/* =========
   PRODUKTSYSTEM
   ========= */
.products-section {
  margin-top: 40px;
  margin-bottom: 40px;
}

.section-main-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-green) 50%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 16px;
}

.section-main-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-green), var(--accent-orange), transparent);
  box-shadow: 0 0 10px var(--accent-green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.product-card {
  background: 
    linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.95) 25%, rgba(255,255,255,0.03) 60%, rgba(0,0,0,0.98) 100%),
    rgba(8,10,15,0.95);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 
    0 18px 40px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -2px 0 rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76,173,47,0.1), transparent);
  transition: left 0.5s ease;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(76,173,47,0.4);
  box-shadow: 
    0 24px 50px rgba(0,0,0,0.85),
    0 0 30px rgba(76,173,47,0.2),
    0 0 50px rgba(201,100,31,0.1),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -2px 0 rgba(0,0,0,0.6);
}

.product-image-placeholder {
  height: 200px;
  background: 
    radial-gradient(circle at center, rgba(76,173,47,0.15), transparent 70%),
    radial-gradient(circle at 70% 30%, rgba(201,100,31,0.12), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.product-image-placeholder::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.015) 20px,
    rgba(255,255,255,0.015) 40px
  );
}

.product-icon {
  font-size: 4rem;
  filter: grayscale(0.3) brightness(1.2);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(76,173,47,0.4);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--accent-green), rgba(76,173,47,0.7));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 
    0 4px 12px rgba(76,173,47,0.5),
    inset 0 1px 0 rgba(255,255,255,0.3);
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.product-badge.hot {
  background: linear-gradient(135deg, var(--accent-orange), rgba(201,100,31,0.7));
  box-shadow: 
    0 4px 12px rgba(201,100,31,0.5),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
  background: linear-gradient(135deg, #ffffff, var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-shadow: 0 0 8px rgba(201,100,31,0.4);
}

.product-btn {
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(76,173,47,0.8), rgba(76,173,47,0.6));
  border: 1px solid rgba(76,173,47,0.5);
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 12px rgba(76,173,47,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.product-btn:hover {
  background: linear-gradient(135deg, rgba(76,173,47,1), rgba(76,173,47,0.8));
  border-color: var(--accent-green);
  box-shadow: 
    0 6px 18px rgba(76,173,47,0.5),
    0 0 20px rgba(76,173,47,0.3),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.product-btn:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 8px rgba(76,173,47,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

/* =========
   GALERIE & REFERENZEN
   ========= */
.gallery-section,
.references-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: -20px;
  margin-bottom: 32px;
}

/* Galerie-Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.9),
    0 0 30px rgba(76,173,47,0.3);
}

.gallery-image-placeholder {
  height: 280px;
  background: 
    radial-gradient(circle at center, rgba(76,173,47,0.2), transparent 70%),
    radial-gradient(circle at 80% 20%, rgba(201,100,31,0.15), transparent 60%),
    linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.98) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.gallery-image-placeholder::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 15px,
    rgba(255,255,255,0.02) 15px,
    rgba(255,255,255,0.02) 30px
  );
}

.gallery-icon {
  font-size: 5rem;
  filter: grayscale(0.2);
  position: relative;
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  opacity: 0.3;
  transform: scale(1.2);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.3rem;
  color: var(--accent-green);
  margin-bottom: 4px;
  text-shadow: 0 0 8px rgba(76,173,47,0.6);
}

.gallery-overlay p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Referenzen-Grid */
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.reference-card {
  background: 
    linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.95) 25%, rgba(255,255,255,0.03) 60%, rgba(0,0,0,0.98) 100%),
    rgba(8,10,15,0.95);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  box-shadow: 
    0 18px 40px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -2px 0 rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reference-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76,173,47,0.08), transparent);
  transition: left 0.6s ease;
}

.reference-card:hover::before {
  left: 100%;
}

.reference-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76,173,47,0.3);
  box-shadow: 
    0 24px 50px rgba(0,0,0,0.85),
    0 0 25px rgba(76,173,47,0.15),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -2px 0 rgba(0,0,0,0.6);
}

.reference-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.reference-icon {
  font-size: 1.2rem;
  filter: grayscale(0) brightness(1.2);
}

.reference-rating {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-shadow: 0 0 10px rgba(201,100,31,0.5);
}

.reference-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 16px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.reference-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 3rem;
  color: var(--accent-green);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.reference-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.reference-author strong {
  color: var(--accent-green);
  font-size: 1.05rem;
  font-weight: 600;
}

.reference-author span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========
   FOOTER
   ========= */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 4vw 40px;
  background: #050608;
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
  z-index: 10;
  margin-bottom: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 20px;
}

/* Footer Legal Links */
.footer-legal-links {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: var(--accent-green);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal-links a:hover {
  color: var(--accent-orange);
  text-shadow: 0 0 8px rgba(76,173,47,0.6);
}

.footer-legal-links .divider {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* PRIVACY BANNER MODAL */
.privacy-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  z-index: 100000;
  background: linear-gradient(135deg, rgba(5,6,8,0.98) 0%, rgba(13,15,18,0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(76,173,47,0.5);
  box-shadow: 0 -10px 50px rgba(0,0,0,0.8), 0 -2px 20px rgba(76,173,47,0.3);
  transition: bottom 0.5s ease-out;
  animation: laserGlowBorder 3s ease-in-out infinite;
  max-height: 90vh;
  overflow-y: auto;
}

.privacy-banner.show {
  bottom: 0;
}

@keyframes laserGlowBorder {
  0%, 100% {
    border-top-color: rgba(76,173,47,0.5);
    box-shadow: 0 -10px 50px rgba(0,0,0,0.8), 0 -2px 20px rgba(76,173,47,0.3);
  }
  50% {
    border-top-color: rgba(255,140,0,0.7);
    box-shadow: 0 -10px 50px rgba(0,0,0,0.8), 0 -2px 20px rgba(255,140,0,0.5);
  }
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 4vw 35px;
  text-align: center;
}

.privacy-content h3 {
  color: rgba(255,200,100,1);
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255,200,100,0.5);
}

.privacy-content p {
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.6;
}

.privacy-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.privacy-links a {
  color: rgba(76,173,47,0.9);
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid rgba(76,173,47,0.3);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.privacy-links a:hover {
  color: rgba(255,140,0,1);
  border-color: rgba(255,140,0,0.6);
  box-shadow: 0 0 15px rgba(255,140,0,0.4);
}

.privacy-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.privacy-buttons button {
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.accept-btn {
  background: linear-gradient(135deg, rgba(76,173,47,0.9) 0%, rgba(50,120,30,0.9) 100%);
  color: white;
  box-shadow: 0 0 20px rgba(76,173,47,0.4);
}

.accept-btn:hover {
  background: linear-gradient(135deg, rgba(76,173,47,1) 0%, rgba(50,120,30,1) 100%);
  box-shadow: 0 0 30px rgba(76,173,47,0.7);
  transform: translateY(-2px);
}

.decline-btn {
  background: linear-gradient(135deg, rgba(100,100,100,0.5) 0%, rgba(60,60,60,0.5) 100%);
  color: rgba(255,255,255,0.8);
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.decline-btn:hover {
  background: linear-gradient(135deg, rgba(120,120,120,0.6) 0%, rgba(80,80,80,0.6) 100%);
  box-shadow: 0 0 20px rgba(255,140,0,0.3);
  transform: translateY(-2px);
}

.privacy-year {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 15px;
  margin-bottom: 0;
}

/* =========
   RESPONSIVE
   ========= */

/* Hamburger Menu Button (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
  position: relative;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(76,173,47,0.5);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

/* Tablet & Mobile Anpassungen */
@media (max-width: 960px) {
  .page-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .sidebar {
    order: -1;
    position: sticky;
    top: 10px;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
  }

  /* Custom Scrollbar für Sidebar */
  .sidebar::-webkit-scrollbar {
    width: 6px;
  }

  .sidebar::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
  }

  .sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-green), var(--accent-orange));
    border-radius: 10px;
  }

  .sidebar-box {
    margin-bottom: 10px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .search-form {
    flex: 1;
  }

  .search-form input {
    width: 100%;
  }

  .main-nav ul {
    padding: 0 16px;
  }

  .product-grid,
  .gallery-grid,
  .references-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }
}

/* Mobile Small */
@media (max-width: 640px) {
  :root {
    font-size: 14px;
  }

  .top-bar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
    text-align: center;
  }

  .top-bar-left,
  .top-bar-right {
    width: 100%;
    justify-content: center;
  }

  .logo-area {
    flex-direction: column;
    text-align: center;
  }

  .logo-image {
    width: 50px;
    height: 50px;
  }

  .logo-domain {
    font-size: 1rem;
  }

  .logo-subline {
    font-size: 0.75rem;
  }

  /* Neon Banner Mobile */
  .neon-banner {
    padding: 6px 12px;
    gap: 6px;
    margin-bottom: 4px;
  }

  .neon-letter {
    font-size: 1.8rem;
  }

  /* Mobile Navigation mit Hamburger */
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(to bottom, #07090d, #10131b);
    box-shadow: 4px 0 20px rgba(0,0,0,0.9);
    transition: left 0.4s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 0;
  }

  .main-nav li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .main-nav a {
    display: block;
    padding: 16px 12px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .main-nav a.active {
    border-left-color: var(--accent-orange);
    background: linear-gradient(90deg, rgba(76,173,47,0.2), transparent);
  }

  /* Mobile Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 998;
  }

  .nav-overlay.active {
    display: block;
  }

  .page-wrapper {
    padding-inline: 16px;
    gap: 16px;
  }

  .content-section {
    padding: 16px 18px;
  }

  .content-section h1 {
    font-size: 1.4rem;
  }

  .content-section h2 {
    font-size: 1.1rem;
  }

  .section-main-title {
    font-size: 1.6rem;
  }

  .product-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .references-grid {
    grid-template-columns: 1fr;
  }

  .banner-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .banner-logo {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .footer-inner {
    font-size: 0.8rem;
  }
}

/* =========================================================
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ========================================================= */
.legal-page {
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  padding: 40px 20px;
}

.legal-header {
  max-width: 900px;
  margin: 0 auto 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--accent-green);
}

.legal-header .back-link {
  display: inline-block;
  color: var(--accent-green);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.legal-header .back-link:hover {
  color: var(--accent-orange);
  text-shadow: 0 0 8px rgba(76,173,47,0.6);
  transform: translateX(-5px);
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  text-shadow: 0 0 20px rgba(76,173,47,0.4);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(13,15,18,0.6);
  padding: 40px;
  border-radius: var(--radius-soft);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.8rem;
  color: var(--accent-green);
  margin-bottom: 15px;
  font-weight: 600;
  text-shadow: 0 0 15px rgba(76,173,47,0.3);
}

.legal-section h3 {
  font-size: 1.3rem;
  color: var(--accent-orange);
  margin: 20px 0 10px;
  font-weight: 500;
}

.legal-section p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: var(--text-main);
  font-size: 1rem;
}

.legal-section ul,
.legal-section ol {
  margin: 15px 0;
  padding-left: 30px;
  line-height: 1.8;
}

.legal-section li {
  margin-bottom: 10px;
  color: var(--text-main);
}

.legal-section a {
  color: var(--accent-green);
  text-decoration: none;
  transition: all 0.3s ease;
  word-break: break-all;
}

.legal-section a:hover {
  color: var(--accent-orange);
  text-shadow: 0 0 8px rgba(76,173,47,0.5);
}

.legal-section strong {
  color: var(--accent-orange);
  font-weight: 600;
}

.legal-section em {
  color: var(--text-muted);
  font-style: italic;
}

.legal-footer {
  max-width: 900px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
  .legal-page {
    padding: 20px 15px;
  }
  
  .legal-header h1 {
    font-size: 2rem;
  }
  
  .legal-content {
    padding: 25px 20px;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-section h3 {
    font-size: 1.2rem;
  }
}

/* Very Small Devices */
@media (max-width: 375px) {
  .header-icons button {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .product-card,
  .reference-card {
    font-size: 0.9rem;
  }

  .section-main-title {
    font-size: 1.4rem;
  }
}

/* =========================================================
   ADDITIONAL BREAKPOINTS (ergänzt für vollständige Mobile-Coverage)
   ========================================================= */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .site-header {
    flex-direction: column;
    gap: 15px;
    padding: 20px 3vw;
  }
  
  .header-right {
    width: 100%;
    justify-content: space-between;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Very Small Mobile */
@media (max-width: 320px) {
  .site-header {
    padding: 15px 2vw;
  }
  
  .logo-domain {
    font-size: 0.7rem;
  }
  
  .search-form input {
    min-width: 140px;
  }
  
  .product-card {
    padding: 12px;
  }
  
  .product-title {
    font-size: 0.95rem;
  }
  
  .banner-card {
    padding: 15px;
  }
  
  .cta-button {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

/* Landscape Mobile */
@media (max-width: 900px) and (orientation: landscape) {
  .sidebar {
    max-height: 200px;
  }

  .page-wrapper {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}


/* ========================================
   WARENKORB / MERKZETTEL / KONTO MODALS
   ======================================== */

.cart-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cart-modal {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid var(--accent-orange);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(201, 100, 31, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cart-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(201, 100, 31, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(76, 173, 47, 0.1) 0%, transparent 100%);
}

.cart-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--accent-orange);
  text-shadow: 0 0 20px rgba(201, 100, 31, 0.5);
}

.close-modal {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-orange);
  transform: rotate(90deg);
}

.cart-modal-content {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  min-height: 200px;
}

.cart-modal-content::-webkit-scrollbar {
  width: 8px;
}

.cart-modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.cart-modal-content::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 4px;
}

.cart-modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.cart-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-orange);
  transform: translateX(4px);
}

.cart-item-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #fff;
}

.cart-item-price {
  margin: 0;
  color: var(--accent-green);
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(76, 173, 47, 0.5);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-btn,
.cart-remove-btn,
.wishlist-to-cart-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 6px 12px;
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 1.2rem;
}

.cart-qty-btn:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  transform: scale(1.1);
}

.cart-qty {
  min-width: 30px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.cart-remove-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 1.1rem;
}

.cart-remove-btn:hover {
  background: #d32f2f;
  border-color: #d32f2f;
  transform: scale(1.1);
}

.wishlist-to-cart-btn {
  font-size: 0.85rem;
  padding: 6px 12px;
  white-space: nowrap;
}

.wishlist-to-cart-btn:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.cart-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(201, 100, 31, 0.3);
  background: linear-gradient(0deg, rgba(76, 173, 47, 0.1) 0%, transparent 100%);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #fff;
}

.cart-total strong:last-child {
  color: var(--accent-green);
  text-shadow: 0 0 15px rgba(76, 173, 47, 0.6);
}

.cart-checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-green) 0%, #3a8a25 100%);
  border: 2px solid var(--accent-green);
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(76, 173, 47, 0.3);
}

.cart-checkout-btn:hover {
  background: linear-gradient(135deg, #3a8a25 0%, var(--accent-green) 100%);
  box-shadow: 0 6px 25px rgba(76, 173, 47, 0.5);
  transform: translateY(-2px);
}

.cart-checkout-btn:active {
  transform: translateY(0);
}

/* Account Modal specific styles */
.account-modal .cart-modal-content {
  padding: 32px;
}

.account-info {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.account-info h3 {
  color: var(--accent-orange);
  margin-top: 20px;
  margin-bottom: 12px;
}

.account-info ul {
  list-style: none;
  padding: 0;
}

.account-info ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.account-info ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(76, 173, 47, 0.5);
}

.account-info p {
  margin: 12px 0;
}

.account-info p strong {
  color: var(--accent-orange);
}

/* Responsive adjustments for modals */
@media (max-width: 640px) {
  .cart-modal {
    max-width: 100%;
    border-radius: 12px;
  }
  
  .cart-modal-header {
    padding: 16px;
  }
  
  .cart-modal-header h2 {
    font-size: 1.2rem;
  }
  
  .cart-modal-content {
    padding: 16px;
  }
  
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .cart-item-controls {
    width: 100%;
    justify-content: space-between;
  }
  
  .wishlist-to-cart-btn {
    flex: 1;
  }
  
  .cart-modal-footer {
    padding: 16px;
  }
  
  .cart-total {
    font-size: 1.1rem;
  }
  
  .cart-checkout-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}


/* ========================================
   AUTH & CHECKOUT FORMS
   ======================================== */

/* Auth Tabs */
.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(201, 100, 31, 0.3);
}

.auth-tab {
  flex: 1;
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-tab.active {
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
}

.auth-tab:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Auth Forms */
.auth-form {
  padding: 20px 0;
}

.auth-form h3 {
  color: var(--accent-green);
  margin-bottom: 20px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.register-benefits {
  background: linear-gradient(135deg, rgba(76, 173, 47, 0.1), rgba(76, 173, 47, 0.05));
  border-left: 3px solid var(--accent-green);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.register-benefits strong {
  color: var(--accent-green);
  font-size: 1.05rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 100, 31, 0.2);
}

.form-group small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.password-strength,
.password-match {
  margin-top: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 20px;
}

.form-group-checkbox {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-group-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent-green);
}

.form-group-checkbox label {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  cursor: pointer;
}

.form-group-checkbox label a {
  color: var(--accent-orange);
  text-decoration: none;
}

.form-group-checkbox label a:hover {
  text-decoration: underline;
}

.auth-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent-green) 0%, #3a8a25 100%);
  border: 2px solid var(--accent-green);
  border-radius: 10px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 173, 47, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.auth-submit-btn .btn-icon {
  font-size: 1.3rem;
}

.auth-submit-btn:hover {
  background: linear-gradient(135deg, #3a8a25 0%, var(--accent-green) 100%);
  box-shadow: 0 6px 25px rgba(76, 173, 47, 0.5);
  transform: translateY(-2px);
}

.auth-submit-btn:active {
  transform: translateY(0);
}

.auth-submit-btn.register-btn {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #a0501a 100%);
  border-color: var(--accent-orange);
  box-shadow: 0 4px 15px rgba(201, 100, 31, 0.3);
  font-size: 1.15rem;
  padding: 16px 24px;
}

.auth-submit-btn.register-btn:hover {
  background: linear-gradient(135deg, #a0501a 0%, var(--accent-orange) 100%);
  box-shadow: 0 6px 25px rgba(201, 100, 31, 0.5);
}

.auth-info {
  text-align: center;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  background: rgba(76, 173, 47, 0.05);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(76, 173, 47, 0.2);
}

.forgot-password {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: var(--accent-orange);
  text-decoration: none;
  font-size: 0.95rem;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* OAuth Section */
.oauth-divider {
  position: relative;
  text-align: center;
  margin: 30px 0 20px;
}

.oauth-divider::before,
.oauth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.oauth-divider::before {
  left: 0;
}

.oauth-divider::after {
  right: 0;
}

.oauth-divider span {
  background: #1a1a1a;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.5);
}

.oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oauth-btn {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.oauth-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}

.oauth-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.oauth-btn.google:hover {
  border-color: #4285F4;
}

.oauth-btn.microsoft:hover {
  border-color: #00A4EF;
}

/* Account Dashboard */
.account-dashboard {
  padding: 10px 0;
}

.account-welcome {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 100, 31, 0.3);
}

.account-welcome h3 {
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.account-email {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.account-sections {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.account-section-btn {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.account-section-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-green);
  transform: translateX(4px);
}

.account-section-btn.logout {
  border-color: rgba(255, 0, 0, 0.3);
}

.account-section-btn.logout:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: #ff4444;
}

.account-benefits {
  background: rgba(76, 173, 47, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(76, 173, 47, 0.2);
}

.account-benefits h4 {
  color: var(--accent-green);
  margin-bottom: 12px;
}

.account-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.account-benefits ul li {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Verification Modal */
.verification-info {
  text-align: center;
  padding: 20px;
}

.verification-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.verification-info h3 {
  color: var(--accent-green);
  margin-bottom: 16px;
}

.verification-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 12px;
}

.verification-note {
  background: rgba(201, 100, 31, 0.2);
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid var(--accent-orange);
  margin: 20px 0;
  text-align: left;
}

.test-verify-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 0.9rem;
}

/* Notification Toast */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  z-index: 10001;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-success {
  border-left: 4px solid var(--accent-green);
}

.notification-error {
  border-left: 4px solid #ff4444;
}

.notification-warning {
  border-left: 4px solid #ff9800;
}

.notification-info {
  border-left: 4px solid var(--accent-orange);
}

/* Checkout Modals */
.checkout-modal {
  max-width: 700px;
}

.checkout-modal.large {
  max-width: 1200px;
}

.checkout-options {
  padding: 20px 0;
}

.checkout-options h3 {
  color: var(--accent-orange);
  text-align: center;
  margin-bottom: 30px;
}

.checkout-option-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.checkout-option-card:hover {
  border-color: var(--accent-green);
  background: rgba(255, 255, 255, 0.08);
}

.option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.option-icon {
  font-size: 2rem;
}

.option-header h4 {
  color: #fff;
  margin: 0;
}

.checkout-option-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}

.checkout-option-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
}

.checkout-option-btn.primary {
  background: linear-gradient(135deg, var(--accent-green) 0%, #3a8a25 100%);
  border-color: var(--accent-green);
  color: #fff;
}

.checkout-option-btn.primary:hover {
  box-shadow: 0 6px 25px rgba(76, 173, 47, 0.5);
  transform: translateY(-2px);
}

.checkout-option-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-orange);
  color: #fff;
}

.checkout-option-btn.secondary:hover {
  background: rgba(201, 100, 31, 0.2);
  transform: translateY(-2px);
}

.checkout-divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.checkout-divider::before,
.checkout-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.checkout-divider::before {
  left: 0;
}

.checkout-divider::after {
  right: 0;
}

.checkout-divider span {
  background: #1a1a1a;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: bold;
}

.checkout-summary {
  background: rgba(76, 173, 47, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(76, 173, 47, 0.2);
  margin-top: 30px;
}

.checkout-summary h4 {
  color: var(--accent-green);
  margin-bottom: 16px;
}

.summary-items {
  margin-bottom: 16px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 1.2rem;
  color: #fff;
  border-top: 2px solid var(--accent-green);
  margin-top: 10px;
}

.summary-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* Checkout Form */
.checkout-form {
  padding: 10px 0;
}

.checkout-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.checkout-column h3 {
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.user-greeting {
  background: rgba(76, 173, 47, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 3px solid var(--accent-green);
}

.user-greeting p {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.9);
}

.user-email {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-order-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.checkout-order-item {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 8px;
}

.order-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-item-qty {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.order-item-price {
  color: var(--accent-green);
  font-weight: bold;
}

.checkout-costs {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
}

.cost-row.total {
  border-top: 2px solid var(--accent-green);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 1.2rem;
  color: #fff;
}

.tax-note {
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.payment-method {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.payment-method input[type="radio"] {
  display: none;
}

.payment-label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.payment-method input[type="radio"]:checked + .payment-label {
  border-color: var(--accent-green);
  background: rgba(76, 173, 47, 0.1);
}

.payment-label:hover {
  border-color: var(--accent-orange);
}

.payment-icon {
  font-size: 1.5rem;
}

.checkout-agreements {
  margin-bottom: 24px;
}

.agreement-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
}

.agreement-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.agreement-checkbox span {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.checkout-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent-green) 0%, #3a8a25 100%);
  border: 2px solid var(--accent-green);
  border-radius: 10px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 173, 47, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checkout-submit-btn:hover {
  background: linear-gradient(135deg, #3a8a25 0%, var(--accent-green) 100%);
  box-shadow: 0 6px 25px rgba(76, 173, 47, 0.5);
  transform: translateY(-2px);
}

.checkout-security {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* Order Confirmation */
.order-confirmation {
  text-align: center;
  padding: 20px;
}

.confirmation-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.order-confirmation h3 {
  color: var(--accent-green);
  margin-bottom: 16px;
}

.order-number {
  background: rgba(76, 173, 47, 0.1);
  padding: 12px 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 1.1rem;
}

.order-number strong {
  color: var(--accent-green);
}

.confirmation-details {
  text-align: left;
  margin: 30px 0;
}

.email-highlight {
  color: var(--accent-orange);
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
}

.next-steps {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.next-steps h4 {
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.next-steps ol {
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.confirmation-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 30px 0;
}

.test-button,
.test-button.secondary {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
}

.test-button {
  background: linear-gradient(135deg, var(--accent-green) 0%, #3a8a25 100%);
  border-color: var(--accent-green);
  color: #fff;
}

.test-button:hover {
  box-shadow: 0 4px 15px rgba(76, 173, 47, 0.4);
  transform: translateY(-2px);
}

.test-button.secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-orange);
  color: #fff;
}

.test-button.secondary:hover {
  background: rgba(201, 100, 31, 0.2);
  transform: translateY(-2px);
}

.contact-support {
  background: rgba(201, 100, 31, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(201, 100, 31, 0.2);
  margin-top: 30px;
}

.contact-support p {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.8);
}

.cart-modal-header.success {
  background: linear-gradient(180deg, rgba(76, 173, 47, 0.2) 0%, transparent 100%);
}

/* Responsive for Checkout */
@media (max-width: 960px) {
  .checkout-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .checkout-modal.large {
    max-width: 700px;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .confirmation-actions {
    flex-direction: column;
  }
  
  .test-button,
  .test-button.secondary {
    width: 100%;
  }
  
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}


/* =========================================================
   ANGEBOTSANFRAGE FORM STYLES
   ========================================================= */

.quote-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(13, 15, 18, 0.95), rgba(20, 25, 30, 0.95));
  border-radius: var(--radius-soft);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-main);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  color: var(--text-main);
  font-size: 16px;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 2px rgba(76, 173, 47, 0.2);
  background: rgba(0, 0, 0, 0.6);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent-green), #3d8a25);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 173, 47, 0.3);
  margin-top: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #5ac73e, var(--accent-green));
  box-shadow: 0 6px 25px rgba(76, 173, 47, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .quote-form-container { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .submit-btn { width: 100%; }
}


/* =========================================================
   ANGEBOTSANFRAGE FORM STYLES
   ========================================================= */

.quote-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(13, 15, 18, 0.95), rgba(20, 25, 30, 0.95));
  border-radius: var(--radius-soft);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-main);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  color: var(--text-main);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 2px rgba(76, 173, 47, 0.2);
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent-green), #3d8a25);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 173, 47, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(76, 173, 47, 0.5);
}



/* Quote Requests Styles */
.quotes-list { display: flex; flex-direction: column; gap: 20px; }
.quote-item { background: rgba(0, 0, 0, 0.3); padding: 20px; border-radius: 8px; border: 1px solid var(--border-soft); }
.quote-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.quote-status { padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.quote-status.new { background: var(--accent-green); color: white; }
.quote-status.read { background: #666; color: white; }
.quote-details p { margin: 8px 0; color: var(--text-muted); }
.quote-time { font-size: 12px; color: #888; margin-top: 12px; }
.quote-actions { display: flex; gap: 10px; margin-top: 16px; }



/* Internal Message System Styles */
.messages-tabs { display: flex; gap: 10px; border-bottom: 2px solid var(--border-soft); margin-bottom: 24px; }
.message-tab { background: transparent; border: none; color: var(--text-muted); padding: 12px 20px; cursor: pointer; font-size: 16px; font-weight: 600; transition: all 0.3s; border-bottom: 3px solid transparent; }
.message-tab.active { color: var(--accent-green); border-bottom-color: var(--accent-green); }
.message-tab:hover { color: var(--text-main); }
.message-content { animation: fadeIn 0.3s ease; }
.empty-hint { color: var(--text-muted); font-size: 14px; margin-top: 8px; }
.quote-from { display: flex; flex-direction: column; gap: 4px; }
.company-badge { background: var(--accent-orange); color: white; padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: 600; margin-left: 8px; }
.quote-email { font-size: 14px; color: var(--text-muted); }
.quote-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; font-size: 14px; color: var(--text-muted); }
.quote-message { background: rgba(76, 173, 47, 0.1); padding: 16px; border-radius: 6px; border-left: 3px solid var(--accent-green); }
.quote-message p { margin: 8px 0 0 0; white-space: pre-wrap; word-wrap: break-word; }
.form-description { color: var(--text-muted); margin-bottom: 24px; }
.form-actions { display: flex; gap: 12px; margin-top: 24px; }
.submit-btn.secondary { background: linear-gradient(135deg, #555, #333); }
.submit-btn.secondary:hover { background: linear-gradient(135deg, #666, #444); }



/* User Welcome Message */
.user-welcome {
  text-align: right;
  margin-bottom: 8px;
}
.welcome-text {
  color: var(--accent-green);
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(76, 173, 47, 0.3);
  display: inline-block;
  animation: fadeIn 0.5s ease;
}
@media (max-width: 768px) {
  .user-welcome {
    font-size: 12px;
    margin-bottom: 4px;
  }
}

