.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.bg-accent {
  background-color: #AA8304 !important;
}
.nav-tabs .nav-link.active {
  background-color: #AA8304 !important;
  color: #fff !important;
  border: none !important;
}
.nav-tabs .nav-link:hover {
  color: #AA8304 !important;
}

.image-primary {
  z-index: 1;
}

.image-secondary {
  z-index: 2;
}

.product-card:hover .image-primary {
  transform: scale(1.05);
}

.product-card:hover .image-secondary {
  opacity: 1;
}

.product-actions a {
  transition: all 0.2s ease-in-out;
}

.product-actions a:hover {
  transform: scale(1.1);
}
