/* Self-hosted Plus Jakarta Sans (latin) – no Google Fonts roundtrip */
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy: #0a1b2e;
  --navy-2: #102943;
  --turquoise: #00c3d7;
  --green: #7cff3c;
  --white: #fff;
  --ink: #14283c;
  --muted: #587086;
  --surface: #f4f8fa;
  --card: #fff;
  --border: #d7e4ea;
  --shadow: 0 18px 50px rgba(10, 27, 46, 0.12);
  --radius: 1.25rem;
  --focus: #007b88;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color-scheme: light;
}

[data-theme="dark"] {
  --ink: #f4fbfc;
  --muted: #b6cad4;
  --surface: #071522;
  --card: #102943;
  --border: #29465b;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --focus: #7cff3c;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: clip;
  /* "fi" in Smarfie sonst als Ligatur ohne i-Punkt */
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0;
}

.card,
.modal-content,
.dropdown-menu,
.list-group-item,
.form-control,
.form-select,
.input-group-text {
  background-color: var(--card);
  border-color: var(--border);
  color: var(--ink);
}

.card-body {
  background-color: transparent;
}

.form-control:focus,
.form-select:focus {
  background-color: var(--card);
  border-color: var(--turquoise);
  color: var(--ink);
  box-shadow: 0 0 0 0.2rem rgba(0, 195, 215, 0.2);
}

.form-control::placeholder {
  color: var(--muted);
  opacity: 1;
}

.text-muted,
.form-text {
  color: var(--muted) !important;
}

.table {
  --bs-table-bg: var(--card);
  --bs-table-color: var(--ink);
  --bs-table-border-color: var(--border);
  --bs-table-striped-bg: rgba(0, 195, 215, 0.06);
  --bs-table-striped-color: var(--ink);
  color: var(--ink);
}

[data-theme="dark"] .form-check-input {
  background-color: var(--navy);
  border-color: #527086;
}

[data-theme="dark"] .form-check-input:checked {
  background-color: var(--turquoise);
  border-color: var(--turquoise);
}

[data-theme="dark"] input:-webkit-autofill,
[data-theme="dark"] input:-webkit-autofill:hover,
[data-theme="dark"] input:-webkit-autofill:focus,
[data-theme="dark"] textarea:-webkit-autofill,
[data-theme="dark"] select:-webkit-autofill {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 1000px var(--card) inset;
  caret-color: var(--ink);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.image-credit {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.image-credit a {
  color: inherit;
}

a {
  color: #007b88;
  text-underline-offset: 0.18em;
}

[data-theme="dark"] a {
  color: #42d9e8;
}

a:hover {
  color: #005c66;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 2000;
  background: var(--green);
  color: var(--navy);
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 27, 46, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  overflow-x: clip;
}

.top-bar {
  background: #071522;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  min-height: 3rem;
}

.main-navbar {
  background: rgba(10, 27, 46, 0.96);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 4.25rem;
  position: relative;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  font-size: 1.05rem;
  line-height: 0;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: clamp(2.1rem, 4.5vw, 2.75rem);
  width: auto;
  max-width: min(220px, 42vw);
}

.brand-shield {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  border-radius: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.15rem;
}

.nav-toggle__bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  margin-left: auto;
  margin-right: 0;
}

.nav-panel__extras {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.safety-btn.safety-btn--panel {
  display: none !important;
}

.social-links--panel {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
  align-items: stretch;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  color: #dbe7ec;
  text-decoration: none;
  border-radius: 0;
  padding: 0.55rem 0.65rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-item--has-sub.is-active > a {
  color: #fff;
  background: rgba(0, 195, 215, 0.16);
}

.nav-links a[aria-current="page"],
.nav-item--has-sub.is-active > a {
  box-shadow: inset 0 -2px var(--green);
}

.nav-sub {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  min-width: 14rem;
  background: #0a1b2e;
  border: 1px solid rgba(0, 195, 215, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  z-index: 40;
}

.nav-sub a {
  display: block;
  padding: 0.65rem 0.85rem;
  min-height: 2.75rem;
  color: #dbe7ec;
  font-weight: 600;
  white-space: nowrap;
}

.nav-sub a:hover,
.nav-sub a[aria-current="page"] {
  color: #fff;
  background: rgba(0, 195, 215, 0.18);
}

.nav-item--has-sub:hover > .nav-sub,
.nav-item--has-sub:focus-within > .nav-sub {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}

.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  min-height: 2.75rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(0, 195, 215, 0.65);
  border-radius: 0.4rem;
  background: rgba(0, 195, 215, 0.12);
  color: #fff !important;
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1.15;
  white-space: nowrap;
}

.nav-cart:hover,
.nav-cart:focus-visible {
  border-color: var(--green);
  background: rgba(183, 239, 75, 0.18);
  color: #fff !important;
}

.nav-cart__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 1.55rem;
  font-size: 1.25rem;
}

.nav-cart__count {
  position: absolute;
  top: -0.7rem;
  right: -0.65rem;
  display: grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.nav-cart__label strong {
  color: var(--green);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  margin-left: 0;
}

.safety-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.safety-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.25rem;
  padding: 0.4rem 0.7rem;
  border-radius: 0;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.safety-btn__icon {
  display: inline-flex;
  flex-shrink: 0;
}

.safety-btn__text--short {
  display: none;
}

.safety-btn--anon {
  color: #e8fbff !important;
  background: rgba(0, 195, 215, 0.16);
  border-color: rgba(0, 195, 215, 0.55);
}

.safety-btn--anon:hover,
.safety-btn--anon:focus-visible {
  color: #fff !important;
  background: rgba(0, 195, 215, 0.28);
  border-color: var(--turquoise);
}

.safety-btn--exit {
  color: #fff !important;
  background: #c2185b;
  border-color: #c2185b;
  box-shadow: 0 0 0 1px rgba(194, 24, 91, 0.25);
}

.safety-btn--exit:hover,
.safety-btn--exit:focus-visible {
  color: #fff !important;
  background: #a0144c;
  border-color: #a0144c;
  transform: translateY(-1px);
}

.anon-dialog[hidden] {
  display: none !important;
}

.anon-dialog {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.anon-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 28, 0.72);
}

.anon-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(32rem, 100%);
  max-height: min(85vh, 36rem);
  overflow: auto;
  background: #fff;
  color: var(--ink);
  border-radius: 0;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem 1.4rem;
}

[data-theme="dark"] .anon-dialog__panel {
  background: #12263a;
  color: #e7eef3;
}

.anon-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.anon-dialog__title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
  color: inherit;
}

