/* Breadcrumb-Banner + Titel ausblenden */
.breadcrumb-wrap,
.breadcrumb-wrap * {
  display: none !important;
}

/* Produktkarten */
.woocommerce ul.products li.product {
  position: relative;
  z-index: 1;
  margin-bottom: 53px;
}

.home .woocommerce ul.products {
  overflow: visible;
}

.home .woocommerce ul.products li.product:hover {
  z-index: 20;
}

/* Produktbild-Container */
.woocommerce ul.products li.product .woocommerce-LoopProduct__link,
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product .product-image,
.woocommerce ul.products li.product figure {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: auto !important;
}

/* Produktbilder – vollständig sichtbar auch in Firefox */
.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: auto !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block;
  background: #fff;
}

/* =========================
   Custom Scrollbar Kategorien
========================= */

.widget_product_categories {
    height: 470px;
    overflow-y: auto;

    /* Firefox */
    scrollbar-width: none !important;
    scrollbar-color: #4E1016 #f5f5f5 !important;

    scroll-behavior: smooth !important;
}

.widget_product_categories:hover {
    scrollbar-width: thin !important;
}

/* Chrome, Safari, Edge */
.widget_product_categories::-webkit-scrollbar {
    width: 4px !important;
}

.widget_product_categories::-webkit-scrollbar-track {
    background: #f5f5f5 !important;
    border-radius: 4px !important;
    margin: 4px 0 !important;
}

.widget_product_categories::-webkit-scrollbar-thumb {
    background: #4E1016 !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.widget_product_categories::-webkit-scrollbar-thumb:hover {
    background: #3a0b10 !important;
}

/* Kategorien ausblenden */
li.cat-item-15005,
li.cat-item-14603 {
    display: none !important;
}
/* WooCommerce Produktseite: Zoom komplett deaktivieren */
.single-product .woocommerce-product-gallery__trigger {
  display: none !important;
}

.single-product .woocommerce-product-gallery__image {
  pointer-events: none !important;
}

.single-product .woocommerce-product-gallery__image img {
  transform: none !important;
  scale: 1 !important;
  zoom: 1 !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Falls Theme/Elementor ein Zoom-Wrapper nutzt */
.single-product .zoomImg {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Originalbild vollständig sichtbar halten */
.single-product .woocommerce-product-gallery,
.single-product .woocommerce-product-gallery__wrapper,
.single-product .woocommerce-product-gallery__image,
.single-product .woocommerce-product-gallery__image a {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}