/* Default: show desktop version */
.etsy-widget-desktop {
display: block;
}
.etsy-widget-tablet,
.etsy-widget-mobile {
display: none;
}
/* Tablet (between 768px and 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
.etsy-widget-desktop {
display: none;
}
.etsy-widget-tablet {
display: block;
}
}
/* Mobile (up to 767px) */
@media screen and (max-width: 767px) {
.etsy-widget-desktop,
.etsy-widget-tablet {
display: none;
}
.etsy-widget-mobile {
display: block;
}
}