.pt-store-search{
    width: 20rem;
}
.pt-image-is-grayed{
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
    filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
    opacity: 0.5;
}
.pt-fit{
    object-fit: contain !important;
    height: 100% !important;
    width: 100% !important;
}
input:focus{
    border: none !important;
}
input:invalid {
    border: 2px solid red;
  }
  
input:valid {
    border: 2px solid rgb(15, 189, 15);
}

.pt-box-product{
    will-change: transform;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out !important;
}
.pt-box-product:hover{
    transform: scale(1.01) !important;
    /* Optional: enhance the depth effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 9;
}