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

/* أيقونات عامة للتصنيفات */
.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}

/* أيقونات الملابس - استخدام الصور */
.icon-hoodie:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../images/icons/hoodie.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-tshirt:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../images/icons/tshirt.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-jeans:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../images/icons/jeans.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-shoes:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../images/icons/shoe.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-accessories:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../images/icons/accessories.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-cap:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../images/icons/cap.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-all:before {
  content: "🛍️";
}

/* أيقونات إضافية */
.icon-search:before {
  content: "🔍";
}

.icon-box:before {
  content: "📦";
}
