/**
 * Companion stylesheet for the `sidcart` module — Panda theme integration.
 *
 * Purpose
 * -------
 * Hide the cart widget that sidcart injects through the `displayNav2` hook
 * (the icon shown next to the language selector, markup id `#blockcart-wrapper`)
 * so that ONLY the theme's native cart icon (rendered by the `stshoppingcart`
 * module) stays visible in the header.
 *
 * Why `display:none` and not removing the hook
 * --------------------------------------------
 * `sidcart.js` builds the slide-in panel by cloning the HTML found inside
 * `#blockcart-wrapper .js-cart-source` on `$(document).ready`. The element must
 * therefore remain in the DOM — we only hide it visually. Reading `.html()`
 * from a `display:none` node works exactly the same.
 *
 * This file is loaded by `sidcart::hookdisplayHeader()`. Disabling or
 * uninstalling the sidcart module unloads it and the widget shows again — no
 * theme or core file is touched.
 */
#blockcart-wrapper {
    display: none !important;
}
