/* =================================================================== */
/*  Responsive Product Gallery Control for WoodMart Theme
/* =================================================================== */

/*
 * --- ON DESKTOP & LARGE SCREENS ---
 * (Screens wider than 1024px)
*/
#desktop-gallery-row {
  display: block !important;
}

#mobile-gallery-row {
  display: none !important;
}


/*
 * --- ON TABLET & MOBILE SCREENS ---
 * (Screens 1024px wide or smaller)
*/
@media (max-width: 1024px) {
  #desktop-gallery-row {
    display: none !important;
  }
  
  #mobile-gallery-row {
    display: block !important;
  }
}