

/* =========================================================
   1. WOOCOMMERCE BACKGROUND
========================================================= */

.woocommerce-page,
.woocommerce-page .site,
.woocommerce-page .site-content,
.woocommerce-page .content-area,
.woocommerce-page .site-main,
.woocommerce-page .inside-article,
.woocommerce-page .entry-content,
.woocommerce-page article {
  background: #f4f4f4 !important;
}


/* =========================================================
   2. SHOP AUFRÄUMEN
========================================================= */

/* Showing results + Sortierung weg */
.woocommerce-result-count,
.woocommerce-ordering {
  display: none !important;
}


/* Archives weg */
.woocommerce-page .widget_archive,
.woocommerce-page .wp-block-archives {
  display: none !important;
}


/* Search weg */
.woocommerce-page .widget_search,
.woocommerce-page .wp-block-search {
  display: none !important;
}


/* Nur Shop-/Archiv-Seitentitel weg */
body.woocommerce-shop .woocommerce-products-header__title,
body.woocommerce-shop .page-title,
body.tax-product_cat .page-title,
body.tax-product_tag .page-title {
  display: none !important;
}


/* Widget Überschriften weg */
.woocommerce-page .widget-title,
.woocommerce-page .sidebar .widget-title,
.woocommerce-page #right-sidebar .widget-title {
  display: none !important;
}


/* Sidebar komplett weg */
.woocommerce-page #right-sidebar,
.woocommerce-page .widget-area {
  display: none !important;
}


/* Content volle Breite */
.woocommerce-page .content-area {
  width: 100% !important;
  max-width: 100% !important;
}


/* =========================================================
   3. PRODUKT GRID / PRODUKTKARTEN
========================================================= */

.woocommerce ul.products li.product {
  position: relative !important;

  display: flex !important;
  flex-direction: column !important;

  height: 100% !important;

  background: #f4f4f4 !important;

  text-align: center !important;
}


/* =========================================================
   4. PRODUKTTITEL
========================================================= */

.woocommerce ul.products li.product
.woocommerce-loop-product__title {
  text-align: center !important;

  margin-top: 8px !important;
  margin-bottom: 6px !important;
}


/* =========================================================
   5. PREIS
========================================================= */

.woocommerce ul.products li.product .price {
  color: #000 !important;

  text-align: center !important;

  margin-top: 0 !important;
  margin-bottom: 16px !important;
}


/* =========================================================
   6. SHOP CTA
========================================================= */

.woocommerce ul.products li.product .button {
  display: inline-flex !important;

  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;

  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;

  margin-top: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;

  padding: 7px 12px !important;

  background: #f4f4f4 !important;
  color: #000 !important;

  border: 1px solid #000 !important;
  border-radius: 1px !important;

  box-shadow: none !important;

  font-family: "Fakt Pro", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;

  text-align: center !important;
  text-decoration: none !important;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}


/* CTA Hover */
.woocommerce ul.products li.product .button:hover {
  background: #d9d9d9 !important;
  color: #000 !important;
}


/* =========================================================
   7. PRODUKTBILD — DEZENTER HOVER ZOOM
========================================================= */

.woocommerce ul.products li.product > a > img {
  transition: transform 0.3s ease !important;
  transform-origin: center center;
}


@media (min-width: 769px) {

  .woocommerce ul.products li.product > a:hover > img {
    transform: scale(1.025);
  }

}


/* =========================================================
   8. ZWEITES GALLERY-BILD BEI HOVER
   funktioniert nur mit dem PHP-Snippet
========================================================= */

.laerm-product-image {
  position: relative;
  overflow: hidden;
}


.laerm-product-image img {
  display: block;

  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease !important;
}


.laerm-image-main {
  position: relative;
  opacity: 1;
}


.laerm-image-hover {
  position: absolute;

  inset: 0;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover;

  opacity: 0;
}


@media (min-width: 769px) {

  .laerm-product-image:hover .laerm-image-main {
    opacity: 0;
  }

  .laerm-product-image:hover .laerm-image-hover {
    opacity: 1;
  }

  .laerm-product-image:hover img {
    transform: scale(1.025);
  }

}


/* =========================================================
   9. MOBILE SHOP
========================================================= */

