/* =========================================================
   COMPATIBILITY FILTER
   ========================================================= */
   .compatibility-filter-horizontal {
    padding-left: 26px;
    padding-right: 26px;
    margin-bottom: 20px;
  }
  
  .compatibility-filter-horizontal .compatibility-level-search>* select {
    background: #1e1e1e;
    color: #f5f5f5;
    font-weight: 700;
  }
  
  .compatibility-filter-horizontal .compatibility-level-search>* select::placeholder {
    color: #f5f5f5;
  }
  
  .compatibility-filter-horizontal .compatibility-level-search>* select {
    border: 2px solid #e8fa5c;
  }
  
  .compatibility-level-search .form-select:focus:not(:disabled) {
    background-image: none !important;
  }
  /* =========================================================
       BUTTONS
       ========================================================= */
  .btn-primary {
    font-weight: 700;
  }
  
  .btn.btn-primary:hover {
    background: #f5f5f5;
    color: #010005 !important;
    box-shadow: none !important;
  }
  
  body .btn-outline-primary:hover {
    box-shadow: none !important;
  }
  
  .btn-secondary {
    color: #010005 !important;
    background: #e8fa5c !important;
    border-color: #e8fa5c !important;
  }
  
  body .btn-secondary:hover {
    color: #010005 !important;
    background: #f5f5f5 !important;
    box-shadow: none !important;
  }
  
  body .btn-primary:hover {
    box-shadow: none !important;
  }
  
  body .text-dark-emphasis {
    color: #e8fa5c;
  }
  
  body .footer .btn-secondary {
    color: #f5f5f5 !important;
    background: #010005 !important;
    border-color: #010005 !important;
  }
  
  body .footer .btn-secondary:hover {
    color: #010005 !important;
    background: #f5f5f5 !important;
    box-shadow: none !important;
  }

  .voucher #productDetailPageBuyProductForm [data-swag-paypal-express-button] {
    display: flex;
    padding: 1rem;
    border: 1px solid #e8fa5c;
    border-radius: 5px;
    width: 100%;
  }
  
  .voucher .product-detail-giftcard-form .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .voucher .form-control, .voucher .input-group-text {
    padding: 12.5px 12px;
  }

  @media(max-width: 991px) {  
    .voucher .btn-buy {
      margin-bottom: 24px;
    }
  }

  @media(min-width: 992px) {  
    .voucher .btn-buy {
      margin-top: 24px;
    }
  }

  /* =========================================================
       NAVIGATION / DROPDOWNS
       ========================================================= */
  .navbar-expand-lg .navbar-nav {
    justify-content: center;
  }
  
  .dropdown-menu {
    background: #f5f5f5;
  }
  
  body .dropdown-item {
    color: #010005;
  }
  
  body .dropdown-item:hover,
  body .dropdown-item:focus {
    background-color: #010005;
  }
  
  body .search-suggest-no-result {
    color: #f5f5f5;
  }
  
  .search-suggest-container::after {
    background: #010005;
  }
  
  .search-suggest-container {
    background: #010005 !important;
  }
  
  .change-pseudo-selector .search-suggest::after {
    background: transparent !important;
  }
  
  /* =========================================================
       TRUST CHECK LIST
       ========================================================= */
  .gr-trust-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 32px 0;
  
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }
  
  .gr-trust-list li {
    position: relative;
    padding-left: 28px;
  }
  
  .gr-trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 4px;
  
    color: #e8fa5c;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.2;
  }
  
  @media (max-width: 760px) {
    .gr-trust-list {
      grid-template-columns: 1fr;
    }
  }
  
  /* =========================================================
       CMS BLOCK BACKGROUND OVERLAY
       ========================================================= */
  
  /* 1) Sicherstellen: Block ist Stacking-Context */
  .cms-block.bg-image.bg-overlay {
    position: relative;
    overflow: hidden;
    /* Overlay sauber abschneiden */
  }
  
  /* 2) Hintergrundbild (img) nach hinten */
  .cms-block.bg-image.bg-overlay>img.cms-block-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  /* 3) Overlay darüber */
  .cms-block.bg-image.bg-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  
    background:
      linear-gradient(to right,
        rgba(2, 0, 12, 0.85) 0%,
        rgba(2, 0, 12, 0.45) 55%,
        rgba(2, 0, 12, 0.15) 75%,
        rgba(2, 0, 12, 0.00) 100%),
      linear-gradient(to bottom,
        rgba(2, 0, 12, 0.70) 0%,
        rgba(2, 0, 12, 0.00) 40%),
      linear-gradient(to top,
        rgba(2, 0, 12, 0.70) 0%,
        rgba(2, 0, 12, 0.00) 40%);
  }
  
  /* 4) Inhalt über Overlay */
  .cms-block.bg-image.bg-overlay .cms-block-container {
    position: relative;
    z-index: 2;
  }
  
  /* =========================================================
       ACCOUNT MENU
       ========================================================= */
  body .account-menu-login {
    border-bottom: 1px solid #010005;
  }
  
  body .account-menu-login-button {
    background: #010005;
    color: #f5f5f5;
    box-shadow: none;
    border: 0;
  }
  
  body .account-menu-login-button:hover {
    background: #e8fa5c !important;
    color: #010005 !important;
  }
  
  body .account-menu-register,
  body .account-menu-register a {
    color: #010005;
  }
  
  body .account-menu-register a:hover {
    color: #777;
  }
  
  body .account-menu-dropdown .account-aside-item {
    color: #010005;
    background: transparent;
  }
  
  body .account-menu-dropdown .account-aside-item:hover {
    color: #f5f5f5;
    background: #010005;
  }
  
  /* =========================================================
       FOOTER
       ========================================================= */
  body .footer-main {
    border-top: 0 !important;
    position: relative;
  }
  
  .footer-main>.container::before {
    content: "";
    position: absolute;
    max-width: 1528px;
    margin-left: auto;
    margin-right: auto;
    left: 36px;
    right: 36px;
    top: 0;
    height: 1px;
    background: #f5f5f5;
}
  
  body .footer-column-headline {
    font-size: calc(0.7125rem + 0.45vw);
  }
  
  body .footer-newsletter .zen-footer-form-newsletter-email~.btn {
    background: #e8fa5c;
    color: #010005;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
  }
  
  body .footer-newsletter .zen-footer-form-newsletter-email~.btn:hover {
    background: #f5f5f5;
    color: #010005;
  }
  
  /* Icon-Fill innerhalb Buttons */
  body .btn .icon>svg {
    fill: #010005 !important;
  }
  
  /* Payment Footer Logos */
  .footer-logo.is-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .footer-logo.is-payment .payment_icons {
    display: inline-block;
    width: auto !important;
    max-width: none;
    height: 40px;
    border-radius: 5px;
  }
  
  .footer-logo-col img {
    max-width: 200px;
    margin-top: 16px;
  }
  
  .footer-logo-col .text-center {
    text-align: left !important;
  }
  
  /* =========================================================
       MISC
       ========================================================= */
  p {
    margin-bottom: 1rem;
  }
  
  .scroll-up-container {
    display: none !important;
  }
  
  .is-act-home .cms-text-banner-inner {
    min-height: 400px;
  }
  
  @media(max-width: 480px) {
    .compatibility-filter-horizontal .compatibility-level-search {
      flex-direction: column;
      gap: 16px;
    }
  
    .compatibility-filter-horizontal .compatibility-level-search>* {
      padding-left: 0;
    }
  }
  
  .has-product-actions .text-block {
    max-width: 800px;
  }

  .has-product-actions .hide-bread .text-block {
    max-width: unset;
  }
   
  .hide-breadcrumb .breadcrumb-container {
    display: none !important; 
  }

  .cms-element-text a:hover {
    color: #f5f5f5;
  }
  
  /* =========================================================
       SUBCATEGORIES
       ========================================================= */
  .bst-subcategories .bst-subcategory-list>div a {
    background: transparent !important;
    border-radius: 5px;
  }
  
  .bst-subcategories .bst-subcategory-list>div a:hover {
    background: #e8fa5c !important;
  }
  
  .bst-subcategories .bst-subcategory-list>div a:hover>.category-name-wrapper {
    color: #010005 !important;
  }
  
  /* =========================================================
       FILTER BUTTON ICON HOVER (SVG)
       ========================================================= */
  .btn.filter-panel-wrapper-toggle:hover {
    background: #e8fa5c !important;
    color: #010005 !important;
  }
  
  /* SVG-Farbe beim Hover dunkel setzen */
  .btn.filter-panel-wrapper-toggle:hover .icon svg,
  .btn.filter-panel-wrapper-toggle:hover .icon svg use,
  .btn.filter-panel-wrapper-toggle:hover .icon svg path {
    fill: #010005 !important;
  }
  
  /* falls stroke statt fill */
  .btn.filter-panel-wrapper-toggle:hover .icon svg,
  .btn.filter-panel-wrapper-toggle:hover .icon svg * {
    stroke: #010005 !important;
  }
  
  /* =========================================================
       PRODUCT DETAIL: MEDIA / GALLERY
       ========================================================= */
  .product-detail-media .gallery-slider-image,
  .quickview-minimal-image .gallery-slider-image,
  .swag-cms-extensions-quickview-content-left .gallery-slider-image {
    border-radius: 5px !important;
  }
  
  .product-detail-media .gallery-slider-thumbnails-item-inner .gallery-slider-thumbnails-image {
    border-radius: 5px;
  }
  
  .gallery-scroller-item-container:last-of-type>.gallery-slider-single-image,
  .is-single-image .gallery-slider-single-image {
    margin-bottom: 0;
  }
  
  .product-box .product-image-wrapper {
    aspect-ratio: unset !important;
  }
  
  .product-box .product-image {
    height: 240px;
    object-fit: contain;
  }
  
  .modal.zoom-modal .btn-close {
    background-color: #e8fa5c;
  }
  
  /* ✅ Magnifier / Lupe (FIX: ohne .gallery-scroller Einschränkung) */
  @media (min-width: 992px) {
  
    .product-detail-media .js-magnifier-container {
      position: relative !important;
    }
  
    /* Kreis */
    .product-detail-media .js-magnifier-container::after {
      content: "" !important;
      position: absolute !important;
      top: 12px !important;
      right: 12px !important;
      width: 40px !important;
      height: 40px !important;
      border-radius: 999px !important;
      z-index: 9999 !important;
      pointer-events: none !important;
  
      background: rgba(0, 0, 0, .55) !important;
  
      opacity: 0 !important;
      transform: scale(.92) !important;
      transition: opacity .15s ease, transform .15s ease !important;
    }
  
    /* Lupe */
    .product-detail-media .js-magnifier-container::before {
      content: "" !important;
      position: absolute !important;
      top: 12px !important;
      right: 12px !important;
      width: 40px !important;
      height: 40px !important;
      border-radius: 999px !important;
      z-index: 10000 !important;
      pointer-events: none !important;
  
      background-color: #f5f5f5 !important;
  
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M10 4a6 6 0 104.472 10.03l3.75 3.75 1.414-1.414-3.75-3.75A6 6 0 0010 4zm0 2a4 4 0 110 8 4 4 0 010-8z'/%3E%3C/svg%3E") center / 18px 18px no-repeat !important;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M10 4a6 6 0 104.472 10.03l3.75 3.75 1.414-1.414-3.75-3.75A6 6 0 0010 4zm0 2a4 4 0 110 8 4 4 0 010-8z'/%3E%3C/svg%3E") center / 18px 18px no-repeat !important;
  
      opacity: 0 !important;
      transform: scale(.92) !important;
      transition: opacity .15s ease, transform .15s ease !important;
    }
  
    .product-detail-media .js-magnifier-container:hover::before,
    .product-detail-media .js-magnifier-container:focus-within::before,
    .product-detail-media .js-magnifier-container:hover::after,
    .product-detail-media .js-magnifier-container:focus-within::after {
      opacity: 1 !important;
      transform: scale(1) !important;
    }
  
    .product-detail-media .js-magnifier-container .js-magnifier-image {
      cursor: zoom-in !important;
    }
  }
  
  /* =========================================================
       PRODUCT DETAIL: STICKY BUY
       ========================================================= */
   .product-detail-buy {
    padding-top: 16px;
    background: #1e1e1e;
    border-radius: 5px;
  }
  
  .cms-element-product-name {
    margin-top: 24px;
  }
  
  .product-detail-manufacturer {
    margin-bottom: 24px;
  }
  
  .product-detail-cross-selling .product-detail-tab-navigation-link {
    border-bottom: 0 !important;
  }
  
  /* Tabs: Divider-Lines */
  .product-detail-tabs-content .accordion-item:not(:last-of-type) {
    position: relative;
  }
  
  .product-detail-tabs-content .accordion-item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, .16);
  }
  
  /* =========================================================
       TOP BORDER (CMS container)
       ========================================================= */
  .top-border .cms-block-container {
    position: relative;
  }
  
  .top-border .cms-block-container::before {
    content: "";
    position: absolute;
    left: 36px;
    right: 36px;
    top: 0;
    height: 1px;
    background: #f5f5f5;
  }
  
  /* =========================================================
       IMAGE / MANUFACTURER
       ========================================================= */
  .cms-element-manufacturer-logo .cms-image-container.is-standard img {
    max-width: 120px;
  }
  
  .cms-element-image .cms-image {
    border-radius: 5px;
  }
  
  .border-img .cms-element-alignment {
    border: 1px solid #e8fa5c;
    border-radius: 5px;
  }
  
  /* =========================================================
       TOPBAR LINKS
       ========================================================= */
  .top-bar-login-item,
  .top-bar-register-item {
    text-decoration: none !important;
  }
  
  /* =========================================================
       MMC CTA HERO (Split, Verlauf, Bild rechts)
       ========================================================= */
  .mmc-cta-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  
    border-radius: 5px;
    overflow: hidden;
  
    background: linear-gradient(90deg,
        #0b0b0b 0%,
        #141414 45%,
        #1e1e1e 100%);
  
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  
    min-height: 360px;
  
    position: relative;
  }
  
  /* optionales Vignette-Overlay */
  .mmc-cta-hero__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 420px at 25% 50%,
        rgba(0, 0, 0, 0.35),
        transparent 60%);
  }
  
  .mmc-cta-hero__content {
    padding: 56px 42px;
    color: #f5f5f5;
    display: grid;
    gap: 16px;
    align-content: center;
    position: relative;
    z-index: 1;
  }
  
  .mmc-cta-hero__title {
    margin: 0;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-size: clamp(26px, 2.6vw, 48px);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  }
  
  .mmc-cta-hero__subline {
    margin: 0;
    max-width: 70ch;
    opacity: 0.92;
    line-height: 1.55;
    font-size: 16px;
  }
  
  .mmc-cta-hero__btnwrap {
    margin-top: 10px;
  }
  
  /* Keine Unterstreichung / kein Border unter Link-Buttons */
  .mmc-cta-hero__btnwrap a,
  .mmc-cta-hero__btnwrap a:hover,
  .mmc-cta-hero__btnwrap a:focus,
  .mmc-cta-hero__btnwrap a:active {
    text-decoration: none !important;
    border-bottom: 0 !important;
  }
  
  /* Media rechts */
  .mmc-cta-hero__media {
    position: relative;
    height: 100%;
    min-height: 360px;
    display: grid;
    align-items: center;
    justify-items: end;
    padding-right: 34px;
    z-index: 1;
  }
  
  .mmc-cta-hero__media img {
    width: min(440px, 86%);
    height: auto;
    display: block;
  
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
  
    transform: translateY(8px) scale(1.00);
    transition: transform 450ms ease;
    will-change: transform;
  }
  
  /* Bild-Zoom bei Hover auf die gesamte Section */
  @media (hover: hover) and (pointer: fine) {
    .mmc-cta-hero:hover .mmc-cta-hero__media img {
      transform: translateY(8px) scale(1.06);
    }
  }
  
  /* Tablet */
  @media (max-width: 992px) {
    .mmc-cta-hero__inner {
      grid-template-columns: 1fr 1fr;
      min-height: 320px;
    }
  
    .mmc-cta-hero__content {
      padding: 44px 28px;
    }
  
    .mmc-cta-hero__media {
      min-height: 320px;
      padding-right: 22px;
    }
  
    .mmc-cta-hero__media img {
      width: min(380px, 88%);
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .mmc-cta-hero__inner {
      grid-template-columns: 1fr;
      min-height: 0;
    }
  
    /* Bild oben */
    .mmc-cta-hero__media {
      order: -1;
      min-height: 240px;
      padding: 18px 18px 0 18px;
      justify-items: center;
    }
  
    .mmc-cta-hero__media img {
      width: min(340px, 100%);
      transform: scale(1.00);
    }
  
    .mmc-cta-hero__content {
      padding: 18px 18px 26px 18px;
      gap: 12px;
    }
  
    .mmc-cta-hero__subline {
      font-size: 15px;
    }
  
    .mmc-cta-hero__btnwrap .btn {
      width: 100%;
    }
  }
  
  /* =========================================================
       Produktbeschreibung: schlichte Blocks (ohne Box)
       ========================================================= */
  .product-block {
    margin: 16px 0;
    padding: 0;
    border: 0;
    background: transparent;
  }
  
  .product-block__title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 10px 0;
  }
  
  /* Hinweis ohne Balken/Box */
  .product-block--notice {
    margin-top: 18px;
  }
  
  /* Fließtext */
  .product-block p {
    margin: 0 0 10px 14px;
  }
  
  .product-block p:last-child {
    margin-bottom: 0;
  }
  
  /* Listen: Check Icon in #e8fa5c */
  .product-block ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .product-block ul li {
    position: relative;
    padding-left: 22px;
    margin: 8px 0;
  }
  
  .product-block ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 4px;
    font-weight: 800;
    color: #e8fa5c;
    line-height: 1;
  }
  
  /* Optional: Listen außerhalb der product-blocks */
  .product-detail-description ul,
  .cms-element-text ul {
    list-style: none;
    padding-left: 0;
    margin-left: 14px;
  }
  
  .product-detail-description ul li,
  .cms-element-text ul li {
    position: relative;
    padding-left: 22px;
    margin: 8px 0;
  }
  
  .product-detail-description ul li::before,
  .cms-element-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 4px;
    font-weight: 800;
    color: #e8fa5c;
    line-height: 1;
  }
  
  /* Headings in der Beschreibung */
  .product-detail-description h2,
  .cms-element-text h2 {
    margin: 18px 0 10px 0;
    font-size: 22px;
    line-height: 1.2;
  }
  
  .product-detail-description h3,
  .cms-element-text h3 {
    margin: 16px 0 8px 0;
    font-size: 18px;
    line-height: 1.25;
  }
  
  .cms-element-text h2 {
    margin-top: 0;
  }
  
  /* =========================================================
       PAYMENT ICONS (Detailseite)
       ========================================================= */
  .product-detail-paymenticons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
  }
  
  .product-detail-paymenticons .payment_label {
    text-align: center;
    margin: 0;
  }
  
  .product-detail-paymenticons .payment_icons_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .product-detail-paymenticons .payment_icons {
    display: inline-block;
    width: auto !important;
    max-width: none;
    height: 28px;
    border-radius: 5px;
  }
  
  /* =========================================================
       USP Section (Detailseite)
       ========================================================= */
  .usp-section {
    margin-top: 16px;
    margin-bottom: 32px;
    border-top: 1px solid #e8fa5c;
    padding-top: 1rem;
  }
  
  .usp-label {
    margin-bottom: 8px;
  }
  
  .usp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .usp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 14px;
    line-height: 1.2;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    transition: all 0.2s ease;
  }
  
  .usp-icon {
    color: #e8fa5c;
    font-weight: 700;
    font-size: 16px;
    transform: translateY(-1px);
  }
  
  .usp-pill:hover {
    border-color: rgba(232, 250, 92, 0.45);
    background: rgba(232, 250, 92, 0.08);
  }
  
  /* =========================================================
       Small tweaks
       ========================================================= */
  .rhweb-icon-box-item-headline {
    margin-bottom: 10px !important;
  }
  
  .filter-multi-select-list-item .form-check-input {
    border-color: #1e1e1e;
  }
  
  .hero-text .cms-element-text p {
    max-width: 800px;
  }
  
  /* =========================================================
       CATEGORY CARDS (4 / 2 / 1) + Reihenabstand + Bild-Zoom
       ========================================================= */
  
  /* GRID: 4 / 2 / 1 */
  .cat-cards__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 16px;
  }
  
  .cat-cards__grid:last-child {
    margin-bottom: 0;
  }
  
  /* Tablet */
  @media (max-width: 1100px) {
    .cat-cards__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  /* Mobile */
  @media (max-width: 575px) {
    .cat-cards__grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* CARD */
  .cat-card {
    display: grid;
    grid-template-columns: 35% 65%;
    min-height: 140px;
    border-radius: 5px;
    overflow: hidden;
    background: #1e1e1e;
    color: #f5f5f5;
  }
  
  /* Bild links */
  .cat-card__media {
    padding: 8px;
    position: relative;
    background: #1e1e1e;
    overflow: hidden;
    /* ✅ Zoom bleibt sauber im Rahmen */
  }
  
  .cat-card__media-link {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  /* Basisbild */
  .cat-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  
    transform: scale(1);
    transition: transform 220ms ease;
    will-change: transform;
  }
  
  /* ✅ Zoom nur bei Hover über Bild/Link (Desktop/Maus) */
  @media (hover: hover) and (pointer: fine) {
  
    .cat-card__media-link:hover img,
    .cat-card__media-link:focus-visible img {
      transform: scale(1.06);
    }
  }
  
  /* Content rechts */
  .cat-card__content {
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }
  
  .cat-card__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    hyphens: auto;
  }
  
  .cat-card__text {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.45;
    opacity: .9;
  
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* Optional: auf sehr schmalen Karten Bild oben statt links */
  @media (max-width: 420px) {
    .cat-card {
      grid-template-columns: 1fr;
    }
  
    .cat-card__media {
      height: 160px;
    }
  }
  
  .table-striped>tbody>tr:nth-of-type(odd)>* {
    color: #f5f5f5;
  }
  
  @media(max-width: 991px) {
    .testimonials .cms-block-container {
      padding-left: 20px !important;
    }
  
    .configurator .compatibility-filter-horizontal {
      padding-left: 10px;
    }
  }
  
  /* =========================================================
     MONTAGEANLEITUNGEN – KOMPLETTES & ROBUSTES CSS
     ========================================================= */
  
  /* Wrapper */
  .install-guides {
    margin-left: auto;
    margin-right: auto;
  }
  
  @media(min-width: 992px) {
    .install-guides {
      padding: 0 40px;
    }
  }
  
  /* Card */
  .install-card {
    height: 100%;
  }
  
  /* Bild */
  .install-card__media {
    overflow: hidden;
    border-radius: 5px;
  }
  
  .install-card__media img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform .25s ease;
  }
  
  /* Bild-Zoom bei Hover */
  .install-card:hover .install-card__media img {
    transform: scale(1.04);
  }
  
  /* Button-Container */
  .install-card__buttons {
    margin-top: 12px;
    display: grid;
    gap: 10px;
  }
  
  /* =========================================================
     BUTTONS – BASIS (HART)
     ========================================================= */
  
  .install-guides .install-card__buttons a.btn,
  .install-guides .install-card__buttons a.btn.btn-info {
    width: 100%;
    margin: 0 !important;
    padding: 12px 14px;
    border-radius: 5px;
    background-color: #e8fa5c !important;
    border: 1px solid #e8fa5c !important;
    color: #010005 !important;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background-color .15s ease, transform .15s ease;
  }
  
  /* =========================================================
     HOVER / FOCUS / ACTIVE
     ========================================================= */
  
  .install-guides .install-card__buttons a.btn:hover,
  .install-guides .install-card__buttons a.btn:focus,
  .install-guides .install-card__buttons a.btn:active,
  .install-guides .install-card__buttons a.btn.btn-info:hover,
  .install-guides .install-card__buttons a.btn.btn-info:focus,
  .install-guides .install-card__buttons a.btn.btn-info:active {
    background-color: #f5f5f5 !important;
    border-color: #f5f5f5 !important;
    color: #010005 !important;
    box-shadow: none !important;
    outline: none !important;
    transform: translateY(-1px);
  }
  
  /* Klick-Zustand zurücksetzen */
  .install-guides .install-card__buttons a.btn:active {
    transform: translateY(0);
  }
  
  /* =========================================================
     OPC / SHOPWARE FALLBACKS
     ========================================================= */
  
  .opc-Button a.btn,
  .opc-Button a.btn.btn-info {
    border-radius: 5px;
    background-color: #e8fa5c !important;
    border-color: #e8fa5c !important;
    color: #010005 !important;
  }
  
  .opc-Button a.btn:hover,
  .opc-Button a.btn.btn-info:hover {
    background-color: #f5f5f5 !important;
    border-color: #f5f5f5 !important;
    color: #010005 !important;
  }
  
  /* =========================================================
     MOBILE FEINSCHLIFF
     ========================================================= */
  
  @media (max-width: 575.98px) {
    .install-card__buttons a.btn {
      padding: 13px 14px;
    }
  }
  
  .acris-partial-delivery-headline {
    background: transparent !important;
  }
  
  /* =========================================================
     BST Subcategories Slider: einheitliche Boxen + Image max 120px
     (ohne Move-Up auf Hover)
     ========================================================= */
  
  .bst-subcategories.with-images .bst-subcategory-list .subcategory-navigation-entry {
    height: 100%;
    padding: 0;
  }
  
  .bst-subcategories.with-images .bst-subcategory-list .subcategory-navigation-link {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    padding: 16px 14px;
    border-radius: 5px;
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, .08);
    transition: box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
  }
  
  .bst-subcategories.with-images .bst-subcategory-list .subcategory-navigation-link:hover {
    /* kein Move-Up */
    border-color: rgba(0, 0, 0, .14);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  }
  
  /* Bildbereich fix */
  .bst-subcategories.with-images .bst-subcategory-list .category-image-wrapper {
    height: 110px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Bild max 120px */
  .bst-subcategories.with-images .bst-subcategory-list .category-image-wrapper img {
    max-width: 120px !important;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  
  /* Text fix (2 Zeilen) */
  .bst-subcategories.with-images .bst-subcategory-list .category-name-wrapper {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
  
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.2em * 2);
  }
  
  @media (max-width: 576px) {
    .bst-subcategories.with-images .bst-subcategory-list .subcategory-navigation-link {
      height: 160px;
      padding: 14px 12px;
    }
  
    .bst-subcategories.with-images .bst-subcategory-list .category-image-wrapper {
      height: 95px;
    }
  
    .bst-subcategories.with-images .bst-subcategory-list .category-image-wrapper img {
      max-width: 110px !important;
    }
  }
  
  .filter-panel-item .filter-panel-item-toggle {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  
  .filter-panel-item .filter-panel-item-toggle:hover {
    background: #010005;
    color: #f5f5f5 !important;
    border-top-right-radius: 5px;
  }
  
  .is--sidebar .filter-panel-item-toggle[aria-expanded="true"]:hover .icon-filter-panel-item-toggle svg {
    color: #f5f5f5 !important;
  }
  
  .cms-element-product-listing-actions .sorting {
    font-weight: 700;
  }
  
  .cms-section-sidebar.cms-section-sidebar-mobile-wrap {
    margin-bottom: 60px;
  }
  
  .main-configurator .compatibility-filter-horizontal {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .topline {
    margin-bottom: 8px;
  }
  
  .highlight {
    color: #e8fa5c !important;
  }
  
  .list-block {
    border-radius: 5px;
    border: 1px solid #e8fa5c;
    padding: 16px;
  }
  
  .list-block ul {
    margin-bottom: 0;
  }
  
  .btn-alternate {
    color: #F5F5F5;
    background: transparent;
    border-color: #f5f5f5;
    margin-right: 0.25rem;
      margin-bottom: 0.25rem;
      vertical-align: top;
  }
  
  .btn-alternate:hover {
    color: #010005 !important;
    background: #f5f5f5;
    border-color: #f5f5f5;
  }
  
  .btn-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
  }
  
  /* =========================================================
     Tiny Slider Controls – nur SVG, keine doppelten Icons
     ========================================================= */
  
  /* Interaktion sicherstellen */
  .cms-element-subcategory-navigation .tns-controls,
  .cms-element-subcategory-navigation .tns-controls > button {
    pointer-events: auto !important;
  }
  
  /* Basis-Reset */
  .cms-element-subcategory-navigation .tns-controls > button {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none;
    -webkit-appearance: none;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px;
    overflow: hidden;
    width: 42px;
    height: 42px;
    background-repeat: no-repeat !important;
    background-position: 50% 50% !important;
    background-size: 18px 18px !important;
    cursor: pointer;
  }
  
  /* Pseudo-Icons entfernen */
  .cms-element-subcategory-navigation .tns-controls > button::before,
  .cms-element-subcategory-navigation .tns-controls > button::after {
    content: none !important;
    background: none !important;
  }
  
  /* PREV normal – weiß */
  .cms-element-subcategory-navigation .tns-controls > button[data-controls="prev"] {
    border-radius: 6px;
    background: transparent url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='%23f5f5f5'%20d='M7.914214%2012%2018.207107%201.7071068c.390524-.3905243.390524-1.02368927%200-1.41421357-.390525-.3905243-1.023689-.3905243-1.414214%200l-11%2010.99999977c-.390524.390525-.390524%201.02369%200%201.414214l11%2011c.390525.390524%201.023689.390524%201.414214%200%20.390524-.390524%20.390524-1.023689%200-1.414214z'/%3E%3C/svg%3E") no-repeat 50% 50% / 18px 18px !important;
  }
  
  /* NEXT normal – weiß */
  .cms-element-subcategory-navigation .tns-controls > button[data-controls="next"] {
    border-radius: 6px;
    background: transparent url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='%23f5f5f5'%20d='M16.085786%2012%205.792893%201.7071068c-.390524-.3905243-.390524-1.02368927%200-1.41421357.390525-.3905243%201.023689-.3905243%201.414214%200l11%2010.99999977c.390524.390525.390524%201.02369%200%201.414214l-11%2011c-.390525.390524-1.023689.390524-1.414214%200-.390524-.390524-.390524-1.023689%200-1.414214z'/%3E%3C/svg%3E") no-repeat 50% 50% / 18px 18px !important;
  }
  
  /* PREV hover – Hintergrund #e8fa5c, Pfeil dunkel */
  .cms-element-subcategory-navigation .tns-controls > button[data-controls="prev"]:hover {
    background-color: #e8fa5c !important;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='%23222222'%20d='M7.914214%2012%2018.207107%201.7071068c.390524-.3905243.390524-1.02368927%200-1.41421357-.390525-.3905243-1.023689-.3905243-1.414214%200l-11%2010.99999977c-.390524.390525-.390524%201.02369%200%201.414214l11%2011c.390525.390524%201.023689.390524%201.414214%200%20.390524-.390524%20.390524-1.023689%200-1.414214z'/%3E%3C/svg%3E") !important;
  }
  
  /* NEXT hover – Hintergrund #e8fa5c, Pfeil dunkel */
  .cms-element-subcategory-navigation .tns-controls > button[data-controls="next"]:hover {
    background-color: #e8fa5c !important;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='%23222222'%20d='M16.085786%2012%205.792893%201.7071068c-.390524-.3905243-.390524-1.02368927%200-1.41421357.390525-.3905243%201.023689-.3905243%201.414214%200l11%2010.99999977c.390524.390525.390524%201.02369%200%201.414214l-11%2011c-.390525.390524-1.023689.390524-1.414214%200-.390524-.390524-.390524-1.023689%200-1.414214z'/%3E%3C/svg%3E") !important;
  }
  
  .color-container {
    padding: 24px;
    background: #E8F95D;
    border-radius: 5px;
  }
  
  .product-detail-configurator-container {
    background: rgba(255, 255, 255, 0.04);
    margin-top: 16px;
    margin-bottom: 32px;
    padding-top: 8px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 4px;
    border-radius: 5px;
  }

  .footer-link-item a:not(.btn) {
    line-height: 1.4 !important;
    margin-bottom: 8px;
  }

  body .footer-column-headline {
    color: #E8F95D !important
  }

  :root {
    --bg:         #010005;
    --bg-card:    #1e1e1e;
    --bg-mid:     #141414;
    --bg-dark:    #0b0b0b;
    --border:     rgba(255,255,255,0.08);
    --accent:     #e8fa5c;
    --accent-dim: rgba(232,250,92,0.09);
    --white:      #f5f5f5;
    --muted:      #fafafa;
    --on-accent:  #010005;
    --radius: 5px;
  }
  
  /* ═══════════════════════════════════════
     SHARED SECTION HELPERS
  ═══════════════════════════════════════ */
  .mmc-s-wrap   { background: var(--bg); border-bottom: 1px solid var(--border); }
  .mmc-s-wrap--mid  { background: var(--bg-mid); }
  .mmc-s-wrap--dark { background: var(--bg-dark); }
  
  .mmc-s-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 6rem;
  }
  
  .mmc-s-eyebrow {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  .mmc-s-eyebrow::before {
    content: '';
    width: 1.5rem;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
  }
  
  .mmc-s-title {
    font-size: clamp(2.4rem, 3.8vw, 4.2rem);
    letter-spacing: .02em;
    margin-bottom: 1.25rem;
  }
  
  .mmc-s-body {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted);
    max-width: 54ch;
    line-height: 1.85;
  }
  
  /* ═══════════════════════════════════════
     HERO  — Text left / single image right
  ═══════════════════════════════════════ */
  .mmc-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    background: linear-gradient(90deg, #0b0b0b 0%, #141414 45%, #1e1e1e 100%);
  }
  
  .mmc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      -45deg, transparent, transparent 60px,
      rgba(232,250,92,.016) 60px, rgba(232,250,92,.016) 61px
    );
    pointer-events: none;
    z-index: 0;
  }
  
  .mmc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 600px at 25% 55%, rgba(0,0,0,.35), transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  
  .mmc-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 6rem 6rem;
    position: relative;
    z-index: 2;
  }
  
  .mmc-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.75rem;
    animation: mmc-fadeUp .5s ease .1s both;
  }
  .mmc-hero__eyebrow::before {
    content: '';
    width: 2.5rem;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
  }
  
  .mmc-hero__title {
    font-size: clamp(3.6rem, 6vw, 6.8rem);
    line-height: .93;
    letter-spacing: .02em;
    margin-bottom: 1.75rem;
    animation: mmc-fadeUp .5s ease .2s both;
  }
  .mmc-hero__title em { font-style: normal; color: var(--accent); }
  
  .mmc-hero__desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted);
    max-width: 44ch;
    line-height: 1.85;
    margin-bottom: 2.75rem;
    animation: mmc-fadeUp .5s ease .35s both;
  }
  
  .mmc-hero__ctas {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    animation: mmc-fadeUp .5s ease .5s both;
  }
  
  .mmc-hero__media {
    position: relative;
    display: grid;
    align-items: center;
    justify-items: end;
    padding-right: 3.5rem;
    z-index: 1;
  }
  
  .mmc-hero__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #141414 0%, transparent 30%);
    z-index: 1;
    pointer-events: none;
  }
  
  .mmc-hero__media img {
    width: min(520px, 88%);
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius);
    filter: brightness(.75) saturate(.85);
    box-shadow: 0 24px 60px rgba(0,0,0,.5);
    transform: translateY(6px) scale(1);
    transition: transform 450ms ease;
    will-change: transform;
    animation: mmc-fadeUp .7s ease .3s both;
  }
  
  .mmc-hero:hover .mmc-hero__media img {
    transform: translateY(6px) scale(1.03);
  }
  
  .mmc-hero__badge {
    position: absolute;
    bottom: 1rem;
    left: 5.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: mmc-fadeUp .6s ease .7s both;
  }
  .mmc-hero__badge-num {

    font-size: 4rem;
    line-height: 1;
    color: var(--accent);
    opacity: .22;
  }
  .mmc-hero__badge-text {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 2;
    border-left: 2px solid var(--accent);
    padding-left: .75rem;
  }
  
  @keyframes mmc-fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  /* ═══════════════════════════════════════
     STATS BAR
  ═══════════════════════════════════════ */
  .mmc-stats-bar {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
  }
  .mmc-stat {
    padding: 2.25rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background .2s;
  }
  .mmc-stat:last-child { border-right: none; }
  .mmc-stat:hover { background: var(--bg-card); }
  .mmc-stat__num {

    font-size: 2.8rem;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  .mmc-stat__label {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  
  /* ═══════════════════════════════════════
     PILLARS
  ═══════════════════════════════════════ */
  .mmc-pillars {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 3.5rem;
  }
  .mmc-pillar {
    background: var(--bg-card);
    padding: 2.75rem 2.25rem;
    position: relative;
    overflow: hidden;
    transition: background .25s;
  }
  .mmc-pillar:hover { background: #252525; }
  .mmc-pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
  }
  .mmc-pillar:hover::before { transform: scaleX(1); }
  .mmc-pillar__num {
    font-size: 3.5rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232,250,92,.15);
    margin-bottom: 1.5rem;
    transition: -webkit-text-stroke .3s;
  }
  .mmc-pillar:hover .mmc-pillar__num { -webkit-text-stroke: 1px var(--accent); }
  .mmc-pillar__title {
    font-size: 1.5rem;
    letter-spacing: .04em;
    margin-bottom: .85rem;
  }
  .mmc-pillar__text {
    font-size: .9rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
  }
  
  /* ═══════════════════════════════════════
     PHOTO GALLERY
  ═══════════════════════════════════════ */
  .mmc-gallery-section {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
  }
  .mmc-gallery-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 6rem;
  }
  .mmc-gallery-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 2.5rem;
    gap: 2rem;
  }
  .mmc-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 320px;
    gap: 10px;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .mmc-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.65) saturate(.75);
    transition: filter .4s ease, transform .4s ease;
    transform: scale(1);
  }
  .mmc-gallery-grid img:hover {
    filter: brightness(.9) saturate(1);
    transform: scale(1.03);
    z-index: 1;
    position: relative;
  }
  .mmc-gallery-grid img:first-child {
    grid-row: span 2;
  }
  
  /* ═══════════════════════════════════════
     STORY SPLIT
  ═══════════════════════════════════════ */
  .mmc-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    border-bottom: 1px solid var(--border);
  }
  .mmc-story__content {
    background: var(--bg);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .mmc-story__content p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    max-width: 48ch;
  }
  .mmc-story__content p:last-of-type { margin-bottom: 2.5rem; }
  .mmc-story__visual {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
  }
  .mmc-story__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.5) saturate(.7);
  }
  .mmc-story__watermark {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 3.5rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232,250,92,.1);
    pointer-events: none;
    white-space: nowrap;
  }
  
  /* ═══════════════════════════════════════
     TRUST
  ═══════════════════════════════════════ */
  .mmc-trust-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 6rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
  }
  .mmc-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .mmc-trust-item {
    background: var(--bg-card);
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: background .2s;
  }
  .mmc-trust-item:hover { background: #252525; }
  .mmc-trust-item__icon {
    width: 2.2rem;
    height: 2.2rem;
    background: var(--accent-dim);
    border: 1px solid rgba(232,250,92,.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mmc-trust-item__icon svg {
    width: .88rem;
    height: .88rem;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mmc-trust-item__title {
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: .2rem;
  }
  .mmc-trust-item__text {
    font-size: .78rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
  }
  
  .mmc-usp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem 1.5rem;
  }
  .mmc-usp-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: .9rem;
  }
  .mmc-usp-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.65;
  }
  
  /* ═══════════════════════════════════════
     CTA BANNER
  ═══════════════════════════════════════ */
  .mmc-cta-banner {
    position: relative;
    overflow: hidden;
    background: var(--accent);
    padding: 5rem 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .mmc-cta-banner::before {
    content: 'MM-CONCEPTS';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9rem;
    line-height: 1;
    color: rgba(2,0,12,.07);
    pointer-events: none;
    white-space: nowrap;
  }
  .mmc-cta-banner__eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(2,0,12,.4);
    margin-bottom: .6rem;
  }
  .mmc-cta-banner__title {
    font-size: clamp(2rem,3.5vw,3.5rem);
    line-height: 1;
    color: var(--on-accent);
    letter-spacing: .02em;
  }
  .mmc-cta-banner__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .mmc-cta-banner__actions .btn.btn-primary {
    background: #010005;
    color: #f5f5f5;
  }
  .mmc-cta-banner__actions .btn.btn-primary:hover {
    background: #f5f5f5;
    color: #010005;
  }
  .mmc-cta-banner .btn.btn-alternate {
    border-color: #010005;
    color: #010005;
  }
  .mmc-cta-banner .btn.btn-alternate:hover {
    background: #010005;
    color: #f5f5f5 !important;
  }
  
  /* ═══════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════ */
  @media (max-width: 1100px) {
    .mmc-hero__badge { left: 2rem; bottom: 1.5rem; }
    .mmc-hero__media img { width: min(380px, 90%); }
  
    .mmc-stats-bar { grid-template-columns: repeat(2,1fr); }
    .mmc-stat:nth-child(2) { border-right: none; }
  
    .mmc-s-inner,
    .mmc-gallery-inner,
    .mmc-trust-inner { padding: 4rem 2rem; }
  
    .mmc-pillars { grid-template-columns: 1fr; }
  
    .mmc-gallery-grid {
      grid-template-columns: 1fr;
      grid-template-rows: 280px 260px 260px;
      gap: 10px;
    }
    .mmc-gallery-grid img:first-child { grid-row: span 1; }
  
    .mmc-story { grid-template-columns: 1fr; }
    .mmc-story__content { padding: 4rem 2rem; }
    .mmc-story__visual { height: 55vw; }
  
    .mmc-trust-inner { grid-template-columns: 1fr; gap: 3rem; }
  
    .mmc-cta-banner { flex-direction: column; padding: 4rem 2rem; text-align: center; }
    .mmc-cta-banner__actions { justify-content: center; }
    .mmc-cta-banner::before { font-size: 4rem; }
  }
  
  @media (max-width: 768px) {
    .mmc-hero {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .mmc-hero__content { padding: 5rem 2rem 4rem; }
    .mmc-hero__media  { display: none; }
    .mmc-hero__badge  { display: none; }
  
    .mmc-gallery-grid {
      grid-template-rows: 400px 350px 350px;
      gap: 8px;
    }
  }
  
  @media (max-width: 640px) {
    .mmc-stats-bar { grid-template-columns: 1fr 1fr; }
    .mmc-stat:nth-child(even) { border-right: none; }
    .mmc-trust-grid { grid-template-columns: 1fr; }
    .mmc-usp-list { grid-template-columns: 1fr; }
    .mmc-gallery-header { grid-template-columns: 1fr; }
  }
  
  @media (max-width: 480px) {
    .mmc-hero__content { padding: 5rem 1.5rem 4rem; }
    .mmc-gallery-grid {
      grid-template-rows: 220px 200px 200px;
      gap: 6px;
    }
  }

  /* =========================================================
   Fahrzeug-Finder Content
   ========================================================= */

.vehicle-finder-content {
  color: #F5F5F5;
}

.vehicle-finder-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(232, 250, 92, 0.12);
  color: #e8fa5c;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vehicle-finder-title {
  margin: 18px 0 12px;
  max-width: 760px;
  color: #F5F5F5;
  font-size: clamp(24px, 4vw, 34px) !important;
  line-height: 1.05;
}

.vehicle-finder-text {
  margin: 0;
  max-width: 720px;
  color: #f5f5f5;
  font-size: 17px;
  line-height: 1.7;
}

.vehicle-finder-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.vehicle-finder-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #F5F5F5;
  font-size: 14px;
  font-weight: 600;
}

