/* 1. CSS Reset & Base */
:root {
  /* Colors */
  --color-bg: #FFFFFF;
  --color-dark: #10172B;
  --color-accent: #005AF5;
  --color-accent-hover: #004CCE;
  --color-light-text: #A5A6AA;
  --color-border: #D4DADE;
  --color-footer-bg: #1A1A1A;
  --color-footer-text: #8D8F93;
  --color-cyan: #05E2FF;

  /* Typography */
  --font-primary: 'DM Sans', sans-serif;
  --font-secondary: 'Jost', sans-serif;

  /* Layout */
  --container-max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.647;
  color: var(--color-dark);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Language Gateway Overlay (1:1 Replica of kugerr.com Language Selector Screen)
   ========================================================================== */
.lang-gateway-overlay {
  position: fixed;
  inset: 0;
  background-color: #FFFFFF;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lang-gateway-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lang-gateway-box {
  max-width: 700px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lang-gateway-logo {
  margin-bottom: 40px;
}

.lang-gateway-logo img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.lang-gateway-title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #10172B;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.lang-flags-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
}

.lang-flag-card {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.lang-flag-card:hover {
  transform: translateY(-8px) scale(1.05);
}

.flag-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 4px solid #FFFFFF;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.lang-flag-card:hover .flag-circle {
  box-shadow: 0 15px 35px rgba(0, 90, 245, 0.3);
  border-color: var(--color-accent);
}

.flag-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag-label {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #555555;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.lang-flag-card:hover .flag-label {
  color: var(--color-accent);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-dark);
}

h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.2px;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.647;
}

.section-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.text-center-label {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 48px;
}

/* Utility Classes */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
}

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

/* Top Bar */
.top-bar {
  background-color: #000;
  color: white;
  height: 45px;
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-divider {
  opacity: 0.4;
  margin: 0 4px;
}

.top-bar a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: var(--color-cyan);
}

.language-selector {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  outline: none;
}

.language-selector option {
  background-color: #000;
  color: white;
}

/* Main Navigation Header */
.main-nav {
  background-color: white;
  height: 75px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.mobile-logo-img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  max-height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0);
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #10172B;
  padding: 8px 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

.nav-shop-link {
  font-weight: 700 !important;
  color: var(--color-accent) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cart-btn {
  background: rgba(0, 90, 245, 0.08);
  color: var(--color-accent);
  border: 1px solid rgba(0, 90, 245, 0.2);
  padding: 8px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
}

.nav-cart-btn:hover {
  background: var(--color-accent);
  color: white;
}

.cart-badge {
  background: var(--color-accent);
  color: white;
  border-radius: 10px;
  padding: 2px 8px;
  font-size: 11px;
}

.hamburger {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  color: var(--color-dark);
  font-family: inherit;
}

.hamburger-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
}

.hamburger-icon-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-icon-lines span {
  width: 20px;
  height: 2px;
  background-color: var(--color-dark);
  transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 85vw;
  height: 100vh;
  background-color: #0E1424;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 32px 20px;
}

.mobile-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.3s ease;
}

.mobile-menu-body {
  padding: 10px 32px 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mobile-link-primary {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.mobile-link-secondary {
  font-size: 1.15rem;
  font-weight: 500;
  color: #A5A6AA;
  text-decoration: none;
  padding: 8px 0;
}

.mobile-menu-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 24px 0 16px;
}

.mobile-link-bold {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  padding: 8px 0;
}

/* Hero Section with Video Background */
.hero {
  width: 100%;
  height: calc(100vh - 120px);
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background-color: #000;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.floating-badge:hover {
  transform: scale(1.08);
}

.badge-listen {
  top: 30px;
  left: 30px;
}

.badge-listen img {
  width: 83px;
  height: 83px;
}

.badge-buynow {
  top: 30px;
  right: 30px;
}

.buynow-circle {
  width: 75px;
  height: 75px;
  background-color: #CC0000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
}

.buynow-circle span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-title {
  color: white;
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  max-width: 650px;
  margin-bottom: 36px;
  line-height: 1.5;
}

.hero-stats {
  display: flex;
  gap: 16px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stats-divider {
  opacity: 0.4;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-button {
  display: inline-block;
  background-color: var(--color-accent);
  color: white;
  padding: 16px 42px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,90,245,0.3);
}

.btn-video-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 15px 28px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.hero-tuv-disclaimer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
  pointer-events: none;
}

/* Product Category Showcase Cards (1:1 Elementor Zoom-Out & Hover Effect) */
.product-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

.category-card {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Background image initial state: slightly zoomed in scale(1.2) */
.category-card .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.2);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover state: background image zooms out to scale(1.0) */
.category-card:hover .card-bg {
  transform: scale(1.0);
}

/* Card overlay initial state: subtle light gradient */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
  transition: background 0.6s ease;
}