@media (max-width: 768px) {

  /* 2 Spalten */
  .woocommerce ul.products {
    display: grid !important;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    column-gap: 12px !important;
    row-gap: 28px !important;

    align-items: stretch !important;
  }


  /* WooCommerce clearfix entfernen */
  .woocommerce ul.products::before,
  .woocommerce ul.products::after {
    display: none !important;
  }


  /* Produktkarten */
  .woocommerce ul.products li.product {
    position: relative !important;

    width: auto !important;

    margin: 0 !important;

    float: none !important;

    display: flex !important;
    flex-direction: column !important;

    height: 100% !important;

    text-align: center !important;
  }


  /* normales Produktbild größer */
  .woocommerce ul.products li.product > a > img {
    width: 120% !important;
    max-width: none !important;

    margin-top: 0 !important;
    margin-left: -10% !important;
    margin-right: -10% !important;
    margin-bottom: 8px !important;
  }


  /* falls Second-Image-System aktiv */
  .woocommerce ul.products li.product
  .laerm-product-image {
    width: 120% !important;

    margin-left: -10% !important;
    margin-right: -10% !important;
    margin-bottom: 8px !important;
  }


  /* Titel */
  .woocommerce ul.products li.product
  .woocommerce-loop-product__title {
    text-align: center !important;

    margin-top: 7px !important;
    margin-bottom: 5px !important;
  }


  /* Preis */
  .woocommerce ul.products li.product .price {
    text-align: center !important;

    margin-bottom: 14px !important;
  }


  /* CTA Mobile klein + aligned */
  .woocommerce ul.products li.product .button {
    width: auto !important;

    padding: 7px 12px !important;

    font-size: 12px !important;

    margin-top: auto !important;
  }


  /* OUT OF STOCK direkt aufs Bild */
  .woocommerce ul.products li.product .out-of-stock {
    position: absolute !important;

    top: 6px !important;
    left: 6px !important;

    z-index: 10;

    display: inline-block !important;

    width: auto !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 4px 6px !important;

    background: #fff !important;
    color: #000 !important;

    border-radius: 1px !important;

    font-family: "Fakt Pro", Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    white-space: nowrap !important;
  }

}


/* =========================================================
   10. PRODUKTSEITE — GLOBAL
========================================================= */

.single-product .product,
.single-product .product button,
.single-product .product input,
.single-product .product select,
.single-product .woocommerce-tabs,
.single-product .woocommerce-Tabs-panel {
  font-family: "Fakt Pro", Arial, sans-serif !important;
}


/* Breadcrumb weg */
.single-product .woocommerce-breadcrumb {
  display: none !important;
}


/* Kategorie weg */
.single-product .product_meta .posted_in {
  display: none !important;
}


/* =========================================================
   11. PRODUKTSEITE — PREIS
========================================================= */

.single-product .summary .price,
.single-product .summary .price *,
.single-product .woocommerce-Price-amount,
.single-product .woocommerce-Price-currencySymbol {
  color: #000 !important;
}


.single-product .summary .price {
  margin-bottom: 14px !important;
}


/* =========================================================
   12. PRODUKTSEITE — ADD TO CART
========================================================= */

.single-product .single_add_to_cart_button {
  background: #f4f4f4 !important;
  color: #000 !important;

  border: 1px solid #000 !important;
  border-radius: 1px !important;

  box-shadow: none !important;

  font-family: "Fakt Pro", Arial, sans-serif !important;
  font-weight: 400 !important;

  padding: 11px 18px !important;
}


.single-product .single_add_to_cart_button:hover,
.single-product .single_add_to_cart_button:focus {
  background: #d9d9d9 !important;
  color: #000 !important;
}


.single-product .single_add_to_cart_button.disabled,
.single-product .single_add_to_cart_button:disabled {
  background: #e5e5e5 !important;
  color: #777 !important;
}


/* =========================================================
   13. PRODUKTSEITE — QUANTITY
========================================================= */

.single-product .quantity .qty {
  width: 48px !important;
  min-width: 48px !important;
  height: 38px !important;

  padding: 4px 6px !important;

  font-family: "Fakt Pro", Arial, sans-serif !important;
  font-size: 13px !important;

  text-align: center !important;
}


/* =========================================================
   14. PRODUKTSEITE — BESCHREIBUNG
========================================================= */

.single-product
.woocommerce-product-details__short-description,
.single-product
.woocommerce-product-details__short-description p,
.single-product
.woocommerce-Tabs-panel p {
  font-family: "Fakt Pro", Arial, sans-serif !important;

  color: #000 !important;

  font-size: 17px !important;
  line-height: 1.45 !important;
}


