/* ============================================
   DRUCKZEUG – PRODUKTSEITEN REDESIGN
   Artikeluebersicht + Artikeldetailseite
   Selektoren basierend auf NOVA-Markup
   ============================================ */


/* ============================================
   ARTIKELUEBERSICHT: Kategorie-Header
   .dz-category-header = custom wrapper from child template
   ============================================ */
.dz-category-header {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8effd 100%);
  padding: 32px 0 24px;
  margin: -1rem -15px 20px;
  padding-left: 15px;
  padding-right: 15px;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0 0 16px 16px;
}
.dz-category-header h1.h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.dz-category-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}
.dz-category-stats strong {
  color: #1a1a1a;
  font-weight: 700;
}

/* SEO-Text: eingeklappt, erst am Ende sichtbar */
.dz-category-seo-text {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #525252;
  max-height: 120px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}
.dz-category-seo-text.expanded {
  max-height: 2000px;
}
.dz-category-seo-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
  transition: opacity 0.3s;
}
.dz-category-seo-text.expanded::after {
  opacity: 0;
}
.dz-category-seo-text h1,
.dz-category-seo-text h2,
.dz-category-seo-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.dz-category-seo-text p {
  margin-bottom: 12px;
}
/* Alte .desc und .title Klassen ausblenden (wurden durch dz-category-header ersetzt) */
#result-wrapper > .title,
#result-wrapper > .desc {
  display: none;
}

/* Unterkategorie-Karten */
.content-cats-small {
  margin-bottom: 16px;
}
.content-cats-small .sub-categories {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 12px;
  padding: 10px 14px;
}
.content-cats-small .sub-categories:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}
.content-cats-small .sub-categories .caption a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
}
.content-cats-small .sub-categories .caption a:hover {
  color: #2465f5;
}


/* ============================================
   ARTIKELUEBERSICHT: Filter-Sidebar
   #sidepanel_left .box = filter group
   .btn-filter-box = toggle button
   .filter-item = individual filter link
   ============================================ */

/* Sidebar generell */
#sidepanel_left {
  padding-top: 8px;
}

/* Kategorie-Box + Filter-Boxen: Card-Style */
#sidepanel_left .box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}
/* Trennlinien zwischen Filtergruppen entfernen */
#sidepanel_left hr.box-filter-hr,
#sidepanel_left hr.box-normal-hr {
  display: none;
}

/* Filter-Headline (Desktop) */
#sidepanel_left .productlist-filter-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 16px 18px 12px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0;
}

/* Filter Toggle Button: clean style */
#sidepanel_left .btn-filter-box {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none !important;
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0 !important;
}
#sidepanel_left .btn-filter-box:hover {
  color: #2465f5;
}
#sidepanel_left .btn-filter-box::after {
  font-size: 10px;
}

/* Kategorie-Box Link */
#sidepanel_left .box-normal-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none !important;
  display: block;
  padding: 16px 18px;
  border-bottom: 1px solid #e5e7eb;
}

/* Filter collapse content area */
#sidepanel_left .box .collapse,
#sidepanel_left .box .collapse.show,
#sidepanel_left .box .collapsing {
  padding: 8px 14px 12px;
}

/* Filter Items: clean rows */
#sidepanel_left .filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 6px;
  font-size: 13px;
  color: #525252;
  text-decoration: none !important;
  border-radius: 6px;
  transition: all 0.15s;
}
#sidepanel_left .filter-item:hover {
  background: #f5f7fa;
  color: #2465f5;
}
#sidepanel_left .filter-item .box-link-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* Checkbox-Icon: Custom Style */
#sidepanel_left .filter-item .snippets-filter-item-icon-right {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: #d1d5db;
}
#sidepanel_left .filter-item:hover .snippets-filter-item-icon-right {
  color: #2465f5;
}
#sidepanel_left .filter-item.active .snippets-filter-item-icon-right,
#sidepanel_left .filter-item .fa-check-square {
  color: #2465f5;
}

