/* Nav hover underline */
.nav-item a:hover {
  color: var(--color-primary);
  position: relative;
}

.nav-link {
  transition: color .35s ease;
}

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

/* Category card hover */
.prodcatwrap .prod-info {
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
}
.prodcatwrap .prod-info:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(10, 9, 8, 0.25);
}

.prodcatwrap .prod-info .img-fluid {
  transition: transform 0.5s ease;
}
.prodcatwrap .prod-info:hover .img-fluid {
  transform: scale(1.04);
}

/* Services list hover fill — gold sweep */
.letushelpyouwrap .container .listbtnstyle li a {
  z-index: 2;
  position: relative;
  transition: color 0.4s ease;
}
.letushelpyouwrap .container .listbtnstyle li { position: relative; }
.letushelpyouwrap .container .listbtnstyle li::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 0;
  background: var(--gold-gradient);
  transition: height 0.4s cubic-bezier(.2,.7,.2,1);
  border-radius: inherit;
  z-index: 0;
}
.letushelpyouwrap .container .listbtnstyle li:hover a { color: var(--color-secondary); font-weight: 500; }
.letushelpyouwrap .container .listbtnstyle li:hover::before { height: 100%; }

/* Featured product hover */
.featuredproductswrap .fea-prod-info {
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
}
.featuredproductswrap .fea-prod-info:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(10, 9, 8, 0.25);
}
.featuredproductswrap .fea-prod-info .img-fluid {
  transition: transform 0.5s ease;
}
.featuredproductswrap .fea-prod-info:hover .img-fluid {
  transform: scale(1.04);
}

/* Footer nav hover */
footer .footernav ul li a {
  transition: color 0.3s ease;
}
footer .footernav ul li a:hover {
  color: var(--color-primary);
}
footer .copyright a { transition: color 0.3s ease; }
footer .copyright a:hover { color: var(--gold-light); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