/* normale Absätze */
.single-product
.woocommerce-Tabs-panel p {
  margin-top: 0 !important;
  margin-bottom: 0.5em !important;
}


/* H4 mit mehr Abstand */
.single-product
.woocommerce-Tabs-panel h4 {
  color: #000 !important;

  margin-top: 20px !important;
  margin-bottom: 7px !important;

  line-height: 1.15 !important;
}


/* H5 / bibliografische Angaben kompakt */
.single-product .summary h5,
.single-product
.woocommerce-Tabs-panel h5 {
  font-family: "Fakt Pro", Arial, sans-serif !important;

  color: #000 !important;

  font-size: 13px !important;
  font-weight: 400 !important;

  line-height: 1.15 !important;

  margin: 0 0 3px 0 !important;
}


/* Text direkt nach H5 kompakt */
.single-product
.woocommerce-Tabs-panel h5 ~ p {
  margin: 0 0 2px 0 !important;

  line-height: 1.1 !important;
}


/* =========================================================
   15. RELATED PRODUCTS
========================================================= */

.single-product .related.products {
  display: block !important;

  visibility: visible !important;
  opacity: 1 !important;

  margin-top: 80px !important;
}


/* Related Products Titel */
.single-product .related.products > h2 {
  display: block !important;

  visibility: visible !important;
  opacity: 1 !important;

  font-family: "Fakt Pro", Arial, sans-serif !important;

  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;

  color: #000 !important;

  margin: 0 0 28px 0 !important;
  padding: 0 !important;
}


/* =========================================================
   16. MOBILE PRODUKTSEITE
========================================================= */

@media (max-width: 768px) {

  /* Leerraum oben reduzieren */
  .single-product .site-content,
  .single-product .inside-article,
  .single-product .entry-content,
  .single-product div.product,
  .single-product div.product div.images {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }


  /* Beschreibung */
  .single-product
  .woocommerce-product-details__short-description,
  .single-product
  .woocommerce-product-details__short-description p,
  .single-product
  .woocommerce-Tabs-panel p {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }


  /* H4 */
  .single-product
  .woocommerce-Tabs-panel h4 {
    margin-top: 16px !important;
    margin-bottom: 6px !important;
  }


  /* H5 */
  .single-product .summary h5,
  .single-product
  .woocommerce-Tabs-panel h5 {
    font-size: 12px !important;

    line-height: 1.1 !important;

    margin-bottom: 2px !important;
  }


  /* kompakter Text nach H5 */
  .single-product
  .woocommerce-Tabs-panel h5 ~ p {
    font-size: 12px !important;
    line-height: 1.1 !important;

    margin-bottom: 0 !important;
  }


  /* Related Products */
  .single-product .related.products {
    margin-top: 40px !important;
  }


  .single-product .related.products > h2 {
    font-size: 17px !important;

    margin-bottom: 20px !important;
  }

}


/* =========================================================
   LÄRM & GESTALT — HOMEPAGE CLEAN
========================================================= */

:root {
  --home-header-h: 64px;
}


/* =========================================================
   1. TYPOGRAFIE
========================================================= */

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
button,
input,
select,
textarea,
.elementor-heading-title,
.elementor-widget-text-editor,
.elementor-widget-text-editor p {
  font-family: "Fakt Pro", Arial, sans-serif !important;
}

/* =========================================================
   PRODUKTSEITE — KATEGORIEN / META
========================================================= */

.single-product .product_meta,
.single-product .product_meta *,
.single-product .posted_in,
.single-product .posted_in a,
.single-product .tagged_as,
.single-product .tagged_as a,
.single-product .sku_wrapper,
.single-product .sku_wrapper * {
  font-family: "Fakt Pro", Arial, sans-serif !important;
}

/* =========================================================
   2. HOMEPAGE WRAPPER RESET
========================================================= */

body.home {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip !important;
}

