/* Hide mobile version by default */
.product-options.mobile {
  display: none;
}

/* Show mobile version on small screens */
@media screen and (max-width: 767px) {
  .product-options.mobile {
    display: block;
  }

  /* Hide desktop version */
  .product-options:not(.mobile) {
    display: none;
  }
}