/* Add custom CSS styles below */ 
.justify-end,.leading-none{
          margin-top: 15px;
                      padding-bottom: 5px;

        }
        .main-nav-container .navbar-brand img {
  width: auto !important; /* اجعل العرض تلقائيًا للحفاظ على النسبة */
  height: 65px !important; /* اضبط الارتفاع كما يناسبك */
  max-height: none !important; /* إزالة أي قيود على الارتفاع */
  max-width: none !important; /* إزالة أي قيود على العرض */
  object-fit: contain !important; /* الحفاظ على نسبة العرض إلى الارتفاع */
}
.s-cart-summary-total{
    display: none;
}
.swiper-backface-hidden .swiper-slide {

    border: 2px solid #E8BD3B;
    margin-left: 10px;
    border-radius: 10px;
}
.header-btn__icon {
    border: none;
}
.header-btn__icon.icon:where([dir="rtl"], [dir="rtl"] *) {
margin-left:0;
    color: #E8BD3B;
}
.header-btn__icon {
    color: #E8BD3B;

}


/* الشبكة */
.s-block.s-block--features .grid {
  gap: 20px; /* تباعد بين العناصر */
}

/* عناصر المميزات */
.s-block--features__item {
  text-align: center; /* محاذاة النص في المنتصف */
  padding: 20px; /* حشوة داخلية */
  background-color: #fff; /* خلفية بيضاء */
  border: 2px solid #d1b250; /* إطار أصفر */
  border-radius: 8px; /* زوايا مستديرة */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* تأثير عند المرور */
}

/* تأثير عند تمرير الفأرة */
.s-block--features__item:hover {
  transform: scale(1.05); /* تكبير العنصر قليلاً */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* إضافة ظل عند التمرير */
}

/* الأيقونات */
.feature-icon {
  font-size: 40px; /* حجم الأيقونة */
  color: #d1b250; /* لون الأيقونة */
  margin-bottom: 15px; /* مسافة أسفل الأيقونة */
}

/* العناوين */
.s-block--features__item h2 {
  font-size: 24px; /* حجم العنوان */
  font-weight: bold; /* سمك العنوان */
  color: #d1b250; /* لون النص */
  margin-bottom: 10px; /* مسافة أسفل العنوان */
}

/* النصوص */
.s-block--features__item p {
  font-size: 16px; /* حجم النص */
  color: #333; /* لون النص */
  line-height: 1.6; /* ارتفاع السطر */
}

.top-navbar {

    color: white;
    background-color: #E8BD3B;
}

.footer-is-light .store-footer .store-footer__inner {
    background-color: #fff;
    color: #D1B250;
}

.s-block--features__item .feature-icon {
    background-color: transparent;
}

/* تنسيق الإعلان */
.s-advertisement-content {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background-color: #f44922;
  

  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.s-advertisement-content-main {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  animation: scroll-text 7s linear infinite;
}

.s-advertisement-content-icon {
  margin-left: 10px;
}

.s-advertisement-action {
  display: none !important;
}

.s-advertisement-action:hover {
  color: #000;
}

/* حركة النص */
@keyframes scroll-text {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* إخفاء العنصر */
.hidden {
  display: none !important;
}