.smew-categories-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.smew-category {
  background: #f9f9f9;
  border: 1px solid #ddd;
  text-align: center;
  padding: 15px;
  transition: all 0.3s ease;
}

.smew-category:hover {
  background: #e6ffe6;
  transform: translateY(-5px);
}

.smew-cat-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.smew-cat-title {
  font-size: 18px;
  font-weight: bold;
  color: #008000;
  margin: 0;
  line-height: 24px;
}
