.product_tile {
  height: 360px;                          /* Fixed height */
  transition: all 0.3s ease-in-out;       /* Smooth animation */
  box-shadow: 0 2px 8px rgba(...);        /* Default shadow */
}

.product_tile:hover {
  box-shadow: 0 12px 24px rgba(...);      /* Enhanced shadow */
  transform: translateY(-8px);             /* Lift effect */
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}



