.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
  
.hover-lift {
  transition: transform 0.2s ease-in-out;
}
.hover-lift:hover {
   transform: translateY(-4px);
}
  
.breadcrumb-separator::after {
  content: ">";
  margin: 0 0.5rem;
  color: #9CA3AF;
}

.breadcrumb-separator:last-child::after {
  display: none;
}
  
.product-card-shadow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}
  
.product-card-shadow:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.payment-option {
  transition: all 0.2s ease;
}

.payment-option.selected {
  border-color: #3B82F6 !important;
  background-color: #EFF6FF;
}

.payment-option.selected .payment-check {
  display: block !important;
}