/* ==== Product Card Base Styles ==== */

/* Container (white inner card) */
.woocommerce ul.products li.product {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

/* Sale Badge */
.sxi-sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff2d55;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: bold;
  z-index: 10;
}

/* Product Image */
.woocommerce ul.products li.product img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

/* Strikethrough regular price */
.sxi-price-html del {
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

/* Sale price */
.sxi-price-html ins,
.sxi-price {
  color: #e60023;
  font-weight: bold;
  display: block;
  margin-bottom: 12px;
}

/* Title */
.woocommerce-loop-product__title {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 12px;
}

/* Star Rating */
.star-rating,
.woocommerce .star-rating {
  color: #ffb400;
  margin-bottom: 12px;
}

/* Buttons & Wishlist */
.sxi-buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.sxi-buttons-wrapper .button {
  flex: 1;
  background: #fee28b;
  color: #333;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  text-transform: none;
}
.sxi-buttons-wrapper .sxi-wishlist-inline {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ffd54f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e60023;
  font-size: 20px;
}