.vehicle-finder-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8fa5c;
  color: #101318;
  font-size: 12px;
  font-weight: 800;
  flex: 0 0 22px;
}

/* =========================================================
   Beliebt Box
   ========================================================= */

.vehicle-finder-side {
  display: flex;
}

.vehicle-finder-side-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-radius: 5px;
  background: #1e1e1e;
}

.vehicle-finder-side-badge {
  display: inline-flex;
  align-self: flex-start;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(232, 250, 92, 0.14);
  color: #e8fa5c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vehicle-finder-side-title {
  margin: 18px 0 10px;
  color: #F5F5F5;
  font-size: clamp(20px, 2vw, 28px) !important;
  line-height: 1.15;
}

.vehicle-finder-side-text {
  margin: 0;
  color: #f5f5f5;
  font-size: 15px;
  line-height: 1.65;
}

.vehicle-finder-side-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.vehicle-finder-side-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #F5F5F5;
  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 768px) {
  .vehicle-finder-title {
    font-size: clamp(28px, 9vw, 40px);
  }

  .vehicle-finder-text,
  .vehicle-finder-side-text {
    font-size: 15px;
  }

  .vehicle-finder-side-card {
    padding: 20px;
    border-radius: 5px;
  }

  .vehicle-finder-side-title {
    font-size: 24px;
  }
}

