/* المنتج */
.ems-checkout-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ems-product-image img {
  width: 70px;
  height: auto;
  border-radius: 10px;
  background: #f7f7f7;
}

.ems-product-name {
  font-weight: 600;
  line-height: 1.4;
}

/* التحكم في الكمية */
.ems-qty-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.ems-qty-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  border-radius: 6px;
  transition: all .2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ems-qty-btn:hover {
  background: #f0f0f0;
}

.ems-qty-input {
  width: 46px;
  height: 34px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-weight: 600;
  padding: 0 !important;
}

/* السعر */
.product-total {
  font-weight: 700;
  white-space: nowrap;
}

/* موبايل */
@media (max-width: 768px) {
  .ems-checkout-product {
    flex-direction: column;
    align-items: flex-start;
  }
}
