/* xFigma – Scheiblhofer RE: Shop-Produktkarte (Figma 961:6625) */
.xfigma-re-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  min-height: 100%;
  color: #ffffff;
  /* durchgehendes Raster wie im Figma: rechter + unterer Rand je Karte (keine Doppellinien) */
  border-right: 1px solid rgba(192, 192, 192, 0.28);
  border-bottom: 1px solid rgba(192, 192, 192, 0.28);
  box-sizing: border-box;
  transition: background 0.25s ease;
}
.xfigma-re-tile:hover {
  background: rgba(255, 255, 255, 0.03);
}
/* --- Bildbereich (mit Add-to-Cart-Overlay) --- */
.xfigma-re-tile__img {
  position: relative;
  height: 468px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.xfigma-re-tile__imglink {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  max-width: 100%;
}
.xfigma-re-tile__imglink img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(16px 28px 26px rgba(0, 0, 0, 0.45));
}
/* Add-to-Cart: standardmaessig versteckt, bei Hover einblenden (wie Edelstoffe) */
.xfigma-re-tile__cart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 3;
}
.xfigma-re-tile:hover .xfigma-re-tile__cart {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
/* Add-to-Cart-Optik auf dunklem Grund */
.xfigma-re-tile__cart .xs-shop-add-to-cart-holder {
  width: 100%;
  max-width: 300px;
}
.xfigma-re-tile__cart .btn,
.xfigma-re-tile__cart .xs-shop-warenkorb-button {
  /* self-contained: Struktur nicht vom fremden .btn erben */
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #ffffff;
  border-radius: 0;
  background: rgba(19, 19, 19, 0.85);
  color: #ffffff;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.xfigma-re-tile__cart .btn:hover,
.xfigma-re-tile__cart .xs-shop-warenkorb-button:hover {
  background: #bf0f1e;
  border-color: #bf0f1e;
  color: #ffffff;
}
/* --- Meta: Titel links / Preis + Volumen rechts --- */
.xfigma-re-tile__meta {
  display: flex;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
  text-decoration: none;
  color: #ffffff;
}
.xfigma-re-tile__name {
  flex: 1 1 auto;
  min-width: 0;
}
.xfigma-re-tile__name .t {
  display: block;
  font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  word-break: break-word;
}
.xfigma-re-tile__price {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* Preis + Liter rechtsbuendig, tight gestapelt */
  text-align: right;
  white-space: nowrap;
}
.xfigma-re-tile__price .p {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
}
/* Basis-Preis-Span (aus ITEM_PRICE_NICE.NICE) neutralisieren, damit er in unsere Typo passt */
.xfigma-re-tile__price .p .xs-shop-product-price,
.xfigma-re-tile__price .p .xs-shop-product-price * {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: inherit;
}
.xfigma-re-tile__price .v {
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1200px) {
  .xfigma-re-tile__img {
    height: 380px;
  }
}
@media (max-width: 900px) {
  .xfigma-re-tile {
    padding: 20px;
    gap: 16px;
  }
  .xfigma-re-tile__img {
    height: 300px;
  }
  .xfigma-re-tile__name .t {
    font-size: 18px;
  }
  .xfigma-re-tile__price .p {
    font-size: 18px;
  }
  .xfigma-re-tile__price .v {
    font-size: 13px;
  }
}
/*# sourceMappingURL=/xassets/uncompressed/source_map/162.css.css.map */