/* ======================================
   Tortenperle Shop Styling (WooCommerce)
   ====================================== */

/* Shop-Bereich Hintergrund */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  background-color: #fff;
}

/* Einzelne Produktkarte */
.woocommerce ul.products li.product {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover-Effekt */
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Produktbilder */
.woocommerce ul.products li.product img {
  border-radius: 16px 16px 0 0;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* Hover: Bild leicht zoomen */
.woocommerce ul.products li.product:hover img {
  transform: scale(1.05);
}

/* Produktname */
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  margin: 16px 0 6px;
}

/* Preis */
.woocommerce ul.products li.product .price {
  color: #d96c8f;
  font-weight: 600;
  font-size: 16px;
}

/* Kategorie (als Label über dem Bild) */
.woocommerce ul.products li.product .product-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #ffe6eb;
  color: #d96c8f;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
}

/* „Jetzt bestellen“ Button */
.woocommerce ul.products li.product .button {
  background-color: #f78da7;
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin: 14px auto 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Hover-Effekt: sanftes Tortenperle-Blau */
.woocommerce ul.products li.product .button:hover {
  background-color: #8ed0f0;
  color: #fff;
  box-shadow: 0 4px 10px rgba(142, 208, 240, 0.4);
  transform: translateY(-2px);
}

/* Kategorien-Übersicht (Shop root page) */
.woocommerce ul.products li.product-category a {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  text-align: center;
  display: block;
  transition: all 0.3s ease;
  overflow: hidden;
}

.woocommerce ul.products li.product-category a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.woocommerce ul.products li.product-category img {
  border-radius: 16px 16px 0 0;
  height: 260px;
  object-fit: cover;
}

.woocommerce ul.products li.product-category h2 {
  padding: 14px;
  font-size: 18px;
  color: #d96c8f;
  font-weight: 600;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .woocommerce ul.products li.product img {
    height: 200px;
  }
}