:root{
  --wdf-green:#3cb34a;
  --wdf-teal:#008b8f;
  --wdf-yellow:#f9a825;
  --wdf-dark:#333333;
  --wdf-bg:#ffffff;
}

/* Reset */
*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,Arial,sans-serif;
  color:var(--wdf-dark);
  background:var(--wdf-bg);
}

/* Container */
.wdf-container{width:min(1200px,92%);margin-inline:auto}

/* Header / Footer */
.wdf-header,.wdf-footer{padding:1rem 0;background:#f7f7f7}
.wdf-logo{font-weight:700;color:var(--wdf-dark);text-decoration:none}

/* Product grid (equal height) */
.woocommerce ul.products,
.woocommerce-page ul.products{
  display:grid !important;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr)) !important;
  grid-auto-rows:1fr;
  gap:24px !important;
  align-items:stretch;
  margin:0 !important;
  padding:0 !important;
  list-style:none;
}

/* Card */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product{
  float:none !important;
  width:auto !important;
  max-width:none !important;
  margin:0 !important;
  clear:none !important;

  display:flex !important;
  flex-direction:column;
  justify-content:space-between;
  gap:8px; /* add safe spacing between blocks */

  background:#fff;
  border:1px solid #eee;
  border-radius:12px;
  padding:18px 18px 22px;
  height:100%;
  text-align:center;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}

/* Hover effect */
.woocommerce ul.products li.product:hover,
.wdf-card:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  border-color:#ddd;
}

/* Remove legacy clearfix */
.woocommerce ul.products:before,
.woocommerce ul.products:after{content:none !important;display:none !important}

/* Product image */
.woocommerce ul.products li.product img,
.wdf-card .wdf-thumb img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:10px;
}

/* Title (classic cards) — clamp to 2 lines and add extra bottom space */
.woocommerce-loop-product__title,
.wdf-card .wdf-title{
  font-size:1.05rem;
  font-weight:700;
  color:var(--wdf-dark);
  line-height:1.3;
  min-height:calc(1em * 1.3 * 2);
  max-height:calc(1em * 1.3 * 2);
  overflow:hidden;
  margin:.55rem 0 .75rem; /* increased to push size/weight down */
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  text-align:center;
}
.wdf-card .wdf-title a{
  color:inherit;text-decoration:none;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Short description (classic layout) */
.wdf-card .wdf-short{
  font-size:.9rem;
  line-height:1.5;
  color:#555;
  margin:0 0 .55rem;
  max-width:34ch;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
  min-height:calc(1.5em * 3);
}

/* Price */
.woocommerce ul.products li.product .price,
.wdf-card .wdf-price{
  font-size:1rem;
  font-weight:700;
  color:var(--wdf-dark);
  margin:.4rem 0 .6rem; /* small bump for spacing */
  line-height:1.3;
  min-height:1.4em;
}

/* Weight / size */
.wdf-size,
.wdf-card .wdf-size{
  font-size:.9rem;
  color:#666;
  margin:.5rem 0 1rem;
  min-height:1.2em;
}

/* Button alignment + styling */
.woocommerce ul.products li.product{display:flex !important;flex-direction:column}
.woocommerce ul.products li.product>.button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .wdf-cta,
.woocommerce ul.products li.product form.cart{margin-top:auto !important}

.woocommerce ul.products li.product .button,
.wdf-card .wdf-order{
  margin-top:auto;
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-radius:10px;
  padding:.7rem .9rem;
  background:var(--wdf-teal);
  color:#fff;
  font-weight:700;
  font-size:.9rem;
  letter-spacing:.3px;
  text-transform:uppercase;
  margin-bottom:6px;
  transition:background-color .18s ease,filter .18s ease;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.woocommerce ul.products li.product .button:hover,
.wdf-card .wdf-order:hover{
  background:var(--wdf-green);
  filter:brightness(.95);
}

/* ---------- Compact supermarket-style variant (refined + aligned) ---------- */
.wdf-card--compact{
  text-align:left;
  display:flex;
  flex-direction:column;
  gap:8px; /* keep consistent spacing */
}
.wdf-card--compact .wdf-thumb{
  display:block;
  margin:0 auto 10px;
  max-width:220px;
}

/* Product title (compact) — clamp and add bottom space */
.wdf-card--compact .wdf-title{
  font-size:1rem;
  font-weight:700;
  line-height:1.35;
  min-height:calc(1em * 1.35 * 2);
  max-height:calc(1em * 1.35 * 2);
  overflow:hidden;
  text-align:left;
  margin:.25rem 0 .7rem; /* push size/weight down */
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}
.wdf-card--compact .wdf-title a{
  color:var(--wdf-dark);
  text-decoration:none;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Size / weight — aligned start position */
.wdf-card--compact .wdf-size{
  font-size:.9rem;
  color:#555;
  margin:0 0 .5rem;
  min-height:1.2em;
  text-align:left;
}

/* Rating */
.wdf-card--compact .wdf-rating{
  font-size:.85rem;
  color:#666;
  min-height:1.2em;
  margin:.1rem 0 .4rem;
  text-align:left;
}
.wdf-card--compact .wdf-rating .star-rating{
  float:none;
  display:inline-block;
  vertical-align:middle;
  margin-right:4px;
}
.wdf-card--compact .wdf-rating-count{
  font-size:.85rem;
  color:#666;
  vertical-align:middle;
}

/* Promo */
.wdf-card--compact .wdf-promo-row{
  font-size:.9rem;
  min-height:1.2em;
  margin:.25rem 0 .55rem;
  text-align:left;
}
.wdf-card--compact .wdf-promo{
  color:#b71c1c;
  font-weight:600;
}

/* Price + unit */
.wdf-card--compact .wdf-price-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:8px;
  margin:.25rem 0 .9rem;
}
.wdf-card--compact .wdf-price{
  font-size:1rem;
  font-weight:700;
  color:var(--wdf-dark);
}
.wdf-card--compact .wdf-unit{
  font-size:.85rem;
  color:#666;
}

.wdf-card--compact .wdf-cta{margin-top:auto}
.wdf-card--compact .wdf-order{
  width:100%;
  font-size:.9rem;
}

/* Mobile tweaks */
@media (max-width:480px){
  .woocommerce ul.products li.product .button,
  .wdf-card .wdf-order{
    font-size:.82rem;
    padding:.6rem .75rem;
    letter-spacing:.2px;
  }
}

/* Responsive grid */
@media (max-width:640px){
  .woocommerce ul.products,
  .woocommerce-page ul.products{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}