/* Card overlay hover state: darkens slightly */
.category-card:hover .card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 40px;
  text-align: center;
  color: white;
  z-index: 2;
}

.card-content h2 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: white;
  line-height: 1.1;
}

/* Button initial state: transparent bg, 2px white border, white text */
.card-btn {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  background: transparent;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
  text-decoration: none;
}

/* Button hover state / card hover state: solid white bg, dark text */
.category-card:hover .card-btn,
.card-btn:hover {
  background-color: #FFFFFF;
  color: #10172B;
}

/* KÜGERR SHOP MAIN SECTION (Matching kugerr.shop 1:1) */
.kugerr-shop-main-section {
  padding: 60px 0 100px;
  background-color: #FFFFFF;
}

.shop-header-banner {
  text-align: center;
  margin-bottom: 40px;
}

.shop-main-title {
  font-family: var(--font-secondary);
  font-size: 3rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}

.shop-subtitle-text {
  font-size: 1.1rem;
  color: #6D6D6D;
}

/* Shop Controls Bar - Responsive & No Overflow */
.shop-controls-bar {
  background-color: #000000;
  color: white;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
}

.shop-sorting-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  max-width: 100%;
  box-sizing: border-box;
}

.shop-order-select {
  background: white;
  color: #333;
  border: 1px solid #CCC;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  max-width: 100%;
  box-sizing: border-box;
}

.shop-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 100%;
}

.shop-tab-btn {
  background: transparent;
  color: #A5A6AA;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.shop-tab-btn.active,
.shop-tab-btn:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.shop-result-count {
  font-size: 14px;
  color: #6D6D6D;
  margin-bottom: 30px;
}

/* Shop Grid (Identical to Screenshot 1) */
.kugerr-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.kugerr-shop-card {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kugerr-shop-card:hover {
  transform: translateY(-6px);
}

.kugerr-shop-img-box {
  width: 100%;
  height: 320px;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #F0F0F0;
}

.kugerr-shop-img-box img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.kugerr-shop-card:hover .kugerr-shop-img-box img {
  transform: scale(1.05);
}

.red-brand-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #CC0000;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(204,0,0,0.4);
}

.kugerr-shop-title {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 52px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kugerr-shop-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #005AF5;
  margin-bottom: 20px;
}

.btn-kugerr-cart {
  background-color: #EEEEEE;
  color: #333333;
  border: 1px solid #EEEEEE;
  padding: 12px 24px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  display: inline-block;
  text-decoration: none;
}

.btn-kugerr-cart:hover {
  background-color: #D5D5D5;
  border-color: #D5D5D5;
  color: #333333;
}

.btn-kugerr-cart.btn-primary-cart {
  background-color: #333333;
  color: #FFFFFF;
  border-color: #333333;
}

.btn-kugerr-cart.btn-primary-cart:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #FFFFFF;
}

/* Noise Simulator Section */
.noise-simulator-section {
  padding: 100px 0;
  background-color: #0B0F1A;
  color: white;
}

.noise-simulator-section .section-title {
  color: white;
}

.simulator-card {
  background-color: #10172B;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.simulator-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.sim-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 20px;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.sim-btn.active {
  background: rgba(0, 90, 245, 0.2);
  border-color: var(--color-accent);
}

.sim-brand { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.sim-db { font-size: 2.2rem; font-weight: 700; color: var(--color-cyan); }
.sim-tag { font-size: 11px; text-transform: uppercase; opacity: 0.7; margin-top: 4px; }

.visualizer-area {
  background: #080C16;
  border-radius: 6px;
  padding: 24px;
}

.visualizer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #A5A6AA;
  margin-bottom: 24px;
}

.status-badge {
  background: rgba(5, 226, 255, 0.15);
  color: var(--color-cyan);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sound-wave-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 70px;
  margin-bottom: 24px;
}

.wave-bar {
  width: 6px;
  background-color: var(--color-cyan);
  border-radius: 3px;
  height: 15px;
  transition: height 0.2s ease;
}

.sim-kugerr-active .wave-bar {
  animation: soundWaveQuiet 1.2s infinite ease-in-out alternate;
}

.sim-standard-active .wave-bar {
  background-color: #FF4D4D;
  animation: soundWaveLoud 0.4s infinite ease-in-out alternate;
}

@keyframes soundWaveQuiet {
  0% { height: 10px; } 50% { height: 28px; } 100% { height: 15px; }
}

@keyframes soundWaveLoud {
  0% { height: 20px; } 50% { height: 65px; } 100% { height: 35px; }
}

.decibel-meter {
  background: rgba(255,255,255,0.1);
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}

.meter-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #05E2FF 0%, #005AF5 60%, #FF4D4D 100%);
  transition: width 0.5s ease;
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #718096;
}

