.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-image {
  border-radius: 12px;
  border: 1px solid #999999;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.overlay h6 a {
  color: #fff;
}

.product-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  padding: 5px 5px;
  text-align: center;
}

.product-info h4 a {
  font-size: 18px;
  font-weight: 600;
  color: #e20030;
}

.counter-box {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 20px 40px;
  text-align: center;
  border-radius: 20px;
}

.counter-box p {
  margin: 5px 0 0;
  padding: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.counter-box i {
  font-size: 60px;
  margin: 0 0 15px;
  color: #fff;
}

.counter-box span {
  color: #fff;
}
.counter {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #666;
  line-height: 28px;
}

.counter-box.colored {
  background: #3acf87;
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
  color: #fff;
}
.countersection {
  padding: 50px 0px;
  background: #e20030;
}

/*innder prduct details*/
.product-details{
  padding-top: 10px;
}
.ddpd{
  padding: 10px 0;
}
.product-details p{
  margin-bottom: 8px;
}
.product-details h5{
  color: #E20030;
  margin: 5px 0 10px;
}
/*E20030*/
