.product-search-modal .modal-content {
  background: radial-gradient(circle at top, #020617 0%, #020109 70%);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e5e7eb;
}

.product-search-modal .modal-header {
  align-items: flex-start;
}

.product-search-modal .product-search-field {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.product-search-modal .product-search-field::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

/* ==== Globaler Background wie Navbar ==== */

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #020309; /* Fallback */
}

/* Vollflächiger Navbar-Glow im Hintergrund */
body::before {
  content: "";
  position: fixed;     /* bleibt beim Scrollen stehen */
  inset: 0;
  pointer-events: none;
  z-index: -1;

  /* exakt der Style wie deine Navbar, nur fullscreen */
  background:
    radial-gradient(circle at top center,
      #111827 0%,
      #020309 55%,
      #020309 100%
    );
}
/* Hero höher machen, damit keine Linie unten sichtbar ist */
.qh-hero {
  min-height: 105vh;         /* vorher 88vh */
  padding-bottom: 5rem;      
}

/* Auf Tablet/Mobile wieder etwas reduzieren, damit es nicht zu lang wird */
@media (max-width: 1024px) {
  .qh-hero {
    min-height: 100vh;
    padding-bottom: 5rem;
  }
}

@media (max-width: 640px) {
  .qh-hero {
    min-height: auto;        /* Inhalt regelt die Höhe */
    padding-bottom: 3.5rem;
  }
}

    .variant .active-indicator {
    position: absolute;
    bottom: 10px;     /* vorher top */
    right: 14px;      /* sauber eingerückt */
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
}

/* ============================================
   CUSTOM THEME SCROLLBAR – #7a86cc
   ============================================ */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
  background: #0b0e17; /* dein Dark-Background */
}

::-webkit-scrollbar-track {
  background: #0b0e17;
}

::-webkit-scrollbar-thumb {
  background: #7a86cc;
  border-radius: 12px;
  border: 2px solid #0b0e17;
  box-shadow: 0 0 12px #7a86cc88;
}

::-webkit-scrollbar-thumb:hover {
  background: #8d97dd;
  box-shadow: 0 0 16px #8d97ddcc;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #7a86cc #0b0e17;
}