.nav-item a:hover {
  color: var(--accent-color-first);
  position: relative;
}
.nav-item a:hover:after {
  height: 2.5px;
  width: 100%;
  content: " ";
  background: var(--accent-color-first);
  position: absolute;
  bottom: -13px;
  left: 0;
}

.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;
}

.navbar-nav li:last-child a:hover::after {
  display: none;
}

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);
}

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

.letushelpyouwrap .container .listbtnstyle li {
  position: relative;
}
.letushelpyouwrap .container .listbtnstyle li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(
    to top,
    #ab923b 0%,
    #ab923b 50%,
    #ab923b 50%,
    #ab923b 100%
  );
  transition: height 0.3s ease;
  border-radius: inherit; /* Inherit border-radius from parent li */
  color: #fff;
  z-index: 0;
}
.letushelpyouwrap .container .listbtnstyle li:hover a {
  color: #fff; /* Change text color to white on hover */
}
.letushelpyouwrap .container .listbtnstyle li: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);
}
