.shop-categories {
  margin-bottom: 40px;
}
.shop-categories-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.shop-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.shop-category {
  text-align: center;
}
.shop-category img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.shop-category h3 {
  margin-top: 10px;
  font-size: 16px;
}


.shop-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.shop-category {
  text-align: center;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.shop-category:hover {
  transform: translateY(-5px);
}

.shop-category img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

.shop-category h3 a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.shop-categories-title {
  margin: 20px 0;
  font-size: 22px;
  font-weight: 600;
}
