Cantina

The best recommendations.
GET THE APP
B2B2C discovery and recommendation software — trusted by specialtyand grocery retailers,hospitality and travel, and consumer platforms and distribution.
<script>
// jQuery
$(document).ready(function () {
  // Show modal on .cta click
  $(".cta").on("click", function () {
    $(".modal").fadeIn(); // or .show() if you don’t want animation
  });
  // Hide modal on .close-x click
  $(".close-x").on("click", function () {
    $(".modal").fadeOut(); // or .hide()
  });
});
</script>