/*  إستبدال ايقونة العربة الى حقيبة  */
.sicon-cart:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M160 112c0-35.3 28.7-64 64-64s64 28.7 64 64v48H160V112zm-48 48H48c-26.5 0-48 21.5-48 48v208c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V208c0-26.5-21.5-48-48-48H336V112C336 50.1 285.9 0 224 0S112 50.1 112 112v48zM64 208H384v208H64V208z'/%3E%3C/svg%3E") no-repeat center/contain;
}



/*كتابة إضافة للحقيبة للغة العربية فقط مع الاحتفاظ بالأيقونة */
html[lang="ar"] .simplified-products .product-card--simplified .product-card__mini-cart button {
  position: relative;
  color: transparent;
}

html[lang="ar"] .simplified-products .product-card--simplified .product-card__mini-cart button:before {
  content: "إضافة للحقيبة";
  color: initial;
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*بجانب إضافة للحقيبة إظهار الأيقونة */
html[lang="ar"] .simplified-products .product-card--simplified .product-card__mini-cart button i,
html[lang="ar"] .simplified-products .product-card--simplified .product-card__mini-cart button svg {
  color: initial !important;
  position: relative;
  z-index: 1;
  margin-left: 50px;
}