/*
  custom.css vidé volontairement.

  Styles déplacés dans les bons fichiers .tpl :
  - header / menu -> templates/_partials/header.tpl
  - accueil -> templates/index.tpl
  - mon compte -> templates/customer/my-account.tpl
  - inscription -> templates/customer/registration.tpl
  - connexion -> templates/customer/authentication.tpl
  - mot de passe oublié -> templates/customer/password-email.tpl
  - popup panier -> templates/_partials/fc-styles/cart-modal-style.tpl

  Panier, checkout et CMS ont été sortis du custom ou neutralisés.
*/

/* FC badge panier point orange clignotant */
.fc-cart-btn { position: relative !important; }
.fc-cart-dot {
  display: none;
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  background: #E87722;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: fcCartPulse 1s ease-in-out infinite;
}
.fc-cart-dot.active { display: block; }
@keyframes fcCartPulse {
  0%   { transform: scale(1);   opacity: 1; }
  50%  { transform: scale(1.4); opacity: .7; }
  100% { transform: scale(1);   opacity: 1; }
}
