/*
Theme Name: Damina Performance
Theme URI: https://damina-performance.de
Author: WeAreWeblabs
Author URI: https://weareweblabs.com
Description: Custom WordPress theme for Damina Performance – Premium Alufelgen
Version: 1.0.0
Text Domain: damina
Requires at least: 6.0
Requires PHP: 8.0
License: Proprietary
*/

/* ═══════════════════════════════════════════════
   Design Tokens / Custom Properties
   ═══════════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --dm-bg-primary: #0a1017;
  --dm-bg-secondary: #111822;
  --dm-bg-footer: #070c12;
  --dm-bg-white: #ffffff;
  --dm-bg-light: #f1f3f5;
  --dm-bg-card-light: #f8f9fa;

  /* Text – light (on dark bg) */
  --dm-text-white: #ffffff;
  --dm-text-muted-light: rgba(255,255,255,0.4);
  --dm-text-sub-light: rgba(255,255,255,0.55);
  --dm-text-hint-light: rgba(255,255,255,0.35);

  /* Text – dark (on light bg) */
  --dm-text-dark: #0a1017;
  --dm-text-light: rgba(0,0,0,0.5);
  --dm-text-muted-dark: rgba(0,0,0,0.4);
  --dm-text-sub-dark: rgba(0,0,0,0.5);
  --dm-text-hint-dark: rgba(0,0,0,0.35);

  /* Brand */
  --dm-primary: #0a1017;
  --dm-bg-primary-hover: #1a2a3a;

  /* Borders */
  --dm-border-light: rgba(255,255,255,0.08);
  --dm-border-dark: rgba(0,0,0,0.06);
  --dm-border-mid: rgba(0,0,0,0.08);
  --dm-border-strong: rgba(0,0,0,0.12);

  /* Shadows / hover */
  --dm-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --dm-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --dm-hover-light: rgba(0,0,0,0.04);

  /* Radii */
  --dm-radius-sm: 8px;
  --dm-radius-md: 12px;
  --dm-radius-lg: 16px;
  --dm-radius-xl: 20px;

  /* Layout */
  --dm-container: 1200px;
  --dm-font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Hero overlay colours (themeable) */
  --dm-hero-overlay-start: rgba(10,16,23,0.95);
  --dm-hero-overlay-mid: rgba(10,16,23,0.6);
  --dm-hero-overlay-bottom: #0a1017;
}

/* ── Light Mode Overrides ─────────────────────── */
[data-theme="light"] {
  /* Section backgrounds → lighter blue */
  --dm-bg-primary: #2a3a4e;
  --dm-bg-footer: #1e2d3e;
  --dm-primary: #2a3a4e;
  --dm-bg-primary-hover: #3a5068;
  --dm-border-light: rgba(255,255,255,0.12);
  /* Cards get lighter to contrast against blue sections */
  --dm-bg-secondary: rgba(255,255,255,0.12);
  /* Hero overlay */
  --dm-hero-overlay-start: rgba(42,58,78,0.92);
  --dm-hero-overlay-mid: rgba(42,58,78,0.55);
  --dm-hero-overlay-bottom: #2a3a4e;
}

/* Vehicle selector glass — lighter in light mode */
[data-theme="light"] .dm-vehicle-selector::after {
  background: rgba(255,255,255,0.15);
}
[data-theme="light"] .dm-vehicle-selector {
  box-shadow: 0 24px 48px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* Benefits section is always light — no override needed */

/* ═══════════════════════════════════════════════
   Reset & Base
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--dm-font-primary); background-color: var(--dm-bg-primary); color: var(--dm-text-white); overflow-x: hidden; line-height: 1.6; }
::selection { background: var(--dm-bg-primary); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* Material Symbols */
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga';
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ═══════════════════════════════════════════════
   Container
   ═══════════════════════════════════════════════ */
.dm-container {
  width: 100%;
  max-width: var(--dm-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.dm-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--dm-border-light);
}
.dm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
  max-width: var(--dm-container);
  margin: 0 auto;
}
.dm-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.dm-header__logo img {
  width: 44px; height: 44px;
  object-fit: contain;
}
.dm-header__logo-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}
.dm-header__nav {
  display: flex;
  gap: 28px;
}
.dm-header__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.dm-header__nav a:hover { color: #fff; }
.dm-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* B2B Toggle */
.dm-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dm-toggle__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.dm-toggle__label--active { color: #fff; }
.dm-toggle__label--inactive { color: var(--dm-text-hint-light); }
.dm-toggle__track {
  width: 40px; height: 22px;
  border-radius: 11px;
  background: rgba(255,255,255,0.15);
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.dm-toggle__track.is-active { background: rgba(255,255,255,0.3); }
.dm-toggle__thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.dm-toggle__track.is-active .dm-toggle__thumb { left: 19px; }
/* When wrapper has is-b2b, move thumb right */
.dm-toggle.is-b2b .dm-toggle__track { background: rgba(255,255,255,0.3); }
.dm-toggle.is-b2b .dm-toggle__thumb { left: 19px; }
.dm-header__icon {
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 20px;
  transition: color 0.2s;
}
.dm-header__icon:hover { color: #fff; }

/* Mobile menu toggle */
.dm-header__hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* ── Mobile Nav Sidebar ── */
.dm-mobile-nav {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--dm-bg-primary);
  z-index: 9999;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -8px 0 30px rgba(0,0,0,0.3);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.dm-mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}
.dm-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dm-mobile-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.dm-mobile-nav__logo img {
  height: 28px;
  width: auto;
}
.dm-mobile-nav__logo span {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
}
.dm-mobile-nav__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.dm-mobile-nav__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s;
}
.dm-mobile-nav__close:hover { color: #fff; }
.dm-mobile-nav__close .material-symbols-rounded { font-size: 24px; }

/* Mobile nav search bar */
.dm-mobile-nav__search {
  padding: 16px 24px 12px;
}
.dm-mobile-nav__search form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color 0.2s;
}
.dm-mobile-nav__search form:focus-within {
  border-color: rgba(255,255,255,0.2);
}
.dm-mobile-nav__search .material-symbols-rounded {
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.dm-mobile-nav__search input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  padding: 0;
  margin: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.dm-mobile-nav__search input::placeholder {
  color: rgba(255,255,255,0.3);
}
/* Remove default search styling */
.dm-mobile-nav__search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* Mobile nav B2B toggle */
.dm-mobile-nav__toggle-wrap {
  padding: 8px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dm-mobile-nav__toggle.dm-toggle {
  display: flex !important;
}

/* Mobile nav links */
.dm-mobile-nav__links a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.15s;
}
.dm-mobile-nav__links a:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}

/* Search Overlay */
.dm-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 16, 23, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.dm-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.dm-search-overlay__inner {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.dm-search-overlay.is-open .dm-search-overlay__inner {
  transform: translateY(0);
}
.dm-search-overlay__close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  transition: all 0.15s;
}
.dm-search-overlay__close:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.dm-search-overlay__form {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.dm-search-overlay__icon {
  font-size: 28px;
  color: rgba(255,255,255,0.3);
}
.dm-search-overlay__input {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  outline: none;
  font-family: inherit;
}
.dm-search-overlay__input::placeholder {
  color: rgba(255,255,255,0.25);
}
.dm-search-overlay__results {
  max-height: 40vh;
  overflow-y: auto;
}
.dm-search-overlay__hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  margin-top: 24px;
}
.dm-search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: opacity 0.15s;
}
.dm-search-result-item:hover { opacity: 0.7; }
.dm-search-result-item img {
  width: 48px; height: 48px;
  object-fit: contain;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 4px;
}
.dm-search-result-item__info { flex: 1; min-width: 0; }
.dm-search-result-item__name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dm-search-result-item__price {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.dm-hero {
  position: relative;
  height: 75vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.dm-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Slides */
.dm-hero__slides {
  position: absolute;
  inset: 0;
}
.dm-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.1);
  filter: blur(12px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}
.dm-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
.dm-hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 12s linear;
}
.dm-hero__slide.is-active img {
  transform: scale(1.05);
}

/* Dot navigation — bottom center */
.dm-hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.dm-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.dm-hero__dot.is-active {
  width: 22px;
  border-radius: 3px;
  background: rgba(255,255,255,0.9);
}

/* Side step navigation — right edge */
.dm-hero__steps {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 5;
}
.dm-hero__step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.dm-hero__step::before {
  content: '';
  width: 2px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, height 0.3s;
  border-radius: 1px;
}
.dm-hero__step.is-active::before {
  background: rgba(255,255,255,0.9);
  height: 32px;
}
.dm-hero__step span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.dm-hero__step.is-active span {
  color: rgba(255,255,255,0.8);
}
.dm-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--dm-hero-overlay-start) 10%, var(--dm-hero-overlay-mid) 45%, transparent 100%),
    linear-gradient(to top, var(--dm-hero-overlay-bottom) 0%, transparent 30%);
}
.dm-hero__content {
  position: relative;
  z-index: 10;
  padding: 0 24px;
  max-width: var(--dm-container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
.dm-hero__text {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  margin-bottom: 80px;
  flex-shrink: 0;
}
.dm-hero__badge {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dm-hero__title {
  font-size: clamp(30px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.dm-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.7;
  font-weight: 400;
}
.dm-hero__ctas {
  display: flex;
  gap: 16px;
}
.dm-btn-primary {
  padding: 16px 32px;
  border-radius: var(--dm-radius-md);
  background: #fff;
  color: var(--dm-text-dark);
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(255,255,255,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.dm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255,255,255,0.2);
}
.dm-btn-secondary {
  padding: 16px 32px;
  border-radius: var(--dm-radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.dm-btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════════ */
.dm-benefits {
  padding: 80px 0;
  background: #f4f5f7;
  border-top: none;
}
.dm-benefits__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  color: #0a1017;
}
.dm-benefits__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.dm-benefit-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--dm-radius-sm);
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.dm-benefit-card:hover {
  border-color: rgba(0,0,0,0.14);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.dm-benefit-card__icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dm-benefit-card__icon .material-symbols-rounded {
  font-size: 40px;
  color: #0a1017;
  opacity: 0.6;
}
.dm-benefit-card__text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,0.75);
  line-height: 1.5;
  white-space: pre-wrap;
}

/* ═══════════════════════════════════════════════
   QUALITY FEATURES
   ═══════════════════════════════════════════════ */
.dm-quality {
  padding: 100px 0;
  background: var(--dm-bg-white);
}
.dm-quality__tag {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dm-text-muted-dark);
  margin-bottom: 12px;
}
.dm-quality__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dm-text-dark);
}
.dm-quality__desc {
  text-align: center;
  font-size: 16px;
  color: var(--dm-text-sub-dark);
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.dm-quality__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dm-feature-card {
  background: var(--dm-bg-card-light);
  border: 1px solid var(--dm-border-dark);
  border-radius: var(--dm-radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease;
}
.dm-feature-card:hover { border-color: rgba(0,0,0,0.15); }
.dm-feature-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--dm-radius-md);
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dm-feature-card__icon .material-symbols-rounded {
  font-size: 24px;
  color: var(--dm-text-dark);
}
.dm-feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dm-text-dark);
}
.dm-feature-card__desc {
  font-size: 14px;
  color: var(--dm-text-sub-dark);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   PREMIUM SERIES
   ═══════════════════════════════════════════════ */
.dm-premium {
  padding: 40px 0 100px;
}
.dm-premium .dm-section-tag {
  text-align: center;
  color: var(--dm-text-hint-light);
}
.dm-premium__title {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.dm-premium__desc {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin: 0 auto 40px;
  max-width: 560px;
  line-height: 1.6;
}
.dm-premium__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dm-product-card {
  background: #ffffff;
  border-radius: var(--dm-radius-md);
  border: 1px solid var(--dm-border-mid);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
  cursor: pointer;
}
.dm-product-card:hover {
  border-color: var(--dm-border-strong);
}
.dm-product-card__img-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.dm-product-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dm-product-card__img img {
  width: 95%; height: 95%;
  object-fit: contain;
}
.dm-product-card__name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dm-text-dark);
  text-align: center;
}
.dm-product-card .dm-shop-card__price-hint {
  display: block; text-align: center; margin-top: 2px;
  font-size: 11px; font-weight: 500; color: rgba(0,0,0,0.35);
}
.dm-product-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.dm-product-card__sizes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.dm-size-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f0f2f5;
  font-size: 11px;
  font-weight: 700;
  color: var(--dm-text-dark);
}
.dm-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.dm-product-card__et {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dm-product-card__et .material-symbols-rounded {
  font-size: 14px;
  color: var(--dm-text-muted-dark);
}
.dm-product-card__et span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
}
.dm-meta-divider {
  width: 1px; height: 12px;
  background: rgba(0,0,0,0.1);
}
.dm-product-card__colors {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dm-color-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  flex-shrink: 0;
}
.dm-color-dot:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.08);
}
.dm-color-dot.is-active {
  border-color: rgba(0,0,0,0.35);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
  animation: dm-swatch-pulse 2s ease-in-out infinite;
}
/* Single product variant swatches spacing + custom tooltip */
.dm-product-hero__variant-row {
  margin-top: 16px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.dm-product-hero__variant-row .dm-product-hero__color-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  opacity: .95;
}
.dm-product-hero__variant-swatches {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 132px;
}
.dm-variant-swatch-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  text-decoration: none;
}
.dm-variant-swatch-link .dm-color-dot {
  width: 16px;
  height: 16px;
}
.dm-product-hero__size-row { margin-top: 10px; margin-bottom: 18px; }
.dm-product-hero__size-variants {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dm-variant-size-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #f5f6f8;
  color: var(--dm-text-dark);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.dm-variant-size-link.is-active {
  border-color: rgba(0,0,0,0.3);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.06);
}
.dm-variant-swatch-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(2px);
  background: rgba(15, 18, 22, 0.95);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 20;
}
.dm-variant-swatch-link:hover .dm-variant-swatch-tooltip,
.dm-variant-swatch-link:focus-visible .dm-variant-swatch-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@keyframes dm-swatch-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,0,0,0.08); }
  50% { box-shadow: 0 0 0 5px rgba(0,0,0,0.04); }
}
/* Smooth image swap on swatch click */
.dm-product-card__img img,
.dm-shop-card__img img {
  transition: opacity 0.25s ease;
}
.dm-btn-dark {
  width: 100%;
  padding: 14px;
  border-radius: var(--dm-radius-sm);
  background: var(--dm-text-dark);
  border: 1px solid var(--dm-text-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  text-decoration: none;
  display: block;
}
.dm-btn-dark:hover { background: transparent; color: var(--dm-text-dark); }

/* Light buttons (for dark backgrounds) */
.dm-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--dm-radius-sm);
  background: #fff;
  color: var(--dm-text-dark);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid #fff;
  white-space: nowrap;
}
.dm-btn-light .material-symbols-rounded { font-size: 18px; }
.dm-btn-light:hover { background: rgba(255,255,255,0.9); }

