/* ==========================================
   BUTOANE FLOTANTE MOBIL
   Cale: assets/css/floating-buttons.css
   ========================================== */

.floating-mob-container {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none; /* Ascuns implicit, activat de JS pe ecrane < 640px */
    padding: 0 16px;
}

/* Clasa adăugată prin JS pentru afișare */
.floating-mob-container.is-visible {
    display: block;
}

.floating-mob-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 440px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* --- BUTON APEL --- */
.btn-floating-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 24px;
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    transition: transform 0.1s ease;
}

.btn-floating-call:active {
    transform: scale(0.96);
}

.badge-floating-suna {
    position: absolute;
    top: -8px;
    left: -4px;
    background: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-floating-phone {
    fill: #ffffff;
    width: 14px;
    height: 14px;
}

/* --- BUTON WHATSAPP --- */
.btn-floating-wa {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 48px;
    color: #4ade80;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 9999px;
    transition: transform 0.1s ease;
}

.btn-floating-wa:active {
    transform: scale(0.96);
}

.icon-floating-wa {
    fill: #4ade80;
    width: 24px;
    height: 24px;
}