@media (max-width: 768px) {
  .product-card {
    width: 100%;
    box-sizing: border-box;
  }
}

.el-col{
  margin-bottom: 10px;
}
.home-page {
  padding: 20px;
  background: #f5f5f5;
}


.banner {
  width: 100%;
  height: 0;
  padding-bottom: 40%;
  position: relative;
  overflow: hidden;
}
.new-price {
  color: #e74c3c;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}
.banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.section {
  margin: 40px 0;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.weekly-new {
  background: #f0f0f0;
}

.weekly-btn {
  background-color: #ff4d4f !important;
  color: white !important;
  border: none;
  font-weight: bold; 
  height: 45px;
  font-size: 16px;
  transition: 0.3s;
}

.weekly-btn:hover {
  background-color: #66b1ff !important;
}

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


h2 {
  text-align: center;
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
}

.product-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
  transition: transform 0.3s;
  box-sizing: border-box;
}

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


.btn-container {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}


.red-btn {
  background-color: #F56C6C !important;
  border-color: #F56C6C !important;
  color: #fff !important;
  font-weight: bold;
  width: 100%;
  height: 45px;
  font-size: 16px;
  transition: 0.3s;
}

.red-btn:hover {
  background-color: #ff4d4f !important;
  border-color: #ff4d4f !important;
}


.buy-btn {

  height: 45px;
  font-size: 16px;
  transition: 0.3s;
}

.buy-btn:hover {
  background-color: #ff4d4f !important;
  border-color: #ff4d4f !important;
}