/* Add custom CSS styles below */ 
/**    silder block ***/
section.s-block.s-block--photos-slider {
    margin-top: 0;
}
section.s-block.s-block--photos-slider .swiper-slide {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}
section.s-block.s-block--photos-slider .swiper-slide,
section.s-block.s-block--photos-slider .swiper-slide img {
    border-radius: 0 !important;
}
section.s-block.s-block--photos-slider .swiper.s-slider-container {
    padding: 0 !important;
}
.home-slider.photos-slider .s-slider-block__title-nav {
    display:none !important;
}
/** End silder block ***/
/** banners blocks ***/
section#IRT__photos-slider-0
{
    margin-bottom: 0 !important;
}
section.s-block.s-block--fixed-banner.wide-placeholder > .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: unset !important;
}
.banner--fixed img {
    border-radius: 0 !important;
}
/** End banners ***/

/* Strat Cat */
/* Grid */
.grid.has-6-photos {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 10px !important;
}

/* إلغاء أي spans أو تخصيصات لكل العناصر */
.grid.has-6-photos .banner-entry {
    grid-column: auto !important;
    grid-row: auto !important;
    grid-column-start: auto !important;
    grid-column-end: auto !important;
    grid-row-start: auto !important;
    grid-row-end: auto !important;
    background: transparent !important
}

/* إزالة أي padding أو مسافات داخلية */
.grid.has-6-photos .banner-entry,
.grid.has-6-photos .banner-entry a {
    padding: 0 !important;
    margin: 0 !important;
}


.banner-entry a:before{
    background-color: transparent !important;
}
/* تابلت */
@media (max-width: 991px) {
    .grid.has-6-photos {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* موبايل */
@media (max-width: 767px) {
    .grid.has-6-photos {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 5px !important;
    }
}

/* End Cat */

/* text Style */
.s-slider-block__title {
    display:none !important;
}
.text-gold {
      display: flex;
      align-items: center;
      /* تمركز عمودي */
      justify-content: center;
      /* تمركز أفقي */
margin: 20px auto;
      background: #a3870b;
      color: #fff;
      font-size: 20px !important;
      width: 30%;
      height: 50px;
      border: none;
      border-radius: 30px;
    }

    .text-gold h5 {
      margin: 0;
       font-size: 18px !important;
    }

/* موبايل */
@media (max-width: 767px) {
    .text-gold  {
        width: 80%;
    }
}

/* Partnar */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-card {
  background: #d9cba3;
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: background .25s ease, transform .25s ease;
}

.logo-card:hover {
  background: #cdbd8e;
  transform: translateY(-3px);
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Responsive breakpoints */
@media (max-width: 1100px) {
  .logos-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 700px) {
  .logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}


/* FAQ */
.faq-wrap {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1.5px solid #c7a93a;
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
  transition: border-radius .2s ease;
}

.faq-item.active {
  border-radius: 22px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-question span.text {
  color: #a3870b;
  font-size: 17px;
  font-weight: 600;
  text-align: right;
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #a3870b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: transform .3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer-inner {
  padding: 0 22px 18px 22px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  text-align: right;
}



/* Feature */
.features-row {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 60px;
      max-width: 1000px;
      margin: 0 auto;
      flex-wrap: nowrap;
    }

    .feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
      min-width: 140px;
    }

    .feature-icon {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: #a3870b;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .feature-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .feature-title {
      color: #222;
      font-size: 17px;
      font-weight: 700;
      margin: 0;
    }

@media (max-width: 480px) {
.features-row {
      gap: 10px;
    }
  
}
.statistics-list__item.flex-col.flex-center small{
    font-size: 15px !important; 
}
/* Footer */
footer.store-footer .store-footer__top {
    background: #A78602 !important;
    color:white !important
}