.draggable-sticky {
  position: absolute;
  z-index: 900001;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Nunito Sans', Arial, sans-serif;
  user-select: none;
  gap: 16px;
  pointer-events: none;
  opacity: 0;
 }

/*.draggable-sticky.compact .badge-top {
  padding: 4px 10px 4px 4px;
  gap: 6px;
  
}

.draggable-sticky.compact .phone-icon-circle {
  width: 16px;
  height: 16px;
  min-width: 16px;
}

.draggable-sticky.compact .phone-icon-circle svg {
  width: 8px;
  height: 8px;
}

.draggable-sticky.compact .phone-number-text {
  font-size: 9px;
}

.draggable-sticky.compact .badge-call-label {
  font-size: 7.5px;
}

.draggable-sticky.compact .badge-availability {
  font-size: 7px;
  padding: 1px 6px;
  margin-bottom: -11px;
}*/

/* ===== Petit cartouche "24h/24" ===== */
.badge-availability {
  align-self: flex-start;
  margin-top: 1px;
  margin-bottom: -13px;      /* fait chevaucher le bas de .badge-top */
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: #ffffff;
  color: #1e40af;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
  letter-spacing: .3px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}

/* ===== Badge principal (téléphone visible) ===== */
.badge-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 6px 6px;
  border-radius: 50px;
/*  background: linear-gradient(135deg, #1e40af, #2563eb);*/
 background: linear-gradient(135deg, rgb(51, 51, 51, 0.4), rgb(51, 51, 51, 0.6));

/*  box-shadow: 0 10px 25px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .15);*/
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  pointer-events: auto;

}

.badge-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .4);
}

/* Bulle ronde 3D du téléphone */
.phone-icon-circle {
  position: relative;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #7db4ff, #1e40af 75%);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, .4),
    inset 0 2px 3px rgba(255, 255, 255, .5),
    inset 0 -4px 6px rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phoneBreathe 10s ease-in-out infinite;
}

.phone-icon-circle svg {
  width: 20px;
  height: 20px;
  color: #fff;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .3));
}

.phone-icon-circle::before,
.phone-icon-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .55);
  animation: ringPulse 10s ease-out infinite;
}

.phone-icon-circle::after {
  animation-delay: .3s;
}

@keyframes ringPulse {
/*  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.9); opacity: 0; }*/
  0%   { transform: scale(1);   opacity: .7; }
  20%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes phoneBreathe {
  /*0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.06) rotate(-4deg); }*/
  0%   { transform: scale(1)     rotate(0deg); }
  10%  { transform: scale(1.08)  rotate(-4deg); }
  20%  { transform: scale(1)     rotate(0deg); }
  100% { transform: scale(1)     rotate(0deg); }
}

.badge-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.badge-call-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, .8);
}

.phone-number-text {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .4px;
  color: #fff;
  white-space: nowrap;
}

/* ===== Bulle déployée (3 actions) ===== */
.number-bubble {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 12px;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .35);
  opacity: 0;
  transform: translateY(-16px) scale(.9);
  transition: all .45s cubic-bezier(.34, 1.56, .64, 1);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  width: 100%;
  max-width: 250px;
}

.draggable-sticky:not(.collapsed) .number-bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
  max-height: 300px;
  pointer-events: auto;
}

.bubble-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: #f1f5fb;
  color: #1e3a8a !important;
  padding: 9px 12px;
  border-radius: 14px;
  text-decoration: none !important;
  font-size: 13.5px;
  font-weight: 700;
  transition: all .25s ease;
}

.bubble-item:hover {
  background: #dbe6fb;
  transform: translateX(2px);
}

.bubble-item .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, .4), 0 2px 5px rgba(0, 0, 0, .25);
}

.bubble-item .icon-circle svg {
  width: 15px;
  height: 15px;
  color: #fff;
}

.bubble-item--whatsapp .icon-circle {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.bubble-item--dual {
  display: flex !important;
  padding: 6px;
  gap: 4px;
  background: transparent;
}

.bubble-item--dual .dual-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 6px;
  border-radius: 12px;
  color: #1e3a8a !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
  background: #f1f5fb;
  transition: all .25s ease;
}

.bubble-item--dual .dual-action:hover {
  background: #dbe6fb;
}

.bubble-item--dual .dual-action svg {
  width: 15px;
  height: 15px;
}

/* Responsive */
@media (max-width: 480px) {
  .phone-icon-circle { width: 38px; height: 38px; }
  .phone-number-text { font-size: 15px; }
  .number-bubble { max-width: 220px; }
}