 .product-item-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
    width: 100%;
    max-width: 220px;
    margin-bottom: 100px;
  }

  .product-item {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    padding: 30px 20px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .product-item:hover {
    transform: translateY(-10px) scale(1.05);
  }

  .image-container {
    position: relative;
    margin: 0 auto 15px;
    width: 200px;
    height: 200px;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
  }

  .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }

  .product-item:hover .hover-img {
    opacity: 1;
  }

  .product-item:hover .default-img {
    opacity: 0;
  }

  .product-item h6 {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    text-transform: capitalize;
    line-height: 1.3;
  }

  .owl-carousel .owl-stage-outer {
    overflow: visible !important;
  }

  .owl-carousel .owl-item {
    display: flex;
    justify-content: center;
  }

  .owl-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 20px;
    z-index: 2;
    gap: 10px;
  }

  .owl-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: none;
  }

  .owl-dot.active {
    background-color: #3A986C;
    transform: scale(1.2);
  }

  @media (max-width: 768px) {
    .product-item-wrapper {
      margin-bottom: 80px;
    }

    .product-item {
      padding: 20px 15px;
    }

    .image-container {
      width: 150px;
      height: 150px;
      margin-bottom: 10px;
    }

    .product-item h6 {
      font-size: 0.9rem;
    }
  }