  /* گرید 4 ستونه محصولات */
    .products-grid {
      max-width: 1150px;
      margin: 0 auto 40px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }
      .product-card {
      background: #0b0b0b;
      border-radius: 18px;
      padding: 10px 10px 12px;
      text-align: center;
      border: 1px solid rgba(255, 215, 0, 0.05);
      transition: all 0.2s ease;
      text-decoration:none;
      color:inherit;
      display:flex;
      flex-direction:column;
      min-height:100%;
    }
     .product-img-box {
      background: #fff;
      border-radius: 14px;
      height: 230px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
      overflow: hidden;
      position:relative;
    }
      .product-title {
      font-weight: 700;
      margin-bottom: 3px;
      font-size: 14px;
      min-height: 26px;
    }
    .product-code {
      font-size:12px;
      color:#aaa;
      margin-bottom:5px;
    }
.product-price {
  display: flex;
  flex-direction: row;      /* ✅ همین */
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
  font-size:13px;
}

    .product-price .currency {
      color: #fff;
      font-size: 12px;
      opacity: .85;
    }
    .product-price .amount {
      color: var(--price);
      font-weight: bold;
      font-size: 15px;
    }
      .product-price .out-of-stock {
      color: #ff3b3b;
      font-weight: bold;
      font-size: 14px;
    }
      .details-btn {
      display: inline-block;
      background: transparent;
      color: var(--gold);
      padding: 6px 12px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 12px;
      text-decoration: none;
      border:1px solid var(--gold);
      margin-top:auto;
    }
      .lazy-img {
  filter: blur(8px);
  transition: filter .3s ease;
}
img:not(.lazy-img) {
  filter: none;
}
/* === PRODUCT CARD IMAGE FIX (FINAL) === */

.product-card .product-img-box {
  background: #fff;
  border-radius: 14px;
  height: 180px;          /* اگر تو صفحه اصلی عدد دیگه‌ایه، همونو بزن */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card .product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;    /* 🔥 کلید حل مشکل */
  display: block;
}

