/* إخفاء الأيقونة الأصلية للسلة */
.sicon-cart::before {
  content: none !important;
}

/* تركيب صورة جديدة كأيقونة السلة */
.sicon-cart {
  background-image: url('https://cdn-icons-png.flaticon.com/512/7420/7420532.png');
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center;
  display: inline-block;
  width: 20px;
  height: 20px;
  color: transparent; /* يخفي الأيقونة القديمة تماماً */
  position: relative;
  top: 5px;
}

/* لون النص أبيض على جميع الأجهزة */
.advanced-slider__caption__inner__content {
  color: #ffffff !important;
}

/* تحريك النص للأعلى في الجوال فقط */
@media only screen and (max-width: 767px) {
  .advanced-slider__caption__inner__content {
    margin-top: -180px !important;
  }
}

/* إخفاء محتوى الأيقونة الأصلي للمستخدم */
.sicon-user::before {
  content: none !important;
}

/* تركيب صورة جديدة كأيقونة المستخدم */
.sicon-user {
  background-image: url('https://cdn-icons-png.flaticon.com/512/4281/4281262.png');
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center;
  display: inline-block;
  width: 20px;
  height: 20px;
  color: transparent; /* يمنع ظهور النص أو بقايا الأيقونة */
  position: relative;
  top: 3px; /* بالسالب = تطلع فوق */
}

/* إخفاء روابط التاقات بدون التسبب في مساحة فارغة */
div.mb-3 > a[href*="/tag-"] {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px); 
  clip-path: inset(50%);
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}