
  .nav-link {
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
  }

  .navbar-nav li:last-child a:hover {
    border: none !important;
  }

  a.nav-link.cart-countwrap {
    border: none !important;
  }

  .navbar-nav:last-child a:focus-visible {
    outline: none;
    border: none;
  }

  .grayscale {
    position: relative;
    z-index: 1;
  }
  .grayscale:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
  }

  .prodcatwrap .prod-info {
    transition: all 0.3s ease; /* Add transition for smooth hover effect */
  }
  .prodcatwrap .prod-info:hover {
    transform: translateY(-5px); /* Adjust as needed */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* Add box shadow on hover */
  }

  .prodcatwrap .prod-info .img-fluid {
    transition: transform 0.3s ease; /* Add transition for smooth image transform */
  }
  .prodcatwrap .prod-info:hover .img-fluid {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
  }

  .bluepatternbg .letushelpyouwrap .container .listbtnstyle a {
    z-index: 1;
    position: relative;
    transition: color 0.3s ease; /* Smooth transition for text color */
  }

  .bluepatternbg .letushelpyouwrap .container .listbtnstyle > div {
    position: relative;
  }
  .bluepatternbg .letushelpyouwrap .container .listbtnstyle div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background:var(--color-secondary);
    transition: height 0.3s ease;
    border-radius: inherit; /* Inherit border-radius from parent li */
    color: #fff;
    z-index: 0;
  }
  .bluepatternbg .letushelpyouwrap .container .listbtnstyle div:hover a {
    color: var(--color-primary); /* Change text color to white on hover */
  }
  .bluepatternbg .letushelpyouwrap .container .listbtnstyle div:hover::before {
    height: 100%;
  }

  .featuredproductswrap .fea-prod-info {
    transition: all 0.3s ease; /* Add transition for smooth hover effect */
  }
  .featuredproductswrap .fea-prod-info:hover {
    /* transform: translateY(-5px);  */
    /* Adjust as needed */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* Add box shadow on hover */
  }

  .featuredproductswrap .fea-prod-info .img-fluid {
    transition: transform 0.3s ease; /* Add transition for smooth image transform */
  }
  .featuredproductswrap .fea-prod-info:hover .img-fluid {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
  }

  footer .footernav ul li a {
    transition: color 0.3s ease;
  }
  footer .footernav ul li a:hover {
    color: var(--color-secondary);
  }

  footer .copyright a {
    transition: color 0.3s ease;
  }
  footer .copyright a:hover {
    color: var(--color-secondary);
  }
