/* 
 * أيقونات مخصصة إضافية
 * BSTM Store
 */

/* أيقونة سلة التسوق */
.icon-cart:before {
  content: "🛒";
  font-size: 1rem;
  margin-left: 5px;
}

/* أيقونة التنبيه/الخطأ */
.icon-warning:before {
  content: "⚠️";
  font-size: 1.2rem;
}

/* أيقونات للسلايدر */
.icon-slider-prev:before {
  content: "❮";
}

.icon-slider-next:before {
  content: "❯";
}

/* أيقونة التحميل */
.icon-loading:before {
  content: "⌛";
  display: inline-block;
  animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
