.ProductGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 10px;
}
@media (max-width: 480px) {
  .ProductGrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .ProductGrid {
    grid-template-columns: 1fr 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 {
  background: #fff;
  border: 1px solid rgba(13, 110, 253, 0.08);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(13, 110, 253, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.ProductCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}
.ProductCard img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.ProductCard .Info {
  padding: 10px;
}
.ProductCard .Info .Title {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.4;
}
.ProductCard .Info .Price {
  font-size: 16px;
  font-weight: bold;
  color: #0D6EFD;
}

/*# sourceMappingURL=MobileProductCategories.css.map */
