/*
 Theme Name:   Divi Child Theme – Blue Level Shop
 Author:       Blue Level
 Description:  Clean & stable WooCommerce Shop Styling (Divi-native)
 Version:      1.1

 Hinweis:
 - Variablen + Typografie liegen in base.css
 - shop.css enthält nur Shop-/Woo-/Layout-spezifische Regeln
*/

/* =========================================================
   0) SCOPE / RESET HELPERS
   ========================================================= */

.bl-layout-shop * { box-sizing: border-box; }

/* =========================================================
   BLUE LEVEL SHOP TYPOGRAPHY
   Digitec-Style Hierarchie
========================================================= */

.bl-layout-shop{

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  font-size:14px;
  line-height:20px;
  font-weight:400;

  color:#222;
}

.bl-description p{
margin-bottom:16px;
}

.bl-description ul{
margin:20px 0;
}

.bl-description li{
margin-bottom:6px;
}

/* =========================================================
   HEADINGS
========================================================= */

.bl-layout-shop h1,
.bl-layout-shop .bl-product-title{
  font-size:26x;
  line-height:32px;
  font-weight:600;
}

.bl-layout-shop h2{
  font-size:20px;
  line-height:26px;
  font-weight:600;
}

.bl-layout-shop h3{
  font-size:16px;
  line-height:22px;
  font-weight:600;
}

.bl-layout-shop h4{
  font-size:14px;
  line-height:20px;
  font-weight:600;
}

/* =========================================================
   TEXT
========================================================= */

.bl-layout-shop p{
  font-size:14px;
  line-height:22px;
}

.bl-layout-shop li{
  font-size:14px;
  line-height:20px;
}

/* =========================================================
   PRODUCT PRICE
========================================================= */

.bl-layout-shop .bl-price-note{
  font-size:12px;
  line-height:16px;
}

/* =========================================================
   USP LIST
========================================================= */

.bl-layout-shop .bl-usps li{
  font-size:14px;
  line-height:20px;
}

/* =========================================================
   TECH DATA
========================================================= */

.bl-layout-shop .bl-techdata li{
  font-size:14px;
  line-height:20px;
}

.bl-layout-shop .bl-techdata li strong{
  font-weight:600;
}

/* =========================================================
   DOWNLOADS
========================================================= */

.bl-layout-shop .bl-download-category-title{
  font-size:16px;
  line-height:22px;
  font-weight:600;
}

.bl-layout-shop .bl-download-item a{
  font-size:14px!important;
  line-height:20px;
}

/* =========================================================
   Product Media (Clean Version – ohne internes Accordion)
========================================================= */

.bl-media-list {
  max-width: 600px;
}

.bl-media-item {
  margin-bottom: 16px;
}

.bl-media-item img {
  width: 100%;
  height: auto; /* 🔥 kein Cropping mehr */
  border-radius: 8px;
  display: block;
}

.bl-video {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.bl-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* =========================================================
   CATEGORY NAVIGATION
========================================================= */

.bl-layout-shop .bl-cat-link{
  font-size:14px;
  line-height:20px;
  font-weight:500;
}

.bl-layout-shop .bl-cat-tree-item.is-current > .bl-cat-row .bl-cat-link{
  font-weight:600;
}

/* =========================================================
   BUTTON TYPOGRAPHY
========================================================= */

.bl-layout-shop .button,
.bl-layout-shop button,
.bl-layout-shop .single_add_to_cart_button{
  font-size:14px;
  line-height:20px;
  font-weight:500;
}

/* =========================================================
   ACCORDION
========================================================= */

.bl-layout-shop .bl-accordion-header{
  font-size:20px !important;
  line-height:22px;
  font-weight:500;
  padding-bottom: 20px;
}

/* =========================================================
   ACCESSORY GRID
========================================================= */

.bl-layout-shop .bl-accessory-title{
  font-size:14px;
  line-height:20px;
}

.bl-layout-shop .bl-accessory-price{
  font-size:14px;
  line-height:20px;
}

/* =========================================================
   RELATED PRODUCTS
========================================================= */

.bl-layout-shop .bl-related-title{
  font-size:14px;
  line-height:20px;
}

.bl-layout-shop .bl-related-price{
  font-size:14px;
  line-height:20px;
}


/* =========================================================
   1) SHOP – CONTAINER (DIVI-KONFORM)
   ========================================================= */

/* Divi Container nicht zerstören */
.bl-layout-shop.woocommerce-page .container { max-width: 100%; }

/* Sidebar-Trenner entfernen (Divi Bug) */
.et_right_sidebar #main-content .container:before,
.et_left_sidebar  #main-content .container:before { display: none; }

/* SHOP: full width container */
.bl-layout-shop #page-container,
.bl-layout-shop #et-main-area,
.bl-layout-shop #main-content,
.bl-layout-shop .container {
  max-width: none;
  width: 100%;
}

/* Divi rows are often capped – allow full width */
.bl-layout-shop .et_pb_row,
.bl-layout-shop .et_pb_row_inner {
  max-width: none;
  width: 100%;
}

/* =========================================================
   2) UNIFIED PADDING (HEADER + BODY)
   - Mobile soll nicht am Rand kleben
   ========================================================= */

.bl-layout-shop #et-main-area { padding-left: 0; padding-right: 0; }

/* einheitlicher Seiten-Padding-Wrapper für Header + Content */
.bl-layout-shop #main-header .container,
.bl-layout-shop #main-content .container {
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 980px) {
  .bl-layout-shop #main-header .container,
  .bl-layout-shop #main-content .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* =========================================================
   3) GLOBAL SHOP BODY: 3-COLUMN LAYOUT
   - Row hat class: bl-shop-layout
   - Columns haben class: bl-zone-left / bl-zone-main / bl-zone-right
   ========================================================= */



  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column{
    margin: 0 !important;
    float: none !important;
    width: auto !important;
    max-width: none !important;
  }

  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-left  { grid-column: 1; }
  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-main  { grid-column: 2; }
  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-right { grid-column: 3; }

