/*
 * Custom code goes here.
 * PrestaShop registers this file on its own if it exists (theme-custom), and it is
 * hand-written -- there is no _dev source for it, on FunnyPets either.
 *
 * The rule below is not decoration. FunnyPets carries it, and production loads it:
 * without it the <i> inside an add-to-cart button swallows the click, and the button
 * does nothing when the pointer happens to be over the icon.
 *
 * It has to live HERE rather than in petbeauty.css: classic ships no custom.css, so
 * with use_parent_assets there is nothing for the child to fall back to -- if
 * PetBeauty has no custom.css, the file is simply not loaded and the rule is lost.
 * That is exactly what had happened.
 */
[data-button-action="add-to-cart"] i {
  pointer-events: none !important;
}
