
.custom-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px auto;
  max-width: 100%;
}

.category-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
  text-align: center;
}

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

.category-box img {
  width: 100%;
  height: 300px;
  display: block;
  height: 300px !important;
}

.category-name {
  padding: 15px 10px;
  font-size: 18px;
  font-weight: 600;
  direction: rtl;
}

.category-name a {
  text-decoration: none;
  color: #000;
}

.category-name a:hover {
  text-decoration: underline;
}