@media (max-width: 980px) {
  .bl-layout-shop .et_pb_row.bl-shop-layout{
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column{
    margin: 0 !important;
    float: none !important;
    width: auto !important;
    max-width: none !important;
  }

  /* Mobile order: Left (menu) first, then Main, then Right */
  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-left  { order: 1; }
  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-main  { order: 2; }
  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-right { order: 3; }
}

/* =========================================================
   4) CATEGORY TREE – BASIC STYLES
   (Shortcode: [bl_wc_category_tree ...])
   ========================================================= */

.bl-layout-shop .bl-wc-cat-tree,
.bl-layout-shop .bl-wc-cat-tree ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bl-layout-shop .bl-wc-cat-tree a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.bl-layout-shop .bl-wc-cat-tree a:hover{
  text-decoration: underline;
}

/* =========================================================
   5) MOBILE CATEGORY DROPDOWN (details/summary)
   - Nur falls du es als <details class="bl-mobile-cat"> nutzt
   ========================================================= */

.bl-layout-shop details.bl-mobile-cat > summary { list-style: none; }
.bl-layout-shop details.bl-mobile-cat > summary::-webkit-details-marker { display: none; }

@media (min-width: 981px) {
  /* Desktop: Panel immer sichtbar, Toggle verstecken */
  .bl-layout-shop details.bl-mobile-cat > summary.bl-mobile-cat-toggle { display: none !important; }
  .bl-layout-shop details.bl-mobile-cat > .bl-mobile-cat-panel{
    display: block !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

@media (max-width: 980px) {
  .bl-layout-shop details.bl-mobile-cat > summary.bl-mobile-cat-toggle{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 10px;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
  }

  .bl-layout-shop details.bl-mobile-cat > summary.bl-mobile-cat-toggle::after{
    content: "▾";
    font-size: 14px;
    line-height: 1;
    opacity: 0.85;
    transform: rotate(0deg);
    transition: transform 0.15s ease;
  }

  .bl-layout-shop details.bl-mobile-cat[open] > summary.bl-mobile-cat-toggle::after{
    transform: rotate(180deg);
  }

  .bl-layout-shop details.bl-mobile-cat > .bl-mobile-cat-panel{
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 10px;
    background: #fff;
    max-height: 60vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 980px) {

  .bl-layout-shop .et_pb_row.bl-shop-layout {
    display: block !important;
  }

  .bl-layout-shop .bl-zone-left,
  .bl-layout-shop .bl-zone-main,
  .bl-layout-shop .bl-zone-right {
    width: 100% !important;
    max-width: 100% !important;
  }

}

/* =========================================================
   6) PRODUCT PAGE – HERO GRID (Main Content)
   Markup (dein Divi Code Modul):
   .bl-product-title + .bl-product-hero
   ========================================================= */

.bl-layout-shop .bl-product-title{
  margin: 0px 0 0 0;
  line-height: 1.15;
font-size: 26px;
}

.bl-product-hero button{
font-size: 14px!important
}

.bl-layout-shop .bl-product-hero{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

/* Bild */
.bl-layout-shop .bl-product-hero-image img{
  width: 100%;
  height: auto;
  display: block;
}

/* rechte Spalte */
.bl-layout-shop .bl-product-hero-meta{
  min-width: 0;
}

/* Mobile stacking */
@media (max-width: 980px){
  .bl-layout-shop .bl-product-hero{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Preis kompakter */
.bl-layout-shop .bl-price{
  margin: 0 0 8px 0;
}

.bl-layout-shop .bl-price-note{
  font-size: 20px;
  margin-left: 6px;
}

/* USPs kleiner + enger */
.bl-layout-shop .bl-usps{ margin-top: 10px; }
.bl-layout-shop .bl-usps .bl-bullets{
  margin: 15px 0 0 18px;
  padding: 0;
}
.bl-layout-shop .bl-usps .bl-bullets li{
  margin: 0 0 6px 0;
  line-height: 1.35;
  font-size: 14px;
}

/* Availability */
.bl-layout-shop .bl-availability{
  margin-top: 2px;
}

/* =========================================================
   7) CTA ROW – BUTTONS IDENTISCH, KEIN PFEIL, KEINE VERSCHIEBUNG
   - Woo Add-to-cart kommt als: <form class="cart"> ... <button class="single_add_to_cart_button">
   - Angebot als: <a class="button bl-offer-btn">
   ========================================================= */

.bl-layout-shop .bl-product-cta{
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Woo form in die gleiche Zeile zwingen */
.bl-layout-shop .bl-product-cta form.cart{
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 0px;
}

/* Quantity kompakt */
.bl-layout-shop .bl-product-cta .quantity{
  margin: 0 !important;
}
.bl-layout-shop .bl-product-cta .quantity input.qty{
  height: 38px;
  min-height: 38px;
  width: 64px;
}

/* ===== Button Base (beide gleich) ===== */
.bl-layout-shop .bl-product-cta .single_add_to_cart_button,
.bl-layout-shop .bl-product-cta a.bl-offer-btn,
.bl-layout-shop .bl-product-cta a.button.bl-offer-btn{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
  line-height: 38px !important;
  padding: 0 14px !important;
  border-radius: 6px !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  margin: 0 !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  white-space: nowrap;
}

/* ===== Blue Level Blau (falls ihr Variable habt, kannst du später ersetzen) ===== */
.bl-layout-shop .bl-product-cta .single_add_to_cart_button,
.bl-layout-shop .bl-product-cta a.bl-offer-btn{
  background: #0068AB !important;
  color: #fff !important;
}

/* ===== DIVI PFEIL / ICON-KRAM KILLEN ===== */
.bl-layout-shop .bl-product-cta .single_add_to_cart_button:after,
.bl-layout-shop .bl-product-cta a.bl-offer-btn:after,
.bl-layout-shop .bl-product-cta a.button.bl-offer-btn:after,
.bl-layout-shop .bl-product-cta .single_add_to_cart_button:before,
.bl-layout-shop .bl-product-cta a.bl-offer-btn:before,
.bl-layout-shop .bl-product-cta a.button.bl-offer-btn:before{
  content: none !important;
  display: none !important;
}

/* Divi setzt teils letter-spacing / padding auf .et_pb_button / .button */
.bl-layout-shop .bl-product-cta .single_add_to_cart_button,
.bl-layout-shop .bl-product-cta a.bl-offer-btn{
  letter-spacing: 0 !important;
}

/* =========================================================
   8) RIGHT COLUMN – SIDEBAR IMAGES (optional)
   ========================================================= */

.bl-layout-shop .bl-zone-right img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   9) SMALL CLEANUPS
   ========================================================= */

/* Woo notices / messages nicht zu breit */
.bl-layout-shop .woocommerce-message,
.bl-layout-shop .woocommerce-info,
.bl-layout-shop .woocommerce-error{
  margin-left: 0;
  margin-right: 0;
}

/* In Main nichts "ausfransen" lassen */
.bl-layout-shop .bl-zone-main { min-width: 0; }

/* =========================================================
   SHOP MAIN: Page vs Product Content – Sichtbarkeit
   ========================================================= */

/* Default: Produktblock aus, Page Content an */
.bl-layout-shop .bl-main-productcontent { display: none; }
.bl-layout-shop .bl-main-pagecontent { display: block; }

/* Auf Produktseiten: Page Content aus, Produktblock an */
.bl-layout-shop.single-product .bl-main-pagecontent { display: none; }
.bl-layout-shop.single-product .bl-main-productcontent { display: block; }


/* =========================================================
   CATEGORY TREE – Styling (restore)
   ========================================================= */

.bl-layout-shop .bl-wc-cat-tree,
.bl-layout-shop .bl-wc-cat-tree ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bl-layout-shop .bl-wc-cat-tree li { margin: 0; padding: 0; }

.bl-layout-shop .bl-wc-cat-tree a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}

.bl-layout-shop .bl-wc-cat-tree a:hover {
  text-decoration: underline;
}

.bl-layout-shop .bl-wc-cat-tree .is-active > a,
.bl-layout-shop .bl-wc-cat-tree a[aria-current="page"] {
  font-weight: 600;
}

/* =========================================================
   PATCH (append last): FIX category tree design + content visibility
   ========================================================= */

/* -----------------------------------------
   A) CONTENT VISIBILITY (Page vs Product)
   ----------------------------------------- */

/* Sicherheitsreset: beide erstmal sichtbar (falls Divi/Module was verstecken) */
.bl-layout-shop .bl-shop-page-content,
.bl-layout-shop .bl-shop-product-content{
  display: block !important;
}

/* Statische Seiten: nur Page-Block */
body.page.bl-layout-shop .bl-shop-product-content{
  display: none !important;
}

/* Produktseiten: nur Produkt-Block */
body.single-product.bl-layout-shop .bl-shop-page-content{
  display: none !important;
}

/* -----------------------------------------
   B) CATEGORY TREE – Design wieder erzwingen
   Voraussetzung: dein Shortcode/Output nutzt diese Klassen:
   .bl-cat-tree-wrap, .bl-cat-tree, .bl-cat-tree-item, .bl-cat-row, .bl-cat-link, .bl-cat-toggle
   ----------------------------------------- */

.bl-layout-shop .bl-cat-tree-wrap{
  font-size: 14px !important;
  line-height: 1.35 !important;
}

/* reset lists */
.bl-layout-shop .bl-cat-tree{
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* item reset */
.bl-layout-shop .bl-cat-tree-item{
  margin: 0 !important;
  padding: 0 !important;
}

/* one row per item: link left, toggle right */
.bl-layout-shop .bl-cat-row{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 5px 0 !important;
}

/* link */
.bl-layout-shop .bl-cat-link{
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
}

.bl-layout-shop .bl-cat-link:hover{
  text-decoration: underline !important;
}

/* current item */
.bl-layout-shop .bl-cat-tree-item.is-current > .bl-cat-row .bl-cat-link{
  font-weight: 700 !important;
  text-decoration: underline !important;
}

/* toggle + spacer */
.bl-layout-shop .bl-cat-toggle,
.bl-layout-shop .bl-cat-toggle-spacer{
  flex: 0 0 26px !important;
  width: 26px !important;
  height: 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.bl-layout-shop .bl-cat-toggle-spacer{
  visibility: hidden !important;
}

/* toggle button hard reset */
.bl-layout-shop .bl-cat-toggle{
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 0 !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  position: relative !important;
  opacity: 0.75 !important;
}

/* kill any other pseudo icon sources */
.bl-layout-shop .bl-cat-toggle::after{
  content: none !important;
  display: none !important;
}

/* the ONE icon we want */
.bl-layout-shop .bl-cat-toggle::before{
  content: ">" !important;
  font-size: 18px !important;
  line-height: 1 !important;
  display: inline-block !important;
  transform: rotate(0deg);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

/* open -> down */
.bl-layout-shop .bl-cat-tree-item.is-open > .bl-cat-row .bl-cat-toggle::before{
  transform: rotate(90deg);
}

.bl-layout-shop .bl-cat-toggle:hover{
  opacity: 1 !important;
}

/* child lists: indent + guide line */
.bl-layout-shop .bl-cat-tree-level-2,
.bl-layout-shop .bl-cat-tree-level-3{
  margin: 5px 0 0 0 !important;
  padding-left: 14px !important;
  border-left: 1px solid rgba(0,0,0,0.10) !important;
}

/* hide children unless open */
.bl-layout-shop .bl-cat-tree-item:not(.is-open) > .bl-cat-tree{
  display: none !important;
}

/* top level dividers full width */
.bl-layout-shop .bl-cat-tree-level-1 > .bl-cat-tree-item > .bl-cat-row{
  border-bottom: 1px solid #006a9b !important;
}

/* Show the toggle ONLY for items that have children */
.bl-layout-shop .bl-cat-tree-item:not(.has-children) > .bl-cat-row .bl-cat-toggle{
  display: none !important;
}

/* Keep alignment calm: show spacer only when no children */
.bl-layout-shop .bl-cat-tree-item.has-children > .bl-cat-row .bl-cat-toggle-spacer{
  display: none !important;
}
.bl-layout-shop .bl-cat-tree-item:not(.has-children) > .bl-cat-row .bl-cat-toggle-spacer{
  display: inline-flex !important;
}

/* -----------------------------------------
   C) MOBILE CATEGORY DROPDOWN (details/summary)
   -> nur falls du das mobile extra Divi Code Modul nutzt
   ----------------------------------------- */

/* Remove default marker */
.bl-layout-shop details.bl-mobile-cat > summary{
  list-style: none !important;
}
.bl-layout-shop details.bl-mobile-cat > summary::-webkit-details-marker{
  display: none !important;
}

/* DESKTOP: Panel immer sichtbar, Summary aus */
@media (min-width: 981px){
  .bl-layout-shop details.bl-mobile-cat > summary.bl-mobile-cat-toggle{
    display: none !important;
  }
  .bl-layout-shop details.bl-mobile-cat > .bl-mobile-cat-panel{
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* MOBILE: Panel scrollbar statt "rauslaufen" */
@media (max-width: 980px){
  .bl-layout-shop details.bl-mobile-cat > summary.bl-mobile-cat-toggle{
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    border: 1px solid var(--bl-border) !important;
    border-radius: var(--bl-radius) !important;
    background: #fff !important;
    font-weight: 700 !important;
    cursor: pointer !important;
  }

  .bl-layout-shop details.bl-mobile-cat > summary.bl-mobile-cat-toggle::after{
    content: "▾" !important;
    font-size: 16px !important;
    line-height: 1 !important;
    opacity: .85 !important;
    transition: transform .15s ease !important;
  }

  .bl-layout-shop details.bl-mobile-cat[open] > summary.bl-mobile-cat-toggle::after{
    transform: rotate(180deg);
  }

  .bl-layout-shop details.bl-mobile-cat > .bl-mobile-cat-panel{
    display: none !important;
    margin-top: 8px !important;
    padding: 8px 10px !important;
    border: 1px solid var(--bl-border) !important;
    border-radius: var(--bl-radius) !important;
    background: #fff !important;
    max-height: 60vh !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .bl-layout-shop details.bl-mobile-cat[open] > .bl-mobile-cat-panel{
    display: block !important;
  }
}

/* =========================================================
   GLOBAL PADDING – Header & Body (Shop-Kontext)
   ========================================================= */

/* Desktop */
@media (min-width: 981px) {

  /* Header */
  body.bl-layout-shop .et-l--header,
  body.bl-layout-shop header {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Main content wrapper */
  body.bl-layout-shop .et-l--body,
  body.bl-layout-shop main,
  body.bl-layout-shop .et_pb_section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Tablet */
@media (max-width: 980px) and (min-width: 601px) {

  body.bl-layout-shop .et-l--header,
  body.bl-layout-shop header {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.bl-layout-shop .et-l--body,
  body.bl-layout-shop main,
  body.bl-layout-shop .et_pb_section {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Mobile */
@media (max-width: 600px) {

  body.bl-layout-shop .et-l--header,
  body.bl-layout-shop header {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.bl-layout-shop .et-l--body,
  body.bl-layout-shop main,
  body.bl-layout-shop .et_pb_section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Optional: auch “Zurücksetzen” Link ausblenden */
.bl-layout-shop .bl-product-hero .variations_form .reset_variations {
  display: none !important;
}

/* =========================================================
   PRODUCT: Variable products – prevent duplicate dynamic price
   We keep the price at the top (.bl-product-price)
   and hide Woo's variation price block inside the form.
   ========================================================= */

/* Woo Variation-Ausgabe im Formular ausblenden (Preis/Verfügbarkeit/Description) */
.bl-layout-shop .bl-product-cta form.variations_form .single_variation,
.bl-layout-shop .bl-product-cta form.variations_form .woocommerce-variation {
  display: none !important;
}

/* Reset-Link optional ausblenden */
.bl-layout-shop .bl-product-cta form.variations_form .reset_variations{
  display:none !important;
}

/* Sicherheitsnetz: falls Woo den Preis als .price irgendwo im Variationsblock rendert */
.bl-layout-shop .bl-product-variants .single_variation .price {
  display: none !important;
}

/* Etwas Luft: Dropdown + Button sauber */
.bl-layout-shop .bl-product-variants .variations {
  margin-bottom: 10px;
}

/* CTA container */
.bl-layout-shop .bl-product-cta,
.bl-layout-shop .bl-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Woo add-to-cart form in a row */
.bl-layout-shop .bl-product-cta form.cart {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
}

/* Quantity looks aligned */
.bl-layout-shop .bl-product-cta form.cart .quantity {
  margin: 0 !important;
}

/* Both buttons same baseline */
.bl-layout-shop .bl-product-cta .single_add_to_cart_button,
.bl-layout-shop .bl-product-cta .bl-offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px !important;
  line-height: 38px !important;
  border-radius: 6px;
}

/* kill Divi arrow pseudo element inside buttons */
.bl-layout-shop .bl-product-cta a.et_pb_button:after,
.bl-layout-shop .bl-product-cta .button:after {
  display: none !important;
  content: none !important;
}

.bl-layout-shop .bl-product-cta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.bl-layout-shop .bl-product-cta form.cart{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 !important;
}

.bl-layout-shop .bl-product-cta form.cart .quantity{
  margin:0 !important;
}

.bl-layout-shop .bl-product-cta .single_add_to_cart_button,
.bl-layout-shop .bl-product-cta .bl-offer-btn,
.bl-layout-shop .bl-product-cta a.button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:38px;
  line-height:38px !important;
  padding:0 14px !important;
  border-radius:6px;
  margin:0 !important;
}

/* Divi Hover-Arrow sicher killen */
.bl-layout-shop .bl-product-cta a:after,
.bl-layout-shop .bl-product-cta button:after{
  content:none !important;
  display:none !important;
}

/* =========================================================
   PRODUCT HERO: Ordnung für Variation + CTA
   ========================================================= */

/* Der rechte Meta-Block bekommt klare vertikale Struktur */
.bl-layout-shop .bl-product-hero-meta{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* Variation-Block: Label + Dropdown in einer Linie */
.bl-layout-shop .bl-product-variants{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  flex-wrap:wrap;
  margin:0 !important;
}

.bl-layout-shop .bl-product-variants label{
  font-weight:700;
  margin:0 !important;
  min-width:110px; /* damit "Ausführung" schön stabil ist */
}

/* Dropdown optisch passend */
.bl-layout-shop .bl-product-variants select{
  height:38px;
  padding:0 10px;
  border-radius:6px;
  max-width:320px;
}

/* CTA-Block: alles in eine gemeinsame Reihe */
.bl-layout-shop .bl-product-cta,
.bl-layout-shop .bl-product-cta .bl-cta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin:0 !important;
}

/* Woo cart form (bei simple & variable) immer als Inline-Flex */
.bl-layout-shop .bl-product-cta form.cart{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  margin:0 !important;
  padding:0 !important;
}

/* Quantity: kein Eigenleben */
.bl-layout-shop .bl-product-cta form.cart .quantity{
  margin:0 !important;
}

/* Buttons: gleiche Höhe + gleiche Baseline */
.bl-layout-shop .bl-product-cta .single_add_to_cart_button,
.bl-layout-shop .bl-product-cta .bl-offer-btn,
.bl-layout-shop .bl-product-cta a.button,
.bl-layout-shop .bl-product-cta button.button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:38px !important;
  line-height:38px !important;
  padding:0 14px !important;
  border-radius:6px !important;
  margin:0 !important;
}

/* Angebotsbutton NICHT als Block mit riesigem Innenabstand */
.bl-layout-shop .bl-product-cta .bl-offer-btn{
  white-space:nowrap;
}

/* Divi Pfeil / After-Elemente wirklich weg */
.bl-layout-shop .bl-product-cta a:after,
.bl-layout-shop .bl-product-cta button:after{
  content:none !important;
  display:none !important;
}

/* =========================================================
   PRODUCT CTA: Add-to-cart + Offer Button in one row
   ========================================================= */

/* CTA wrapper */
.bl-layout-shop .bl-product-cta{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  flex-wrap:wrap !important;
  margin:0 !important;
}

/* Woo add-to-cart form behaves like inline row */
.bl-layout-shop .bl-product-cta form.cart{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  margin:0 !important;
  padding:0 !important;
}

/* quantity spacing */
.bl-layout-shop .bl-product-cta form.cart .quantity{
  margin:0 !important;
}

/* --- Unified button style (Cart + Offer) --- */
.bl-layout-shop .bl-product-cta .single_add_to_cart_button,
.bl-layout-shop .bl-product-cta .button.single_add_to_cart_button,
.bl-layout-shop .bl-product-cta a.bl-offer-btn,
.bl-layout-shop .bl-product-cta a.button.bl-offer-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  height:38px !important;
  line-height:38px !important;
  padding:0 14px !important;

  border-radius:5px !important;
  text-decoration:none !important;

  background:#006a9b !important; /* Blue Level Blau – wenn du anderes willst, sag kurz */
  color:#fff !important;

  border:1px solid #006a9b !important;
  box-shadow:none !important;
}

/* hover */
.bl-layout-shop .bl-product-cta .single_add_to_cart_button:hover,
.bl-layout-shop .bl-product-cta a.bl-offer-btn:hover{
  background-color: #2980b9 !important;
}

.woocommerce-page button.button:hover{
  color:#0068AB !important;
}

/* remove weird pseudo arrows */
.bl-layout-shop .bl-product-cta a:after,
.bl-layout-shop .bl-product-cta button:after{
  content:none !important;
  display:none !important;
}

/* CTA: Woo Form + Buttons sauber in einer Linie */
.bl-layout-shop .bl-product-cta .cart,
.bl-layout-shop .bl-cta .cart{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  flex-wrap:wrap !important;
}

.bl-layout-shop .bl-product-cta .quantity,
.bl-layout-shop .bl-product-cta button.single_add_to_cart_button{
  float:none !important;
  margin:0 !important;
}

.bl-layout-shop .bl-offer-inline{
  display:inline-flex !important;
  align-items:center !important;
}

/* Einheitlicher Buttonstyle (Cart + Offer) */
.bl-layout-shop .bl-product-cta .single_add_to_cart_button,
.bl-layout-shop .bl-product-cta a.bl-offer-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:38px !important;
  line-height:38px !important;
  padding:0 14px !important;
  background:#006a9b !important;
  border:1px solid #006a9b !important;
  color:#fff !important;
  text-decoration:none !important;
}

/* Divi/Woo Pfeile killen */
.bl-layout-shop .bl-product-cta a:after,
.bl-layout-shop .bl-product-cta button:after{
  content:none !important;
  display:none !important;
}


/* =========================================================
   FIX: Divi wraps shortcodes in <p> (block/full width) -> stacking
   ========================================================= */

/* Mach die unmittelbaren Kinder der CTA wirklich "inline" */
/* CTA Container */
.bl-product-cta {
  display: flex;
  justify-content: flex-start; /* 👉 linksbündig */
  gap: 10px; /* Abstand zwischen Buttons */

  margin-top: 8px;   /* 🔽 weniger nach oben */
  margin-bottom: 18px; /* 🔼 mehr nach unten */
}

.bl-product-cta .et_pb_button,
.bl-product-cta a.button {
  margin-left: 0 !important;
}

.bl-product-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Divi packt oft jedes Shortcode-Ergebnis in <p> -> das sprengt dir die Reihe */
.bl-product-cta > p {
  margin: 0 !important;
  padding: 0 !important;
  display: contents !important; /* macht das <p> "unsichtbar" im Layout */
}

/* Sicherheit: falls Divi statt <p> noch <div> / <span> drumherum legt */
.bl-product-cta > div,
.bl-product-cta > span {
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto !important;
  width: auto !important;
}

/* Woo Add-to-cart Form nicht auf 100% */
.bl-product-cta form.cart {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  flex: 0 0 auto !important;
}

/* Qty + Buttons immer gleich hoch */
.bl-product-cta .quantity,
.bl-product-cta .quantity input.qty,
.bl-product-cta a,
.bl-product-cta button,
.bl-product-cta .button {
  height: 38px !important;
  line-height: 38px !important;
  margin: 0 !important;
}

/* Buttons als inline-flex, niemals full width */
.bl-product-cta a,
.bl-product-cta button,
.bl-product-cta .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  padding: 0 14px !important;
  white-space: nowrap !important;
}

.bl-cta-cart form.cart {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  margin: 0 !important;
  padding: 0 !important;
}

.bl-cta-cart .quantity {
  margin: 0;
}

.bl-cta-cart button {
  margin-left: 0 !important;
}

.bl-offer-inline {
  display: inline-flex;
}



/* Divi Pfeil/After weg */
.bl-product-cta a:after,
.bl-product-cta button:after {
  content: none !important;
  display: none !important;
}


/* ================================
   Downloads – Produktdetails (kompakt)
================================ */

.bl-downloads {
  margin-top: 0px;
}

/* Kategorie-Block */
.bl-download-category {
  margin-bottom: 14px;
}

/* Kategorie-Titel */
.bl-download-category-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
padding-bottom: 0px !important;
  color: #222;
}

/* Liste */
.bl-download-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Einzelner Download */
.bl-download-item {
  margin-bottom: 4px;
}

/* Link */
.bl-download-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
  color: #0068AB;
}

.bl-download-item a:hover {
  text-decoration: underline;
}

/* Icons */
.bl-download-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.bl-icon-pdf {
  background-image: url('/wp-content/uploads/icons/icon-pdf.svg');
}

.bl-icon-docx {
  background-image: url('/wp-content/uploads/icons/icon-doc.svg');
}

/* ================================
   Technische Daten – kompakte Liste
================================ */

.bl-techdata ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bl-techdata li {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.35;
  color: #222;
}

.bl-techdata li strong {
  font-weight: 600;
}

/* ================================
   Produktbeschreibung – Abstände
================================ */

.bl-description p {
  margin: 0 0 12px 0;
}

.bl-description ul {
  margin: 8px 0 12px 18px;
  padding: 0;
}

.bl-description li {
  margin-bottom: 6px;
}

.bl-description ul li:last-child {
  margin-bottom: 0;
}

/* ================================
   Produktbeschreibung – kompakte Listen
================================ */

.bl-description ul {
  margin: 8px 0 12px 18px;
  padding: 0;
}

.bl-description li {
  line-height: 1.32 !important;
  margin-bottom: 4px;
  font-size: 14px;
}

.bl-description li:last-child {
  margin-bottom: 0;
}

.bl-product-accessories {
  margin-top: 60px;
}

.bl-accessory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.bl-accessory-item img {
  width: 100%;
  height: auto;
  display: block;
}

.bl-accessory-title {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
}

/* ================================
   Zubehör – kompakte Darstellung
================================ */

.bl-accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 10px;
}

.bl-accessory-item {
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  padding: 8px;
  background: #fafafa;
  transition: box-shadow 0.2s ease;
}

.bl-accessory-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.bl-accessory-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Bild deutlich kleiner */
.bl-accessory-item img {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: 0 auto 6px;
  display: block;
}

/* Titel kompakt */
.bl-accessory-title {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 4px;
  color: #222;
}

/* Preis ruhig & kleiner */
.bl-accessory-price {
  font-size: 14px;
  color: #444;
}

/* Preisbox aus dem großen Produkt entschärfen */
.bl-accessory-price .bl-price-box {
  padding: 0;
}

.bl-accessory-price .bl-price-incl,
.bl-accessory-price .bl-price-excl {
  font-size: 12px;
  line-height: 1.25;
padding-bottom: 5px !important;
font-weight: 500px;
}

/* ================================
   Zubehör – Grid & Cards
================================ */

.bl-accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 12px;
  padding-top: 10px;
}

.bl-accessory-item {
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  padding: 10px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Bild */
.bl-accessory-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Titel */
.bl-accessory-title {
  font-size: 14px;
  line-height: 1.3;
  color: #222;
  margin-top: 4px;
}

/* Preis */
.bl-accessory-price {
  font-size: 14px;
  line-height: 1.3;
}

.bl-accessory-price .bl-price-box {
  margin: 0;
}

.bl-accessory-price p {
  margin: 0;
}

/* ================================
   Zubehör – Aktionen
================================ */

.bl-accessory-actions {
  margin-top: auto; /* Button nach unten drücken */
}

.bl-accessory-actions .button {
  padding: 8px 10px;
  font-size: 14px !important;
  border-radius: 3px;
  text-align: center;
}

/* Warenkorb-Button dezenter als Haupt-CTA */
.bl-accessory-actions .add_to_cart_button {
  background: #f4f6f8;
  color: #0068AB;
  border: 1px solid #0068AB;
}

.bl-accessory-actions .add_to_cart_button:hover {
  background: #0068AB;
  color: #fff;
}

/* Fallback-Link */
.bl-accessory-more {
  background: #eee;
  color: #222;
}

.woocommerce-page a.button:hover::after {
display: none !important;
}

.woocommerce a.button:hover{
color: #2980b9 !important;
padding: .3em 1em !important;
}

/* ================================
   Verwandte Produkte
================================ */

.bl-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.bl-related-item {
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 10px;
  background: #fafafa;
  text-align: center;
}

.bl-related-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.bl-related-title {
  font-size: 14px;
  line-height: 1.3;
  margin-top: 6px;
  color: #222;
}

.bl-related-price {
  font-size: 14px;
  margin-top: 4px;
}

.bl-related-item a {
  text-decoration: none;
  color: inherit;
}

.bl-related-item:hover {
  border-color: #0068AB;
}

/* Warenkorb-Button */
.single_add_to_cart_button {
  height: 40px;
  padding: 0 18px;
  white-space: nowrap;
}

/* Angebotsbutton */
.bl-offer-btn {
  height: 40px;
  line-height: 40px;
  padding: 0 18px;
  white-space: nowrap;
}

/* Mobile: alles untereinander */
@media (max-width: 640px) {
  .woocommerce-variation-add-to-cart {
    flex-direction: column;
    align-items: stretch;
  }

  .single_add_to_cart_button,
  .bl-offer-btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   DIVI FRONTEND BUILDER FIX
   → nichts ausblenden, wenn der Builder aktiv ist
   ========================================================= */

/* Divi Frontend Builder erkennen */
body.et-fb,
body.et_fb_enabled {

  /* Page- & Product-Content IMMER sichtbar */
  .bl-main-pagecontent,
  .bl-main-productcontent,
  .bl-shop-page-content,
  .bl-shop-product-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* Akkordeons im Builder immer offen */
  .bl-accordion-content {
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* Sicherheitsnetz: nichts per is-closed verstecken */
  .bl-accordion-item.is-closed .bl-accordion-content {
    display: block !important;
  }
}

/* =========================================
   DIVI BUILDER GUARD – NICHTS AUSBLENDEN
   ========================================= */

/* Backend Builder */
body.et-fb,
body.et_fb_enabled,
body.et-fb #et-boc,
body.et_fb_enabled #et-boc {
  display: block !important;
}

/* Alle Divi-Sections / Rows / Modules sichtbar */
body.et-fb .et_pb_section,
body.et-fb .et_pb_row,
body.et-fb .et_pb_column,
body.et-fb .et_pb_module,
body.et_fb_enabled .et_pb_section,
body.et_fb_enabled .et_pb_row,
body.et_fb_enabled .et_pb_column,
body.et_fb_enabled .et_pb_module {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Eigene Produkt-/Static-Guards neutralisieren */
body.et-fb [class*="bl-"],
body.et_fb_enabled [class*="bl-"] {
  display: block !important;
}

/* =====================================================
   DIVI SAFE MODE – Kontext-CSS nur im echten Frontend
   ===================================================== */

/* Sobald Divi aktiv ist → KEINE Kontext-Ausblendung */
body.et-fb *,
body.et_fb_enabled * {
  display: revert !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ============================
   AB HIER: NUR FRONTEND
   ============================ */

/* Produkt-spezifische Bereiche NUR im echten Frontend */
body:not(.et-fb):not(.et_fb_enabled):not(.single-product) .bl-only-product {
  display: none;
}

/* Statische Inhalte NICHT auf Produktseiten */
body:not(.et-fb):not(.et_fb_enabled).single-product .bl-only-static {
  display: none;
}

/* =====================================================
   CTA-STRUKTUR STABILISIEREN (wegen doppeltem Wrapper)
   ===================================================== */

.bl-product-cta.bl-cta-cart,
.bl-product-cta .bl-cta-cart,
.bl-product-cta form.variations_form {
  display: block !important;
}

/* =====================================================
   VARIATION FIX – Label & Dropdown sauber nebeneinander
   ===================================================== */

.bl-cta-cart form.variations_form table.variations {
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  border: 0 !important;
}

.bl-cta-cart form.variations_form table.variations tr {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.bl-cta-cart form.variations_form table.variations th.label {
  padding: 0 !important;
  margin: 0 !important;
  white-space: nowrap !important;
  font-weight: 600;
}

.bl-cta-cart form.variations_form table.variations td.value {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 0 !important;
}

.bl-cta-cart form.variations_form table.variations select {
  min-width: 220px !important;
  max-width: 320px !important;
  height: 36px !important;
}

.bl-cta-cart form.variations_form .reset_variations {
  margin-left: 6px !important;
}

/* CTA-Inhalt IMMER horizontal */
.bl-cta-cart .woocommerce-variation-add-to-cart {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
}

/* =====================================================
   SHOP LAYOUT – FINAL & KONFLIKTFREI
   ===================================================== */

/* =====================================================
   ≥ 1600px – 3 Spalten
   ===================================================== */
@media (min-width: 1600px) {

  .bl-layout-shop .et_pb_row.bl-shop-layout {
    display: grid !important;
    grid-template-columns: 272px minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
  }

  .bl-layout-shop .bl-zone-right {
    display: block !important;
  }

  /* CTA nebeneinander */
  .bl-layout-shop .woocommerce-variation-add-to-cart,
  .bl-layout-shop .bl-product-cta form.cart {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px;
  }

  .bl-layout-shop .bl-product-hero {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 1fr; /* Erste Spalte mindestens 300px breit */
    gap: 22px;
    align-items: start;
}

}



/* =====================================================
   1200–1599px – 2 Spalten, rechte Spalte UNTEN
   ===================================================== */
@media (min-width: 1200px) and (max-width: 1599px) {

  .bl-layout-shop .et_pb_row.bl-shop-layout {
    display: grid !important;
    grid-template-columns: 272px minmax(0, 1fr);
    gap: 28px;
  }

  .bl-layout-shop .bl-zone-right {
    grid-column: 1 / -1;
    margin-top: 40px;
  }

  /* CTA nebeneinander */
  .bl-layout-shop .woocommerce-variation-add-to-cart,
  .bl-layout-shop .bl-product-cta form.cart {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px;
  }

.bl-layout-shop .bl-product-hero {
    display: grid;
    grid-template-columns: 272px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

}


/* =====================================================
   981–1199px – CTA UNTER Ausführung, Buttons untereinander
   ===================================================== */
@media (min-width: 981px) and (max-width: 1199px) {

  .bl-layout-shop .et_pb_row.bl-shop-layout {
    display: grid !important;
    grid-template-columns: 272px minmax(0, 1fr);
    gap: 24px;
  }

  .bl-layout-shop .bl-zone-right {
    grid-column: 1 / -1;
    margin-top: 32px;
  }

  /* CTA untereinander */
  .bl-layout-shop .woocommerce-variation-add-to-cart,
  .bl-layout-shop .bl-product-cta form.cart {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px;
  }

  .bl-layout-shop .bl-product-cta button,
  .bl-layout-shop .bl-product-cta a {
    width: 100% !important;
    justify-content: center;
  }



}

/* =====================================================
   ≤ 980px – Mobile
   ===================================================== */
@media (max-width: 980px) {

  .bl-layout-shop .woocommerce-variation-add-to-cart,
  .bl-layout-shop .bl-product-cta form.cart {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px;
  }

  .bl-layout-shop .bl-product-cta button,
  .bl-layout-shop .bl-product-cta a {
    width: 100% !important;
    justify-content: center;
  }

  

}

/* =====================================================
   MENGE AUF PRODUKTSEITEN AUSBLENDEN (simple + variable)
   ===================================================== */

/* Simple Products */
.bl-layout-shop form.cart .quantity {
  display: none !important;
}

/* Variable Products */
.bl-layout-shop .woocommerce-variation-add-to-cart .quantity {
  display: none !important;
}

/* =====================================================
   OVERRIDE: Shop Layout – Right Column erst ab 1600px
   (überschreibt das bestehende @media(min-width:981px) 3-col Grid)
   ===================================================== */

/* 981–1599px: 2 Spalten + Right unten (Grid Areas) */
@media (min-width: 981px) and (max-width: 1599px) {

  .bl-layout-shop .et_pb_row.bl-shop-layout{
    display: grid !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
    grid-template-areas:
      "left main"
      "right right";
    gap: 28px !important;
    align-items: start !important;
  }

  /* Divi Column-Floats killen (wichtig gegen Overlap) */
  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column{
    float: none !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-left  { grid-area: left !important; }
  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-main  { grid-area: main !important; }
  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-right { grid-area: right !important; }

  /* Right unten etwas Luft */
  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-right{
    margin-top: 32px !important;
  }
}

/* ≥1600px: echtes 3-Spalten-Layout */
@media (min-width: 1600px) {

  .bl-layout-shop .et_pb_row.bl-shop-layout{
    display: grid !important;
    grid-template-columns: 300px minmax(0, 1fr) 320px !important;
    grid-template-areas: "left main right";
    gap: 32px !important;
    align-items: start !important;
  }

  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column{
    float: none !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-left  { grid-area: left !important; }
  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-main  { grid-area: main !important; }
  .bl-layout-shop .et_pb_row.bl-shop-layout > .et_pb_column.bl-zone-right { grid-area: right !important; margin-top: 0 !important; }
}

/* =====================================================
   CTA – Tablet: Buttons unter Ausführung (wie 600px)
   ===================================================== */

/* Menge überall ausblenden (simple + variable) */
.bl-layout-shop form.cart .quantity,
.bl-layout-shop .woocommerce-variation-add-to-cart .quantity{
  display: none !important;
}

/* 981–1199: Buttons untereinander & volle Breite */
@media (min-width: 981px) and (max-width: 1199px){

  /* Wichtig: Wrapper neutralisieren, damit nichts "nebendran" landet */
  .bl-layout-shop .bl-product-cta,
  .bl-layout-shop .bl-product-cta .bl-cta,
  .bl-layout-shop .bl-product-cta .bl-cta-cart,
  .bl-layout-shop .bl-cta-cart,
  .bl-layout-shop form.variations_form{
    display: block !important;
  }

  /* Add-to-cart Bereich: untereinander */
  .bl-layout-shop .woocommerce-variation-add-to-cart,
  .bl-layout-shop .bl-product-cta form.cart{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin-top: 10px !important;
  }

  /* Buttons full width */
  .bl-layout-shop .woocommerce-variation-add-to-cart button,
  .bl-layout-shop .woocommerce-variation-add-to-cart a,
  .bl-layout-shop .bl-product-cta form.cart button,
  .bl-layout-shop .bl-product-cta form.cart a{
    width: 100% !important;
    justify-content: center !important;
  }
}

/* =====================================================
 Design der Archivseiten für Produkte 
   ===================================================== */

/* SEO Header im Shop NIE anzeigen */
.bl-layout-shop .bl-seo-header {
  display: none !important;
}

/* =====================================================
   HEADER SYSTEM – CLEAN & STABLE
   ===================================================== */

/* ---------------------------------
   BASE VARIABLES
--------------------------------- */
:root {
  --header-height: 96px;
  --header-height-sticky: 76px; /* ~20% kleiner */
}

    body.bl-layout-shop .et-l--header, body.bl-layout-shop header {
        padding-left: 0px;
        padding-right: 0px;
    }

/* ---------------------------------
   TOPBAR
--------------------------------- */
.bl-layout-shop .bl-shop-topbar {
  background: #2980b9 !important;
  color: #fff !important;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  width: 100% !important;
}

.bl-layout-shop .bl-topbar-inner {
  padding: 5px 0px;
  text-align: right;
}

.bl-layout-shop .bl-topbar-inner a {
  color: #fff !important;
  margin-right: 20px;
  text-decoration: none;
  opacity: 0.95;
}

.bl-layout-shop .bl-topbar-inner a:last-child {
  margin-right: 0;
}

.et-db #et-boc .et-l .bl-shop-topbar .et_pb_row {
  width: 100% !important;
  max-width: 100% !important;
  padding-right: 5px;
}

.archive .bl-shop-topbar {
  padding-right: 15px !important;
}

.bl-shop-topbar .et_pb_row[style] {
  width: 100% !important;
  max-width: 100% !important;
}

/* ---------------------------------
   HEADER BASE
--------------------------------- */
.bl-layout-shop .bl-shop-header {
  height: var(--header-height);
  background: #fff;
  transition: height 0.25s ease;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* Row = Layout Engine */
.bl-layout-shop .bl-shop-header .et_pb_row {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Row = Layout Engine */
.bl-layout-shop .bl-shop-header .et_pb_row {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Menü leicht nach unten */
.bl-layout-shop .et_pb_menu {
  transform: translateY(7px);
}

/* ---------------------------------
   LOGO
--------------------------------- */
/* Logo – smooth scaling */
#shop-logo img {
  max-width: 60px;
  transform: scale(1);
  transition: 
    max-height 0.25s ease,
    transform 0.25s ease;
}

.bl-layout-shop.bl-scrolled #shop-logo img {
  max-height: 44px;
  transform: scale(0.95);
  transition: max-height 0.25s ease;
}

/* ---------------------------------
   SEARCH
--------------------------------- */
.bl-layout-shop .et_pb_column_2 {
  flex: 1; /* nimmt verfügbaren Platz */
}

.bl-layout-shop .et_pb_searchform {
  width: 100%;
}

.bl-layout-shop .et_pb_searchform input.et_pb_s {
  height: 40px;
  width: 100%;
  transition: height 0.25s ease;
}

/* Standard */
.bl-layout-shop .et_pb_searchform input.et_pb_s {
  height: 40px;
  font-size: 14px;
}

/* Sticky kompakter */
.bl-layout-shop.bl-scrolled .et_pb_searchform input.et_pb_s {
  height: 32px;
  font-size: 13px;
}

.bl-layout-shop .et_pb_searchsubmit {
  height: 40px;
}

.bl-layout-shop.bl-scrolled .et_pb_searchsubmit {
  height: 32px;
}

.bl-layout-shop .bl-shop-header .et_pb_column {
  align-items: center;
}

/* Search Button sauber zentrieren */
.bl-layout-shop .et_pb_searchsubmit {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 40px;
  padding: 0 16px;

  line-height: 1; /* 🔥 wichtig */
}

/* Sticky */
.bl-layout-shop.bl-scrolled .et_pb_searchsubmit {
  height: 32px;
}

/* Divi Padding reset (nur vertikal) */
.bl-layout-shop .et_pb_search input.et_pb_s,
.bl-layout-shop .et_pb_search input.et_pb_searchsubmit {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Input */
.bl-layout-shop .et_pb_searchform input.et_pb_s {
  height: 40px;
  padding: 0 12px; /* 👉 links/rechts wieder Abstand */
}

/* Button */
.bl-layout-shop .et_pb_searchsubmit {
  height: 40px;
  padding: 0 16px; /* 👉 Abstand zurück */
  line-height: 40px;
}

.bl-layout-shop.bl-scrolled .et_pb_searchform input.et_pb_s {
  height: 32px;
}

.bl-layout-shop.bl-scrolled .et_pb_searchsubmit {
  height: 32px;
  line-height: 32px;
}

/* ---------------------------------
   STICKY STATE
--------------------------------- */

/* Header fixed */
.bl-layout-shop.bl-scrolled .bl-shop-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height-sticky);
  z-index: 1003;
}

/* Topbar ausblenden */
.bl-layout-shop.bl-scrolled .bl-shop-topbar {
  transform: translateY(-100%);
  opacity: 0;
}

/* Logo kleiner */
.bl-layout-shop.bl-scrolled #shop-logo img {
  max-width: 44px;
}

/* Suche kompakter */
.bl-layout-shop.bl-scrolled .et_pb_searchform input.et_pb_s {
  height: 32px;
}

/* Alle Zonen sichtbar */
.bl-layout-shop .bl-zone-left,
.bl-layout-shop .bl-zone-main,
.bl-layout-shop .bl-zone-right {
  display: block;
}

.bl-layout-shop .bl-shop-header {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.bl-layout-shop .bl-seo-trockenschrank-header {
  display: none !important;
}

.bl-layout-shop .bl-shop-footer { display: block !important; }
.bl-layout-shop .bl-seo-trockenschrank-footer { display: none !important; }

/* Divi Row Reset für Shop-Layouts */
.bl-layout-shop .et_pb_row.bl-shop-layout,
.bl-layout-shop .et_pb_row.bl-archive-layout {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0;
  margin-right: 0;
}

/* Divi Row Reset für Shop-Header */
.bl-layout-shop .bl-shop-header .et_pb_row {
  width: 100% !important;
  max-width: none !important;
}

/* =========================================
   BLUE LEVEL – COMPACT 2-COLUMN CONFIG
========================================= */

/* Konfig Block komplett linksbündig */
.bl-product-config {
    width: 100%;
    max-width: 100%;
    margin: 0 0 0 0;
    padding: 5px 0 0 0;
}

/* Jede Optionszeile als 2-Spalten Layout */
.bl-config-group {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

/* Labels links */
.bl-config-group label {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #333;
}

/* Select rechts */
.bl-config-group select {
    width: 100%;
    padding: 6px 10px;
    font-size: 14px;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: #fafafa;
    transition: all 0.15s ease;
}

/* Hover */
.bl-config-group select:hover {
    border-color: #999;
    background: #fff;
}

/* Focus */
.bl-config-group select:focus {
    border-color: #2980b9;
    box-shadow: 0 0 0 1px rgba(34,113,177,0.15);
    background: #fff;
    outline: none;
}

/* Quantity kompakter */
.cart .quantity {
    margin: 10px 0 8px 0;
}

/* Buttons kompakter */
.single_add_to_cart_button,
.bl-offer-inline .button {
    padding: 8px 16px;
    font-size: 14px;
}

/* Abstand zwischen Buttons */
.single_add_to_cart_button {
    margin-right: 8px;
}

/* Cart Layout sauber */
.cart {
    display: flex;
    flex-direction: column;
}

/* =========================================
   HERO META SPACING FIX
========================================= */

/* Vertikale Abstände im rechten Bereich reduzieren */
.bl-product-hero-meta {
    gap: 0px !important;
}

/* Standard-Abstand zwischen den Elementen entfernen */
.bl-product-hero-meta > * {
    margin-bottom: 0px !important;
}

/* Preisblock kompakter */
.bl-product-price {
    margin-bottom: 0px !important;
}

/* Verfügbarkeitszeile enger */
.bl-product-availability {
    margin-top: 0px !important;
}

/* =====================================================
   PRODUCT CONFIG – MOBILE STACK (≤ 980px)
   ===================================================== */
@media (max-width: 1399px) {

  /* Optionsgruppe wieder vertikal: Label oben, Select darunter */
  .bl-product-config .bl-config-group{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 4px !important;
    margin-bottom: 12px !important;
  }

  .bl-product-config .bl-config-group label{
    margin: 0 0 4px 0 !important;
  }

  .bl-product-config .bl-config-group select{
    width: 100% !important;
  }
}

/* =====================================
   PRODUCT DETAIL ACCORDION (CLEAN FINAL)
===================================== */

.bl-product-details{
  max-width: 100%;
  margin-top: 10px;
  border-top: 1px solid #e5e5e5;
}

/* ITEM */
.bl-accordion-item{
  border-bottom: 1px solid #e5e5e5;
  padding-top: 10px;
  padding-bottom: 15px;
}

/* HEADER */
.bl-accordion-header{
  position: relative;
  padding-left: 0; /* wichtig */

  display: flex;
  align-items: center;

  justify-content: flex-start;
}

/* ICON absolut positioniert */
.bl-accordion-icon{
  position: absolute;
  left: -25px; /* 🔥 feinjustieren */
  top: 45%;
  transform: translateY(-50%);

  width: 16px;
  height: 16px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG */
.bl-accordion-icon svg{
  width: 14px;
  height: 14px;
  stroke: #333;
  stroke-width: 2;
  fill: none;

  transition: transform 0.2s ease;
}

/* geschlossen → */
.bl-accordion-item.is-closed .bl-accordion-icon svg{
  transform: rotate(0deg);
}

/* offen ↓ */
.bl-accordion-item:not(.is-closed) .bl-accordion-icon svg{
  transform: rotate(90deg);
}

.bl-accordion-header{
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* CONTENT */
.bl-accordion-content{
  line-height: 1.6;
}

/* Expanded */
.bl-accordion-item.is-preview.is-expanded .bl-accordion-content{
  max-height: 3000px;
  overflow: visible;
}

/* ===========================
   NORMAL ACCORDION
=========================== */

.bl-accordion-item:not(.is-preview) .bl-accordion-content{
  display: block;
  padding-bottom: 12px;
}

.bl-accordion-item:not(.is-preview).is-closed .bl-accordion-content{
  display: none;
}

.bl-accordion-item:not(.is-preview) .bl-accordion-toggle{
  display: none;
}

/* ===========================
   PREVIEW ACCORDION (FINAL)
=========================== */

.bl-accordion-item.is-preview .bl-accordion-content{
  max-height: 320px;
  overflow: hidden;
  position: relative;
  padding-bottom: 30px;
  transition: max-height 0.25s ease;
}

/* Fade */
.bl-accordion-fade{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 40%,
    rgba(255,255,255,0.9) 70%,
    rgba(255,255,255,1) 100%
  );

  z-index: 1;
  pointer-events: none;
}

.bl-accordion-item.is-open .bl-accordion-fade {
  display: none;
}

/* Toggle */
.bl-accordion-toggle{
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 2;
  pointer-events: auto;
  font-size: 14px;
  color: #2980b9;
  cursor: pointer;
}

/* Expanded */
.bl-accordion-item.is-preview.is-expanded .bl-accordion-content{
  max-height: 3000px;
  overflow: visible;
}

.bl-accordion-item.is-preview.is-expanded .bl-accordion-fade{
  background: none;
}

/* ===========================
   Woo Slider Styling
=========================== */
/* Woo Gallery in Hero: volle Breite, kein Float */
.bl-product-hero-image .woocommerce-product-gallery,
.bl-product-hero-image .woocommerce div.product div.images,
.bl-product-hero-image .woocommerce div.product .woocommerce-product-gallery {
  width: 100% !important;
  max-width: 90% !important;
  float: none !important;
  margin: 0 !important;
}

/* Flexslider/Viewport darf 100% sein – aber NICHT der Wrapper-Track */
.bl-product-hero-image .flex-viewport,
.bl-product-hero-image .flexslider {
  width: 100% !important;
  max-width: 100% !important;
}

/* Bilder sauber skalieren */
.bl-product-hero-image .woocommerce-product-gallery__image img,
.bl-product-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   THUMBNAILS MIT PFEILEN
=========================== */

.bl-product-hero-image {
  position: relative;
}

/* Wrapper für Thumb-Bereich */
.bl-product-hero-image .bl-thumb-nav-wrap {
  position: relative;
  margin-top: 14px;
  padding: 0 34px; /* Platz für Pfeile links/rechts */
}

/* eigentliche Thumbnail-Leiste */
.bl-product-hero-image .flex-control-thumbs {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 12px 6px 0; /* rechts etwas Luft */
  margin: 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.bl-product-hero-image .flex-control-thumbs::-webkit-scrollbar {
  display: none;
}

.bl-product-hero-image .flex-control-thumbs li {
  width: 64px !important;
  min-width: 64px !important;
  flex: 0 0 64px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bl-product-hero-image .flex-control-thumbs li:last-child {
  margin-right: 12px !important; /* letzte Thumb klebt nicht am Rand */
}

.bl-product-hero-image .flex-control-thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.85;
  transition: all 0.2s ease;
  display: block;
}

.bl-product-hero-image .flex-control-thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.bl-product-hero-image .flex-control-thumbs img.flex-active {
  opacity: 1;
}

/* Thumb-Pfeile */
.bl-product-hero-image .bl-thumb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.bl-product-hero-image .bl-thumb-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.bl-product-hero-image .bl-thumb-arrow.prev {
  left: 0;
}

.bl-product-hero-image .bl-thumb-arrow.next {
  right: 0;
}

/* Mehr Abstand beim Hero */
.bl-layout-shop .bl-product-hero {
  padding-bottom: 20px;
  padding-top: 30px;
}

/* ===============================
   SLIDER ARROWS (HOVER)
=============================== */

.bl-product-hero-image {
  position: relative;
}

/* Standard: unsichtbar */
.bl-product-hero-image .flex-direction-nav a {
  opacity: 0;
  transition: all 0.25s ease;
}

/* Beim Hover sichtbar */
.bl-product-hero-image:hover .flex-direction-nav a {
  opacity: 1;
}

/* Pfeil Styling */
.bl-product-hero-image .flex-direction-nav a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Position */
.bl-product-hero-image .flex-direction-nav .flex-prev {
  left: 12px !important;
}

.bl-product-hero-image .flex-direction-nav .flex-next {
  right: 12px !important;
}

.bl-product-hero-image .flex-direction-nav a:hover {
  transform: scale(1.1);
}

/* ===============================
   FIX ARROW CENTERING
=============================== */

.bl-thumb-arrow,
.bl-product-hero-image .flex-direction-nav a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  padding: 0 !important;
}

/* Pfeil selbst feinjustieren */
.bl-thumb-arrow::before,
.bl-product-hero-image .flex-prev::before,
.bl-product-hero-image .flex-next::before {
  display: block;
  line-height: 1;
}

.bl-arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(-1px); /* 🔥 optischer Sweet Spot */
}

/* ===============================
   REMOVE DEFAULT FLEXSLIDER ARROWS --> SVG Pfeile via JS nutzen
=============================== */

.bl-product-hero-image .flex-direction-nav a:before {
  content: none !important;
  display: none !important;
}

.bl-product-hero-image .flex-direction-nav a::before,
.bl-product-hero-image .flex-direction-nav a::after {
  content: none !important;
  display: none !important;
}

/* ===============================
   LIGHTBOX WHITE + WINDOW STYLE
=============================== */

.pswp__bg {
  background: #ffffff !important;
}

/* Close Button */
.pswp__button--close {
  color: #000 !important;
}

.bl-product-hero-image .flex-control-thumbs img {
  transition: all 0.2s ease;
}

.bl-product-hero-image .flex-control-thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ===============================
   FINAL ARROWS FIX (OVERRIDE)
=============================== */

/* Pfeile richtig positionieren */
.bl-product-hero-image .flex-direction-nav a {
  position: absolute !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  z-index: 999 !important;

  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;

  display: flex !important;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  /* TEXT AUS */
  font-size: 0 !important;
  color: transparent !important;
}

/* Hover */
.bl-product-hero-image:hover .flex-direction-nav a {
  opacity: 1;
}

/* Links */
.bl-product-hero-image .flex-direction-nav .flex-prev {
  left: 12px !important;
}

/* Rechts */
.bl-product-hero-image .flex-direction-nav .flex-next {
  right: 12px !important;
}

/* Icons statt Text */
.bl-product-hero-image .flex-prev::before {
  content: "‹";
  font-size: 18px;
  color: #000;
}

.bl-product-hero-image .flex-next::before {
  content: "›";
  font-size: 18px;
  color: #000;
}

/* ===============================
   FIX NAV CONTAINER POSITION
=============================== */

/* GANZER NAV CONTAINER über das Bild legen */
.bl-product-hero-image .flex-direction-nav {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* wichtig! */
  z-index: 20;
}

/* Buttons selbst klickbar machen */
.bl-product-hero-image .flex-direction-nav a {
  pointer-events: auto;
}

/* ===============================
   REMOVE BULLET POINTS FINAL
=============================== */

.bl-product-hero-image .flex-direction-nav {
  list-style: none !important;
}

.bl-product-hero-image .flex-direction-nav li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* Cart-Form immer volle Breite */
.bl-product-cta .cart {
  width: 100%;
}

/* Buttons links ausrichten */
.bl-product-cta .cart {
  justify-content: flex-start !important;
}

/* Falls flex-direction row ist, aber wir wollen sauber untereinander */
.bl-product-cta .cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* USP Toggle im gleichen Stil wie Accordion */
.bl-usps .bl-usps-toggle {
  background: none;
  border: 0;
  padding: 0;
  font-size: 14px;
  color: #2980b9;
  cursor: pointer;
  pointer-events: auto;
  font-weight: 400;
}

.bl-usps .bl-usps-toggle:hover {
  cursor: pointer !important;
}

/* WICHTIG: auf die Liste selbst */
.bl-usps ul.bl-bullets{
  position: relative;
}

/* Gradient nur wenn collapsed */
.bl-usps.is-collapsed ul.bl-bullets::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 50px;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(255,255,255,1)
  );

  pointer-events: none;
}

/* Beschreibung max Width */
.bl-description{
  max-width: 90ch;
}

/* =====================================
   ACCESSORIES SIDEBAR
===================================== */

.bl-accessories-sidebar{
  position: sticky;
  top:120px;
}

.bl-accessories-sidebar-title{
  font-size:16px;
  font-weight:600;
}

/* Card Layout */

.bl-accessory-sidebar-item{
  display:grid;
  grid-template-columns:70px 1fr;
  grid-template-areas:
    "img title"
    "img price"
    "img button";
  column-gap:14px;

  border:1px solid #e5e5e5;
  border-radius:3px;
  padding:14px;
  margin-bottom:14px;
  background:#fff;
}

/* Image */

.bl-accessory-sidebar-link img{
  grid-area:img;
  width:70px;
  height:auto;
}

/* Title */

.bl-accessory-sidebar-link{
  display:contents;
}

.bl-accessory-sidebar-title{
  grid-area:title;
  font-size:14px;
  line-height:1.35;
  margin-bottom:6px;
  color:#222;
}

/* Price */

.bl-accessory-sidebar-price .bl-price{
  grid-area:price;
  font-size:14px;
  font-weight:600;
  margin-bottom:10px;
}

/* Button */

.bl-accessory-sidebar-actions{
  grid-area:button;
}

.bl-accessory-sidebar-actions .button{
  display:inline-block;
  width:auto;
  font-size:13px !important;
  padding:6px 12px;
}

/* Sidebar Zubehör nur auf sehr grossen Screens */

@media (max-width: 1599px){

  .bl-accessories-sidebar{
    display:none;
  }

}

/* Neue Preisanzeige mit % Satz */
.bl-price-row {
  display: flex;
  gap: 6px;
  align-items: baseline;
}

/* =====================================
   Woo Breadcrumbs – NEW SHOP STYLE
===================================== */

.bl-domain-home .woocommerce-breadcrumb,
.bl-domain-home .et_pb_wc_breadcrumb {
    display:none !important;
}

.et_pb_wc_breadcrumb,
.woocommerce-breadcrumb {
    color:#767676;
    font-size: 14px;
}

.et_pb_wc_breadcrumb a,
.woocommerce-breadcrumb a {
    color:#767676 !important;
    text-decoration: none;
}

.et_pb_wc_breadcrumb a:hover,
.woocommerce-breadcrumb a:hover {
    text-decoration: none;
color:#0068AB !important;
}

/* =====================================
   CATEGORY TREE – NEW SHOP STYLE
===================================== */

/* Gesamtgröße etwas kompakter */
.bl-layout-shop .bl-cat-tree-wrap{
  font-size:13px;
  line-height:1.35;
  margin-top: -7px;
}

/* Zeile */
.bl-layout-shop .bl-cat-row{
  padding:6px 0 !important;
}

/* Link Styling */
.bl-layout-shop .bl-cat-link{
  color:#0068AB !important;
  font-weight:400;
  text-decoration:none !important;
  transition:color .15s ease;
}

/* Hover */
.bl-layout-shop .bl-cat-link:hover{
  color:#2980b9 !important;
  text-decoration:none !important;
}

/* Aktuelle Kategorie */
.bl-layout-shop .bl-cat-tree-item.is-current > .bl-cat-row .bl-cat-link{
  font-weight:600 !important;
  text-decoration:none !important;
}

/* Dünnere graue Trenner */
.bl-layout-shop .bl-cat-tree-level-1 > .bl-cat-tree-item > .bl-cat-row{
  border-bottom:1px solid #e6e6e6 !important;
}

/* Sublevel Guide Line */
.bl-layout-shop .bl-cat-tree-level-2,
.bl-layout-shop .bl-cat-tree-level-3{
  border-left:1px solid #eeeeee !important;
}

/* Toggle kleiner */
.bl-layout-shop .bl-cat-toggle,
.bl-layout-shop .bl-cat-toggle-spacer{
  width:18px !important;
  height:18px !important;
  flex:0 0 18px !important;
}

/* Toggle Icon kleiner */
.bl-layout-shop .bl-cat-toggle::before{
  font-size:13px !important;
}

/* Toggle Farbe etwas dezenter */
.bl-layout-shop .bl-cat-toggle{
  opacity:0.6;
}

.bl-layout-shop .bl-cat-toggle:hover{
  opacity:1;
}

/* Woo Produktgrid Title styling */
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
  padding: .5em 0;
  margin: 0;
  font-size: 1em;
  line-height: 1.2em;
}

/* =====================================
   FacetWP Styling Produktgrid
   Modern Card UI
===================================== */

/* GRID */
.bl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid #e9e9e9;
  border-left: 1px solid #e9e9e9;
}

/* ITEM / CARD */
.bl-item {
  position: relative;
  background: #fff;
  border-right: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  overflow: hidden;
  min-height: 100%;
}

/* Hover wie Shop-Karte */
.bl-item:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  z-index: 3;
}

/* Link */
.bl-item .bl-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 22px 18px 58px 18px;
  height: 100%;
}

/* Bild */
.bl-image {
  text-align: center;
  margin-bottom: 18px;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bl-image img {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.22s ease;
}

.bl-item:hover .bl-image img {
  transform: scale(1.04);
}

/* Preis */
.bl-price {
  margin-bottom: 10px;
  line-height: 1.35;
}

.bl-price small,
.bl-price .tax_label,
.bl-price .includes_tax,
.bl-price .price-suffix,
.bl-price .bl-price-box .bl-price-incl {
  font-size: 12px;
  font-weight: 400;
  color: #666;
}

/* Titel */
.bl-title {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  color: #222;
  margin-bottom: 6px;
}

.bl-item:hover .bl-title {
  color: #222;
}

/* Kategorie */
.bl-category {
  font-size: 12px;
  color: #7a7a7a;
  line-height: 1.4;
}

/* Hover Actions */

.bl-item:hover .bl-actions {
  opacity: 1;
  transform: translateY(0);
}

.bl-action-icon:hover {
  background: #2980b9;
  color: #fff;
  border-color: #2980b9;
}

.bl-action-icon i {
  line-height: 1;
  font-size: 15px;
}

button.bl-action-icon {
  appearance: none;
  -webkit-appearance: none;
}

.bl-item {
  position: relative;
}

.bl-link {
  position: relative;
  z-index: 1;
}

.bl-actions {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  z-index: 50;

  opacity: 0;
  transform: translateY(8px);
  transition: all 0.2s ease;
  pointer-events: none; /* verhindert Ghost Clicks */
}

.bl-item:hover .bl-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bl-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #2980b9;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  pointer-events: auto;
}

.bl-action-icon:hover {
  background: #2980b9;
  color: #fff;
  border-color: #2980b9;
}

.bl-action-icon:hover i {
  color: #fff;
}

/* Keine blaue Titel-Links */
.bl-item a,
.bl-item a:hover,
.bl-item a:focus,
.bl-item a:active {
  color: inherit;
  text-decoration: none;
}

/* Sort Dropdown etwas luftiger falls nötig */
.facetwp-sort-select,
select.facetwp-sort-select {
  min-width: 220px;
}

/* Tablet */
@media (max-width: 1024px) {
  .bl-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 767px) {
  .bl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bl-item .bl-link {
    padding: 18px 14px 48px 14px;
  }

  .bl-image {
    min-height: 150px;
  }

  .bl-image img {
    max-height: 140px;
  }
}

@media (max-width: 480px) {
  .bl-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   FacetWP Sort
===================================== */

.bl-toolbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
}

/* Wrapper */
.bl-sort {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.bl-toolbar .bl-sort .facetwp-facet{
  margin-bottom: 10px;
}

/* Filter Bubble Select */
.facetwp-type-sort select {
    width: 100%;
    padding: 6px 10px;
    font-size: 14px;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: #fafafa;
    transition: all 0.15s ease;
}

/* Hover */
.facetwp-type-sort select:hover {
    border-color: #999;
    background: #fff;
}

/* =====================================
   Angebot Pop Up, Form + Danke Seite
===================================== */

/* Angebotsseite + Danke-Seite */
body.page-id-1951 .woocommerce-breadcrumb,
body.page-id-1931 .woocommerce-breadcrumb {
    display: none !important;
}

/* Overlay */
.bl-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25); /* softer */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* Box */
.bl-popup-inner {
    background: #fff;
    padding: 26px;
    border-radius: 14px;
    text-align: center;
    width: min(92vw, 380px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    animation: blPopupIn 0.25s ease;
}

/* Titel */
.bl-popup-inner h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0068AB;
}

/* Text */
.bl-popup-inner p {
    margin: 0 0 16px;
    color: #444;
    font-size: 14px;
}

/* Button Container */
.bl-popup-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

/* Buttons allgemein */
.bl-popup-inner button {
    flex: 1;
    padding: 11px 14px;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    border: none;
    transition: all 0.15s ease;
}

/* Primary Button */
.bl-go-quote {
    background: #0068AB;
    color: #fff;
}

.bl-go-quote:hover {
    background: #2980b9;
}

/* Secondary Button */
.bl-close-popup {
    background: #f3f5f7;
    color: #333;
}

.bl-close-popup:hover {
    background: #e6eaee;
}

/* Animation */
@keyframes blPopupIn {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Optimierung */
@media (max-width: 480px) {
    .bl-popup-inner {
        padding: 22px;
        border-radius: 12px;
    }

    .bl-popup-actions {
        flex-direction: column;
    }

    .bl-popup-inner button {
        width: 100%;
    }
}

.bl-quote-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.bl-quote-left img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 1px solid #eee;
  background: #fff;
}

.bl-quote-main {
  flex: 1;
}

.bl-quote-title {
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
}

.bl-quote-title:hover {
  color: #2980b9;
}

/* ======================================
   WRAPPER
====================================== */
#bl-quote-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* ======================================
   HEADINGS
====================================== */
#bl-quote-page h2 {
    margin-bottom: 10px;
}

#bl-quote-page h3 {
    margin-top: 40px;
    margin-bottom: 15px;
}

/* ======================================
   PRODUKT LISTE
====================================== */
#bl-quote-products ul {
    list-style: none;
    padding: 0;
}

#bl-quote-products li {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 15px;
    background: #fff;
    position: relative;
}

/* Produkt Titel */
#bl-quote-products strong {
    font-size: 14px;
    display: block;
    margin-bottom: 0px;
    padding-top: 5px;
}

/* Details */
#bl-quote-products small {
    color: #666;
}

/* ======================================
   REMOVE BUTTON
====================================== */
.bl-remove-quote {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f3f3f3;
    border: none;
    border-radius: 6px;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 8px !important;
}

.bl-remove-quote:hover {
    background: #e00;
    color: #fff;
}

.bl-qty {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    gap: 6px;
}

.bl-qty button {
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f0f0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.bl-qty button:hover {
    background: #000;
    color: #fff;
}

.bl-qty-input {
    width: 60px;
    text-align: center;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* ======================================
   FORM
====================================== */
.bl-form {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* Gruppen */
.bl-form-group {
    margin-bottom: 18px;
}

/* Labels */
.bl-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Inputs */
.bl-form input,
.bl-form select,
.bl-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Focus */
.bl-form input:focus,
.bl-form select:focus,
.bl-form textarea:focus {
    border-color: #000;
    outline: none;
}

/* Row (PLZ + Ort) */
.bl-form-row {
    display: flex;
    gap: 10px;
}

.bl-form-row .bl-form-group {
    flex: 1;
}

.bl-submit-btn {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.bl-submit-btn:hover {
    background: #333;
}

#bl-quote-products {
    margin-bottom: 30px;
}

.bl-quote-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .bl-quote-layout {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   Angebot Dankeseite
====================================== */

.bl-thankyou {
    max-width: 800px;
    margin: 40px auto;
    font-family: sans-serif;
}

.bl-thankyou-box {
    background: #f6f6f6;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.bl-thankyou-products {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}

.bl-thankyou-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.bl-btn-primary {
    display: inline-block;
    padding: 12px 20px;
    background: #0068AB;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

/* =====================================================
   BUTTONS
   ===================================================== */

/* Divi Button Hover Arrow entfernen */
.bl-layout-shop .et_pb_button::after {
  display: none !important;
}

.bl-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 5px !important;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* PRIMARY (z.B. schwarz) */
.bl-btn-primary {
  background: #2980b9;
  color: #fff;
}

.bl-btn-primary:hover {
  background: #006a9b;
  color: #fff;
}

/* SECONDARY (grau) */
.bl-btn-secondary {
  background: #f4f4f4;
  color: #000;
}

.bl-btn-secondary:hover {
  background: #e5e5e5;
}

/* GHOST (outline, z.B. auf blauem Hintergrund) */
.bl-btn-ghost {
  background: transparent !important;
  border: 1px solid #2980b9 !important;
  color: #2980b9 !important;
}

.bl-btn-ghost:hover {
  background: #f4f4f4 !important;
  color: #006a9b !important;
  border: 1px solid #006a9b !important;
}

/* =====================================================
   Sektions Hintergründe
   ===================================================== */

.bl-section-light {
  background: #fff;
}

.bl-section-grey {
  background: #f7f7f7;
}

.bl-section-dark {
  background: #2980b9;
  color: #fff;
}

/* =====================================================
   HOME – GLOBAL SPACING
   ===================================================== */

.bl-layout-shop .bl-home-hero,
.bl-layout-shop .bl-home-categories,
.bl-layout-shop .bl-home-industries,
.bl-layout-shop .bl-home-bestseller,
.bl-layout-shop .bl-home-solutions,
.bl-layout-shop .bl-home-trust,
.bl-layout-shop .bl-home-company,
.bl-layout-shop .bl-home-cta {
  padding: 80px 0;
}

.bl-layout-shop .bl-home-hero {
  padding-top: 40px;
}


/* =====================================================
   HERO
   ===================================================== */

.bl-layout-shop .bl-home-hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;

}

.bl-layout-shop .bl-home-hero p {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

.bl-layout-shop .bl-home-hero .et_pb_button {
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
}


/* =====================================================
   TOP KATEGORIEN
   ===================================================== */

.bl-layout-shop .bl-home-categories .et_pb_column {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
  border: 1px solid #eee;
}

.bl-layout-shop .bl-home-categories .et_pb_column:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.bl-layout-shop .bl-home-categories img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.bl-layout-shop .bl-home-categories h4 {
  font-size: 18px;
  margin: 15px;
}

.bl-layout-shop .bl-home-categories .et_pb_button {
  margin: 0 15px 20px;
}


/* =====================================================
   BRANCHEN
   ===================================================== */

.bl-layout-shop .bl-home-industries {
  text-align: center;
}

.bl-layout-shop .bl-home-industries .et_pb_button {

  color: #333;
  border-radius: 20px;
  padding: 10px 16px;
  margin: 5px;
  border: none;
  transition: all 0.2s ease;
}

.bl-layout-shop .bl-home-industries .et_pb_button:hover {
  background: #000;
  color: #fff;
}


/* =====================================================
   BESTSELLER (TABS)
   ===================================================== */

.bl-layout-shop .bl-home-bestseller .et_pb_tabs {
  border: none;
}

.bl-layout-shop .bl-home-bestseller .et_pb_tab {
  padding: 30px 0;
}

.bl-layout-shop .bl-home-bestseller .et_pb_tabs_controls li {
  border: none;
}

.bl-layout-shop .bl-home-bestseller .et_pb_tabs_controls li a {
  padding: 12px 20px;
  background: #fafafa;
  color: #333;
  border-radius: 6px;
  margin-right: 10px;
  display: inline-block;
}

.bl-layout-shop .bl-home-bestseller .et_pb_tabs_controls li.et_pb_tab_active a {
  background: #d3d3d3;
  color: #333;
}


/* =====================================================
   LÖSUNGEN
   ===================================================== */

.bl-layout-shop .bl-home-solutions .et_pb_column {
  position: relative;
  overflow: hidden;
}

.bl-layout-shop .bl-home-solutions img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.bl-layout-shop .bl-home-solutions .et_pb_column::after {
  content: "";
  position: absolute;
  inset: 0;
}

.bl-layout-shop .bl-home-solutions h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
  font-size: 20px;
}


/* =====================================================
   TRUST
   ===================================================== */

.bl-layout-shop .bl-home-trust {
  text-align: center;
}

.bl-layout-shop .bl-home-trust h3 {
  font-size: 28px;
  margin-bottom: 5px;
}

.bl-layout-shop .bl-home-trust p {
  opacity: 0.9;
}


/* =====================================================
   FIRMA
   ===================================================== */

.bl-layout-shop .bl-home-company p {
  line-height: 1.6;
  color: #444;
}

.bl-layout-shop .bl-home-company img {
  border-radius: 8px;
}


/* =====================================================
   CTA
   ===================================================== */

.bl-layout-shop .bl-home-cta {
  text-align: center;
}

.bl-layout-shop .bl-home-cta .et_pb_button {
  margin: 10px;
  border-radius: 6px;
}

.bl-layout-shop .bl-home-cta .et_pb_button:first-child {
  background: #fff;
  color: #000;
}

.bl-layout-shop .bl-home-cta .et_pb_button:last-child {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

/* =====================================================
   Options Error Warenkorb
   ===================================================== */
.bl-error {
    border: 1px solid rgb(196, 0, 0) !important;
}

/* =========================================================
   PRODUCT PRICE – CLEAN SYSTEM
========================================================= */

.bl-price {
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Zeilen */
.bl-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.bl-product-price{
padding-top: 10px;
padding-bottom: 5px;
}

/* -------------------------
   INKL (Hauptpreis)
------------------------- */
.bl-price-incl {
  font-weight: 600;
  color: #111;
}

.bl-product-price .bl-price-incl {
  font-size: 20px;
}

.bl-product-price .bl-price-incl .bl-price-note{
  font-size: 18px;
}

.bl-price-incl .bl-price-note {
  font-size: 13px;
  color: #666;
}

/* -------------------------
   EXKL (sekundär)
------------------------- */
.bl-price-excl {
  font-size: 14px;
  font-weight: 400;
  color: #777;
}

.bl-price-excl .bl-price-note {
  font-size: 14px;
  color: #999;
}

.bl-product-price .bl-price-excl {
  font-size: 18px !important;
}

.bl-product-price .bl-price-excl .bl-price-note{
  font-size: 16px;
}

/* =========================================================
   ACCESSORY / GRID (kleiner)
========================================================= */

.bl-accessory-price .bl-price-incl {
  font-size: 14px;
  font-weight: 600;
}

.bl-accessory-price .bl-price-excl {
  font-size: 12px;
  color: #888;
}

/* optional noch kompakter */
.bl-accessory-price .bl-price-row {
  gap: 4px;
}

.bl-related-price,
.bl-accessory-price {
  display: flex;
  justify-content: center;
}

.bl-related-price .bl-price,
.bl-accessory-price .bl-price {
  text-align: center;
}

.bl-related-price .bl-price-row,
.bl-accessory-price .bl-price-row {
  justify-content: center;
}

/* =============================
   SHIPPING TRIGGER
============================= */
.bl-shipping-popup-trigger {
  cursor: pointer;
  text-decoration: underline;
}

.bl-shipping-popup-trigger:hover {
  color: #000;
}


/* =============================
   MODAL BASE
============================= */
.bl-modal {
  display: none; /* 👉 standard versteckt */
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.6);
}


/* 👉 ACTIVE STATE */
.bl-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* =============================
   MODAL CONTENT
============================= */
.bl-modal-content {
  background: #fff;
  padding: 24px;
  width: 600px;
  max-width: 90%;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}


/* CLOSE BUTTON */
.bl-modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

@media (min-width: 981px) {
  .bl-product-cta {
    position: relative;
    left: -10px;
  }
}

/* =============================
BL WOO CHECKOUT
============================= */

.wc-blocks-components-select__expand {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    flex-shrink: 0;
}

/* =============================
FA Icons
============================= */

.bl-offer-trigger,
.bl-btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.bl-offer-trigger i,
.bl-btn-quote i {
  line-height: 1;
}

.bl-offer-trigger,
.single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.bl-offer-trigger span,
.single_add_to_cart_button span {
  display: inline-block;
}

.bl-shipping-icon {
  color: #006a9b;
  font-size: 16px;;
}

.bl-shipping-icon i {
  color: inherit;
  position: relative;
  top: -1px;
}

/* =============================
FacetWP Grid 
============================= */

.bl-price-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bl-price-grid-incl,
.bl-price-grid-excl {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.bl-price-grid-incl .bl-price-grid-value {
  font-size: 1rem;
  line-height: 1.2;
  color: #333;
}

.bl-price-grid-incl .bl-price-grid-note {
  font-size: 1rem;
  opacity: 0.8;
  color: #333;
}

.bl-price-grid-excl .bl-price-grid-value {
  font-size: 0.9rem;
  line-height: 1.2;
color: #333;
}

.bl-price-grid-excl .bl-price-grid-note {
  font-size: 0.9rem;
  opacity: 0.75;
  color: #333;
}

.bl-category {
  cursor: pointer;
  transition: color 0.2s ease;
}

.bl-category:hover {
  color: #2980b9;
}

.bl-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
}

/* Bestseller */
.bl-badge-bestseller {
  background: #2980b9;
}

/* Neu */
.bl-badge-new {
  background: #27ae60;
}

/* Aktion */
.bl-badge-sale {
  background: #e74c3c;
}

.bl-grid-note {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2980b9;
  background: rgba(41, 128, 185, 0.08);
  padding: 4px 8px;
  border-radius: 999px;
}