body.home #page,
body.home #primary,
body.home #main,
body.home .site-content,
body.home .content-area,
body.home .inside-article,
body.home .entry-content,
body.home .elementor,
body.home .elementor-page {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* =========================================================
   3. HEADER
   Sticky wird von Elementor gesteuert
========================================================= */

body.home .elementor-location-header {
  width: 100% !important;

  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  background: #fff !important;

  z-index: 99999 !important;
}


/* äußerer eigener Header */
body.home .lg-header {
  width: 100% !important;

  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  background: #fff !important;
}


/* Elementor Container nicht aufblasen */
body.home .lg-header .e-con {
  min-height: 0 !important;
}


/* =========================================================
   4. HEADER DESKTOP
========================================================= */

@media (min-width: 769px) {

  body.home .lg-header-desktop {
    display: flex !important;
    visibility: visible !important;

    width: 100% !important;

    height: var(--home-header-h) !important;
    min-height: var(--home-header-h) !important;

    margin: 0 !important;
    padding: 0 !important;

    align-items: center !important;
  }


  /* Mobile Header darf KEINEN Platz beanspruchen */
  body.home .lg-header-mobile {
    display: none !important;
    visibility: hidden !important;

    width: 0 !important;
    height: 0 !important;

    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
  }
}


/* =========================================================
   5. HEADER MOBILE
========================================================= */

@media (max-width: 768px) {

  body.home .lg-header-desktop {
    display: none !important;
    visibility: hidden !important;

    width: 0 !important;
    height: 0 !important;

    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
  }


  body.home .lg-header-mobile {
    display: flex !important;
    visibility: visible !important;

    width: 100% !important;

    height: var(--home-header-h) !important;
    min-height: var(--home-header-h) !important;

    margin: 0 !important;
    padding: 0 !important;

    align-items: center !important;
  }
}


/* =========================================================
   6. HERO / CHILD 1
   Klasse: home-hero
========================================================= */

body.home .home-hero {
  box-sizing: border-box !important;

  width: 100% !important;

  /* Header ist sticky und bleibt im Layout */
  min-height: calc(100svh - var(--home-header-h)) !important;

  margin: 0 !important;
  padding: 0 !important;

  background: #f4f4f4 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: hidden !important;
}


body.home .home-hero img {
  display: block !important;

  width: auto !important;
  max-width: 100% !important;

  height: auto !important;
  max-height: 95svh !important;

  margin: 0 auto !important;

  transform: translateY(8px);
}


body.home .home-hero {
  margin-bottom: 48px !important;
}

@media (max-width: 768px) {
  body.home .home-hero {
    margin-bottom: 28px !important;
  }
}

@media (max-width: 768px) {
  body.home .home-hero img {
    max-height: 76svh !important;
    transform: translateY(6px);
  }
}

/* =========================================================
   HOMEPAGE SCROLL 
========================================================= */

html:has(body.home) {
  scroll-snap-type: y proximity !important;
  scroll-padding-top: var(--home-header-h) !important;
  scroll-behavior: smooth !important;
}


/* NUR diese 3 Elemente sind Snap-Punkte */
body.home .home-hero,
body.home .home-s2,
body.home .home-shop {
  scroll-snap-align: start !important;
}


/* Hero normal */
body.home .home-hero {
  scroll-snap-stop: normal !important;
}


/* Section 2 darf NICHT übersprungen werden */
body.home .home-s2 {
  scroll-snap-stop: always !important;
}


/* Shop normal */
body.home .home-shop {
  scroll-snap-stop: normal !important;
}


/* WICHTIG:
   Bild innerhalb Section 2 darf KEIN eigener Snap-Punkt sein */
body.home .home-s2-image {
  scroll-snap-align: none !important;
  scroll-snap-stop: normal !important;
}


/* Alle 3 Hauptbereiche ungefähr Viewport */
body.home .home-hero,
body.home .home-s2,
body.home .home-shop {
  min-height: calc(100svh - var(--home-header-h)) !important;
}

/* =========================================================
   CHILD 1
========================================================= */

body.home .home-hero {
  min-height: calc(100svh - var(--home-header-h)) !important;
}


/* =========================================================
   CHILD 2
========================================================= */

body.home .home-s2 {
  min-height: calc(100svh - var(--home-header-h)) !important;
}


/* =========================================================
   CHILD 3
========================================================= */

body.home .home-shop {
  min-height: calc(100svh - var(--home-header-h)) !important;
}

/* =========================================================
   SECTION 2 — DESKTOP
========================================================= */

@media (min-width: 769px) {

  body.home .home-s2 {
    display: grid !important;

    grid-template-columns:
      minmax(0, 52%)
      minmax(0, 48%);

    gap: 24px !important;

    align-items: stretch !important;

    width: 100% !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;
  }


  /* TEXT LINKS */
  body.home .home-s2-text {
    width: 100% !important;
    min-width: 0 !important;

    box-sizing: border-box !important;

    padding:
      24px
      18px
      24px
      48px !important;

    align-self: stretch !important;

    overflow: visible !important;
  }


  body.home .home-s2-text > p {
    color: #000 !important;

    font-size: 17px !important;
    line-height: 1.68 !important;

    margin:
      0
      0
      16px
      0 !important;
  }


  body.home .home-s2-text > p:last-of-type {
    margin-bottom: 0 !important;
  }


  /* DETAILS */
  body.home .home-details {
    margin-top: 24px !important;
  }


  body.home .home-details p,
  body.home .home-details h5,
  body.home .home-s2-text h5 {
    font-family: "Fakt Pro", Arial, sans-serif !important;

    font-size: 15px !important;
    font-weight: 400 !important;

    line-height: 1.2 !important;

    color: #888 !important;

    margin:
      0
      0
      3px
      0 !important;
  }


  /* BILD RECHTS */
  body.home .home-s2-image {
    position: relative !important;

    left: 30px !important;

    width: calc(100% - 40px) !important;
    height: 100% !important;

    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    align-self: stretch !important;

    overflow: hidden !important;
  }


  body.home .home-s2-image .elementor-widget-image,
  body.home .home-s2-image .elementor-widget-container {
    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
  }


  body.home .home-s2-image img {
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    height: 100% !important;

    margin: 0 !important;

    object-fit: cover !important;
    object-position: center center !important;
  }
}
/* =========================================================
   9. SECTION 3 / SHOP
========================================================= */

body.home .home-shop {
  width: 100% !important;

  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;

  padding:
    24px
    0
    32px
    0 !important;

  overflow: visible !important;
}


/* Desktop Grid */
body.home .home-shop .woocommerce ul.products {
  display: grid !important;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  column-gap: 26px !important;
  row-gap: 32px !important;

  align-items: stretch !important;
}


body.home .home-shop .woocommerce ul.products::before,
body.home .home-shop .woocommerce ul.products::after {
  display: none !important;
}


/* Produktkarten */
body.home .home-shop
.woocommerce ul.products li.product {
  position: relative !important;

  display: flex !important;
  flex-direction: column !important;

  width: auto !important;
  height: 100% !important;

  float: none !important;

  margin: 0 !important;

  text-align: center !important;
}


/* =========================================================
   10. SHOP TITEL + PREIS
========================================================= */

body.home .home-shop
.woocommerce-loop-product__title {
  text-align: center !important;

  margin-top: 8px !important;
  margin-bottom: 5px !important;
}


body.home .home-shop .price {
  color: #000 !important;

  text-align: center !important;

  margin:
    0
    0
    14px
    0 !important;
}


/* =========================================================
   11. SHOP CTA — ALIGNED
========================================================= */

body.home .home-shop
.woocommerce ul.products li.product .button {
  display: inline-flex !important;

  align-items: center !important;
  justify-content: center !important;

  align-self: center !important;

  width: auto !important;
  min-width: 0 !important;

  margin-top: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;

  padding: 7px 12px !important;

  background: #f4f4f4 !important;
  color: #000 !important;

  border: 1px solid #000 !important;
  border-radius: 1px !important;

  font-family: "Fakt Pro", Arial, sans-serif !important;

  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;

  text-align: center !important;

  box-shadow: none !important;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}


body.home .home-shop
.woocommerce ul.products li.product .button:hover {
  background: #d9d9d9 !important;
  color: #000 !important;
}


/* =========================================================
   12. SHOP IMAGE HOVER
========================================================= */

body.home .home-shop
.woocommerce ul.products li.product > a > img {
  transition: transform 0.3s ease !important;
  transform-origin: center center;
}


@media (min-width: 769px) {

  body.home .home-shop
  .woocommerce ul.products li.product > a:hover > img {
    transform: scale(1.025);
  }
}


/* =========================================================
   13. MOBILE HOMEPAGE
========================================================= */

@media (max-width: 768px) {


  /* -------------------------
     HERO
  ------------------------- */

  body.home .home-hero {
    min-height: calc(100svh - var(--home-header-h)) !important;

    padding: 0 !important;
  }


  body.home .home-hero img {
    max-height: 68svh !important;

    transform: translateY(8px);
  }


  /* -------------------------
     SECTION 2
  ------------------------- */

  body.home .home-s2 {
    display: flex !important;
    flex-direction: column !important;

    width: 100% !important;

    gap: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    height: auto !important;
    min-height: 0 !important;

    overflow: visible !important;
  }


  /* -------------------------
     TEXT
  ------------------------- */

  body.home .home-s2-text {
    width: 100% !important;

    box-sizing: border-box !important;

    padding:
      30px
      26px
      32px
      26px !important;

    text-align: center !important;

    overflow: visible !important;
  }


  body.home .home-s2-text > p {
    max-width: 520px !important;

    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 16px !important;

    color: #000 !important;

    font-size: 13px !important;
    line-height: 1.4 !important;

    text-align: center !important;
  }


  body.home .home-s2-text > p:last-of-type {
    margin-bottom: 0 !important;
  }


  /* -------------------------
     DETAILS
  ------------------------- */

  body.home .home-details {
    margin-top: 24px !important;

    text-align: center !important;
  }


  body.home .home-details p,
  body.home .home-details h5,
  body.home .home-s2-text h5 {
    margin:
      0
      0
      2px
      0 !important;

    font-size: 9px !important;
    font-weight: 400 !important;

    line-height: 1.15 !important;

    text-align: center !important;

    color: #888 !important;
  }


  /* -------------------------
     SECTION 2 BILD
  ------------------------- */

  body.home .home-s2-image {
    width: 100% !important;

    height: calc(100svh - var(--home-header-h)) !important;
    min-height: calc(100svh - var(--home-header-h)) !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
  }


  body.home .home-s2-image .elementor-widget-image,
  body.home .home-s2-image .elementor-widget-container {
    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
  }


  body.home .home-s2-image img {
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    height: 100% !important;

    margin: 0 !important;

    object-fit: cover !important;
    object-position: center center !important;
  }


  /* -------------------------
     SHOP MOBILE
  ------------------------- */

  body.home .home-shop {
    padding-top: 18px !important;
    padding-bottom: 28px !important;
  }


  body.home .home-shop .woocommerce ul.products {
    display: grid !important;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    column-gap: 12px !important;
    row-gap: 28px !important;
  }


  body.home .home-shop
  .woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column !important;

    height: 100% !important;
  }


  body.home .home-shop
  .woocommerce ul.products li.product .button {
    width: auto !important;

    align-self: center !important;

    margin-top: auto !important;

    padding: 7px 12px !important;

    font-size: 12px !important;
  }
}