/* Filter-Wert Text */
#sidepanel_left .filter-item .filter-item-value {
  flex: 1;
  font-size: 13px;
}

/* Filter Count Badge */
#sidepanel_left .filter-item .badge {
  background: #f5f7fa !important;
  color: #6b7280 !important;
  border: none !important;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  margin-left: auto;
}

/* Kategorien in der Sidebar */
#sidepanel_left .box-categories .nav-panel .nav-link {
  padding: 6px 8px;
  font-size: 13px;
  color: #525252;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
}
#sidepanel_left .box-categories .nav-panel .nav-link:hover,
#sidepanel_left .box-categories .nav-panel .nav-item.active > .nav-link {
  background: #e8effd;
  color: #2465f5;
}
#sidepanel_left .box-categories .nav-panel a {
  color: #525252;
  text-decoration: none;
  font-size: 13px;
}
#sidepanel_left .box-categories .nav-panel a:hover {
  color: #2465f5;
}
#sidepanel_left .box-categories .snippets-categories-nav-link-child {
  padding: 5px 8px 5px 16px;
  font-size: 13px;
}

/* Filter-Suche Input */
#sidepanel_left .filter-search-wrapper input[type="text"],
#sidepanel_left .filter-search-wrapper input[type="search"] {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 8px 12px;
  font-size: 12px;
  width: 100%;
  margin-bottom: 6px;
}
#sidepanel_left .filter-search-wrapper input:focus {
  border-color: #2465f5;
  box-shadow: 0 0 0 3px rgba(36,101,245,0.1);
  outline: none;
}


/* ============================================
   ARTIKELUEBERSICHT: Produktkarten
   .productbox.productbox-column = card wrapper
   Innerhalb von Bootstrap .col.product-wrapper
   ============================================ */

/* Card: abgerundete Ecken, Border, Hover-Schatten */
.productbox.productbox-column {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  height: 100%;
}
.productbox.productbox-column:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Card Image: hellgrauer Hintergrund, Zoom on Hover */
/* Nur der aeussere Wrapper bekommt den Hintergrund, NICHT .square-image Kinder */
.productbox.productbox-column > .productbox-quick-actions + form .productbox-image[data-target],
.productbox.productbox-column .productbox-inner .row > .col-12 > .productbox-image[data-target] {
  background: #f5f7fa;
}
/* Kein Bild-Zoom on Hover - bricht NOVA square-image Layout */

/* Quick Actions (Wishlist, Compare) - runde Buttons on Hover */
.productbox.productbox-column .productbox-quick-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.25s ease;
}
.productbox.productbox-column:hover .productbox-quick-actions {
  opacity: 1;
  transform: translateX(0);
}
.productbox.productbox-column .productbox-quick-actions .btn {
  width: 34px;
  height: 34px;
  border-radius: 50% !important;
  background: #fff;
  border: 1px solid #e5e7eb !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #6b7280;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.15s;
}
.productbox.productbox-column .productbox-quick-actions .btn:hover {
  background: #2465f5;
  color: #fff;
  border-color: #2465f5 !important;
}

/* Ribbon / Badge: abgerundeter Pill-Style */
.productbox.productbox-column .productbox-ribbon {
  border-radius: 100px !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 4px 12px;
}

/* Card Title: Montserrat, 2 Zeilen max */
.productbox.productbox-column .productbox-title {
  padding: 14px 16px 6px;
}
.productbox.productbox-column .productbox-title a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a !important;
  text-decoration: none !important;
}
.productbox.productbox-column .productbox-title a:hover {
  color: #2465f5 !important;
}

/* Card Price: Montserrat, groesser, fett */
.productbox.productbox-column .price_wrapper {
  padding: 4px 16px 14px;
}
.productbox.productbox-column .price_wrapper .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #1a1a1a;
}
.productbox.productbox-column .price_wrapper .price.text-sale,
.productbox.productbox-column .price_wrapper .price.special-price {
  color: #dc2626 !important;
}
.productbox.productbox-column .price_wrapper .old-price {
  font-size: 12px;
  color: #6b7280;
  text-decoration: line-through;
}
.productbox.productbox-column .price_wrapper .price-note {
  font-size: 11px;
  color: #6b7280;
}
.productbox.productbox-column .price_wrapper .base-price {
  font-size: 11px;
  color: #6b7280;
}

