/* أيقونة السلة */
.header-cart-icon svg,
.header-cart-icon .corner-badge {
  fill: #ea118d !important;
  color: #ea118d !important;
}

/* أيقونة البحث */
.header-search-icon svg {
  fill: #ea118d !important;
  color: #ea118d !important;
}

/* أيقونة القائمة */
.header-menu-icon svg {
  fill: #ea118d !important;
  color: #ea118d !important;
}

/* أيقونة الملف الشخصي */
.header-user-icon svg {
  fill: #ea118d !important;
  color: #ea118d !important;
}


/* بانر ترويجي */
.care-banner img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* شبكة المنتجات */
.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 0 12px;
}

/* بطاقة المنتج */
.care-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.care-card:hover {
  transform: scale(1.03);
}

/* صورة المنتج */
.care-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* اسم المنتج */
.care-title {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

/* اسم الماركة */
.care-brand {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

/* السعر والخصم */
.care-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color : #ea118d
}

.care-price .old {
  text-decoration: line-through;
  color: #999;
}

.care-price .new {
  color: #e02077;
  font-weight: bold;
}

.care-price .discount {
  background-color: #e02077;
  color: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 12px;
}