body{
    padding-top: 70px;
}

/* ستايل الهيدر */

.header__title{
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    color: var(--background-color);
}

/* شريط البحث */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 5%;
  background: #ffffff;
  border-radius: 20px;
  padding: 10px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.search-bar__icon {
  color: #aaa;
  font-size: 1rem;
}

.search-bar__input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.9rem;
  background: none;
  color: var(--primary-color);
}

/* الشبكة */
.categories-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 10px 5% 100px 5%;
}
/* موبايل - 3 أعمدة (الحالي) */
.categories-page__grid {
  grid-template-columns: repeat(3, 1fr);
}

/* تابلت */
@media (min-width: 768px) {
  .categories-page__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* لابتوب */
@media (min-width: 1024px) {
  .categories-page__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.categories-page__grid .category-card__logo {
  width: clamp(80px, 22vw, 105px);
  height: clamp(80px, 22vw, 105px);
}

.categories-page__grid .category-card__logo i {
  font-size: clamp(28px, 7vw, 38px);
}

.categories-page__grid .category-card span {
  font-size: clamp(0.6rem, 2.5vw, 0.8rem);
  font-weight: 700;
}




