/* ===== Classic Product Categories Bar ===== */

#smart-salla-catbar-wrap {
  direction: rtl;
  position: relative;
  z-index: 30;
  background: var(--smart-salla-accent, #7db343);
  box-shadow: none;
  border: 0;
}

#smart-salla-catbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 52px;
}

#smart-salla-catbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background: transparent;
  border: 0;
  border-radius: 0;
  position: relative;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

#smart-salla-catbar a:hover,
#smart-salla-catbar a:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

#smart-salla-catbar a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
}

#smart-salla-catbar a.is-active::after,
#smart-salla-catbar a:hover::after {
  content: "";
  position: absolute;
  right: 18px;
  left: 18px;
  bottom: 8px;
  height: 2px;
  background: #ffffff;
}

@media (min-width: 992px) {
  #smart-salla-catbar {
    flex-wrap: nowrap;
    overflow: visible;
  }
}

@media (max-width: 991px) {
  #smart-salla-catbar {
    min-height: 46px;
    padding: 0 8px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    scroll-behavior: smooth;
  }

  #smart-salla-catbar::-webkit-scrollbar {
    display: none;
  }

  #smart-salla-catbar a {
    min-height: 46px;
    padding: 0 14px;
    font-size: 14px;
  }

  #smart-salla-catbar a.is-active::after,
  #smart-salla-catbar a:hover::after {
    right: 14px;
    left: 14px;
    bottom: 7px;
  }
}

@media (max-width: 575px) {
  #smart-salla-catbar a {
    font-size: 13px;
    padding: 0 12px;
  }
}

/* ===== تصغير سماكة شريط التصنيفات ===== */
#smart-salla-catbar-wrap {
  line-height: 1;
}

#smart-salla-catbar {
  min-height: 38px !important;
  padding: 0 10px !important;
}

#smart-salla-catbar a {
  min-height: 38px !important;
  padding: 0 12px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

#smart-salla-catbar a.is-active::after,
#smart-salla-catbar a:hover::after {
  bottom: 5px !important;
  right: 12px !important;
  left: 12px !important;
  height: 2px !important;
}

@media (max-width: 991px) {
  #smart-salla-catbar {
    min-height: 34px !important;
    padding: 0 6px !important;
  }

  #smart-salla-catbar a {
    min-height: 34px !important;
    padding: 0 10px !important;
    font-size: 13px !important;
  }

  #smart-salla-catbar a.is-active::after,
  #smart-salla-catbar a:hover::after {
    bottom: 4px !important;
    right: 10px !important;
    left: 10px !important;
  }
}

/* تغيير لون عنوان أقسام المنتجات المتحركة إلى لون هوية المتجر */
.s-block__title,
.section-title,
.home-block__title,
.section-header h2,
.section-header h3 {
  color: var(--color-primary) !important;
}