.dm-btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--dm-radius-sm);
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}
.dm-btn-ghost-light .material-symbols-rounded { font-size: 18px; }
.dm-btn-ghost-light:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ═══════════════════════════════════════════════
   BRAND SELECTOR
   ═══════════════════════════════════════════════ */
.dm-brands {
  background: var(--dm-bg-light);
  padding: 80px 0;
  color: #000;
}
.dm-brands__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--dm-text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.dm-brands__desc {
  font-size: 15px;
  color: var(--dm-text-sub-dark);
  margin: 0 0 32px;
  max-width: 560px;
  line-height: 1.6;
}
.dm-brands__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.dm-brand-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--dm-radius-sm);
  padding: 24px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.dm-brand-card:hover {
  border-color: #c0c8d1;
  box-shadow: 0 4px 12px var(--dm-border-dark);
}
.dm-brand-card__logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dm-brand-card__logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(70%);
  transition: filter 0.3s;
}
.dm-brand-card:hover .dm-brand-card__logo img { filter: grayscale(0%) opacity(100%); }
.dm-brand-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

/* Extra brand cards */
.dm-brand-card--extra {
  border-style: dashed;
  border-color: var(--dm-border-strong);
}
.dm-brand-card--all {
  background: rgba(0,0,0,0.01);
}
.dm-brand-card--extra:hover {
  border-color: var(--dm-text-dark);
  background: rgba(10,16,23,0.03);
}
.dm-brand-more-count {
  font-size: 24px;
  font-weight: 800;
  color: rgba(0,0,0,0.2);
  transition: color 0.2s;
}
.dm-brand-card--extra:hover .dm-brand-more-count,
.dm-brand-card--extra:hover .material-symbols-rounded {
  color: var(--dm-text-dark) !important;
}
.dm-brand-card--extra .dm-brand-card__name {
  color: var(--dm-text-muted-dark);
  transition: color 0.2s;
}
.dm-brand-card--extra:hover .dm-brand-card__name {
  color: var(--dm-text-dark);
}

/* ═══════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════ */
.dm-gallery {
  padding: 100px 0;
  background: var(--dm-bg-primary);
}
.dm-gallery__tag {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dm-text-muted-light);
  margin-bottom: 12px;
}
.dm-gallery__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #fff;
}
.dm-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dm-gallery__item {
  position: relative;
  border-radius: var(--dm-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--dm-bg-secondary);
  border: 1px solid rgba(255,255,255,0.06);
}
.dm-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.dm-gallery__item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   ABOUT + FAQ
   ═══════════════════════════════════════════════ */
