.ProductGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 10px;
}
@media (min-width: 768px) {
  .ProductGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .ProductGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.CategoryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 15px;
  background: #fff;
}
.CategoryGrid .CategoryItem {
  text-align: center;
  cursor: pointer;
}
.CategoryGrid .CategoryItem .CategoryImg {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(13, 110, 253, 0.05);
  transition: all 0.3s ease;
}
.CategoryGrid .CategoryItem .CategoryImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.CategoryGrid .CategoryItem .CategoryImg:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 172, 193, 0.2);
}
.CategoryGrid .CategoryItem .CategoryText {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #0D6EFD;
}

.ProductCard {
  display: block;
  background: #fff;
  border: 1px solid rgba(13, 110, 253, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(13, 110, 253, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ProductCard:active {
  transform: scale(0.97);
}
.ProductCard:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.ProductCard > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  background: #f3f4f6;
}
.ProductCard .Info {
  padding: 10px;
}
.ProductCard .Info .Title {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

/*# sourceMappingURL=MobileProductCategories.css.map */
