/* 🟥 Out of Stock Products Message estyle */
.product-item .stock.unavailable {
    color: #c00 !important;
    font-weight: bold;
    font-size: 13px;
    display: block;
    margin-top: 6px;
}
/* Desktop: show slider 1 and hide slider 2 */
@media screen and (min-width: 768px) {
  .banner-desktop { display: block; }
  .banner-mobile { display: none; }
}

/* Mobile: show slider 2 and hide slider 1 */
@media screen and (max-width: 767px) {
  .banner-desktop { display: none; }
  .banner-mobile { display: block; }
}