/* Card Rating */
.productbox.productbox-column .rating .fa-star {
  color: #f59e0b;
  font-size: 12px;
}

/* Card Delivery Status */
.productbox.productbox-column .delivery-status {
  padding: 2px 16px 12px;
  font-size: 12px;
}
.productbox.productbox-column .delivery-status .status {
  font-size: 12px;
  font-weight: 600;
}
.productbox.productbox-column .delivery-status .status-icon {
  margin-right: 4px;
}

/* Card Variation Swatches */
.productbox.productbox-column .productbox-variations {
  padding: 0 12px 8px;
}

/* Abstand zwischen Karten */
.product-list.layout-gallery .col.product-wrapper {
  margin-bottom: 12px;
}


/* ============================================
   ARTIKELUEBERSICHT: Toolbar / Result Options
   ============================================ */
#result-options {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 16px;
}
#result-options .btn-outline-secondary {
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  border-color: #e5e7eb;
  color: #525252;
}
#result-options .btn-outline-secondary:hover,
#result-options .btn-outline-secondary:focus {
  background: #2465f5;
  color: #fff;
  border-color: #2465f5;
}
#result-options select,
#result-options .custom-select {
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  border-color: #e5e7eb;
}

/* Active filter chips */
.snippets-filter-active .badge {
  background: #e8effd !important;
  color: #2465f5 !important;
  border-radius: 100px;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 14px;
}


/* ============================================
   ARTIKELUEBERSICHT: Filter-Modal / Sidebar
   ============================================ */
.productlist-filter .card {
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  margin-bottom: 12px;
}
.productlist-filter .card-header {
  background: transparent;
  border-bottom: 1px solid #e5e7eb;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}
.productlist-filter .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #2465f5;
  border-color: #2465f5;
}
.productlist-filter .badge-pill {
  background: #f5f7fa;
  color: #6b7280;
  font-size: 11px;
  border-radius: 100px;
}
.productlist-filter .noUi-connect {
  background: #2465f5;
}


/* ============================================
   ARTIKELUEBERSICHT: Pagination
   ============================================ */
.pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 8px !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #525252;
  border: 1px solid #e5e7eb;
  background: #fff;
  transition: all 0.2s;
  margin: 0 2px;
}
.pagination .page-item .page-link:hover {
  background: #2465f5;
  color: #fff;
  border-color: #2465f5;
}
.pagination .page-item.active .page-link {
  background: #2465f5 !important;
  color: #fff !important;
  border-color: #2465f5 !important;
}


/* ============================================
   ARTIKELUEBERSICHT: Kategorie-Header
   ============================================ */
/* Kategorie-Titel */
#result-wrapper > .title h1.h2,
#content .title h1.h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
}
/* Kategorie-Beschreibung */
#result-wrapper .desc p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 640px;
}
/* Unterkategorie-Karten */
.content-cats-small .sub-categories {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.content-cats-small .sub-categories:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.content-cats-small .sub-categories .caption a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
}


/* ============================================
   ARTIKELDETAILSEITE: Galerie
   ============================================ */
/* Galerie-Container */
#product-offer .product-gallery #image_wrapper {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
/* Gallery sticky on desktop */
@media (min-width: 992px) {
  #product-offer .product-gallery {
    position: sticky;
    top: 80px;
  }
}
/* Gallery Actions (Wishlist/Compare) */
#product-offer .product-gallery .product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#product-offer .product-gallery .product-actions .btn {
  width: 38px;
  height: 38px;
  border-radius: 50% !important;
  background: #fff;
  border: 1px solid #e5e7eb !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 0;
  transition: all 0.15s;
}
#product-offer .product-gallery .product-actions .btn:hover {
  background: #2465f5;
  color: #fff;
  border-color: #2465f5 !important;
}
/* Thumbnail Slides */
#product-offer .product-gallery .product-thumbnails .square-image {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s;
}
#product-offer .product-gallery .product-thumbnails .slick-current .square-image {
  border-color: #2465f5;
}


