/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 16 2025 | 02:25:52 */
<style>
  .food-menu-tab-content .desktop-image img,
  .food-menu-tab-content .mobile-image img {
    width: 300px;   /* Set your desired width */
    height: auto;   /* Maintain aspect ratio */
    max-width: 100%; /* Responsive */
    object-fit: contain; /* Ensure image fits nicely */
  }

  /* Optional: separate styles for desktop and mobile */
  @media (max-width: 768px) {
    .food-menu-tab-content .desktop-image img {
      display: none;
    }
    .food-menu-tab-content .mobile-image img {
      width: 100%;
      height: auto;
    }
  }
</style>

