.product-hide {
    opacity: 0;
    transition: all .3s;
}
.product-show {
    opacity: 1;
    transition: all .3s;
}
/* สำหรับ 3 คอลัมน์ */
@media (min-width: 1024px) {
  .custom-grid-border > :nth-child(3n+1) {
    border-left: 1px solid #FFFFFF33;
  }

  .custom-grid-border > :nth-child(3n) {
    border-right: 1px solid #FFFFFF33;
  }
    .custom-grid-border > :nth-child(2n) {
    border-left: 1px solid #FFFFFF33;
    border-right: 1px solid #FFFFFF33;
  }
}

/* สำหรับ 2 คอลัมน์ */
@media (min-width: 640px) and (max-width: 1023px) {
  .custom-grid-border > :nth-child(1n) {
    border-left: 1px solid #FFFFFF33;
    border-right: 1px solid #FFFFFF33;
  }
  .custom-grid-border > :nth-child(2n) {
    border-left: none !important;
    border-right: 1px solid #FFFFFF33;
  }
}

/* สำหรับมือถือ: ไม่มีเส้นเลย */
@media (max-width: 639px) {
  .custom-grid-border > a,
  .custom-grid-border > a {
    border-left: none;
    border-right: none;
  }
}