  .visitor-counter {
      
    width: 150px;
       margin: 10px auto;
    text-align: center;
    display: block;
  align-items: center;
  gap: 30px;
  padding: 10px 18px;
  background: #f8f9fb;
  border: 1px solid #e2e6ee;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.visitor-counter .label {
  font-weight: 500;
  color: #555;
}

.visitor-counter .count {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
}


  .enquiry-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.enquiry-popup.active {
  display: flex;
}

.enquiry-box {
  background: #fff;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  position: relative;
  border-radius: 10px;
}

.close-popup {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

    
    /* Product Card */
.vs-product.product-style1 {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 16px;
}

/* Lift card on hover */
.vs-product.product-style1:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image wrapper */
.vs-product.product-style1 .product-img {
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

/* Image zoom */
.vs-product.product-style1 .product-img img {
  transition: transform 0.6s ease;
}

/* Zoom image only */
.vs-product.product-style1:hover .product-img img {
  transform: scale(1.12);
}

.cate-figure{
  bottom: auto;
    /* position: absolute; */
    width: 300px;
    height: 300px;
    /* background-color: var(--theme-color2); */
    background-color: #3e336b40;
    border-radius: 50%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