/* ============================================
   ARTIKELDETAILSEITE: Produkt-Info
   ============================================ */

/* Hersteller UEBER Titel: Flexbox-Order auf product-info-inner */
#product-offer .product-info-inner {
  display: flex;
  flex-direction: column;
}
#product-offer .product-info-inner .product-headline {
  order: 2;
}
/* Hersteller in info-essential visuell nach oben */
#product-offer .product-info-inner ul.info-essential {
  order: 1;
  margin-bottom: 4px;
}
#product-offer .product-info-inner ul.info-essential li.product-manufacturer {
  order: -1;
  margin-bottom: 6px;
}
#product-offer .product-info-inner ul.info-essential li.product-manufacturer a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2465f5;
  text-decoration: none;
}
/* "Hersteller:" Label ausblenden, nur Markenname zeigen */
#product-offer .product-info-inner ul.info-essential li.product-manufacturer > strong {
  display: none;
}
/* "Artikelnummer:" Label ausblenden, dezent */
#product-offer .product-info-inner ul.info-essential li.product-sku > strong {
  font-weight: 400;
  color: #9ca3af;
}
/* Info-essential: nur SKU + Hersteller zeigen, Rest ausblenden */
#product-offer .product-info-inner ul.info-essential li.product-ean,
#product-offer .product-info-inner ul.info-essential li.product-han,
#product-offer .product-info-inner ul.info-essential li.product-category {
  display: none;
}
#product-offer .product-info-inner ul.info-essential li.product-sku {
  font-size: 12px;
  color: #6b7280;
  order: 0;
}
/* Reihenfolge: 1=info-essential, 2=headline, 3=shortdesc, 4=product-offer, 10=trust, rest=hidden */
#product-offer .product-info-inner > .shortdesc {
  order: 3;
}
#product-offer .product-info-inner > .product-offer {
  order: 4;
}
#product-offer .product-info-inner > .dz-trust-grid {
  order: 10;
}
/* Alles andere (leere Container, Scripts) ans Ende */
#product-offer .product-info-inner > *:not(.product-headline):not(ul.info-essential):not(.shortdesc):not(.product-offer):not(.dz-trust-grid) {
  order: 20;
}

/* Leere injizierte Container ausblenden */
#product-offer .product-info-inner > .dz-tech-overlay {
  display: none !important;
}
#product-offer .product-info-inner > table.table {
  display: none !important;
}
#product-offer .product-info-inner > .accordion#dzPDPFAQ {
  display: none !important;
}
/* Leere Bullet-Liste ausblenden */
#product-offer .product-info-inner > ul.list-unstyled.mb-3:empty,
#product-offer .product-info-inner > ul.list-unstyled.mb-3:not(:has(li)) {
  display: none !important;
}

/* Shortdesc: dezenter Stil */
#product-offer .shortdesc {
  font-size: 14px;
  line-height: 1.7;
  color: #525252;
  margin-bottom: 12px;
}

/* Titel */
#product-offer .product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 8px;
}
/* Bewertung */
#product-offer .product-info-inner .rating .fa-star {
  color: #f59e0b;
}

/* Preisblock - Background-Box NUR auf der Detailseite (nicht in Slidern!)
   .product-offer ist der innere Angebotsbereich, .item-slider ist Slider */
#product-offer .product-info .product-offer .price_wrapper {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 12px 0 16px;
}
#product-offer .product-info .product-offer .price_wrapper .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #1a1a1a;
}
#product-offer .product-info .product-offer .price_wrapper .price.text-sale {
  color: #dc2626 !important;
}
#product-offer .product-info .product-offer .price_wrapper .old-price {
  font-size: 16px;
  color: #6b7280;
  text-decoration: line-through;
}
#product-offer .product-info .product-offer .price_wrapper .price-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

