/* Add custom CSS styles below */ 
/* أول ديف داخل الترويسة (الهيدر) */
header > div {
  background-color: #1e293b; /* غيّري اللون اللي تبينه */
}
.lg\:py-4.py-2.xl\:px-28.lg\:px-18.flex.items-center.justify-between.gap-10.w-full {
  background-color: #ffffff !important; /* رمادي غامق أنيق */
}
/* أيقونات السلة، المستخدم، اللغة، والقائمة */
i.sicon-shopping-bag,
i.sicon-user,
i.sicon-lang,
i.sicon-menu {
  color: #000000 !important; /* أسود */
  fil
  l: #000000 !important;  /* لو كانت SVG */
}
.navbar {
  background-color: #ffffff !important; /* يخلي الخلفية بيضاء */
  color: #000000 !important; /* يخلي النص أسود */
}

/* يضمن أن الروابط داخل القائمة تكون سوداء */
.navbar a {
  color: #000000 !important;
}

/* يخلي النص داخل العناصر الأخرى برضو أسود */
.navbar span,
.navbar li {
  color: #000000 !important;
}

/* القوائم المنسدلة تخليها بيضاء والنص أسود */
.navbar .dropdown-menu {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.navbar .dropdown-menu a {
  color: #000000 !important;
}
img.lazy {
  width: 120% !important; /* تكبير عرض الصورة */
  height: auto !important; /* يخلي الارتفاع يتناسب مع العرض */
  object-fit: cover !important; /* يضمن إنها تغطي الإطار بدون تمدد غير طبيعي */
  transform: scale(1.1); /* تكبير بسيط داخل الإطار */
  transition: all 0.3s ease; /* حركة ناعمة لو تبين تأثير */
}
.bottom-footer {
  background-color: #ffffff !important; /* يجعل الخلفية بيضاء */
}
.s-block--features__item {
    background-color: #000; /* خلفية سوداء */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.s-block--features__item {
    background-color: #fff; /* خلفية بيضاء */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.s-block--features__item .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background-color: #fff; /* نفس لون الخلفية */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px 5px #217782; /* توهج كبير وواضح بلون #217782 */
}

.s-block--features__item .feature-icon i {
    color: #217782; /* لون الأيقونة نفس لون التوهج */
    font-size: 28px;
}

.s-block--features__item h4 {
    color: #000; /* العنوان أسود */
    margin-bottom: 5px;
}

.s-block--features__item p {
    color: #555; /* النص رمادي غامق */
    font-size: 14px;
}