/*
 Theme Name:   Chardonnay Child Theme
 Theme URI:    http://chardonnay.ancorathemes.com/
 Description:  Chardonnay Child Theme
 Author:       AncoraThemes
 Author URI:   https://ancorathemes.com/
 Template:     chardonnay
 Version:      1.0
 Tags:         flexible-header, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, microformats, post-formats, theme-options, threaded-comments, translation-ready
 Text Domain:  chardonnay
*/


/* =Theme customization starts here
------------------------------------------------------------ */

/* === Einheitliche Bildflächen – klassische Loops + Woo Blocks === */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail,
.wc-block-grid__product img,
.wc-block-grid__product .wc-block-grid__product-image img {
  width: 100% !important;
  height: 280px !important;      /* Höhe nach Wunsch anpassen */
  object-fit: contain !important; /* kein Beschnitt */
  background: #f7f7f7;
  display: block;
}

/* Karten-Layout vereinheitlichen (klassisch) */
.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  height: 100%;
}

/* Karten-Layout für Woo Blocks */
.wc-block-grid__product {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wc-block-grid__product .wc-block-grid__product-link {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  height: 100%;
}

/* Titelhöhe fix (2 Zeilen) – beide Varianten */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product .wc-block-grid__product-title {
  line-height: 1.25;
  min-height: calc(1.25em * 2);
  overflow: hidden;
}

/* Preise/Meta nach unten drücken */
.woocommerce ul.products li.product .price,
.wc-block-grid__product .wc-block-grid__product-price {
  margin-top: auto;
}