.dm-about {
  padding: 100px 24px;
  background: var(--dm-bg-white);
}
.dm-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.dm-about__tag, .dm-faq__tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dm-text-hint-dark);
  margin-bottom: 12px;
}
.dm-about__title, .dm-faq__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111;
  line-height: 1.3;
}
.dm-faq__title { margin-bottom: 32px; }
.dm-about__intro {
  margin: 0 0 32px;
  font-size: 15px;
  color: rgba(0,0,0,0.55);
  line-height: 1.8;
}
/* Accordion (shared for about + faq) */
.dm-accordion__item {
  border-top: 1px solid var(--dm-border-mid);
}
.dm-accordion__item:last-child {
  border-bottom: 1px solid var(--dm-border-mid);
}
.dm-accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.dm-faq .dm-accordion__trigger {
  font-size: 15px;
  font-weight: 600;
  padding: 20px 0;
}
.dm-accordion__trigger .material-symbols-rounded {
  color: var(--dm-text-hint-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-size: 22px;
}
.dm-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.dm-accordion__content.is-open {
  max-height: 400px;
}
.dm-accordion__content ul {
  margin: 0;
  padding-left: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(0,0,0,0.55);
  line-height: 1.7;
  list-style: disc;
}
.dm-accordion__content ul li strong {
  color: rgba(0,0,0,0.75);
}
.dm-accordion__content p {
  margin: 0;
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--dm-text-sub-dark);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   B2B SECTION
   ═══════════════════════════════════════════════ */
.dm-b2b {
  background: linear-gradient(180deg, var(--dm-bg-primary) 0%, var(--dm-bg-secondary) 50%, var(--dm-bg-primary) 100%);
  padding: 100px 24px;
}
.dm-b2b__inner {
  display: flex;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
}
.dm-b2b__text {
  flex: 1 1 440px;
}
.dm-b2b__tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.dm-b2b__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}
.dm-b2b__desc {
  font-size: 16px;
  color: var(--dm-text-sub-light);
  line-height: 1.7;
  max-width: 500px;
}
.dm-b2b__benefits {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dm-b2b__benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dm-border-light);
  border-radius: var(--dm-radius-md);
  transition: border-color 0.3s, background 0.3s;
}
.dm-b2b__benefit:hover {
  border-color: rgba(255,255,255,0.2);
  background: var(--dm-border-light);
}
.dm-b2b__benefit .material-symbols-rounded {
  font-size: 22px;
  color: rgba(255,255,255,0.45);
}
.dm-b2b__benefit span {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.dm-footer {
  background: var(--dm-bg-footer);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.dm-footer__inner {
  max-width: var(--dm-container);
  margin: 0 auto;
  padding: 64px 24px 0;
}
.dm-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.dm-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.dm-footer__brand-row img {
  width: 40px; height: 40px;
  object-fit: contain;
}
.dm-footer__brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.dm-footer__slogan {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-left: 52px;
}
.dm-footer__heading {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.dm-footer__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.dm-footer__info a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.dm-footer__info a:hover { color: rgba(255,255,255,0.9); }
.dm-footer__social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.dm-footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.dm-footer__social-link:hover { background: rgba(255,255,255,0.12); }
.dm-footer__social-link svg {
  width: 16px; height: 16px;
}
/* Bottom bar */
.dm-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.dm-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.dm-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.dm-footer__legal a {
  font-size: 12px;
  color: var(--dm-text-hint-light);
  text-decoration: none;
  transition: color 0.2s;
}
.dm-footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════
   VEHICLE SELECTOR (styled via plugin, structure here)
   ═══════════════════════════════════════════════ */
/* ── Mobile Vehicle Selector Trigger ── */
.dm-vs-mobile-trigger,
.dm-hero__mobile-bottom,
.dm-hero__mobile-cta {
  display: none; /* hidden on desktop */
}
.dm-vs-mobile-close {
  display: none; /* hidden on desktop */
}
.dm-vs-backdrop {
  display: none;
}

.dm-vehicle-selector {
  position: relative;
  background: transparent;        /* background is on ::after  */
  border: none;
  border-radius: var(--dm-radius-xl);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 48px var(--dm-text-sub-dark), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ── Animated gradient border — sweeps along all 4 sides ── */
.dm-vehicle-selector::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.55) 15%,
    rgba(180,220,255,0.4)  25%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.08) 100%
  );
  background-size: 300% 100%;
  animation: dm-border-sweep 4s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
}

/* ── Glass inner fill ── */
.dm-vehicle-selector::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: calc(var(--dm-radius-xl) - 1.5px);
  background: rgba(20, 26, 35, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1;
}

/* ── Lift all content above the ::after layer ── */
.dm-vehicle-selector > * {
  position: relative;
  z-index: 2;
}

@keyframes dm-border-sweep {
  0%   { background-position: 100% 0; }
  50%  { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

.dm-vehicle-selector__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255,255,255,0.9);
}
.dm-vehicle-selector__tabs {
  display: flex;
  background: var(--dm-text-muted-dark);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.03);
}
.dm-vehicle-selector__tab {
  flex: 1;
  padding: 12px 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dm-vehicle-selector__tab.is-active {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.dm-vehicle-selector__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 3; /* above actions bar so dropdowns never get covered */
}
.dm-select-field {
  width: 100%;
  appearance: none;
  background: var(--dm-border-light);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--dm-radius-md);
  padding: 16px 44px 16px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
  cursor: pointer;
}
.dm-select-field:disabled {
  background: rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.3);
  cursor: not-allowed;
}
.dm-select-field::placeholder { color: rgba(255,255,255,0.4); }
.dm-select-field option { background: #1a2030; color: #fff; }

.dm-input-field {
  width: 100%;
  background: var(--dm-border-light);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--dm-radius-md);
  padding: 16px 52px 16px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
}
.dm-input-field::placeholder {
  color: rgba(255,255,255,0.5);
}
.dm-input-wrapper {
  position: relative;
}
.dm-input-tag {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  pointer-events: none;
}
.dm-vehicle-selector__hint {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.dm-vehicle-selector__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  position: relative;
  z-index: 2; /* above glass ::after (z:1), below fields dropdowns (z:3) */
}
.dm-btn-clear {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
  /* Hidden until user has selected something */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.dm-btn-clear.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.dm-btn-clear:hover { color: rgba(255,255,255,0.8); }
.dm-btn-find {
  padding: 14px 28px;
  border-radius: var(--dm-radius-md);
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(4px);
}
.dm-btn-find:not(:disabled):hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 0 16px rgba(255,255,255,0.15);
}
.dm-btn-find:disabled {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.25);
  opacity: 1;
  cursor: not-allowed;
}

/* Searchable dropdown */
.dm-searchable-select { position: relative; width: 100%; }
.dm-searchable-select__trigger {
  width: 100%;
  background: var(--dm-border-light);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--dm-radius-md);
  padding: 16px 44px 16px 20px;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: inherit;
}
.dm-searchable-select__trigger.has-value { color: #fff; }
.dm-searchable-select__trigger:disabled {
  background: rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.05);
  cursor: not-allowed;
}
.dm-searchable-select__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255,255,255,0.6);
}
.dm-searchable-select__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: rgba(20, 26, 38, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--dm-radius-md);
  z-index: 1000;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--dm-text-sub-dark);
  display: none;
}
.dm-searchable-select__dropdown.is-open { display: block; }
.dm-searchable-select__search {
  padding: 10px 10px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dm-searchable-select__search input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 34px 10px 12px;
  color: #fff;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
}
.dm-searchable-select__options {
  max-height: 240px;
  overflow-y: auto;
}
.dm-searchable-select__option {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}
.dm-searchable-select__option:hover { background: rgba(255,255,255,0.06); }
.dm-searchable-select__option.is-selected {
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 700;
}
.dm-searchable-select__empty {
  padding: 16px;
  color: var(--dm-text-hint-light);
  font-size: 13px;
}

/* ═══════════════════════════════════════════════
   SUBPAGE HERO (shared)
   ═══════════════════════════════════════════════ */
.dm-subpage-hero {
  position: relative;
  width: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
  padding-top: 80px;
}
.dm-subpage-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dm-subpage-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.dm-subpage-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dm-hero-overlay-bottom) 0%, var(--dm-hero-overlay-mid) 40%, rgba(10,16,23,0.3) 100%);
}
.dm-subpage-hero__content {
  position: relative;
  z-index: 10;
}
.dm-subpage-hero__back,
a.dm-subpage-hero__back,
a.dm-subpage-hero__back:visited {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.dm-subpage-hero__back .material-symbols-rounded { font-size: 18px; }
a.dm-subpage-hero__back:hover { color: #fff !important; }
.dm-subpage-hero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #fff;
}
.dm-subpage-hero__title span { color: rgba(255,255,255,0.7); }
.dm-hero-vehicle-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  margin-left: 12px;
  vertical-align: middle;
  transition: all 0.2s ease;
  padding: 0;
  line-height: 1;
}
.dm-hero-vehicle-reset:hover {
  background: rgba(255,60,60,0.2);
  border-color: rgba(255,60,60,0.4);
  color: #FF3E3E;
}
.dm-hero-vehicle-reset .material-symbols-rounded {
  font-size: 18px;
}
.dm-subpage-hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin: 0;
  max-width: 780px;
  min-height: 32px;
  line-height: 32px;
}
.dm-subpage-hero--compact {
  min-height: auto;
  padding: 140px 0 80px;
}
.dm-subpage-hero--compact .dm-subpage-hero__title {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 8px;
}
.dm-subpage-hero--compact .dm-subpage-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

/* Desc + vehicle tags row */
.dm-hero-desc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.dm-hero-desc-row .dm-subpage-hero__desc {
  flex-shrink: 0;
}

/* Vehicle spec tags in hero */
.dm-hero-vehicle-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  animation: dm-vtags-in 0.4s ease-out both;
}
@keyframes dm-vtags-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dm-hero-vtag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px 5px 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.dm-hero-vtag:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.2);
}
.dm-hero-vtag .material-symbols-rounded {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════
   SHARED UTILITY
   ═══════════════════════════════════════════════ */
.dm-section-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dm-text-hint-dark);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════
   KONTAKT PAGE
   ═══════════════════════════════════════════════ */
.dm-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: flex-start;
}
.dm-kontakt-form-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dm-text-dark);
  margin-bottom: 40px;
}
.dm-kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dm-kontakt-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dm-form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 8px;
  display: block;
}
.dm-form-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid var(--dm-border-strong);
  background: #fff;
  font-size: 15px;
  color: var(--dm-text-dark);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}