/* Discover KÜGERR Section (Exact 1:1 Styling from Screenshot) */
.why-kugerr {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.why-kugerr-grid {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.why-kugerr-text { flex: 1; }
.why-kugerr-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #10172B;
}

.section-desc {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.why-kugerr-image {
  flex: 1;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

/* Accordion Component (Identical to Screenshot 1:1) */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: none;
}

.accordion-item {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-color: #D1D5DB;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 20px;
  background: #FFFFFF;
  border: none;
  color: #10172B;
  text-align: left;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background-color: #F9FAFB;
}

.accordion-symbol {
  font-size: 1.2rem;
  font-weight: 700;
  color: #10172B;
  width: 16px;
  display: inline-block;
  text-align: center;
}

.accordion-header-text {
  flex-grow: 1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 20px;
  background-color: #FFFFFF;
}

.accordion-item.active .accordion-content {
  padding: 0 20px 20px 48px;
}

.accordion-content p {
  color: #4B5563;
  line-height: 1.65;
  font-size: 0.93rem;
}

/* Scroll To Top Floating Button (Identical to Screenshot 1:1) */
.scroll-to-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background-color: #10172B;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

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

.scroll-to-top-btn:hover {
  background-color: var(--color-accent);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 90, 245, 0.4);
}

/* Model Comparison Section */
.comparison-section {
  padding: 80px 0 120px;
  background-color: #F8F9FA;
}

.comparison-table-wrapper {
  overflow-x: auto;
  background: white;
  border: 1px solid #EAEAEA;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid #EAEAEA;
}

.comparison-table th {
  background-color: var(--color-dark);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.badge-silent {
  background: rgba(0, 90, 245, 0.1);
  color: var(--color-accent);
  padding: 4px 10px;
  font-weight: 700;
  border-radius: 4px;
}

/* Marquee */
.marquee {
  background-color: var(--color-dark);
  padding: 22px 0;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-text {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 0 15px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1A1A;
  color: white;
  z-index: 9990;
  padding: 12px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.cookie-link { color: #05E2FF; text-decoration: underline; }
.cookie-banner-actions { display: flex; align-items: center; gap: 12px; }
.cookie-btn-ok { background-color: var(--color-accent); color: white; border: none; padding: 6px 18px; font-weight: 700; cursor: pointer; }
.cookie-btn-close { background: none; border: none; color: #A5A6AA; font-size: 20px; cursor: pointer; }

/* Footer (Matching Storefront & Original Site 1:1) */
.footer {
  background-color: #10172B;
  color: #A5A6AA;
  padding: 80px 0 30px;
  border-top: 1px solid #1A233A;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 50px;
}

.footer-logo-img {
  max-height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #A5A6AA;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-hq-block {
  font-size: 13px;
  line-height: 1.6;
  color: #CCCCCC;
}

.footer-hq-block a {
  color: var(--color-cyan);
  text-decoration: underline;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #CCCCCC; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--color-cyan); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #CCCCCC;
}

.footer-contact-item a { color: #FFFFFF; text-decoration: none; }

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 50px 0 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright { font-size: 13px; color: #A5A6AA; }
.social-icons { display: flex; gap: 16px; }
.social-icons a { color: #FFFFFF; }

/* Introductory Films Modal (1:1 Replica of kugerr.com/en/introductory-film/) */
.intro-films-modal-content {
  max-width: 900px;
  grid-template-columns: 1fr;
  padding: 50px 40px;
  background-color: #FFFFFF;
}

.intro-films-wrapper {
  display: flex;
  flex-direction: column;
}

.intro-films-main-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.intro-films-subtext {
  font-size: 1rem;
  color: #666;
  margin-bottom: 36px;
}

.intro-film-card {
  margin-bottom: 12px;
}

.intro-video-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  background-color: #000;
  margin-bottom: 16px;
}

.intro-video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.intro-film-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.film-divider {
  height: 1px;
  background-color: #000000;
  margin: 28px 0 36px;
}

/* Cart Drawer Styling */
.cart-drawer-wrapper {
  position: fixed;
  inset: 0;
  z-index: 10005;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-drawer-wrapper.active { visibility: visible; opacity: 1; }

.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.cart-drawer-wrapper.active .cart-drawer { transform: translateX(0); }

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid #EAEAEA;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; }
.cart-drawer-body { flex-grow: 1; overflow-y: auto; padding: 24px; }

.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EAEAEA;
}

.cart-item-img { width: 70px; height: 70px; background: #F9F9F9; object-fit: contain; }
.cart-item-info { flex-grow: 1; }
.cart-item-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.cart-item-price { font-size: 0.9rem; font-weight: 700; color: var(--color-accent); }

.cart-qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { background: #EAEAEA; border: none; width: 24px; height: 24px; font-weight: 700; cursor: pointer; }

.cart-drawer-footer { padding: 24px; border-top: 1px solid #EAEAEA; background: #F9FAFB; }
.cart-subtotal-row { display: flex; justify-content: space-between; font-size: 1.1rem; margin-bottom: 16px; }

.cart-checkout-btn {
  width: 100%;
  background: var(--color-accent);
  color: white;
  border: none;
  padding: 16px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

/* Checkout Form Modal */
.checkout-modal-content { max-width: 950px; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; }
.checkout-form-col { padding: 40px; }
.checkout-summary-col { padding: 40px; background: #F9FAFB; border-left: 1px solid #EAEAEA; }
.checkout-title { font-size: 1.8rem; margin-bottom: 24px; }
.checkout-form .form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #D4DADE;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.pay-option { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid #D4DADE; cursor: pointer; font-size: 14px; }

.submit-order-btn {
  width: 100%;
  background: var(--color-accent);
  color: white;
  border: none;
  padding: 16px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}

.checkout-items-list { margin: 20px 0; max-height: 250px; overflow-y: auto; }
.checkout-item-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed #EAEAEA; }
.checkout-total-box { border-top: 2px solid var(--color-dark); padding-top: 16px; margin-top: 20px; }
.total-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
.total-row.main-total { font-size: 1.25rem; font-weight: 700; margin-top: 12px; }

/* Order Success Modal */
.success-modal-content { max-width: 500px; grid-template-columns: 1fr; text-align: center; }
.success-box { padding: 50px 30px; }
.success-icon { width: 70px; height: 70px; background: rgba(16, 185, 129, 0.15); color: #10B981; font-size: 36px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.order-id-badge { display: inline-block; background: #F8F9FA; border: 1px solid #D4DADE; padding: 8px 16px; font-weight: 700; font-size: 14px; margin-top: 16px; }

/* Modals */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-modal.active { display: flex; }
.modal-overlay { position: absolute; inset: 0; background-color: rgba(0,0,0,0.75); backdrop-filter: blur(4px); }

.modal-content {
  position: relative;
  z-index: 2;
  background: white;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.video-modal-content { max-width: 900px; display: block; background: #000; padding: 0; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.modal-close { position: absolute; top: 16px; right: 20px; width: 36px; height: 36px; background: none; border: none; font-size: 28px; cursor: pointer; z-index: 10; color: var(--color-dark); }

.modal-image { background: #F9F9F9; min-height: 380px; display: flex; align-items: center; justify-content: center; padding: 30px; }
.modal-image img { max-width: 100%; max-height: 320px; object-fit: contain; }
.modal-info { padding: 40px; display: flex; flex-direction: column; }
.modal-category { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-accent); margin-bottom: 8px; }
.modal-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.modal-description { font-size: 0.95rem; color: #555; line-height: 1.6; margin-bottom: 24px; }
.modal-specs-list { list-style: none; border-top: 1px solid #EAEAEA; }
.modal-specs-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #EAEAEA; font-size: 13px; }
.modal-specs-list strong { color: var(--color-dark); }

/* Responsive Design */
@media (max-width: 1024px) {
  .product-categories { grid-template-columns: 1fr; }
  .category-card { min-height: 480px; }
  .kugerr-shop-grid { grid-template-columns: repeat(2, 1fr); }
  .why-kugerr-grid { flex-direction: column; }
  .why-kugerr-image { width: 100%; min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .modal-content { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .simulator-controls { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .main-nav { height: 65px; }
  .main-nav .nav-links { display: none; }
  .hamburger { display: flex; }

  .badge-listen { top: 15px; left: 15px; }
  .badge-listen img { width: 65px; height: 65px; }
  .badge-buynow { top: 15px; right: 15px; }
  .buynow-circle { width: 60px; height: 60px; }

  .scroll-to-top-btn { bottom: 20px; right: 20px; width: 40px; height: 40px; }

  .hero { height: calc(100vh - 65px); min-height: 500px; }
  .hero-title { font-size: 2.2rem; line-height: 1.1; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-stats { flex-direction: column; gap: 6px; font-size: 0.95rem; margin-bottom: 24px; }
  .stats-divider { display: none; }

  .kugerr-shop-grid { grid-template-columns: 1fr; }

  /* Perfect Mobile Fit for KÜGERR SHOP Controls Bar */
  .shop-controls-bar {
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .shop-sorting-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .shop-sorting-wrapper span {
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .shop-order-select {
    flex-grow: 1;
    width: auto;
    max-width: calc(100% - 90px);
    font-size: 13px;
    padding: 6px 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .shop-filter-tabs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-start;
  }

  .shop-tab-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .intro-films-modal-content { padding: 30px 20px; }

  /* Gateway Mobile Optimization */
  .lang-flags-grid { gap: 25px; }
  .flag-circle { width: 85px; height: 85px; }
  .lang-gateway-title { font-size: 12px; letter-spacing: 1px; }
}
