#main-categories {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

#main-categories .section-title {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: bold;
  color: #333;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
}

.category-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.category-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.category-box span {
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

.category-box:hover {
  transform: translateY(-5px);
  background: #fff3f3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}