/* =========================================================
   MOBILE PDP — INNER HORIZONTAL SCROLL FIX
========================================================= */

@media (max-width: 768px) {

  /* komplette Produktseite */
  body.single-product,
  body.single-product #page,
  body.single-product #primary,
  body.single-product #main,
  body.single-product .site-content,
  body.single-product .content-area,
  body.single-product .inside-article,
  body.single-product .entry-content,
  body.single-product div.product {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    box-sizing: border-box !important;

    overflow-x: hidden !important;
  }


  /* rechte Produktspalte */
  body.single-product div.product .summary {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    box-sizing: border-box !important;

    overflow: visible !important;
    overflow-x: visible !important;
  }


  /* Beschreibung + alle Elemente darin */
  body.single-product
  .woocommerce-product-details__short-description,
  body.single-product
  .woocommerce-product-details__short-description *,
  body.single-product
  .woocommerce-Tabs-panel,
  body.single-product
  .woocommerce-Tabs-panel * {
    max-width: 100% !important;
    min-width: 0 !important;

    box-sizing: border-box !important;

    overflow-x: visible !important;

    white-space: normal !important;

    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }


  /* Absätze / Divs dürfen keine feste Breite haben */
  body.single-product
  .woocommerce-product-details__short-description p,
  body.single-product
  .woocommerce-product-details__short-description div,
  body.single-product
  .woocommerce-Tabs-panel p,
  body.single-product
  .woocommerce-Tabs-panel div {
    width: auto !important;
    max-width: 100% !important;

    margin-left: 0 !important;
    margin-right: 0 !important;
  }


  /* Falls irgendein Table/Pre/Code den Scroll erzeugt */
  body.single-product table,
  body.single-product pre,
  body.single-product code {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-x: visible !important;
  }


  /* Cart */
  body.single-product form.cart {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}