.home {
  /* margin-top: 80px; */
  padding: 20px;
}
.el-col{
  margin-bottom: 10px;
}
.banner-img {
  width: 100%;
  height: 400px;
  /* object-fit: cover; */
}

h2 {
  font-size: 24px;
  margin: 20px 0;
  color: #333;
}

.hot-products,
.category-section,
.flash-sale {
  margin-top: 40px;
}

.product-img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.product-info {
  text-align: center;
  padding: 10px;
}

.price {
  font-size: 18px;
  margin: 10px 0;
}

.new-price {
  color: #e74c3c;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}

.category-section {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}

.category-card {
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.category-content {
  text-align: center;
}

.category-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 10px;
}

h3 {
  margin-top: 15px;
  font-size: 18px;
  color: #333;
}


.red-btn {
  background-color: #ff4d4f !important; 
  color: #fff !important;
  border: none;
  transition: background 0.3s, transform 0.2s;
}

.red-btn:hover {
  background-color: #e63946 !important; 
  transform: translateY(-2px);
}