.dm-form-input:focus { border-color: var(--dm-text-dark); }
.dm-form-textarea { resize: vertical; min-height: 160px; }
.dm-form-hint {
  font-size: 12px;
  color: var(--dm-text-muted-dark);
  margin-top: 6px;
}
.dm-btn-submit {
  width: 100%;
  padding: 18px;
  border-radius: 10px;
  background: var(--dm-bg-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--dm-text-dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.dm-btn-submit:hover { background: #1a2a3a; }
.dm-kontakt-success-box {
  background: #f0faf4;
  border: 1px solid rgba(0,180,80,0.2);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}

/* Info cards */
.dm-info-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--dm-border-dark);
}
.dm-info-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.dm-info-card__header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dm-text-dark);
  margin: 0;
}
.dm-info-card__bar {
  width: 4px; height: 20px;
  background: var(--dm-bg-primary);
  border-radius: 2px;
}
.dm-info-card__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dm-info-card__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}
.dm-info-card__day   { font-size: 14px; font-weight: 700; color: var(--dm-text-dark); flex-shrink: 0; }
.dm-info-card__time  { font-size: 14px; color: var(--dm-text-sub-dark); text-align: right; }
.dm-info-card__footer {
  border-top: 1px solid var(--dm-border-dark);
  margin-top: 20px;
  padding-top: 20px;
}
.dm-info-card__footer p {
  font-size: 13px;
  color: rgba(0,0,0,0.45);
  line-height: 1.7;
  margin: 0;
}
.dm-info-card__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dm-info-card__link-bold {
  font-size: 15px;
  color: var(--dm-text-dark);
  font-weight: 700;
  text-decoration: none;
}
.dm-info-card__link-bold:hover { text-decoration: underline; }
.dm-info-card__link {
  font-size: 14px;
  color: var(--dm-text-dark);
  font-weight: 600;
  text-decoration: none;
}
.dm-info-card__link:hover { text-decoration: underline; }
.dm-info-card__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--dm-border-dark);
}
.dm-info-card__social-btn {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dm-text-dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.dm-info-card__social-btn:hover {
  background: var(--dm-bg-primary);
  color: #fff;
  border-color: var(--dm-text-dark);
}


/* ═══════════════════════════════════════════════
   FELGENÜBERSICHT PAGE → assets/css/shop.css
   ═══════════════════════════════════════════════ */
/* ── Styles moved to assets/css/shop.css ── */

/* ═══════════════════════════════════════════════
   KONFIGURATOR PAGE → assets/css/konfigurator.css
   ═══════════════════════════════════════════════ */
/* ── Styles moved to assets/css/konfigurator.css ── */

/* ═══════════════════════════════════════════════
   GUTACHTEN MODAL
   ═══════════════════════════════════════════════ */
.dm-modal { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); align-items: center; justify-content: center; }
.dm-modal.is-open { display: flex; }
.dm-modal__dialog { background: #fff; border-radius: 16px; max-width: 600px; width: 90%; max-height: 85vh; overflow-y: auto; box-shadow: 0 24px 48px rgba(0,0,0,0.15); animation: fadeInUp 0.3s ease; }
.dm-modal__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--dm-border-dark); }
.dm-modal__title { font-size: 18px; font-weight: 700; color: var(--dm-text-dark); margin: 0; }
.dm-modal__close { width: 32px; height: 32px; border-radius: 8px; border: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--dm-text-hint-dark); transition: background 0.2s; font-size: 20px; }
.dm-modal__close:hover { background: #f1f5f9; }
.dm-modal__body { padding: 24px; }
.dm-modal__footer { padding: 16px 24px; border-top: 1px solid var(--dm-border-dark); display: flex; gap: 12px; justify-content: flex-end; }
/* Gutachten modal variant (dm-modal__backdrop + dm-modal__content) */
.dm-modal__backdrop { position: absolute; inset: 0; }
.dm-modal__content { position: relative; background: #fff; border-radius: 16px; max-width: 640px; width: 90%; max-height: 85vh; overflow-y: auto; box-shadow: 0 24px 48px rgba(0,0,0,0.18); animation: fadeInUp 0.3s ease; z-index: 1; }
.dm-modal__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--dm-border-dark); gap: 16px; }
.dm-modal__header-img { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: #f4f5f7; }
.dm-modal__header-img img { width: 100%; height: 100%; object-fit: contain; }
.dm-modal__header-text { flex: 1; min-width: 0; }
.dm-modal__tabs { display: flex; gap: 8px; padding: 0 24px; border-bottom: 1px solid var(--dm-border-dark); overflow-x: auto; }
.dm-modal__tab { padding: 14px 16px; font-size: 13px; font-weight: 700; color: rgba(0,0,0,0.4); border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none; font-family: inherit; }
.dm-modal__tab.is-active, .dm-modal__tab:hover { color: var(--dm-text-dark); border-bottom-color: var(--dm-text-dark); }

/* ── Gutachten modal: filters + PDF links ── */
.dm-gutachten-filters {
  display: flex; flex-direction: row; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; align-items: center;
}
.dm-gutachten-filter-group {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.dm-gutachten-filter-label {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700; color: rgba(0,0,0,0.4);
  text-transform: uppercase; letter-spacing: .5px; margin-right: 4px;
}
.dm-gutachten-filter-chip {
  padding: 6px 14px; font-size: 12px; font-weight: 600; font-family: inherit;
  border: 1.5px solid rgba(0,0,0,0.12); border-radius: 8px;
  background: #fff; color: var(--dm-text-dark); cursor: pointer;
  transition: all 0.15s;
}
.dm-gutachten-filter-chip:hover { border-color: rgba(0,0,0,0.25); }
.dm-gutachten-filter-chip.is-active {
  background: var(--dm-text-dark); color: #fff; border-color: var(--dm-text-dark);
}
.dm-gutachten-pcd-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; font-size: 12px; font-weight: 700;
  background: #f4f5f7; border-radius: 8px; color: var(--dm-text-dark);
  letter-spacing: .5px; margin-bottom: 12px;
}
.dm-gutachten-link-grid {
  display: flex; flex-direction: column; gap: 6px;
}
.dm-gutachten-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 10px;
  background: #f8f9fb; border: 1px solid rgba(0,0,0,0.05);
  text-decoration: none; color: var(--dm-text-dark);
  font-size: 13px; font-weight: 600;
  transition: all 0.15s;
}
.dm-gutachten-link:hover {
  background: #f0f2f5; border-color: rgba(0,0,0,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.dm-gutachten-link__icon {
  font-size: 20px !important; color: #bf0711; flex-shrink: 0;
}
.dm-gutachten-link span:nth-child(2) { flex: 1; }
.dm-gutachten-cert-count {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: rgba(0,0,0,0.45);
  margin-bottom: 8px;
}
.dm-gutachten-card { cursor: pointer; }
.dm-gutachten-card .dm-felgen-card__img { border-radius: 12px; padding: 16px; }
.dm-gutachten-card .dm-felgen-card__img img { transition: opacity 0.12s ease; }
.dm-gutachten-card .dm-swatch-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 6px 0 10px;
}

/* ── HSN/TSN Modal + Badge ── */
.dm-hsn-modal__content { max-width: 440px; }
.dm-hsn-fields {
  display: flex; gap: 16px;
}
.dm-hsn-field {
  flex: 1; display: flex; flex-direction: column; gap: 6px;
}
.dm-hsn-field__label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--dm-text-dark);
}
.dm-hsn-field__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--dm-text-dark); color: #fff;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.dm-hsn-field__input {
  width: 100%; padding: 12px 14px; font-size: 16px; font-weight: 700;
  font-family: 'Inter', system-ui, sans-serif; letter-spacing: 2px;
  border: 1.5px solid rgba(0,0,0,0.12); border-radius: 10px;
  background: #f8f9fb; color: var(--dm-text-dark);
  outline: none; transition: border-color 0.15s;
  text-transform: uppercase;
}
.dm-hsn-field__input:focus { border-color: var(--dm-text-dark); background: #fff; }
.dm-hsn-field__input::placeholder {
  font-weight: 400; letter-spacing: 0; text-transform: none;
  color: rgba(0,0,0,0.25);
}
.dm-hsn-field__hint {
  font-size: 11px; color: rgba(0,0,0,0.35); font-weight: 500;
}
.dm-hsn-field__error {
  font-size: 11px; color: #ef4444; font-weight: 600; min-height: 16px;
}

/* Badge shown in cart / minicart / checkout */
.dm-hsn-tsn-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; color: rgba(0,0,0,0.55);
  padding: 4px 10px; background: #f0f2f5; border-radius: 6px;
  margin-top: 4px;
}
.dm-hsn-tsn-badge__label {
  font-weight: 700; color: rgba(0,0,0,0.35); font-size: 10px;
  text-transform: uppercase; letter-spacing: .5px;
}
.dm-hsn-tsn-badge__sep { color: rgba(0,0,0,0.15); }

.dm-hsn-tsn-cart-row {
  display: flex; align-items: center; gap: 8px; margin-top: 6px;
}
.dm-hsn-edit-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.08); background: #fff;
  color: rgba(0,0,0,0.35); cursor: pointer; transition: all 0.15s;
  padding: 0; flex-shrink: 0;
}
.dm-hsn-edit-btn:hover { border-color: rgba(0,0,0,0.2); color: var(--dm-text-dark); background: #f4f5f7; }

/* Two-line vehicle info (name badge + HSN/TSN badge stacked) */
.dm-vehicle-info {
  display: flex; flex-direction: column; gap: 4px; margin-top: 2px;
}
.dm-vehicle-info__name {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; color: rgba(0,0,0,0.6);
  padding: 4px 10px; background: #eef1f6; border-radius: 6px;
  line-height: 1.3;
}
.dm-vehicle-info .dm-hsn-tsn-badge { margin-top: 0; }

/* Hide WooCommerce-generated item_data for HSN/TSN in cart (we render it manually) */
.woocommerce-cart-form .variation dt:has(+ dd .dm-hsn-tsn-badge),
.woocommerce-cart-form dl.variation { display: none; }


/* ═══════════════════════════════════════════════
   SINGLE PRODUCT PAGE → assets/css/product.css
   ═══════════════════════════════════════════════ */
/* ── Styles moved to assets/css/product.css ── */

/* ═══════════════════════════════════════════════
   SHOP PAGE → assets/css/shop.css
   ═══════════════════════════════════════════════ */
/* ── Styles moved to assets/css/shop.css ── */

/* ═══════════════════════════════════════════════
   GROUPED MODEL VIEW → assets/css/shop.css
   ═══════════════════════════════════════════════ */
/* ── Styles moved to assets/css/shop.css ── */

/* ═══════════════════════════════════════════════
   HEADER POPOVERS
   ═══════════════════════════════════════════════ */
.dm-header__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s;
}
.dm-header__icon-btn:hover { background: rgba(255,255,255,0.08); }
.dm-header__icon-btn .material-symbols-rounded { font-size: 22px; }
.dm-header__badge {
  position: absolute;
  top: -6px; right: -8px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--dm-bg-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}
