/*
 * Webshop-specific CSS manifest
 * This file only includes styles needed for the webshop, not the full application.css
 *
 * Note: .tailwind.css files are compiled separately and linked via manifest.js

 */

/* Font override — webshop uses Work Sans instead of Inter */
html, body {
  font-family: 'Work Sans', 'Work Sans Fallback', ui-sans-serif, system-ui, sans-serif;
}

body:has(#zoom_image_toggle:checked) {
  overflow: hidden;
}

/* Price mode visibility — toggled via data-price-mode on <body> */
[data-price-mode="gross"] .js-price-net { display: none; }
[data-price-mode="net"] .js-price-gross-primary { display: none; }
[data-price-mode="gross"] .js-price-gross-secondary { display: none; }
