/*
Theme Name: Theme Enfant
Template: Divi
*/

#panier-flottant-wrapper {
  position: fixed !important;
  bottom: 85px !important;
  left: 25px !important;
  z-index: 999999 !important;
}

.panier-flottant {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007cba;
  color: #fff;
  font-size: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.panier-flottant:hover {
  transform: scale(1.1);
  background: #ff6600;
}

.compteur-panier {
  position: absolute;
  bottom: 8px;
  right: 6px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
}

/* Mobile */
@media (max-width: 768px) {
  #panier-flottant-wrapper {
    bottom: 95px !important;
    left: 20px !important;
  }
  .panier-flottant {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  .compteur-panier {
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
  }
}
/* Style du bouton désactivé pour FunnelKit */
.yk-disabled {
    background-color: #7a7a7a !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/* Optionnel : texte gris */
.yk-disabled span,
.yk-disabled {
    color: #ffffff !important;
}