.anon-dialog__close {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.15rem;
  opacity: 0.7;
}

.anon-dialog__close:hover,
.anon-dialog__close:focus-visible {
  opacity: 1;
}

.anon-dialog__list {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

[data-theme="dark"] .anon-dialog__list {
  color: #a9bcc8;
}

.anon-dialog__list li {
  padding-left: 0.15rem;
}

.anon-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.anon-dialog__done {
  border: 1px solid var(--border);
  background: transparent;
  color: inherit;
  border-radius: 0;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
}

.anon-dialog__done:hover,
.anon-dialog__done:focus-visible {
  border-color: var(--turquoise);
  color: var(--turquoise);
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

/* Desktop: nur Toolbar-Icons; Panel-Icons nur mobil (sonst Dopplung) */
.social-links.social-links--panel {
  display: none !important;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  min-height: 2.25rem;
  max-width: 2.25rem;
  max-height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  color: #fff !important;
  background: transparent;
  text-decoration: none;
  line-height: 0;
  flex: 0 0 2.25rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(0, 195, 215, 0.2);
  border-color: var(--turquoise);
  color: var(--turquoise) !important;
}


.social-icon,
.social-link i.social-icon {
  width: 1.125rem;
  height: 1.125rem;
  font-size: 1.125rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon,
.social-link svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  display: block;
  flex: 0 0 18px;
}

.social-links--toolbar {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.social-link svg.social-icon {
  fill: currentColor;
}

.social-links--footer .social-link {
  border-color: rgba(255, 255, 255, 0.22);
  color: #c7d5dc !important;
}

.social-links--footer .social-link:hover,
.social-links--footer .social-link:focus-visible {
  color: var(--turquoise) !important;
  border-color: var(--turquoise);
}

.theme-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  min-height: 2.25rem;
  max-width: 2.25rem;
  max-height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  border-radius: 0;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 2.25rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.theme-btn:hover,
.theme-btn:focus-visible {
  background: rgba(0, 195, 215, 0.2);
  border-color: var(--turquoise);
}

.theme-btn[aria-pressed="true"] {
  color: var(--navy) !important;
  background: var(--green);
  border-color: var(--green);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, var(--navy) 0%, #0d2c48 62%, #075768 100%);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.hero::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  right: -10rem;
  top: -10rem;
  background: rgba(0, 195, 215, 0.16);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.brand-mark {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
}

.brand-mark span {
  color: var(--turquoise);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 850;
  margin-top: 1rem;
}

/* Shop */
.shop-page .shop-eyebrow,
.shop-page .eyebrow {
  color: var(--green);
}

.shop-hero-inner {
  padding-top: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: 0.75rem;
}

.shop-catalog-inner {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.shop-lead {
  margin-bottom: 0;
  max-width: none;
  color: var(--turquoise);
}

.btn-shop {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #fff !important;
  font-weight: 700;
}

.btn-shop:hover,
.btn-shop:focus-visible {
  background: var(--navy-2);
  border-color: var(--navy-2);
  color: #fff !important;
}

.shop-filter .btn-outline-shop {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #fff !important;
  font-weight: 700;
}

.shop-filter .btn-outline-shop:hover,
.shop-filter .btn-outline-shop:focus-visible {
  background: var(--navy-2);
  border-color: var(--navy-2);
  color: #fff !important;
}

/* Produktseite: alles Navy (Kontrast) */
.product-page .product-eyebrow,
.product-page .eyebrow {
  color: var(--navy);
}

.product-page .product-eyebrow--lieferbar,
.product-availability--lieferbar {
  color: #3dff6a;
  text-shadow: 0 0 12px rgba(61, 255, 106, 0.55);
}

.badge-lieferbar {
  --bs-badge-color: #04210f;
  background: #3dff6a;
  color: #04210f;
  box-shadow: 0 0 14px rgba(61, 255, 106, 0.65);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.product-page .breadcrumb-item a,
.product-page .product-link {
  color: var(--navy) !important;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.product-page .breadcrumb-item a:hover,
.product-page .product-link:hover {
  color: var(--navy-2) !important;
}

.product-page .breadcrumb-item.active {
  color: var(--navy);
}

.product-page .product-price,
.product-page h1,
.product-page h2,
.product-page .lead,
.product-page strong {
  color: var(--navy);
}

.product-page .nav-tabs.product-tabs {
  border-bottom-color: rgba(10, 27, 46, 0.2);
}

.product-page .product-tabs .nav-link {
  color: var(--navy);
  border-color: transparent;
  font-weight: 700;
}

.product-page .product-tabs .nav-link:hover,
.product-page .product-tabs .nav-link:focus-visible {
  color: var(--navy);
  border-color: rgba(10, 27, 46, 0.2) rgba(10, 27, 46, 0.2) transparent;
}

.product-page .product-tabs .nav-link.active {
  color: var(--navy) !important;
  background: #fff;
  border-color: rgba(10, 27, 46, 0.25) rgba(10, 27, 46, 0.25) #fff;
}

.product-page .alert-navy {
  background: rgba(10, 27, 46, 0.06);
  border: 1px solid rgba(10, 27, 46, 0.2);
  color: var(--navy);
}

.product-hazard-notice__headline {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ff073a;
  text-shadow:
    0 0 4px rgba(255, 7, 58, 0.85),
    0 0 12px rgba(255, 7, 58, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, #ff5a7a 0%, #ff073a 45%, #c4002b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(255, 7, 58, 0.65));
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .product-hazard-notice__headline {
    color: #ff073a;
    -webkit-text-fill-color: #ff073a;
    background: none;
  }
}

.product-page .table th {
  color: var(--navy);
}

.product-page .form-control {
  background: var(--card);
  border-color: var(--border);
  color: var(--ink);
}

.product-page .form-control:focus {
  background: var(--card);
  color: var(--ink);
  border-color: var(--navy);
  box-shadow: 0 0 0 0.2rem rgba(10, 27, 46, 0.15);
}

.product-page .text-muted {
  color: var(--ink) !important;
}

.product-gallery {
  width: 100%;
}

.product-gallery__stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  max-height: min(80vh, 44rem);
  overflow: hidden;
  background: #f0f0f0;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.75rem rgba(10, 27, 46, 0.08);
  touch-action: pan-y;
}

.product-gallery__slide {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0.75rem;
  place-items: center;
  box-sizing: border-box;
}

.product-gallery__slide.is-active {
  display: grid;
}

.product-gallery__slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-gallery__control {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(10, 27, 46, 0.9);
  color: #fff;
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.product-gallery__control:hover,
.product-gallery__control:focus-visible {
  background: var(--navy-2);
  color: #fff;
}

.product-gallery__control--prev {
  left: 0.75rem;
}

.product-gallery__control--next {
  right: 0.75rem;
}

.product-gallery__counter {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(10, 27, 46, 0.9);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
  padding: 0.2rem 0.1rem 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.product-gallery__thumb {
  display: grid;
  place-items: center;
  flex: 0 0 4.75rem;
  width: 4.75rem;
  height: 4.75rem;
  padding: 0.25rem;
  border: 2px solid var(--border);
  border-radius: 0.45rem;
  background: #fff;
  cursor: pointer;
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible,
.product-gallery__thumb.is-active {
  border-color: var(--turquoise);
}

.product-gallery__thumb.is-active {
  box-shadow: 0 0 0 2px rgba(0, 195, 215, 0.2);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.password-field {
  position: relative;
}

.password-field .form-control {
  padding-right: 5.75rem;
}

.password-field__toggle {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  transform: translateY(-50%);
  min-height: 2.25rem;
  min-width: 44px;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--border, #cfd6dd);
  border-radius: 0.4rem;
  background: #fff;
  color: var(--navy, #0a1b2e);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.password-field__toggle:hover,
.password-field__toggle:focus-visible {
  background: rgba(10, 27, 46, 0.06);
  outline: none;
}

.password-field__toggle[aria-pressed="true"] {
  background: rgba(0, 195, 215, 0.15);
  border-color: rgba(0, 195, 215, 0.55);
}

[data-theme="dark"] .password-field__toggle,
[data-bs-theme="dark"] .password-field__toggle {
  background: #12263a;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .product-page .product-eyebrow,
[data-theme="dark"] .product-page .eyebrow {
  color: var(--green);
}

[data-theme="dark"] .product-page .breadcrumb-item a,
[data-theme="dark"] .product-page .product-link {
  color: var(--turquoise) !important;
}

[data-theme="dark"] .product-page .breadcrumb-item a:hover,
[data-theme="dark"] .product-page .product-link:hover {
  color: #8ef4fb !important;
}

[data-theme="dark"] .product-page .breadcrumb-item.active,
[data-theme="dark"] .product-page .product-price,
[data-theme="dark"] .product-page h1,
[data-theme="dark"] .product-page h2,
[data-theme="dark"] .product-page strong,
[data-theme="dark"] .product-page .table th {
  color: #f4fbfc;
}

[data-theme="dark"] .product-page .lead {
  color: var(--turquoise);
}

[data-theme="dark"] .product-page .nav-tabs.product-tabs {
  border-bottom-color: var(--border);
}

[data-theme="dark"] .product-page .product-tabs .nav-link,
[data-theme="dark"] .product-page .product-tabs .nav-link:hover,
[data-theme="dark"] .product-page .product-tabs .nav-link:focus-visible {
  color: #f4fbfc;
}

[data-theme="dark"] .product-page .product-tabs .nav-link.active {
  color: var(--navy) !important;
  background: #fff;
}

[data-theme="dark"] .product-page .alert-navy {
  background: var(--navy-2);
  border-color: var(--border);
  color: #f4fbfc;
}

[data-theme="dark"] .product-page .form-control:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 0.2rem rgba(0, 195, 215, 0.22);
}

/* Blocksatz für Fließtexte – responsive, nicht für Navigation/Buttons */
.legal-content p,
.legal-content li,
.shop-page .lead,
.shop-page .card-body p,
.section p,
.hero-copy,
.cta-band p,
article.legal-page p,
.prose p {
  max-width: none;
  width: 100%;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.legal-content h2,
.legal-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  max-width: none;
  width: 100%;
}

.legal-content li {
  text-align: justify;
}

.display-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 16ch;
  margin: 1rem 0 0;
}

.hero-copy {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #d9eaf0;
  max-width: 36ch;
  margin: 1.25rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  font-family: inherit;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brand,
a.btn-brand,
.btn-brand:link,
.btn-brand:visited,
.btn-brand:hover,
.btn-brand:focus,
.btn-brand:focus-visible,
.btn-brand:active,
.hero .btn-brand,
.hero a.btn-brand,
.help-strip .btn-brand,
.help-strip a.btn-brand {
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: var(--navy) !important;
}

.btn-brand:hover,
a.btn-brand:hover,
.hero .btn-brand:hover,
.help-strip .btn-brand:hover {
  background: #62e828 !important;
  border-color: #62e828 !important;
  color: var(--navy) !important;
}

.theme-btn[aria-pressed="true"] {
  color: var(--navy) !important;
  background: var(--green) !important;
  border-color: var(--green) !important;
}

.btn-outline {
  border-color: var(--turquoise);
  color: var(--turquoise);
  background: transparent;
}

.btn-outline:hover {
  background: var(--turquoise);
  color: var(--navy);
}

.hero-media {
  position: relative;
  max-width: 26rem;
  margin-inline: auto;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 12% -8% 4%;
  border-radius: 50%;
  background: rgba(0, 195, 215, 0.22);
  filter: blur(28px);
  z-index: 0;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.42));
  animation: float-in 1s ease both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto -0.5rem -0.5rem auto;
  width: 5.5rem;
  height: 5.5rem;
  border: 2px solid var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: pulse-ring 2.8s ease-in-out infinite;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* Sections */
.section {
  padding: clamp(2rem, 4vw, 3.25rem) 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 18ch;
  margin: 0;
}

.section-title--row {
  max-width: none;
  width: 100%;
  white-space: nowrap;
  font-size: clamp(1.15rem, 3.6vw, 3.1rem);
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 62ch;
  margin: 1rem 0 0;
}

.surface-alt {
  background: var(--card);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(10, 27, 46, 0.05);
}

[data-theme="dark"] .feature {
  background: var(--navy-2);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: rgba(0, 195, 215, 0.14);
  color: #007784;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

[data-theme="dark"] .feature-icon {
  color: var(--turquoise);
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

/* Story band */
.story-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 2.5rem;
}

.story-visual {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-visual:hover img {
  transform: scale(1.03);
}

.story-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.story-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.step-num {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--turquoise);
  color: var(--navy);
  font-weight: 800;
}

.story-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.story-list span {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Visual split */
.visual-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.visual-split img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.tipps-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--navy);
}

.tipps-frame img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

/* Product */
.product {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.product-media {
  background: linear-gradient(160deg, #1a2330, #0a1b2e);
  border-radius: 1.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 195, 215, 0.25);
  box-shadow: var(--shadow);
}

.product-media img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  margin-inline: auto;
}

.product-points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.product-points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted);
}

.product-points li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* CTA */
.cta-band {
  background: var(--navy);
  color: #fff;
  border-radius: 2rem;
  padding: clamp(2rem, 6vw, 3.5rem);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: -6rem;
  top: -6rem;
  border-radius: 50%;
  background: rgba(0, 195, 215, 0.15);
}

.cta-band h2 {
  position: relative;
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
}

.cta-band p {
  position: relative;
  color: #cfdee6;
  margin: 0.9rem 0 0;
  max-width: 42ch;
}

.cta-band .hero-actions {
  position: relative;
}

.cta-media {
  position: relative;
  max-width: 16rem;
  margin-inline: auto;
}

.cta-media img {
  width: 100%;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.35));
}

/* Footer */
.site-footer {
  background: #06121f;
  color: #c7d5dc;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 10px;
}

.footer-grid--4 {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem 1.5rem;
}

.footer-company {
  margin-top: 0.85rem !important;
  font-size: 0.9rem;
  color: #91aab6;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  border-bottom: 0;
}

.lang-switch a,
.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  opacity: 0.55;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid transparent;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none;
}

.lang-flag:hover,
.lang-flag:focus-visible {
  opacity: 1;
}

.lang-flag.is-active,
.lang-flag[aria-current="page"] {
  opacity: 1;
  border-color: rgba(126, 200, 212, 0.8);
  box-shadow: 0 0 0 1px rgba(126, 200, 212, 0.35);
}

.lang-flag svg {
  display: block;
  width: 1.4rem;
  height: 0.95rem;
}


.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.85rem;
}

.footer-brand {
  display: inline-block;
  margin: 0 0 0.85rem;
  line-height: 0;
  text-decoration: none;
}

.footer-logo {
  height: 2.5rem;
}

.site-footer p {
  margin: 0;
}

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

.site-footer a:hover {
  color: var(--turquoise);
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin: 0.4rem 0;
}

.footer-note {
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: #91aab6;
}

.footer-partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.35rem 2rem;
  margin: 1.25rem 0 0.85rem;
}

.footer-partner-link {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none !important;
  border-bottom: none !important;
  opacity: 0.98;
  transition: opacity 0.2s ease;
}

.footer-partner-link:hover,
.footer-partner-link:focus-visible {
  opacity: 1;
}

.footer-partner-logo {
  display: block;
  width: auto;
  max-width: min(320px, 85vw);
  height: auto;
  border-radius: 0.35rem;
  object-fit: contain;
}

.footer-partner-logo--hilfetelefon {
  height: 7.5rem;
  width: auto;
  max-width: min(420px, 92vw);
  background: transparent;
  padding: 0;
}

.footer-partner-logo--bafza {
  height: 6.5rem;
  width: auto;
  max-width: min(340px, 90vw);
  background: #fff;
  padding: 0.55rem 0.7rem;
}

.footer-note a {
  color: #7ec8d4;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-note a:hover,
.footer-note a:focus-visible {
  color: var(--turquoise);
}

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}


@media (max-width: 991px) {
  .footer-grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .site-header .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .top-bar__inner {
    justify-content: flex-start;
    gap: 0.5rem;
    min-height: 3.25rem;
    overflow-x: auto;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .top-bar__inner > * {
    flex: 0 0 auto;
  }

  .nav-bar {
    flex-wrap: nowrap;
    gap: 0.4rem;
  }

  .brand-logo {
    max-width: min(132px, 36vw);
    height: 2rem;
  }

  .nav-panel {
    display: none;
    order: 3;
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 110;
    background: rgba(10, 27, 46, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.85rem 1rem 1.15rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-panel__extras {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .safety-btn.safety-btn--panel {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    min-height: 2.75rem;
  }

  .top-bar .safety-btn--toolbar {
    display: inline-flex !important;
  }

  .nav-tools {
    order: 2;
    margin-left: auto;
    gap: 0.35rem;
  }

  .safety-actions {
    gap: 0.3rem;
  }

  .safety-btn--exit {
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem;
    padding: 0;
  }

  .safety-btn--exit .safety-btn__text--exit {
    display: none;
  }

  .lang-switch {
    gap: 0.25rem;
  }

  .lang-switch a {
    min-width: 2.25rem;
    min-height: 2.25rem;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.15rem;
    align-items: stretch;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0.75rem;
    min-height: 2.75rem;
  }

  .nav-item--has-sub > .nav-sub,
  .nav-item--has-sub:hover > .nav-sub,
  .nav-item--has-sub:focus-within > .nav-sub {
    display: block;
    position: static;
    min-width: 0;
    margin: 0 0 0.35rem;
    padding: 0 0 0.25rem 0.75rem;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-sub a {
    padding: 0.7rem 0.75rem;
    white-space: normal;
  }

  .social-links.social-links--panel {
    display: flex !important;
    justify-content: flex-start;
  }

  .social-links--toolbar {
    display: none !important;
  }

  .hero-grid,
  .story-band,
  .visual-split,
  .product,
  .cta-band,
  .footer-grid,
  .footer-grid--4 {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media {
    max-width: 18rem;
    order: -1;
  }

  .brand-mark,
  .display-title,
  .hero-copy,
  .eyebrow {
    text-align: center;
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-media::after {
    right: 0.5rem;
  }
}

@media (max-width: 575px) {
  .top-bar .safety-btn__text--full {
    display: none;
  }

  .top-bar .safety-btn__text--short {
    display: inline;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .display-title {
    font-size: 1.85rem;
  }
}

/* Contact form */
.contact-page .hero-section .lead {
  color: var(--turquoise);
}

.contact-page .hero-section .container {
  padding-top: clamp(2rem, 4vw, 3.25rem) !important;
  padding-bottom: 1.25rem !important;
}

.contact-page .legal-content {
  padding-top: 1.25rem !important;
}

.contact-page .contact-form {
  margin-top: 0;
}

.contact-form {
  margin-top: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  color: var(--ink);
  padding: 0.8rem 0.95rem;
  font: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.25rem 0 1.25rem;
}

.form-alert {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
}

.form-alert--ok {
  border-color: rgba(124, 255, 60, 0.45);
  background: rgba(124, 255, 60, 0.12);
}

.form-alert--err {
  border-color: #c45c5c;
  background: rgba(196, 92, 92, 0.12);
}

.form-alert ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Legal pages */
.legal-page {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.legal-page.contact-page {
  padding: 0;
}

.legal-wrap {
  max-width: none;
  width: 100%;
}

.legal-eyebrow {
  margin: 0 0 0.5rem;
  color: var(--turquoise, #00c3d7);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.legal-block {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.legal-block h2 {
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.legal-block h3 {
  margin: 1.25rem 0 0.45rem;
  font-size: 1.02rem;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
}

.legal-block p {
  margin: 0 0 0.9rem;
}

.legal-block ul {
  margin: 0 0 0.9rem;
  padding-left: 1.2rem;
}

.legal-block li {
  margin-bottom: 0.45rem;
}

.legal-block code {
  font-size: 0.92em;
  color: var(--turquoise, #00c3d7);
}

.legal-source {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

/* —— Themenwelten (Paket 1) —— */
.theme-worlds {
  background: linear-gradient(180deg, rgba(10, 27, 46, 0.06), transparent 45%);
}

.theme-worlds__intro {
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-bottom: 0.5rem;
}

.theme-worlds__mascot {
  width: clamp(4.5rem, 14vw, 6.5rem);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 24px rgba(10, 27, 46, 0.28));
}

.theme-worlds__lede {
  margin-top: 0.35rem;
}

.theme-worlds__grid {
  margin-top: 1.15rem;
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
  background: #0a1b2e;
}

.theme-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  text-decoration: none !important;
  color: #fff !important;
  background: #0a1b2e;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-card:hover,
.theme-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(10, 27, 46, 0.28);
  color: #fff !important;
}

.theme-card--help {
  border-color: rgba(194, 24, 91, 0.55);
}

.theme-card__media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  line-height: 0;
  background: #0a1b2e;
}

.theme-card__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.theme-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.95rem 1rem 1.15rem;
  background: #0a1b2e;
  flex: 1;
}

.theme-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.theme-card__claim {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #fff;
  opacity: 0.92;
}

.theme-hub__figure {
  margin: 0;
  text-align: center;
}

.theme-hub__mascot {
  display: inline-block;
  width: min(100%, 20rem);
  height: auto;
  border-radius: 1rem;
  border: 1px solid rgba(0, 195, 215, 0.28);
  box-shadow: 0 18px 40px rgba(10, 27, 46, 0.22);
  background: #071422;
}

.theme-switcher {
  margin: 0 -0.25rem;
}

.theme-switcher__scroller {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.15rem 0.25rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.theme-switcher__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  min-height: 2.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--ink) !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.theme-switcher__chip:hover,
.theme-switcher__chip:focus-visible {
  border-color: var(--turquoise);
  background: var(--navy);
  color: #fff !important;
}

.theme-switcher__chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff !important;
}

.theme-switcher__chip--help.is-active {
  background: #c2185b;
  border-color: #c2185b;
}

.theme-switcher__icon {
  display: inline-flex;
  color: var(--turquoise);
}

.theme-switcher__chip.is-active .theme-switcher__icon {
  color: var(--turquoise);
}

.theme-switcher__icon .theme-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.theme-hub__title {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
}

.theme-hub__claim {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--turquoise);
}

.theme-hub__intro {
  max-width: 42rem;
}

@media (min-width: 992px) {
  .theme-hub--help .theme-hub__intro {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(0.88rem, 1.25vw, 1.15rem);
  }
}

.theme-hub__panel {
  height: 100%;
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.theme-hub__panel p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.key-messages__title {
  margin-bottom: 1.15rem;
}

.key-messages__grid {
  margin-top: 0.25rem;
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
  background: #0a1b2e;
}

.stories-nav__title {
  margin-bottom: 0.5rem;
}

.stories-nav__lede {
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.stories-nav__grid {
  margin-top: 1.15rem;
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
  background: #0a1b2e;
}

.home-paths__title {
  margin-bottom: 0.5rem;
}

.home-paths__lede {
  margin-top: 0.35rem;
}

.home-paths__grid {
  margin-top: 1.15rem;
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
  background: #0a1b2e;
}

.home-path {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
  padding: 1.15rem 1.1rem 1.25rem;
  text-decoration: none !important;
  color: #fff !important;
  background: #0a1b2e;
  border: 1px solid rgba(0, 195, 215, 0.28);
  border-radius: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-path:hover,
.home-path:focus-visible {
  transform: translateY(-2px);
  border-color: var(--turquoise);
  color: #fff !important;
}

.home-path__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.home-path__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: #d5e4eb;
}

.theme-card--story {
  cursor: default;
  width: min(100%, var(--story-card-width, 337px));
  margin-inline: auto;
}

.theme-card--story .theme-card__body {
  width: 100%;
  text-align: left;
}

.help-strip {
  padding: 1.25rem 0 1.5rem;
  background: linear-gradient(180deg, #0a1b2e 0%, #102943 100%);
  color: #e7eef3;
}

.help-strip__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #fff;
}

.help-strip__lede {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  color: #a9bcc8;
}

@media (min-width: 992px) {
  .help-strip__lede {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  }
}

.help-strip__card {
  height: 100%;
  padding: 1rem 1.05rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.help-strip__card--helpline {
  border-color: rgba(0, 195, 215, 0.45);
}

.help-strip__label {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #91aab6;
}

.help-strip__number {
  display: inline-block;
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-weight: 800;
  color: #fff !important;
  text-decoration: none !important;
  line-height: 1.1;
  min-height: 2.75rem;
  padding: 0.25rem 0;
}

.help-strip__number:hover,
.help-strip__number:focus-visible {
  color: var(--turquoise) !important;
}

.help-strip__note {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: #a9bcc8;
}

.help-strip__btn {
  width: 100%;
  min-height: 2.75rem;
  justify-content: center;
}

.help-strip__disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: #91aab6;
}

.theme-hub--help .help-strip {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .theme-card {
    min-height: 0;
  }

  .key-messages__title {
    margin-bottom: 1.75rem;
  }

  .theme-worlds__grid {
    margin-top: 1.35rem;
  }
}

.cart-page .cart-quantity__update {
  min-width: 3rem;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--navy) !important;
  font-weight: 900;
}

.cart-page .cart-quantity__update:hover,
.cart-page .cart-quantity__update:focus-visible {
  border-color: #d8ff8c;
  background: #d8ff8c;
  color: var(--navy) !important;
}

.cart-page .cart-checkout-btn {
  min-height: 2.75rem;
  padding: 0.65rem 1.25rem;
  border: 2px solid var(--turquoise);
  background: var(--turquoise);
  color: var(--navy) !important;
  font-weight: 900;
}

.cart-page .cart-checkout-btn:hover,
.cart-page .cart-checkout-btn:focus-visible {
  border-color: #8ef4fb;
  background: #8ef4fb;
  color: var(--navy) !important;
}

@media (max-width: 767.98px) {
  .nav-cart {
    width: 2.75rem;
    min-width: 2.75rem;
    padding: 0;
    justify-content: center;
  }

  .nav-cart__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

/* Tipps: Hellmodus wie Produktseite – Navy/Ink statt Neon auf Hell */
.tips-page .tips-eyebrow,
.tips-page .eyebrow {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tips-page .tips-hero {
  padding-top: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: 0.75rem;
}

.tips-page--package .tips-hero {
  padding-bottom: 1.35rem;
}

.tips-page .tips-lead {
  max-width: 42rem;
  color: var(--ink);
}

.tips-page .lead.tips-lead--oneline,
.tips-page .tips-lead.tips-lead--oneline {
  width: 100%;
  max-width: 100% !important;
  margin-top: 1.35rem;
  margin-bottom: 0;
  white-space: normal;
  overflow-x: visible;
  font-size: clamp(0.95rem, 3.6vw, 1.15rem);
  line-height: 1.45;
}

.tips-page--package .lead.tips-lead--oneline,
.tips-page--package .tips-lead.tips-lead--oneline {
  margin-top: 1.75rem;
}

@media (min-width: 992px) {
  .tips-page .lead.tips-lead--oneline,
  .tips-page .tips-lead.tips-lead--oneline {
    width: max-content;
    white-space: nowrap !important;
    font-size: clamp(0.9rem, 1.2vw, 1.15rem);
    line-height: 1.35;
    overflow-x: visible;
  }
}

.tips-page .section-title {
  color: var(--ink);
}

.tips-page--package .section-title {
  max-width: none;
  margin-bottom: 0;
}

.tips-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.tips-breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.tips-breadcrumb a:hover,
.tips-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.tips-packages {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.tips-hub__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.tips-hub-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  color: inherit;
  text-decoration: none;
  min-height: 2.75rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tips-hub-card:hover,
.tips-hub-card:focus-visible {
  border-color: var(--turquoise);
  box-shadow: var(--shadow);
}

.tips-hub-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 11rem;
  padding: 0.65rem;
  border-radius: 0.55rem;
  background: #eef5f8;
  overflow: hidden;
}

.tips-hub-card__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 14rem;
  object-fit: contain;
}

.tips-hub-card__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 800;
  color: var(--ink);
}

.tips-hub-card__intro {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.tips-hub-card__cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-weight: 800;
  color: var(--navy);
}

.tips-package {
  display: grid;
  gap: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
}

.tips-package__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 14rem;
  padding: 0.85rem;
  overflow: hidden;
  border-radius: 0.55rem;
  background: #eef5f8;
}

.tips-package__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 28rem;
  object-fit: contain;
}

.tips-package__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 800;
  color: var(--ink);
}

.tips-package__intro {
  margin: 0 0 1rem;
  color: var(--muted);
}

.tips-package__list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.tips-package__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  min-height: 2.75rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}

.tips-package__list a {
  color: var(--navy) !important;
  font-weight: 700;
  text-decoration: none;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.tips-package__list a:hover,
.tips-package__list a:focus-visible {
  color: #061523 !important;
  text-decoration: underline;
}

.tips-package__badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.15rem 0.5rem;
  border-radius: 0.35rem;
  background: rgba(10, 27, 46, 0.08);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
}

.tips-package__shop {
  min-height: 2.75rem;
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #fff !important;
  font-weight: 700;
}

.tips-package__shop:hover,
.tips-package__shop:focus-visible {
  background: var(--navy-2);
  border-color: var(--navy-2);
  color: #fff !important;
}

.tips-package-nav {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.tips-package-nav__title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}

.tips-package-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tips-package-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  background: var(--card);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.tips-package-nav__list a:hover,
.tips-package-nav__list a:focus-visible,
.tips-package-nav__list a[aria-current="page"] {
  border-color: var(--navy);
  background: rgba(10, 27, 46, 0.06);
}

.tips-disclaimer {
  margin: 1.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.tips-package__intro--solo {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 42rem;
}

.tips-kits-grid {
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.tips-kit-card .theme-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.tips-kit-card .theme-card__body {
  text-align: left;
  align-items: flex-start;
}

.tips-kit-card .theme-card__title {
  text-align: left;
}

.tips-package__shop-wrap {
  margin: 0 0 0.5rem;
}

.tips-package-header {
  padding: 0 0 0.5rem;
}

.tips-package-header__media,
.shop-category-header__media {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #0a1b2e;
}

.tips-package-header__media img,
.shop-category-header__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 682;
  object-fit: cover;
  object-position: 28% center;
}

.tips-package--content-only {
  grid-template-columns: 1fr;
}

.shop-category-header {
  padding: 0 0 0.75rem;
}

[data-theme="dark"] .tips-page .tips-eyebrow,
[data-theme="dark"] .tips-page .eyebrow {
  color: var(--green);
}

[data-theme="dark"] .tips-breadcrumb a,
[data-theme="dark"] .tips-hub-card__cta,
[data-theme="dark"] .tips-package__list a,
[data-theme="dark"] .tips-package-nav__list a {
  color: var(--turquoise) !important;
}

[data-theme="dark"] .tips-package__badge {
  background: rgba(183, 239, 75, 0.18);
  color: var(--green);
}

[data-theme="dark"] .tips-hub-card__media,
[data-theme="dark"] .tips-package__media {
  background: #0d2135;
}

[data-theme="dark"] .tips-package-header__media,
[data-theme="dark"] .shop-category-header__media {
  background: #071522;
}

@media (min-width: 768px) {
  .tips-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .tips-package--detail:not(.tips-package--content-only) {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
    align-items: start;
    padding: 1.25rem;
  }

  .tips-hub__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
