/* ===============================
   WIDGET SOS
   =============================== */
.sos-widget {
    position: fixed;
    bottom: 20px;
    left: 20px; /* bas à gauche */
    z-index: 9999;
    font-family: sans-serif;
}

/* Bouton principal */
.sos-widget .main-button {
    background: var(--primary);
    color: var(--text-on-primary);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	max-width: 50%
}

.sos-widget .main-button:hover {
    transform: scale(1.05);
}

/* Wrapper des icônes cachées par défaut */
.sos-widget #iconWrapper {
    display: none;
    flex-direction: column;
    
	position: absolute;
    bottom: 110%;
    left: 0;
    gap: 10px;
    width: 50%;
  
	
}

/* Icônes individuelles */
.sos-widget .icon-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.2s;
	gap: 10px;
}

.sos-widget .icon-slide:hover {
    transform: scale(1.1);
}

/* Ouverture du menu */
.sos-widget.open #iconWrapper {
    display: flex;
    flex-direction: column;
}