/* Lieferstatus */
#product-offer .stock-information .delivery-status .status {
  font-size: 14px;
  font-weight: 600;
}
#product-offer .stock-information .delivery-status .status-1 {
  color: #1C871E;
}
#product-offer .stock-information .delivery-status .status-2 {
  color: #f59e0b;
}
#product-offer .stock-information .estimated-delivery {
  font-size: 13px;
  color: #6b7280;
}

/* Varianten: Labels */
#product-offer .variation-wrapper label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}
/* Varianten: Swatch-Buttons */
#product-offer .swatches .variation-value {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  transition: all 0.15s;
}
#product-offer .swatches .variation-value:hover {
  border-color: #2465f5;
  color: #2465f5;
}
#product-offer .swatches .variation-value.active,
#product-offer .swatches .variation-value.selected {
  border-color: #2465f5;
  background: #e8effd;
  color: #2465f5;
  font-weight: 700;
}
/* Varianten: Select-Dropdowns */
#product-offer .variation-wrapper select.custom-select,
#product-offer .variation-wrapper .custom-select {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #525252;
  background-color: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: auto;
}
#product-offer .variation-wrapper select.custom-select:focus,
#product-offer .variation-wrapper .custom-select:focus {
  border-color: #2465f5;
  box-shadow: 0 0 0 3px rgba(36,101,245,0.1);
  outline: none;
}

/* Menge-Eingabe */
#product-offer .form-counter {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
#product-offer .form-counter .btn {
  background: #f5f7fa;
  border: none;
  color: #525252;
  min-width: 40px;
}
#product-offer .form-counter .btn:hover {
  background: #e5e7eb;
}
#product-offer .form-counter input.quantity {
  border: none;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  width: 56px;
}

/* Warenkorb-Button: Orange CTA */
#product-offer .product-buy .btn-primary,
#product-offer button[name="inWarenkorb"].btn-primary {
  background: #f97316 !important;
  border-color: #f97316 !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  min-height: 48px;
  transition: background 0.2s;
}
#product-offer .product-buy .btn-primary:hover,
#product-offer button[name="inWarenkorb"].btn-primary:hover {
  background: #ea580c !important;
  border-color: #ea580c !important;
}


/* ============================================
   ARTIKELDETAILSEITE: Trust Signals
   ============================================ */
.dz-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 8px;
}
.dz-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f5f7fa;
  border-radius: 8px;
  font-size: 12px;
  color: #525252;
  font-weight: 500;
}
.dz-trust-item .dz-trust-icon {
  font-size: 16px;
  color: #2465f5;
  flex-shrink: 0;
}


/* ============================================
   ARTIKELDETAILSEITE: Tabs (nav-tabs wenn vorhanden)
   ============================================ */
#content .tab-navigation .nav-tabs {
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 24px;
}
#content .tab-navigation .nav-tabs .nav-link {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  border-radius: 0;
  transition: all 0.2s;
  background: transparent;
}
#content .tab-navigation .nav-tabs .nav-link:hover {
  color: #1a1a1a;
}
#content .tab-navigation .nav-tabs .nav-link.active {
  color: #2465f5;
  border-bottom-color: #2465f5;
  background: transparent;
}

/* ============================================
   ARTIKELDETAILSEITE: Accordion-Tabs (#tabAccordion)
   NOVA nutzt Accordion statt klassischer Tabs
   ============================================ */
#tabAccordion {
  margin-top: 32px;
}
#tabAccordion .card {
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: none !important;
}
#tabAccordion .card-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
}
#tabAccordion .card-header [data-toggle="collapse"],
#tabAccordion .card-header button,
#tabAccordion .card-header a,
#tabAccordion .card-header .btn-link {
  display: block;
  width: 100%;
  padding: 16px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none !important;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
