/* Combo-Check spezifisch — Light-Theme Glasmorphic Design
   Ergänzt shop-public.css mit modernem Severity-Color-System */

.nshop-combo {
  --combo-info:    #0f62fe;
  --combo-caution: #d97706;
  --combo-danger:  #dc2626;
  --combo-lethal:  #7c2d12;
  --combo-grid:    rgba(15, 23, 42, 0.08);
  --combo-fg:      #0f172a;
  --combo-fg-mute: #64748b;
}

.nshop-combo-form .nshop-subs {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

@media (max-width: 768px) {
  .nshop-combo-form .nshop-subs {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .nshop-combo-radar {
    max-width: 100%;
  }

  .nshop-combo-severity {
    padding: 20px 18px;
  }

  .nshop-combo-severity-headline {
    font-size: 1.15rem;
  }

  .nshop-combo-section h3 {
    font-size: 1rem;
  }

  .nshop-combo-3d-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .nshop-combo-3d-modal {
    width: 100%;
    height: auto;
    max-height: 86vh;
    border-radius: 16px 16px 0 0;
  }

  .nshop-combo-3d-header {
    padding: 12px 14px;
  }

  .nshop-combo-3d-actions button {
    font-size: 0.74rem;
    padding: 7px 10px;
  }

  .nshop-combo-3d-actions .nshop-3d-close {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  .nshop-combo-form .nshop-subs {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .nshop-combo-severity {
    padding: 18px 16px;
  }

  .nshop-combo-severity-headline {
    font-size: 1rem;
  }

  .nshop-combo-severity-disclaimer {
    font-size: 0.85rem;
  }

  .nshop-combo-radar {
    max-width: 100%;
  }

  .nshop-combo-3d-modal {
    max-height: 82vh;
  }

  .nshop-combo-3d-header {
    font-size: 0.85rem;
    padding: 10px 12px;
  }

  .nshop-combo-3d-actions {
    gap: 6px;
  }

  .nshop-combo-3d-actions button {
    font-size: 0.7rem;
    padding: 6px 9px;
  }

  .nshop-combo-3d-actions .nshop-3d-close {
    font-size: 1.15rem;
    padding: 4px 8px;
  }

  .nshop-3d-lbl {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .nshop-3d-val {
    min-width: 18px;
  }
}
.nshop-combo-form .nshop-sub.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.nshop-combo-count {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: var(--nshop-fg-muted);
}

.nshop-combo-result {
  margin-top: 28px;
}

.nshop-combo-severity {
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 24px;
  border: 1px solid var(--combo-grid);
}
.nshop-combo-severity-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
  opacity: 0.85;
}
.nshop-combo-severity-headline {
  margin: 0 0 10px;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.nshop-combo-substance {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-right: 6px;
  font-size: 1rem;
}
.nshop-combo-severity-disclaimer {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.9;
}
.nshop-combo-sev-info {
  background: rgba(15, 98, 254, 0.08);
  border-color: var(--combo-info);
  color: var(--nshop-fg);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(15, 98, 254, 0.1);
}

.nshop-combo-sev-caution {
  background: rgba(217, 119, 6, 0.08);
  border-color: var(--combo-caution);
  color: #92400e;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.1);
}

.nshop-combo-sev-danger {
  background: rgba(220, 38, 38, 0.08);
  border-color: var(--combo-danger);
  color: #7f1d1d;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.nshop-combo-sev-lethal {
  background: rgba(124, 45, 18, 0.12);
  border-color: var(--combo-lethal);
  color: #3f2817;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 0 0 1.5px var(--combo-lethal), 0 8px 28px rgba(124, 45, 18, 0.15);
  font-weight: 600;
}

.nshop-combo-section {
  margin-top: 28px;
}
.nshop-combo-section h3 {
  font-size: 1.1rem;
  margin: 0 0 12px;
  color: var(--nshop-accent);
  letter-spacing: -0.01em;
}

.nshop-combo-radar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nshop-combo-radar {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}
.nshop-radar-grid {
  fill: none;
  stroke: var(--combo-grid);
  stroke-width: 1;
}
.nshop-radar-spoke {
  stroke: var(--combo-grid);
  stroke-width: 1;
  opacity: 0.6;
}
.nshop-radar-data {
  fill: rgba(239, 68, 68, 0.18);
  stroke: var(--combo-danger);
  stroke-width: 2;
  transition: fill 0.3s, stroke 0.3s;
}
.nshop-radar-dot {
  fill: var(--combo-danger);
  stroke: var(--nshop-fg);
  stroke-width: 1.5;
}
.nshop-radar-label {
  font-size: 0.75rem;
  fill: var(--nshop-fg);
  font-family: inherit;
}
.nshop-radar-val {
  fill: var(--combo-caution);
  font-weight: 700;
}

.nshop-combo-pair {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--combo-grid);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.nshop-combo-pair summary {
  cursor: pointer;
  font-size: 0.95rem;
}
.nshop-combo-pair-sev {
  font-size: 0.78rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nshop-combo-pair.nshop-combo-sev-lethal .nshop-combo-pair-sev,
.nshop-combo-pair.nshop-combo-sev-danger .nshop-combo-pair-sev {
  background: rgba(239, 68, 68, 0.22);
  color: #fecaca;
}
.nshop-combo-pair-summary {
  margin: 10px 0 6px;
  line-height: 1.55;
}
.nshop-combo-pair-mech {
  margin: 6px 0;
  color: var(--nshop-fg-muted);
  font-size: 0.88rem;
}
.nshop-combo-pair-refs {
  margin: 6px 0 0;
  color: var(--nshop-fg-muted);
  font-size: 0.78rem;
}

.nshop-combo-section-missing {
  background: rgba(56, 189, 248, 0.06);
  border-left: 3px solid var(--combo-info);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
}
.nshop-combo-section-missing ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.nshop-combo-lethal-block {
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid var(--combo-lethal);
  border-radius: 12px;
  padding: 20px 22px;
}
.nshop-combo-lethal-block h3 {
  color: #fca5a5;
}
.nshop-combo-emergency-list {
  margin: 8px 0 12px;
  padding-left: 20px;
  line-height: 1.55;
}
.nshop-combo-emergency-num {
  margin: 8px 0 0;
  font-size: 1.1rem;
  color: #fecaca;
}
.nshop-combo-emergency-section {
  background: rgba(249, 115, 22, 0.08);
  border-left: 3px solid var(--combo-danger);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
}

.nshop-combo-tips {
  margin: 0;
  padding-left: 20px;
  line-height: 1.65;
}
.nshop-combo-tips li {
  margin-bottom: 8px;
}

.nshop-combo-stack-pre h3,
.nshop-combo-stack-post h3 {
  color: var(--nshop-accent-2);
}
.nshop-combo .nshop-product-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.2);
  margin-bottom: 8px;
}
.nshop-combo .nshop-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nshop-combo .nshop-product-media-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background:
    radial-gradient(circle at 18% 15%, rgba(15, 98, 254, 0.22), transparent 55%),
    radial-gradient(circle at 85% 88%, rgba(217, 119, 6, 0.18), transparent 58%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.05), rgba(100, 116, 139, 0.1));
  border-style: dashed;
}
.nshop-combo .nshop-product-media-initial {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--combo-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
}
.nshop-combo .nshop-product-media-note {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--combo-fg-mute);
}
.nshop-combo-timing {
  margin: 6px 0;
  font-size: 0.85rem;
  color: var(--nshop-fg-muted);
}

/* ============ 3D Pro-View ============ */

.nshop-combo-3d-bar {
  margin: 16px 0 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.nshop-combo-3d-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(15, 98, 254, 0.12);
  border: 1.5px solid var(--nshop-accent);
  border-radius: 12px;
  color: var(--nshop-accent);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.nshop-combo-3d-toggle:hover {
  background: rgba(15, 98, 254, 0.18);
  box-shadow: 0 4px 12px rgba(15, 98, 254, 0.15);
  transform: translateY(-1px);
  border-color: #6ee7b7;
}
.nshop-3d-icon {
  font-size: 1.05rem;
  color: #6ee7b7;
}
.nshop-3d-pro {
  margin-left: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.18);
  color: #6ee7b7;
  text-transform: uppercase;
  font-weight: 700;
}

.nshop-combo-3d-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(8, 17, 30, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.nshop-combo-3d-overlay.is-open {
  display: flex;
}
body.nshop-3d-locked {
  overflow: hidden;
}

.nshop-combo-3d-modal {
  width: min(100%, 1100px);
  height: min(92vh, 720px);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 50%, #f0f5ff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.nshop-combo-3d-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--nshop-fg);
  font-size: 0.95rem;
  font-weight: 600;
}

.nshop-combo-3d-actions {
  display: flex;
  gap: 8px;
}

.nshop-combo-3d-actions button {
  background: rgba(15, 23, 42, 0.04);
  color: var(--nshop-fg);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nshop-combo-3d-actions button:hover {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.nshop-combo-3d-actions .nshop-3d-close {
  font-size: 1.3rem;
  line-height: 1;
  padding: 6px 12px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nshop-combo-3d-actions .nshop-3d-close:hover {
  color: #dc2626;
}

.nshop-combo-3d-stage {
  position: relative;
  min-height: 420px;
  background: radial-gradient(ellipse at center, #edf4ff 0%, #dfe9fb 75%);
  overflow: hidden;
}
.nshop-combo-3d-stage canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  inset: 0;
}
.nshop-combo-3d-error {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fecaca;
  padding: 24px;
  text-align: center;
  font-size: 0.95rem;
}

.nshop-combo-3d-legend {
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.nshop-combo-3d-legend-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding: 0;
}
.nshop-combo-3d-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #cbd5e1;
}
.nshop-3d-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}
.nshop-combo-3d-legend-item.nshop-3d-tier-info    .nshop-3d-dot { background: #38bdf8; color: #38bdf8; }
.nshop-combo-3d-legend-item.nshop-3d-tier-caution .nshop-3d-dot { background: #facc15; color: #facc15; }
.nshop-combo-3d-legend-item.nshop-3d-tier-danger  .nshop-3d-dot { background: #f97316; color: #f97316; }
.nshop-combo-3d-legend-item.nshop-3d-tier-lethal  .nshop-3d-dot { background: #ef4444; color: #ef4444; }
.nshop-3d-lbl {
  flex: 1;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.3;
}
.nshop-3d-val {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--nshop-fg);
  min-width: 24px;
  text-align: right;
}

@media (max-width: 640px) {
  .nshop-combo-3d-modal { height: auto; max-height: 86vh; border-radius: 16px 16px 0 0; }
  .nshop-combo-3d-overlay { padding: 0; align-items: flex-end; }
  .nshop-combo-3d-actions button { font-size: 0.74rem; padding: 5px 9px; }
  .nshop-combo-3d-actions .nshop-3d-close { font-size: 1.1rem; padding: 3px 8px; min-width: 44px; min-height: 44px; }
}

/* Light theme overrides */
.nshop-combo-3d-overlay {
  background: rgba(247, 250, 252, 0.88);
}

.nshop-combo-3d-modal {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.2);
}

.nshop-combo-3d-header,
.nshop-combo-3d-legend,
.nshop-combo-3d-actions button,
.nshop-3d-val {
  color: #0f172a;
}

.nshop-combo-3d-header,
.nshop-combo-3d-legend {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.nshop-combo-3d-actions button {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
}

.nshop-combo-3d-actions button:hover {
  background: rgba(15, 23, 42, 0.08);
}

.nshop-combo-3d-stage {
  background: radial-gradient(ellipse at center, #eef4ff 0%, #dfe9fb 75%);
}

.nshop-combo-3d-error {
  color: #b91c1c;
}

.nshop-combo-3d-legend-item {
  color: #334155;
}

/* ==========================================================
   COMBO.CSS — Animation Layer 2026
   ========================================================== */

@keyframes nshopSevIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes nshopSubPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* Substanz-Auswahl: Check-Animation */
.nshop-sub input[type="checkbox"]:checked + .nshop-sub-label {
  animation: nshopSubPop 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Severity-Karten: Einflug-Animation */
.nshop-combo-severity {
  animation: nshopSevIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.nshop-combo-section {
  animation: nshopSevIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.08s;
}

/* Severity-Farben glasmorphic */
.nshop-combo-severity[data-level="info"] {
  border-color: rgba(15, 98, 254, 0.25);
  background: linear-gradient(135deg, rgba(15,98,254,0.06) 0%, rgba(255,255,255,0.8) 100%);
  box-shadow: 0 0 0 3px rgba(15,98,254,0.08), 0 8px 28px rgba(15,98,254,0.12);
}
.nshop-combo-severity[data-level="caution"] {
  border-color: rgba(217, 119, 6, 0.3);
  background: linear-gradient(135deg, rgba(217,119,6,0.06) 0%, rgba(255,255,255,0.8) 100%);
  box-shadow: 0 0 0 3px rgba(217,119,6,0.08), 0 8px 28px rgba(217,119,6,0.12);
}
.nshop-combo-severity[data-level="danger"] {
  border-color: rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, rgba(220,38,38,0.06) 0%, rgba(255,255,255,0.8) 100%);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.08), 0 8px 28px rgba(220,38,38,0.15);
}
.nshop-combo-severity[data-level="lethal"] {
  border-color: rgba(124, 45, 18, 0.4);
  background: linear-gradient(135deg, rgba(124,45,18,0.08) 0%, rgba(255,255,255,0.8) 100%);
  box-shadow: 0 0 0 4px rgba(124,45,18,0.1), 0 10px 32px rgba(124,45,18,0.2);
}

/* Substanz-Karte: Premium */
.nshop-sub {
  position: relative;
  border-radius: 12px;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.nshop-sub::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at 60% 40%, rgba(37,99,235,0.12), transparent 70%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.nshop-sub:hover::before { opacity: 1; }
.nshop-sub.is-active {
  border-color: rgba(37,99,235,0.4);
  background: rgba(37,99,235,0.07);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
  transform: translateY(-2px);
}

/* Counter Row */
.nshop-combo-counter-row {
  background: rgba(37,99,235,0.05);
  border: 1.5px solid rgba(37,99,235,0.12);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

/* Radar: Container */
.nshop-combo-radar {
  margin: 0 auto 24px;
  max-width: 440px;
  filter: drop-shadow(0 8px 24px rgba(37,99,235,0.15));
}

/* Result sections: staggered */
.nshop-combo-results > * {
  opacity: 0;
  animation: nshopSevIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.nshop-combo-results > *:nth-child(1) { animation-delay: 0.00s; }
.nshop-combo-results > *:nth-child(2) { animation-delay: 0.10s; }
.nshop-combo-results > *:nth-child(3) { animation-delay: 0.20s; }
.nshop-combo-results > *:nth-child(4) { animation-delay: 0.30s; }
.nshop-combo-results > *:nth-child(5) { animation-delay: 0.40s; }

/* ==========================================================
   RADAR PREMIUM 2026 — neue renderRadar-Styles
   ========================================================== */

/* Section wrapper */
.nshop-combo-radar-wrap {
  text-align: center;
}
.nshop-combo-radar-wrap h3 {
  text-align: left;
}
.nshop-radar-intro {
  font-size: 0.85rem;
  color: var(--combo-fg-mute);
  text-align: left;
  margin: -6px 0 14px;
  line-height: 1.55;
}

/* SVG – overflow visible so labels never clip */
.nshop-combo-radar {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  overflow: visible;
  margin: 0 auto;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.12));
}

/* Grid polygons */
.nshop-radar-grid {
  fill: none;
  stroke: rgba(15, 23, 42, 0.12);
  stroke-width: 0.8;
  stroke-dasharray: 3 3;
}
/* Spoke lines */
.nshop-radar-spoke {
  stroke: rgba(15, 23, 42, 0.1);
  stroke-width: 0.8;
}
/* Data polygon */
.nshop-radar-data {
  stroke: #ef4444;
  stroke-width: 2.5;
  stroke-linejoin: round;
  animation: nshopSevIn 0.6s ease both;
}

/* Dot pulse at high risk */
@keyframes nrcPulse {
  0%, 100% { r: 5.5; opacity: 1; }
  50%       { r: 8;   opacity: 0.6; }
}
.nshop-radar-dot-pulse {
  animation: nrcPulse 1.6s ease-in-out infinite;
}

/* Axis labels */
.nshop-radar-label {
  font-size: 11px;
  font-family: inherit;
  fill: #334155;
  font-weight: 600;
  line-height: 1.3;
}
.nshop-radar-val {
  font-size: 12px;
}

/* Bar list below radar */
.nshop-radar-bar-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  text-align: left;
}
.nshop-radar-bar-item {
  display: grid;
  grid-template-columns: 130px 1fr 36px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(15,23,42,0.08);
  transition: transform 0.2s ease;
}
.nshop-radar-bar-item:hover {
  transform: translateX(3px);
}
/* Severity left border */
.nshop-radar-sev-lethal { border-left: 3px solid #ef4444; }
.nshop-radar-sev-danger  { border-left: 3px solid #f97316; }
.nshop-radar-sev-caution { border-left: 3px solid #eab308; }
.nshop-radar-sev-safe    { border-left: 3px solid #22c55e; }

.nshop-radar-bar-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b;
}
.nshop-radar-bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(15,23,42,0.07);
  overflow: hidden;
}
.nshop-radar-bar-fill {
  height: 100%;
  border-radius: 999px;
  width: 0 !important;
  transition: width 0.9s cubic-bezier(0.34, 1.3, 0.64, 1) var(--bar-delay, 0s);
}
.nshop-radar-bar-val {
  font-size: 0.85rem;
  font-weight: 800;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* 3D Toggle Button — premium pulsing */
.nshop-combo-3d-toggle {
  animation: nshopPulse 2.5s ease-in-out infinite;
}
.nshop-combo-3d-toggle:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.25);
}

.nshop-3d-pro {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  vertical-align: middle;
  margin-left: 4px;
}

@media (max-width: 600px) {
  .nshop-radar-bar-item {
    grid-template-columns: 1fr auto;
    gap: 6px;
  }
  .nshop-radar-bar-track {
    grid-column: 1 / -1;
    order: 3;
    margin-top: -2px;
  }
  .nshop-radar-bar-val { order: 2; }
}

/* ==========================================================
   HR PAGE PREMIUM 2026 — Harm Reduction Visual Upgrade
   ========================================================== */

/* ---- Hero: Premium Gradient ---- */
.nshop-hr-hero {
  background:
    radial-gradient(ellipse 80% 60% at 10% -20%, rgba(37,99,235,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 110%, rgba(16,185,129,0.11) 0%, transparent 55%),
    linear-gradient(150deg, #e8f0fe 0%, #f0fdf9 100%) !important;
  border-left: none !important;
  border: 1.5px solid rgba(37,99,235,0.18) !important;
  box-shadow: 0 12px 40px rgba(37,99,235,0.10), inset 0 1px 0 rgba(255,255,255,0.9) !important;
  position: relative;
  overflow: hidden;
}
.nshop-hr-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 68%);
  pointer-events: none;
}
.nshop-hr-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 25%;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.10) 0%, transparent 68%);
  pointer-events: none;
}
.nshop-hr-hero-content {
  position: relative;
  z-index: 1;
}
.nshop-hr-hero-content h1 {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 45%, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px !important;
}
.nshop-hr-lead {
  font-size: 1.08rem !important;
  color: #334155 !important;
  max-width: 680px;
}

/* Trust badges in Hero */
.nshop-hr-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
}
.nshop-hr-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #059669;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.22);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ---- Sections: Glassmorphic ---- */
.nshop-hr-sections {
  gap: 24px !important;
}
.nshop-hr-section {
  background: rgba(255,255,255,0.84) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(37,99,235,0.1) !important;
  box-shadow: 0 4px 20px rgba(15,23,42,0.05) !important;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.nshop-hr-section:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.09) !important;
  transform: translateY(-2px);
}
.nshop-hr-section h2 {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Interactive section: standout */
.nshop-hr-interactive {
  background: linear-gradient(150deg, rgba(37,99,235,0.04) 0%, rgba(16,185,129,0.03) 100%) !important;
  border: 1.5px solid rgba(37,99,235,0.20) !important;
  box-shadow: 0 8px 36px rgba(37,99,235,0.10) !important;
}
.nshop-hr-interactive:hover {
  transform: none;
}

/* ---- Axis Cards: colored accent per axis ---- */
.nshop-hr-axes-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
}
@media (max-width: 860px) {
  .nshop-hr-axes-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 520px) {
  .nshop-hr-axes-grid { grid-template-columns: 1fr !important; }
}
.nshop-hr-axis-card {
  background: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1.5px solid rgba(15,23,42,0.08) !important;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05) !important;
  padding-top: 24px !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease !important;
}
/* Colored top bar */
.nshop-hr-axis-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 12px 12px 0 0;
  background: var(--axis-color, #2563eb);
}
.nshop-hr-axis-card:nth-child(1) { --axis-color: #3b82f6; }
.nshop-hr-axis-card:nth-child(2) { --axis-color: #ef4444; }
.nshop-hr-axis-card:nth-child(3) { --axis-color: #f59e0b; }
.nshop-hr-axis-card:nth-child(4) { --axis-color: #a855f7; }
.nshop-hr-axis-card:nth-child(5) { --axis-color: #f97316; }
.nshop-hr-axis-card:nth-child(6) { --axis-color: #10b981; }
/* Per-axis hover glow */
.nshop-hr-axis-card:nth-child(1):hover { transform: translateY(-6px) !important; box-shadow: 0 14px 32px rgba(59,130,246,0.22) !important; }
.nshop-hr-axis-card:nth-child(2):hover { transform: translateY(-6px) !important; box-shadow: 0 14px 32px rgba(239,68,68,0.20) !important; }
.nshop-hr-axis-card:nth-child(3):hover { transform: translateY(-6px) !important; box-shadow: 0 14px 32px rgba(245,158,11,0.20) !important; }
.nshop-hr-axis-card:nth-child(4):hover { transform: translateY(-6px) !important; box-shadow: 0 14px 32px rgba(168,85,247,0.20) !important; }
.nshop-hr-axis-card:nth-child(5):hover { transform: translateY(-6px) !important; box-shadow: 0 14px 32px rgba(249,115,22,0.20) !important; }
.nshop-hr-axis-card:nth-child(6):hover { transform: translateY(-6px) !important; box-shadow: 0 14px 32px rgba(16,185,129,0.20) !important; }

.nshop-hr-axis-icon {
  font-size: 2.6rem !important;
  margin-bottom: 10px !important;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.nshop-hr-axis-card:hover .nshop-hr-axis-icon {
  transform: scale(1.18);
}
.nshop-hr-axis-card h3 {
  color: #1e293b !important;
  font-size: 1rem !important;
}
.nshop-hr-axis-card p {
  color: #475569 !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
}

/* ---- Practices checklist ---- */
.nshop-hr-practices {
  list-style: none !important;
  padding: 0 !important;
  display: grid;
  gap: 10px;
}
.nshop-hr-practices li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(16,185,129,0.05);
  border: 1px solid rgba(16,185,129,0.14);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #1e293b;
  margin-bottom: 0 !important;
}
.nshop-hr-practices li::before {
  content: '✓';
  flex-shrink: 0;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ---- Resources: link cards ---- */
.nshop-hr-resources ul {
  list-style: none !important;
  padding: 0 !important;
  display: grid;
  gap: 10px;
}
.nshop-hr-resources li {
  margin-bottom: 0 !important;
}
.nshop-hr-resources a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,0.92) !important;
  border: 1.5px solid rgba(37,99,235,0.14) !important;
  color: #1d4ed8 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.22s ease !important;
  box-shadow: 0 2px 8px rgba(37,99,235,0.06) !important;
}
.nshop-hr-resources a:hover {
  background: rgba(37,99,235,0.05) !important;
  border-color: rgba(37,99,235,0.28) !important;
  box-shadow: 0 6px 20px rgba(37,99,235,0.14) !important;
  transform: translateX(5px) !important;
}
.nshop-hr-resources a::before {
  content: '→';
  font-size: 1rem;
  color: #2563eb;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nshop-hr-resources a:hover::before {
  transform: translateX(3px);
}

/* ==========================================================
   HR PAGE LAYOUT & VISUAL UPGRADE 2026 — Teil 2
   ========================================================== */

/* ---- Abstand zum Site-Header ---- */
.nshop-template-wrap {
  padding-top: 48px;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .nshop-template-wrap { padding-top: 32px; padding-bottom: 48px; }
}
@media (max-width: 480px) {
  .nshop-template-wrap { padding-top: 24px; padding-bottom: 36px; }
}

/* ---- Hero: kein doppeltes margin-top durch .nshop-app ---- */
.nshop-harm-reduction-page.nshop-app {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ---- Hero: Full-Bleed-Banner mit Floating Badge ---- */
.nshop-hr-hero {
  border-radius: 24px !important;
  padding: 52px 48px 48px !important;
  margin-bottom: 40px !important;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .nshop-hr-hero { padding: 32px 24px 28px !important; border-radius: 18px !important; }
}
@media (max-width: 480px) {
  .nshop-hr-hero { padding: 24px 18px 22px !important; border-radius: 14px !important; }
}

/* Floating "TOOL" label oben rechts */
.nshop-hr-hero::after {
  content: 'HARM\A REDUCTION';
  white-space: pre;
  position: absolute;
  top: 18px; right: 22px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-align: center;
  color: rgba(37,99,235,0.35);
  border: 1.5px solid rgba(37,99,235,0.18);
  border-radius: 8px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.6);
  pointer-events: none;
}

/* Hero Breadcrumb */
.nshop-breadcrumb {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nshop-breadcrumb a {
  color: #2563eb !important;
  text-decoration: none !important;
  font-weight: 500;
}
.nshop-breadcrumb a:hover { text-decoration: underline !important; }

/* Hero h1 — größer, kraftvoller */
.nshop-hr-hero-content h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.18 !important;
  margin-bottom: 16px !important;
}

/* ---- Section h2 — accent Unterstrich ---- */
.nshop-hr-section h2 {
  padding-bottom: 12px !important;
  border-bottom: 2px solid rgba(37,99,235,0.12) !important;
  margin-bottom: 20px !important;
}

/* ---- Analyse-Button: Premium CTA ---- */
.nshop-combo-submit-btn,
#nshop-combo-submit {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0891b2 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 14px 32px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 6px 24px rgba(37,99,235,0.30), inset 0 1px 0 rgba(255,255,255,0.2) !important;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 52px !important;
}
.nshop-combo-submit-btn:hover:not(:disabled),
#nshop-combo-submit:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 36px rgba(37,99,235,0.38), inset 0 1px 0 rgba(255,255,255,0.25) !important;
}
.nshop-combo-submit-btn:disabled,
#nshop-combo-submit:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}
.nshop-combo-submit-btn:active:not(:disabled),
#nshop-combo-submit:active:not(:disabled) {
  transform: translateY(0) scale(0.98) !important;
}

/* Disclaimer unter Button */
.nshop-disclaimer-inline {
  font-size: 0.78rem !important;
  color: #64748b !important;
  margin-top: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.nshop-disclaimer-inline::before {
  content: '🔒';
  font-size: 0.9rem;
}

/* Submit-Row Layout */
.nshop-submit-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px !important;
  margin-top: 24px !important;
}

/* ---- Counter Row: premium pill ---- */
.nshop-combo-counter-row {
  background: linear-gradient(135deg, rgba(37,99,235,0.06) 0%, rgba(16,185,129,0.04) 100%) !important;
  border: 1.5px solid rgba(37,99,235,0.15) !important;
  border-radius: 14px !important;
  padding: 14px 20px !important;
}
.nshop-combo-counter-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
}
.nshop-combo-counter-label strong {
  color: #2563eb;
  font-size: 1.1rem;
}
.nshop-combo-counter-hint {
  font-size: 0.8rem;
  color: #64748b;
}

/* ---- Help-Text ---- */
.nshop-hr-help {
  font-size: 0.92rem !important;
  font-style: normal !important;
  color: #475569 !important;
  background: rgba(37,99,235,0.04) !important;
  border-left: 3px solid rgba(37,99,235,0.3) !important;
  padding: 10px 14px !important;
  border-radius: 0 10px 10px 0 !important;
  margin-bottom: 20px !important;
}

/* ---- Error-Message: besser sichtbar ---- */
.nshop-error {
  background: rgba(239,68,68,0.07) !important;
  border: 1.5px solid rgba(239,68,68,0.25) !important;
  color: #991b1b !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

/* ---- Sections: entrance animation ---- */
@keyframes nshopHrFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nshop-hr-sections .nshop-hr-section {
  animation: nshopHrFadeUp 0.45s ease both;
}
.nshop-hr-sections .nshop-hr-section:nth-child(1) { animation-delay: 0.05s; }
.nshop-hr-sections .nshop-hr-section:nth-child(2) { animation-delay: 0.12s; }
.nshop-hr-sections .nshop-hr-section:nth-child(3) { animation-delay: 0.19s; }
.nshop-hr-sections .nshop-hr-section:nth-child(4) { animation-delay: 0.26s; }
.nshop-hr-sections .nshop-hr-section:nth-child(5) { animation-delay: 0.33s; }
.nshop-hr-sections .nshop-hr-section:nth-child(6) { animation-delay: 0.40s; }

/* ==========================================================
   RISIKO-ACHSEN ACCORDION
   ========================================================== */

.nshop-axes-accordion {
  margin: 20px 0 28px;
  border: 1.5px solid rgba(37,99,235,0.18);
  border-radius: 14px;
  background: rgba(37,99,235,0.03);
  overflow: hidden;
}

.nshop-axes-accordion-toggle {
  list-style: none;
  cursor: pointer;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  transition: background 0.2s ease;
}
.nshop-axes-accordion-toggle::-webkit-details-marker { display: none; }
.nshop-axes-accordion-toggle::before {
  content: '▶';
  font-size: 0.65rem;
  transition: transform 0.25s ease;
  color: #2563eb;
  flex-shrink: 0;
}
.nshop-axes-accordion[open] .nshop-axes-accordion-toggle::before {
  transform: rotate(90deg);
}
.nshop-axes-accordion-toggle:hover {
  background: rgba(37,99,235,0.06);
}

.nshop-axes-accordion-body {
  padding: 0 20px 20px;
  border-top: 1px solid rgba(37,99,235,0.10);
}

.nshop-axes-accordion-intro {
  font-size: 0.84rem;
  color: #64748b;
  margin: 14px 0 16px;
  line-height: 1.5;
}

/* Grid im Accordion etwas kompakter */
.nshop-axes-accordion .nshop-hr-axes-grid {
  gap: 12px;
}
.nshop-axes-accordion .nshop-hr-axis-card {
  padding: 16px;
}
.nshop-axes-accordion .nshop-hr-axis-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.nshop-axes-accordion .nshop-hr-axis-card h3 {
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.nshop-axes-accordion .nshop-hr-axis-card p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================
   KOMBO-CHECK: SECTION-BOX + SUBSTANZ-GRID OVERHAUL
   ========================================================== */

/* ---- Section-Box: sichtbarer, echter Rahmen ---- */
.nshop-hr-interactive {
  background: #fff !important;
  border: 2px solid rgba(37,99,235,0.22) !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 28px rgba(37,99,235,0.09), 0 1px 4px rgba(0,0,0,0.04) !important;
  padding: 32px !important;
}
@media (max-width: 768px) {
  .nshop-hr-interactive { padding: 24px 18px !important; border-radius: 16px !important; }
}
@media (max-width: 480px) {
  .nshop-hr-interactive { padding: 18px 14px !important; border-radius: 14px !important; }
}

/* ---- Substanz-Grid: Pill-Karten vertikal (Emoji oben, Name unten) ---- */
.nshop-hr-interactive .nshop-combo-form .nshop-subs,
.nshop-hr-interactive .nshop-subs {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)) !important;
  gap: 10px !important;
  margin-top: 18px !important;
  margin-bottom: 20px !important;
}

.nshop-hr-interactive .nshop-sub {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 6px !important;
  padding: 14px 10px 12px !important;
  min-height: 80px !important;
  border-radius: 14px !important;
  border: 1.5px solid rgba(15,23,42,0.10) !important;
  background: rgba(248,250,252,0.9) !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1) !important;
  user-select: none !important;
  position: relative !important;
  overflow: hidden !important;
}

.nshop-hr-interactive .nshop-sub:hover {
  border-color: rgba(37,99,235,0.35) !important;
  background: rgba(239,246,255,0.95) !important;
  box-shadow: 0 4px 16px rgba(37,99,235,0.12) !important;
  transform: translateY(-2px) scale(1.02) !important;
}

.nshop-hr-interactive .nshop-sub.is-active {
  border-color: rgba(37,99,235,0.55) !important;
  background: rgba(37,99,235,0.08) !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15), 0 4px 14px rgba(37,99,235,0.15) !important;
  transform: translateY(-2px) scale(1.02) !important;
}

/* Checkbox ausblenden — Auswahl erfolgt per Karten-Klick */
.nshop-hr-interactive .nshop-sub input[type="checkbox"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Emoji: größer + zentriert */
.nshop-hr-interactive .nshop-sub .nshop-sub-emoji {
  font-size: 1.6rem !important;
  line-height: 1 !important;
  display: block !important;
  flex-shrink: 0 !important;
}

/* Label-Text: kleiner, zentriert, kein Abschneiden */
.nshop-hr-interactive .nshop-sub > span:last-child {
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  line-height: 1.3 !important;
  text-align: center !important;
  word-break: break-word !important;
  hyphens: auto !important;
  display: block !important;
  max-width: 100% !important;
}

/* Checkmark-Overlay bei Auswahl — kleines blaues Häkchen oben rechts */
.nshop-hr-interactive .nshop-sub.is-active::after {
  content: '✓';
  position: absolute !important;
  top: 5px !important;
  right: 7px !important;
  font-size: 0.65rem !important;
  font-weight: 900 !important;
  color: #2563eb !important;
  background: rgba(37,99,235,0.12) !important;
  border-radius: 50% !important;
  width: 16px !important;
  height: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

/* Responsive: größere Karten auf Desktop */
@media (min-width: 900px) {
  .nshop-hr-interactive .nshop-combo-form .nshop-subs,
  .nshop-hr-interactive .nshop-subs {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
  }
}
@media (max-width: 480px) {
  .nshop-hr-interactive .nshop-combo-form .nshop-subs,
  .nshop-hr-interactive .nshop-subs {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)) !important;
    gap: 8px !important;
  }
  .nshop-hr-interactive .nshop-sub {
    min-height: 72px !important;
    padding: 11px 8px 10px !important;
  }
  .nshop-hr-interactive .nshop-sub .nshop-sub-emoji {
    font-size: 1.35rem !important;
  }
}