.wheel-highlight-content {
  color: #f5f5f5;
}

.wheel-highlight-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(232, 250, 92, 0.12);
  color: #e8fa5c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wheel-highlight-title {
  margin: 18px 0 12px;
  max-width: 620px;
  color: #f5f5f5;
  font-size: clamp(30px, 2.4vw, 42px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.wheel-highlight-text {
  margin: 0;
  max-width: 620px;
  color: rgba(245, 245, 245, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.wheel-highlight-benefits {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.wheel-highlight-benefit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f5f5f5;
  font-size: 15px;
  font-weight: 600;
}

.wheel-highlight-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8fa5c;
  color: #101318;
  font-size: 12px;
  font-weight: 800;
  flex: 0 0 24px;
}

.wheel-highlight-actions {
  display: flex;
  align-items: center;
  margin: 28px 0;
}

.wheel-highlight-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 5px;
  background: #e8fa5c;
  color: #101318;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 32px rgba(232, 250, 92, 0.2);
}

.wheel-highlight-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(232, 250, 92, 0.26);
}

.wheel-highlight-link {
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wheel-highlight-link:hover {
  color: #f5f5f5;
}

.wheel-highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.wheel-highlight-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #1e1e1e;
  color: #f5f5f5;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .wheel-highlight-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .wheel-highlight-text {
    font-size: 15px;
  }

  .wheel-highlight-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wheel-highlight-button {
    width: 100%;
  }

  .wheel-highlight-link {
    text-align: center;
  }
}