/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 21:10 Expected ":"
Line 28:10 Expected ":"
Line 33:0 Unexpected "<"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
/* Make return button open in new tab */
.ai_gen_block_f3b41cc_PT3Mgb a[href*='montareturns'] {
  cursor: pointer;
}

/* JavaScript fallback - add target attribute */
<script>
if (document.readyState === 'loading') {
  document.addEventListener('DOMContentLoaded', function() {
    document.querySelectorAll('a[href*="montareturns"]').forEach(link => {
      link.setAttribute('target', '_blank');
      link.setAttribute('rel', 'noopener noreferrer');
    });
  });
} else {
  document.querySelectorAll('a[href*="montareturns"]').forEach(link => {
    link.setAttribute('target', '_blank');
    link.setAttribute('rel', 'noopener noreferrer');
  });
}
</script>

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  
}