.dm-header__search-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s;
}
.dm-header__search-btn:hover { background: rgba(255,255,255,0.08); }

/* Popover base */
.dm-popover-wrap { position: relative; }
.dm-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 320px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 9999;
}
.dm-popover.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dm-popover__arrow {
  position: absolute;
  top: -6px;
  right: 12px;
  width: 12px; height: 12px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.08);
  transform: rotate(45deg);
}

/* Account popover */
.dm-popover__user { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.dm-popover__avatar { width: 44px; height: 44px; border-radius: 50%; background: #f1f5f9; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--dm-text-dark); }
.dm-popover__greeting { font-size: 14px; color: var(--dm-text-light); margin: 0; }
.dm-popover__greeting strong { color: var(--dm-text-dark); }
.dm-popover__links { display: flex; flex-direction: column; gap: 2px; }
.dm-popover__links a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; color: var(--dm-text-dark); text-decoration: none; font-size: 13px; font-weight: 500; transition: background 0.15s, color 0.15s; }
.dm-popover__links a .material-symbols-rounded { font-size: 18px; color: var(--dm-text-light); }
.dm-popover__links a:hover { background: #f8fafc; color: var(--dm-primary); }
.dm-popover__links a:hover .material-symbols-rounded { color: var(--dm-primary); }
.dm-popover__footer { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.08); }
.dm-popover__logout { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; color: #ef4444; text-decoration: none; font-size: 13px; font-weight: 600; transition: background 0.15s; }
.dm-popover__logout .material-symbols-rounded { font-size: 18px; }
.dm-popover__logout:hover { background: #fef2f2; }
.dm-popover__header-text { margin-bottom: 20px; color: var(--dm-text-dark); }
.dm-popover__form { display: flex; flex-direction: column; gap: 10px; }
.dm-popover__input { width: 100%; padding: 12px 14px; background: #fff; border: 1px solid var(--dm-border-dark); border-radius: 8px; color: var(--dm-text-dark); font-size: 13px; outline: none; box-sizing: border-box; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; }
.dm-popover__input::placeholder { color: var(--dm-text-hint-dark); }
.dm-popover__input:focus { border-color: var(--dm-primary); box-shadow: 0 0 0 3px rgba(0,0,0,0.05); }
.dm-popover__btn-primary { display: block; width: 100%; padding: 12px; background: var(--dm-bg-primary); color: #fff; border: none; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none; text-align: center; transition: background 0.2s; }
.dm-popover__btn-primary:hover { background: var(--dm-bg-primary-hover); }
.dm-popover__btn-secondary { display: block; width: 100%; padding: 12px; background: transparent; color: var(--dm-text-dark); border: 1px solid var(--dm-border-dark); border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; text-align: center; transition: all 0.2s; box-sizing: border-box; }
.dm-popover__btn-secondary:hover { border-color: var(--dm-text-dark); background: #f8fafc; }
.dm-popover__divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--dm-text-light); font-size: 12px; }
.dm-popover__divider::before, .dm-popover__divider::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.08); }

/* Garage popover */
.dm-popover--garage { width: 380px; padding: 0; }
/* Mini cart */
.dm-mini-cart__title { font-size: 14px; font-weight: 700; color: var(--dm-text-dark); margin: 0 0 16px; }
.dm-mini-cart__items { display: flex; flex-direction: column; gap: 12px; max-height: 240px; overflow-y: auto; margin-bottom: 16px; }
.dm-mini-cart__item { display: flex; gap: 12px; align-items: center; }
.dm-mini-cart__item-img { width: 48px; height: 48px; border-radius: 8px; background: rgba(0,0,0,0.05); overflow: hidden; flex-shrink: 0; }
.dm-mini-cart__item-img img { width: 100%; height: 100%; object-fit: cover; }
.dm-mini-cart__item-name { font-size: 13px; font-weight: 600; color: var(--dm-text-dark); margin: 0 0 2px; }
.dm-mini-cart__item-qty { font-size: 12px; color: var(--dm-text-light); margin: 0; }
/* Mini-cart quantity row */
.dm-mini-cart__item-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.dm-mini-qty { display: inline-flex; align-items: center; gap: 0; border: 1px solid rgba(0,0,0,0.12); border-radius: 6px; overflow: hidden; }
.dm-mini-qty__btn { width: 24px; height: 24px; border: none; background: rgba(0,0,0,0.04); color: rgba(0,0,0,0.55); font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s, color 0.15s; line-height: 1; padding: 0; }
.dm-mini-qty__btn:hover { background: rgba(0,0,0,0.08); color: rgba(0,0,0,0.85); }
.dm-mini-qty__val { width: 26px; text-align: center; font-size: 12px; font-weight: 700; color: var(--dm-text-dark); line-height: 24px; }
.dm-mini-cart__item-price { font-size: 12px; color: var(--dm-text-light); flex: 1; }
.dm-mini-cart__item-price .woocommerce-Price-amount { font-weight: 600; color: var(--dm-text-dark); }
.dm-mini-cart__remove { width: 22px; height: 22px; border: none; background: none; color: rgba(0,0,0,0.25); cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 4px; transition: color 0.15s, background 0.15s; padding: 0; flex-shrink: 0; }
.dm-mini-cart__remove .material-symbols-rounded { font-size: 15px; }
.dm-mini-cart__remove:hover { color: #ef4444; background: rgba(239,68,68,0.08); }
.dm-mini-cart__actions { display: flex; flex-direction: column; gap: 8px; }

/* ═══════════════════════════════════════════════
   B2B SCHNELLBESTELLUNG → assets/css/b2b.css
   ═══════════════════════════════════════════════ */
/* ── Styles moved to assets/css/b2b.css ── */

/* ═══════════════════════════════════════════════
   Animations
   ═══════════════════════════════════════════════ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ═══════════════════════════════════════════════
   Floating Trigger
   ═══════════════════════════════════════════════ */
.dm-floating-trigger { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: none; opacity: 0; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s; }
.dm-floating-trigger.is-visible { opacity: 1; transform: translateY(0); }
.dm-floating-trigger-btn { width: 52px; height: 52px; border-radius: 50%; border: none; background: var(--dm-bg-primary); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: transform 0.2s, box-shadow 0.2s; }
.dm-floating-trigger-btn:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.dm-floating-trigger-btn .material-symbols-rounded { font-size: 24px; }
.dm-floating-menu { position: absolute; bottom: calc(100% + 12px); right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); padding: 8px; min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.2s; }
.dm-floating-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.dm-floating-menu button { display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 14px; border: none; background: transparent; border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--dm-text-dark); cursor: pointer; transition: background 0.15s; text-align: left; font-family: inherit; }
.dm-floating-menu button:hover { background: #f1f5f9; }
.dm-floating-menu button .material-symbols-rounded { font-size: 18px; color: var(--dm-text-light); }

/* ═══════════════════════════════════════════════
   Accessibility Utility Classes
   ═══════════════════════════════════════════════ */
html.dm-a11y-contrast { filter: contrast(1.3); }
html.dm-a11y-large-text { font-size: 120%; }
html.dm-a11y-reduce-motion *, html.dm-a11y-reduce-motion *::before, html.dm-a11y-reduce-motion *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }

/* ═══════════════════════════════════════════════
   Cookie Banner
   ═══════════════════════════════════════════════ */
.dm-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: rgba(10, 16, 23, 0.95); backdrop-filter: blur(12px); padding: 20px 24px; display: none; opacity: 0; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s; }
.dm-cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.dm-cookie-banner__inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.dm-cookie-banner__text { flex: 1; font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.dm-cookie-banner__text a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.dm-cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.dm-cookie-banner__btn { padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; transition: all 0.2s; font-family: inherit; }
.dm-cookie-banner__btn--accept { background: #fff; color: var(--dm-text-dark); }
.dm-cookie-banner__btn--accept:hover { background: #f1f5f9; }
.dm-cookie-banner__btn--deny { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); }
.dm-cookie-banner__btn--deny:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.dm-cookie-banner__btn--customize { background: transparent; color: rgba(255,255,255,0.6); }
.dm-cookie-banner__btn--customize:hover { color: #fff; }


/* ═══════════════════════════════════════════════
   Legal Modal (shared: Cookie Settings + A11y)
   ═══════════════════════════════════════════════ */
.dm-legal-modal-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.dm-legal-modal-overlay.is-visible { display: flex; opacity: 1; }
.dm-legal-modal { position: relative; background: #fff; border-radius: 20px; max-width: 520px; width: 90%; max-height: 85vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,0.15); animation: fadeInUp 0.3s ease; padding: 28px; }
.dm-legal-modal__close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 8px; border: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--dm-text-hint-dark); transition: background 0.2s; }
.dm-legal-modal__close:hover { background: #f1f5f9; }
.dm-legal-modal__title, .dm-legal-modal h2 { font-size: 18px; font-weight: 800; color: var(--dm-text-dark); margin: 0 0 8px; }
.dm-legal-modal__desc { font-size: 14px; color: var(--dm-text-sub-dark); line-height: 1.6; margin: 0 0 20px; }
.dm-legal-modal__body { padding: 0; }

/* Cookie categories (HTML uses dm-cookie-cat, not dm-cookie-category) */
.dm-cookie-categories { display: flex; flex-direction: column; gap: 0; }
.dm-cookie-cat { padding: 16px 0; border-top: 1px solid var(--dm-border-dark); }
.dm-cookie-cat__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dm-cookie-cat__head > div { flex: 1; }
.dm-cookie-cat__head strong { font-size: 14px; font-weight: 700; color: var(--dm-text-dark); display: block; }
.dm-cookie-cat__hint { font-size: 11px; color: var(--dm-text-hint-dark); display: block; margin-top: 2px; }
.dm-cookie-cat__desc { font-size: 12px; color: var(--dm-text-sub-dark); margin: 6px 0 0; line-height: 1.5; }

/* Toggle switch */
.dm-cookie-toggle { width: 44px; height: 24px; background: #e2e8f0; border-radius: 99px; position: relative; cursor: pointer; transition: background 0.2s; flex-shrink: 0; border: none; padding: 0; }
.dm-cookie-toggle__track { width: 100%; height: 100%; border-radius: 99px; position: relative; }
.dm-cookie-toggle__thumb { position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.dm-cookie-toggle.is-on { background: var(--dm-bg-primary); }
.dm-cookie-toggle.is-on .dm-cookie-toggle__thumb { transform: translateX(20px); }
.dm-cookie-toggle.is-locked { opacity: 0.5; cursor: not-allowed; }

/* Modal actions (buttons use dm-cookie-btn in HTML) */
.dm-legal-modal__actions { display: flex; gap: 8px; margin-top: 20px; padding: 0; }
.dm-cookie-btn { flex: 1; padding: 14px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; border: none; transition: all 0.2s; font-family: inherit; }
.dm-cookie-btn--primary { background: var(--dm-bg-primary); color: #fff; }
.dm-cookie-btn--primary:hover { opacity: 0.9; }
.dm-cookie-btn--outline { background: #f1f5f9; color: var(--dm-text-dark); border: 1px solid var(--dm-border-dark); }
.dm-cookie-btn--outline:hover { background: #e2e8f0; }
/* Legacy class compat */
.dm-legal-modal__btn { flex: 1; padding: 14px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; border: none; transition: all 0.2s; font-family: inherit; }
.dm-legal-modal__btn--primary { background: var(--dm-bg-primary); color: #fff; }
.dm-legal-modal__btn--primary:hover { opacity: 0.9; }
.dm-legal-modal__btn--secondary { background: #f1f5f9; color: var(--dm-text-dark); }
.dm-legal-modal__btn--secondary:hover { background: #e2e8f0; }
.dm-a11y-option { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-top: 1px solid var(--dm-border-dark); }
.dm-a11y-option__label { font-size: 14px; font-weight: 600; color: var(--dm-text-dark); }
.dm-a11y-option__desc { font-size: 12px; color: var(--dm-text-sub-dark); margin-top: 4px; }
.dm-a11y-footer { padding: 20px 24px; border-top: 1px solid var(--dm-border-dark); font-size: 12px; color: var(--dm-text-sub-dark); line-height: 1.6; }
.dm-a11y-footer h4 { font-size: 13px; font-weight: 700; color: var(--dm-text-dark); margin: 12px 0 4px; }
.dm-a11y-footer h4:first-child { margin-top: 0; }
.dm-a11y-footer a { color: var(--dm-text-dark); font-weight: 600; }

/* ═══════════════════════════════════════════════
   Page Transition Loader
   ═══════════════════════════════════════════════ */
.dm-page-loader { position: fixed; inset: 0; z-index: 99999; background: #fff; display: flex; align-items: center; justify-content: center; transition: opacity 0.4s; }
.dm-page-loader.is-hidden { opacity: 0; pointer-events: none; }
.dm-page-loader__spinner { width: 32px; height: 32px; border: 3px solid rgba(0,0,0,0.08); border-top-color: var(--dm-text-dark); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════
   Scrollbar
   ═══════════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.25); }

/* Sidebar backdrop (mobile nav) */
.dm-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.dm-sidebar-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .dm-hero__content { flex-direction: column; text-align: left; align-items: flex-start; }
  .dm-hero__text { margin-left: 0; margin-bottom: 0; }
  .dm-hero__title { font-size: 36px; }
  .dm-benefits { grid-template-columns: 1fr 1fr; }
  .dm-quality__grid { grid-template-columns: 1fr; }
  .dm-premium__grid { grid-template-columns: repeat(2, 1fr); }
  .dm-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .dm-kontakt-grid { grid-template-columns: 1fr; }
  .dm-brands__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .dm-container { padding: 0 16px; }

  /* Header: show hamburger, hide desktop nav */
  .dm-header__hamburger { display: flex; }
  .dm-header__nav { display: none; }
  .dm-header__nav--desktop { display: none !important; }
  .dm-header__inner { height: 60px; padding: 0 16px; }
  .dm-header__logo img { width: 32px; height: 32px; }
  .dm-header__logo-text { font-size: 14px; }
  .dm-header__actions { gap: 8px; }
  .dm-header__icon-btn { padding: 6px; }
  .dm-toggle { display: none; } /* Hide B2C/B2B toggle on mobile — available in sidebar */

  /* Hero */
  .dm-hero { min-height: 650px; height: 85vh; padding-bottom: 60px; align-items: stretch; padding-top: 130px; }
  .dm-hero__content { flex: 1; }
  .dm-hero__title { font-size: 28px; padding-right: 20px; }
  .dm-hero__desc { font-size: 14px; padding-right: 48px; }
  /* Step nav hidden while vehicle selector sheet is open (toggled via JS) */
  .dm-hero__steps--vs-open { display: none !important; }

  /* Benefits: horizontal scroll strip, no grid duplication */
  .dm-benefits { padding: 40px 0; }
  .dm-benefits__title { font-size: 18px; margin-bottom: 24px; }
  .dm-benefits__grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    padding-bottom: 8px;
  }
  .dm-benefits__grid::-webkit-scrollbar { display: none; }
  .dm-benefits { position: relative; }
  .dm-benefits::before,
  .dm-benefits::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
  }
  .dm-benefits::before {
    left: 0;
    background: linear-gradient(to right, #f4f5f7 0%, transparent 100%);
  }
  .dm-benefits::after {
    right: 0;
    background: linear-gradient(to left, #f4f5f7 0%, transparent 100%);
  }
  .dm-benefit-card { min-width: 140px; flex-shrink: 0; padding: 20px 12px; gap: 12px; }
  .dm-benefit-card__icon { width: 40px; height: 40px; }
  .dm-benefit-card__icon .material-symbols-rounded { font-size: 28px; }
  .dm-benefit-card__text { font-size: 11px; }

  /* About section */
  .dm-about { padding: 40px 0; }
  .dm-about__inner { grid-template-columns: 1fr; gap: 32px; }
  .dm-about__faq-list { gap: 8px; }

  /* Misc */
  .dm-premium__grid { grid-template-columns: 1fr; }
  .dm-gallery__grid { grid-template-columns: 1fr; }
  .dm-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .dm-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .dm-subpage-hero { min-height: 200px; }
  .dm-subpage-hero__title { font-size: 28px; }
  /* Hero: collapse vehicle selector, show trigger */
  .dm-vehicle-selector {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    z-index: 10000;
    max-width: 100%;
    width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 28px 24px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    overflow-y: auto;
    max-height: 85vh;
    box-shadow: 0 -12px 40px rgba(0,0,0,0.4);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .dm-vehicle-selector.is-open {
    display: block;
    transform: translateY(0);
  }
  /* Bottom group wrapper – pushes trigger + CTA together to the bottom */
  .dm-hero__mobile-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    width: 100%;
    padding-bottom: 24px;
  }
  .dm-vs-mobile-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
  }
  .dm-vs-mobile-trigger:hover { background: rgba(255,255,255,0.12); }
  .dm-vs-mobile-trigger__icon { display: flex; }
  .dm-vs-mobile-trigger__icon .material-symbols-rounded { font-size: 22px; color: rgba(255,255,255,0.5); }
  .dm-vs-mobile-trigger__content { flex: 1; }
  .dm-vs-mobile-trigger__label { display: block; font-size: 14px; font-weight: 600; }
  .dm-vs-mobile-trigger__hint { display: block; font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
  .dm-vs-mobile-trigger__arrow { font-size: 20px; color: rgba(255,255,255,0.3); }


  /* Full-width CTA button below the trigger bar */
  .dm-hero__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 17px 20px;
    background: #fff;
    color: #0a1017;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: -0.2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 12px;
  }
  .dm-hero__mobile-cta:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .dm-hero__mobile-cta .material-symbols-rounded {
    font-size: 20px;
  }
  .dm-hero__mobile-cta .material-symbols-rounded:first-child {
    color: rgba(10,16,23,0.5);
  }
  .dm-hero__mobile-cta .material-symbols-rounded:last-child {
    margin-left: auto;
    color: rgba(10,16,23,0.35);
  }

  .dm-vs-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 1;
  }
  .dm-vs-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.6);
  }
  .dm-vs-backdrop.is-open { display: block; }
  .dm-vs-tab { padding: 10px 16px; font-size: 12px; }
  .dm-vs-grid { grid-template-columns: repeat(2, 1fr); }
  .dm-cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .dm-cookie-banner__actions { flex-wrap: wrap; }
  .dm-brands__grid { grid-template-columns: repeat(2, 1fr); }

  /* B2B toolbar */
  .dm-b2b-toolbar { flex-wrap: wrap; gap: 8px; }
  .dm-b2b-toolbar .dm-b2b-filter-select { font-size: 12px; padding: 8px 10px; flex: 1; min-width: 120px; }
  .dm-b2b-search-wrap { width: 100%; order: -1; }

  /* Schnellbestellung */
  .dm-b2b-admin-role-switcher { flex-wrap: wrap; gap: 8px; }

  /* Popovers → full-width bottom sheet on mobile */
  .dm-popover-wrap { position: static; }
  .dm-popover {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    padding: 24px 20px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
  .dm-popover.is-open {
    transform: translateY(0);
  }
  .dm-popover__arrow { display: none; }
  .dm-popover--garage { width: 100% !important; }
  .dm-popover--cart { width: 100% !important; }
}
@media (max-width: 480px) {
  .dm-hero__title { font-size: 24px; }
  .dm-hero__cta { width: 100%; }
  .dm-vs-grid { grid-template-columns: 1fr; }
  .dm-checkout-steps { gap: 6px; font-size: 11px; }
  .dm-checkout-step span { width: 22px; height: 22px; font-size: 10px; }
  .dm-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .dm-benefit-card { padding: 16px 10px; }
}


/* ═══════════════════════════════════════════════
   WooCommerce shop archive: force B2B-identical filter styles
   ═══════════════════════════════════════════════ */
.woocommerce .dm-b2b-filter-select, .dm-b2b-filter-select {
  padding: 10px 14px; border: 1px solid var(--dm-border-strong); border-radius: 8px; font-size: 13px; font-family: inherit; color: var(--dm-text-dark); background: #fff; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px;
}

/* ═══════════════════════════════════════════════
   My Account Dashboard
   ═══════════════════════════════════════════════ */

/* ── Greeting ── */
.dm-dashboard__greeting {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.dm-dashboard__greeting-text h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dm-text-dark);
  margin: 0 0 4px;
  line-height: 1.3;
}
.dm-dashboard__greeting-text p {
  font-size: 13px;
  color: var(--dm-text-sub-dark);
  margin: 0;
  line-height: 1.5;
}
.dm-dashboard__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(10,16,23,0.05);
  border: 1px solid rgba(10,16,23,0.08);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dm-text-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.dm-dashboard__badge .material-symbols-rounded {
  font-size: 16px;
  color: var(--dm-text-sub-dark);
}

/* ── Admin Greeting Actions ── */
.dm-dashboard__greeting-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.dm-dashboard__admin-btns {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.dm-dashboard__admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px 7px 11px;
  background: #0a1017;
  border: 1px solid #0a1017;
  color: #fff !important;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.2s ease;
  line-height: 1;
}
.dm-dashboard__admin-btn:hover {
  background: #1a2a3a;
  border-color: #1a2a3a;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10,16,23,0.25);
}
.dm-dashboard__admin-btn .material-symbols-rounded {
  font-size: 16px;
  line-height: 1;
  width: 16px;
  height: 16px;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0.55;
}
.dm-dashboard__admin-btn:hover .material-symbols-rounded {
  opacity: 0.8;
}

/* ── Quick Action Card Grid ── */
.dm-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.dm-dashboard__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--dm-border-dark);
  border-radius: 14px;
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
/* Kill underlines from .dm-woo-content a on all dashboard elements */
.dm-dashboard a,
.dm-dashboard a:hover,
.dm-dashboard__card h3,
.dm-dashboard__card p,
.dm-dashboard__link {
  text-decoration: none !important;
}
.dm-dashboard__card:hover {
  border-color: rgba(10,16,23,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.dm-dashboard__card--highlight {
  background: linear-gradient(135deg, #0a1017 0%, #1a2a3a 100%);
  border-color: transparent;
  color: #fff;
}
.dm-dashboard__card--highlight:hover {
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(10,16,23,0.25);
}
.dm-dashboard__card--highlight .dm-dashboard__card-icon {
  background: rgba(255,255,255,0.1);
}
.dm-dashboard__card--highlight .dm-dashboard__card-icon .material-symbols-rounded {
  color: rgba(255,255,255,0.7);
}
.dm-dashboard__card--highlight .dm-dashboard__card-body h3 { color: #fff; }
.dm-dashboard__card--highlight .dm-dashboard__card-body p { color: rgba(255,255,255,0.55); }
.dm-dashboard__card--highlight .dm-dashboard__card-arrow { color: rgba(255,255,255,0.3); }

.dm-dashboard__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dm-dashboard__card-icon .material-symbols-rounded {
  font-size: 22px;
  color: var(--dm-text-sub-dark);
}
.dm-dashboard__card-body {
  flex: 1;
  min-width: 0;
}
.dm-dashboard__card-body h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dm-text-dark);
  margin: 0 0 2px;
  line-height: 1.3;
}
.dm-dashboard__card-body p {
  font-size: 11px;
  color: var(--dm-text-hint-dark);
  margin: 0;
  line-height: 1.4;
}
.dm-dashboard__card-arrow {
  font-size: 20px;
  color: rgba(0,0,0,0.2);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.dm-dashboard__card:hover .dm-dashboard__card-arrow {
  transform: translateX(3px);
  color: var(--dm-text-dark);
}

/* ── Recent Orders Section ── */
.dm-dashboard__section {
  margin-top: 8px;
}
.dm-dashboard__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dm-dashboard__section-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dm-text-dark);
  margin: 0;
}
.dm-dashboard__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dm-text-sub-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.dm-dashboard__link:hover { color: var(--dm-text-dark); }
.dm-dashboard__link .material-symbols-rounded { font-size: 16px; }

.dm-dashboard__orders {
  border: 1px solid var(--dm-border-dark);
  border-radius: 12px;
  overflow: hidden;
}
.dm-dashboard__order-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
  transition: background 0.15s;
}
.dm-dashboard__order-row:last-child { border-bottom: none; }
.dm-dashboard__order-row:hover { background: #f8f9fa; }

.dm-dashboard__order-id {
  font-weight: 700;
  color: var(--dm-text-dark);
  white-space: nowrap;
}
.dm-dashboard__order-date {
  font-size: 13px;
  color: var(--dm-text-sub-dark);
}
.dm-dashboard__order-total {
  font-weight: 600;
  color: var(--dm-text-dark);
  white-space: nowrap;
}
.dm-dashboard__order-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  background: #f4f5f7;
  color: var(--dm-text-sub-dark);
}
.dm-dashboard__order-status--processing { background: #dbeafe; color: #1d4ed8; }
.dm-dashboard__order-status--completed { background: #dcfce7; color: #15803d; }
.dm-dashboard__order-status--on-hold { background: #fef9c3; color: #a16207; }
.dm-dashboard__order-status--cancelled,
.dm-dashboard__order-status--failed { background: #fef2f2; color: #991b1b; }
.dm-dashboard__order-status--refunded { background: #f3e8ff; color: #7c3aed; }
.dm-dashboard__order-status--pending { background: #fef3c7; color: #92400e; }

.dm-dashboard__order-view {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--dm-text-hint-dark);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dm-dashboard__order-view:hover {
  background: rgba(0,0,0,0.05);
  color: var(--dm-text-dark);
}
.dm-dashboard__order-view .material-symbols-rounded { font-size: 20px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .dm-dashboard__greeting { flex-direction: column; gap: 12px; }
  .dm-dashboard__greeting-actions { justify-content: flex-start; }
  .dm-dashboard__admin-btns { gap: 6px; }
  .dm-dashboard__admin-btn { font-size: 10px; padding: 5px 10px; }
  .dm-dashboard__grid { grid-template-columns: 1fr; }
  .dm-dashboard__order-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }
  .dm-dashboard__order-view { grid-column: 2; justify-self: end; }
}

/* ═══════════════════════════════════════════════
   B2B Landing Page → assets/css/b2b.css
   ═══════════════════════════════════════════════ */
/* ── Styles moved to assets/css/b2b.css ── */

/* ═══════════════════════════════════════════════
   Registration: Privat / Firma Toggle
   ═══════════════════════════════════════════════ */
.dm-reg-type-toggle { display: flex; gap: 0; background: #f4f5f7; border-radius: var(--dm-radius-sm); padding: 3px; margin-bottom: 20px; border: 1px solid rgba(0,0,0,0.08); }
.dm-reg-type-toggle__opt { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 16px; border: none; background: transparent; border-radius: calc(var(--dm-radius-sm) - 2px); font-size: 13px; font-weight: 600; color: var(--dm-text-hint-dark); cursor: pointer; transition: all 0.2s; font-family: inherit; }
.dm-reg-type-toggle__opt:hover { color: var(--dm-text-dark); }
.dm-reg-type-toggle__opt.is-active { background: #fff; color: var(--dm-text-dark); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.dm-reg-type-toggle__opt .material-symbols-rounded { font-size: 18px; }
.dm-reg-firma-fields { padding: 16px 0 4px; border-bottom: 1px solid rgba(0,0,0,0.06); margin-bottom: 16px; }

/* Search overlay */
.dm-search-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); display: none; align-items: flex-start; justify-content: center; padding-top: 120px; opacity: 0; transition: opacity 0.2s; }
.dm-search-overlay.is-visible { display: flex; opacity: 1; }
.dm-search-box { width: 600px; max-width: 90%; background: #fff; border-radius: 16px; padding: 20px; box-shadow: 0 24px 64px rgba(0,0,0,0.15); animation: fadeInUp 0.2s ease; }
.dm-search-box__input { width: 100%; padding: 14px 16px; border: 1px solid var(--dm-border-dark); border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--dm-text-dark); outline: none; box-sizing: border-box; transition: border-color 0.2s; }
.dm-search-box__input:focus { border-color: var(--dm-text-dark); }

/* ═══════════════════════════════════════════════
   Garage Popover
   ═══════════════════════════════════════════════ */
.dm-garage-badge {
  position: absolute;
  top: -6px; right: -8px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--dm-bg-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}
.dm-cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--dm-bg-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}
.dm-garage-content { width: 100%; }
.dm-garage-list {
  max-height: 360px;
  overflow-y: auto;
}
.dm-garage-vehicle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  transition: background 0.15s;
}
.dm-garage-vehicle:hover { background: #f8fafc; }
.dm-garage-vehicle.is-active { background: #f0fdf4; }
.dm-garage-vehicle__info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.dm-garage-vehicle__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.dm-garage-switch-btn {
  padding: 4px 12px;
  border: 1px solid var(--dm-border-strong);
  border-radius: 6px;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  color: var(--dm-text-dark);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  white-space: nowrap;
}
.dm-garage-switch-btn:hover { background: var(--dm-bg-primary); color: #fff; border-color: var(--dm-bg-primary); }
.dm-garage-remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: var(--dm-text-hint-dark);
  transition: background 0.15s, color 0.15s;
}
.dm-garage-remove-btn:hover { background: #fef2f2; color: #ef4444; }

/* Showroom Page Styles */
.dm-showroom-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.dm-showroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
@media (min-width: 768px) {
  .dm-showroom-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .dm-showroom-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.dm-showroom-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dm-white, #fff);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4 / 3;
}
.dm-showroom-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.dm-showroom-img-link {
  display: block;
  width: 100%;
  height: 100%;
}
.dm-showroom-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dm-showroom-item:hover img {
  transform: scale(1.05);
}
.dm-showroom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.dm-showroom-overlay span {
  color: #fff;
  font-size: 36px;
  background: rgba(0,0,0,0.4);
  padding: 12px;
  border-radius: 50%;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dm-showroom-item:hover .dm-showroom-overlay {
  opacity: 1;
}
.dm-showroom-item:hover .dm-showroom-overlay span {
  transform: scale(1);
}

/* Gallery Section CTAs */
.dm-gallery__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.dm-gallery__ctas .dm-btn-primary,
.dm-gallery__ctas .dm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dm-gallery__ctas .dm-btn-primary:hover,
.dm-gallery__ctas .dm-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ── Inline HSN/TSN Widget (B2C Product Page) ─────────────────── */
.dm-inline-hsntsn {
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: 10px;
  background: #f9fafb;
  margin-bottom: 14px;
  padding: 12px 14px;
}
.dm-inline-hsntsn__header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}
.dm-inline-hsntsn__header .material-symbols-rounded {
  font-size: 16px;
  color: rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.dm-inline-hsntsn__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,0.55);
  letter-spacing: 0.1px;
}
/* "vorausgefüllt" pill badge */
.dm-inline-hsntsn__prefilled {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.15);
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.dm-inline-hsntsn__fields {
  display: flex;
  gap: 8px;
}
/* Light variant of home dm-input-wrapper for product page */
.dm-input-wrapper--light {
  position: relative;
  flex: 1;
}
.dm-input-field--light {
  width: 100%;
  padding: 10px 50px 10px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #0a1017;
  letter-spacing: 1.5px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.dm-input-field--light::placeholder {
  letter-spacing: 0;
  color: rgba(0,0,0,0.28);
  font-weight: 400;
}
.dm-input-field--light:focus {
  border-color: #0a1017;
  box-shadow: 0 0 0 3px rgba(10,16,23,0.07);
}
.dm-input-tag--light {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.45);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  pointer-events: none;
}
.dm-inline-hsntsn__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(0,0,0,0.6);
  margin-top: 8px;
  padding: 5px 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 5px;
}
.dm-inline-hsntsn__status--match { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.dm-inline-hsntsn__status--warn  { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.dm-inline-hsntsn__status--fail  { background: #fef2f2; border-color: #fecaca; color: #991b1b; }


/* ══════════════════════════════════════════════════════
   FITMENT SYSTEM — Shop + Single Product
   ══════════════════════════════════════════════════════ */

/* ── Fitment badge on shop cards ── */
.dm-fitment-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  pointer-events: none;
}
.dm-fitment-badge .material-symbols-rounded { font-size: 13px; }
.dm-fitment-badge--match {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.dm-fitment-badge--warn {
  background: #fef9c3;
  color: #a16207;
  border: 1px solid #fde68a;
}

/* ── Shop card: compatible (individual cards) ── */
.dm-shop-card.dm-fitment-match {
  box-shadow: 0 0 0 2px rgba(34,197,94,0.45);
  border-radius: 14px;
}

/* Incompatible on WC shop grid */
.dm-shop-grid .dm-fitment-fail,
li.product.dm-fitment-fail {
  opacity: 0.35;
  filter: grayscale(0.5);
}

/* Incompatible model group on /felgen — grayed, pushed to back */
.dm-model-group.dm-fitment-fail {
  opacity: 0.38;
  filter: grayscale(0.45);
}

/* Compatible model group — no group-level border (border on individual cards only) */


/* Inline compat tag inside h3 title — no background, green text */
.dm-fitment-inline-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11.5px;
  font-weight: 600;
  color: #16a34a;
  margin-left: 8px;
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing: 0;
  text-transform: none;
}
.dm-fitment-inline-tag .material-symbols-rounded {
  font-size: 14px;
  color: #22c55e;
}



/* ── Vehicle context banner above grid ── */
#dm-fitment-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 10px;
  padding: 11px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #166534;
  flex-wrap: wrap;
}
#dm-fitment-banner .material-symbols-rounded {
  font-size: 18px;
  color: #22c55e;
  flex-shrink: 0;
}
#dm-fitment-banner strong { font-weight: 700; }
.dm-fitment-banner__spec {
  background: #dcfce7;
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 11.5px;
  font-weight: 600;
}
.dm-fitment-banner__sep { opacity: 0.4; }
.dm-fitment-banner__clear {
  margin-left: auto;
  background: none;
  border: 1px solid rgba(22,101,52,0.2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: #166534;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s;
}
.dm-fitment-banner__clear:hover { background: #dcfce7; }
.dm-fitment-banner__clear .material-symbols-rounded { font-size: 14px; }

#dm-product-fitment-banner-anchor #dm-fitment-banner.dm-fitment-banner--fail {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}
#dm-product-fitment-banner-anchor #dm-fitment-banner.dm-fitment-banner--fail .material-symbols-rounded:first-child {
  color: #ef4444;
}
#dm-product-fitment-banner-anchor #dm-fitment-banner.dm-fitment-banner--fail .dm-fitment-banner__spec {
  background: #fee2e2;
}
.dm-fitment-banner__clear--fail {
  border-color: rgba(153,27,27,0.25);
  color: #991b1b;
}
.dm-fitment-banner__clear--fail:hover {
  background: #fee2e2;
}

/* ── Single product compatibility badge ── */
#dm-product-compat-badge { margin-bottom: 16px; }

.dm-compat-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
}
.dm-compat-badge .material-symbols-rounded {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.dm-compat-badge__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.dm-compat-badge__text strong { font-weight: 700; }
.dm-compat-badge__spec {
  font-size: 11.5px;
  opacity: 0.7;
}

.dm-compat-badge--match {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  color: #166534;
}
.dm-compat-badge--match .material-symbols-rounded { color: #22c55e; }

.dm-compat-badge--warn {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  color: #92400e;
}
.dm-compat-badge--warn .material-symbols-rounded { color: #f59e0b; }

.dm-compat-badge--fail {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  color: #991b1b;
}
.dm-compat-badge--fail .material-symbols-rounded { color: #ef4444; }

.dm-compat-badge--neutral {
  background: #f9fafb;
  border: 1.5px solid rgba(0,0,0,0.09);
  color: rgba(0,0,0,0.5);
}
.dm-compat-badge--neutral .material-symbols-rounded { color: rgba(0,0,0,0.35); font-size: 18px; }

.dm-compat-badge--loading {
  background: #f9fafb;
  border: 1.5px solid rgba(0,0,0,0.09);
  color: rgba(0,0,0,0.4);
  animation: dm-pulse 1.5s ease-in-out infinite;
}
@keyframes dm-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

.dm-compat-change {
  background: none;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.15s;
  margin-top: 4px;
  align-self: flex-start;
}
.dm-compat-change:hover { opacity: 1; }
.dm-compat-change .material-symbols-rounded { font-size: 14px; }

/* ═══════════════════════════════════════════════
   Vehicle Selector: forced overlay on all screens
   ═══════════════════════════════════════════════ */
.dm-vehicle-selector--overlay {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  right: auto;
  top: auto;
  z-index: 10000;
  width: 100%;
  max-width: 640px;
  transform: translateX(-50%) translateY(100%);
  border-radius: 20px 20px 0 0;
  padding: 32px;
  padding-bottom: calc(32px + env(safe-area-inset-bottom));
  overflow-y: auto;
  max-height: 85vh;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.5);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  /* Dark primary background — same as home hero selector */
  background: rgba(14, 20, 27, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  /* For absolute-positioned close button */
  position: fixed;
}
.dm-vehicle-selector--overlay.is-open {
  display: block;
  transform: translateX(-50%) translateY(0);
}
/* Show close button in overlay mode */
.dm-vehicle-selector--overlay .dm-vs-mobile-close {
  display: flex !important;
  position: absolute;
  top: 16px;
  right: 16px;
}
/* Backdrop blur behind overlay */
.dm-vs-backdrop.is-open {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}



