


  /*categoreis hero Start */
.productBanner-hero {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.productBanner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
 
  top: 0;
  left: 0;
  z-index: 0;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
}

.container {
  z-index: 2;
}


    /* About Us End */






.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid #eee;
}

/* hover */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ===== IMAGE ===== */
.product-img {
  background: linear-gradient(135deg, #fff7ed, #f0f9ff);
  padding: 25px;
  text-align: center;
}

.product-img img {
  max-height: 160px;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

/* ===== BODY ===== */
.product-body {
  padding: 20px;
}

.product-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  color: #222;
}

/* ===== PRICE ===== */
.price-box {
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.new-price {
  font-size: 18px;
  font-weight: 700;
  color: #ff7a18;
}

/* ===== BUTTON ===== */
.btn-cart {
  background:linear-gradient(135deg, rgba(13, 67, 134, 0.986), rgba(22, 53, 90, 0.959));
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-cart:hover {
  background: linear-gradient(90deg, #7928ca, #00c6ff);
  transform: scale(1.03);
}

/* ===== BADGES ===== */
.badge-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff4d4d;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 8px;
  font-weight: 600;
}

.badge-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0d3b66;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 8px;
}

.badge-tag.bestseller {
  background: linear-gradient(90deg, #ff7a18, #ffb347);
  color: #fff;
}
