.products-wrap{
  width:100%;
  background:#ffffff;
  padding:40px 0;
  direction:rtl;
}

.products-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 10px;
}

.section-title{
  margin:0 0 24px;
  font-size:22px;
  font-weight:700;
  color:#111;
  text-align:center;
}

/* GRID */
.product-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

/* CARD */
.product{
  background:#f3f3f3;
  border:1px solid #d6d6d6;
  display:flex;
  flex-direction:column;
  margin:14px 0;
}

/* IMAGE */
.image-box{
  position:relative;
}

.product img{
  width:100%;
  height:150px;
  object-fit:cover;
}

/* DISCOUNT */
.discount{
  position:absolute;
  top:-14px;
  right:10px;
  width:56px;
  height:56px;
  background:#ff3b3b;
  color:#fff;
  font-size:11px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* INFO */
.info{
  padding:12px;
}

.product h3{
  font-size:14px;
  margin:0 0 8px;
  font-weight:600;
  color:#222;
}

/* PRICE + STARS */
.meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.price{
  font-size:13px;
  font-weight:700;
  color:#000;
}

.stars{
  font-size:12px;
  color:#f2b400;
}

/* BUTTON */
.order-btn{
  margin-top:auto;
  border:none;
  background:#000;
  color:#fff;
  padding:11px 0;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:background .2s ease;
}

.order-btn:hover{
  background:#ff8c00;
}

/* MOBILE */
@media (max-width:768px){
  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
