.elementor-1163 .elementor-element.elementor-element-94e0857{--display:flex;}.elementor-1163 .elementor-element.elementor-element-94e0857:not(.elementor-motion-effects-element-type-background), .elementor-1163 .elementor-element.elementor-element-94e0857 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#ECECEC;}.elementor-1163 .elementor-element.elementor-element-e7682a7{--spacer-size:50px;}.elementor-1163 .elementor-element.elementor-element-2234008{--spacer-size:50px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-1163 .elementor-element.elementor-element-94e0857{--content-width:1225px;}}/* Start custom CSS for shortcode, class: .elementor-element-0db8617 *//* =========================
   PRODUCT CATEGORY GRID
========================= */

.custom-cat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 24px;

  /* ALLE KARTEN GLEICH HOCH */
  align-items: stretch;
}

/* =========================
   CARD
========================= */

.custom-cat-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  /* GLEICHE HÖHE */
  height: 100%;

  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  text-decoration: none !important;
  color: inherit;

  box-shadow:
    0 4px 10px rgba(0,0,0,.06),
    0 12px 28px rgba(0,0,0,.08) !important;

  transition:
    transform .35s ease,
    box-shadow .35s ease;

  padding-bottom: 20px;
}

.custom-cat-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 8px 18px rgba(0,0,0,.08),
    0 18px 40px rgba(0,0,0,.14) !important;
}

/* =========================
   REMOVE UNDERLINES
========================= */

.custom-cat-card,
.custom-cat-card:hover,
.custom-cat-card:focus,
.custom-cat-card:active,
.custom-cat-card h3,
.custom-cat-card p {
  text-decoration: none !important;
}

/* =========================
   IMAGE
========================= */

.custom-cat-card img {
  width: calc(100% - 24px);
  height: 160px;

  margin: 12px 12px 0;
  padding: 10px;

  border-radius: 18px;

  object-fit: contain;
  object-position: center;

  display: block;
  background: #ffffff;

  transition: transform .5s ease;
}

.custom-cat-card:hover img {
  transform: scale(1.04);
}

/* =========================
   TITLE
========================= */

.custom-cat-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;

  margin: 14px 24px 6px;

  /* GLEICHE TITELHÖHE */
  min-height: 48px;
}

/* =========================
   DESCRIPTION
========================= */

.custom-cat-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;

  margin: 0 24px;

  /* BESCHREIBUNG FÜLLT REST */
  flex-grow: 1;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

  .custom-cat-cards {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

  .custom-cat-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px;
  }

  .custom-cat-card img {
    height: 140px;
  }

  .custom-cat-card h3 {
    font-size: 17px;
    min-height: auto;
  }

  .custom-cat-card p {
    font-size: 14px;
  }

}/* End custom CSS */