#tabAccordion .card-header [data-toggle="collapse"]:hover,
#tabAccordion .card-header button:hover,
#tabAccordion .card-header a:hover,
#tabAccordion .card-header .btn-link:hover {
  color: #2465f5;
}
#tabAccordion .card-header [data-toggle="collapse"][aria-expanded="true"],
#tabAccordion .card-header .btn-link[aria-expanded="true"] {
  color: #2465f5;
  border-bottom: 2px solid #2465f5;
}
#tabAccordion .card-body {
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #525252;
}

/* Specs-Tabelle */
#tabAccordion .table-striped tbody tr:nth-of-type(odd),
#content .tab-content .table-striped tbody tr:nth-of-type(odd) {
  background-color: #f5f7fa;
}
#tabAccordion .table td,
#tabAccordion .table th,
#content .tab-content .table td,
#content .tab-content .table th {
  padding: 12px 16px;
  font-size: 14px;
  border-color: #e5e7eb;
}
/* Review-Karten */
#tabAccordion .review-item,
#content .tab-content .review-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
}

/* Leere Snippet-Container ausblenden */
.dz-tech-overlay:empty,
.dz-pdp-specs:empty,
.dz-pdp-specs table:empty,
.dz-pdp-faq:empty {
  display: none;
}
/* Wrapper ohne Inhalt ausblenden */
.dz-tech-overlay:not(:has(*)),
.dz-pdp-specs:not(:has(*)),
.dz-pdp-faq:not(:has(*)) {
  display: none;
}


/* ============================================
   ARTIKELDETAILSEITE: Cross-Sell / Slider
   ============================================ */
#content .product-slider-container .hr-sect,
#content .product-slider-container h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #1a1a1a;
}

/* Slider-Container (Kunden kauften / Aehnliche Artikel): Breite begrenzen */
.slick-slider-other {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
/* Slider-Ueberschrift: Montserrat, zentriert */
.slick-slider-other > .hr-sect {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #1a1a1a;
  font-size: 22px;
  margin-bottom: 24px;
}
/* Recommendations-Wrapper ebenfalls begrenzen */
.recommendations {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 24px 48px;
}
/* Slider-Items: Card-Stil */
.slick-slider-other .item-slider {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s;
}
.slick-slider-other .item-slider:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.slick-slider-other .item-slider-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
}
.slick-slider-other .item-slider-price .price_wrapper .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

/* TabAccordion Container: Breite begrenzen */
#tabAccordion {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

/* Verfuegbarkeit: Mockup-Stil (gruener Dot + Text + Lieferinfo) */
#product-offer .stock-information {
  padding: 14px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

/* Product-Offer innerer Container: saubere Abstande */
#product-offer .product-info .product-offer {
  margin-top: 4px;
}
#product-offer .product-info .product-offer > .row {
  margin-bottom: 8px;
}

/* Info-essential: als Flexbox fuer Hersteller-Ordering */
#product-offer .product-info-inner ul.info-essential {
  display: flex;
  flex-direction: column;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  #product-offer .product-title {
    font-size: 22px;
  }
  #product-offer .product-info .product-offer .price_wrapper .price {
    font-size: 24px !important;
  }
  .slick-slider-other,
  .recommendations {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 767px) {
  /* Produktkarten kleiner */
  .productbox.productbox-column .productbox-title {
    padding: 10px 12px 4px;
  }
  .productbox.productbox-column .productbox-title a {
    font-size: 12px;
  }
  .productbox.productbox-column .price_wrapper {
    padding: 2px 12px 10px;
  }
  .productbox.productbox-column .price_wrapper .price {
    font-size: 14px !important;
  }

  /* Detailseite */
  #product-offer .product-title {
    font-size: 20px;
  }
  #product-offer .product-info .product-offer .price_wrapper {
    padding: 16px 18px;
  }
  #product-offer .product-info .product-offer .price_wrapper .price {
    font-size: 22px !important;
  }
  .dz-trust-grid {
    grid-template-columns: 1fr;
  }
  #content .tab-navigation .nav-tabs .nav-link,
  #tabAccordion .card-header [data-toggle="collapse"],
  #tabAccordion .card-header .btn-link {
    padding: 12px 16px;
    font-size: 13px;
  }
}
