/* Base */
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 15px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;

    /* 🔥 pentru centrare icon + text */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* 👈 spațiu între iconiță și număr */
}

.btn-floating i {
  font-size: 20px; /* sau cât vrei, ex: 24px, 28px */
  pointer-events: none; /* 👈 iconița nu mai e clicabilă */
}

.btn-floating:hover {
    width: auto;
    padding: 0 15px; /* micșorat puțin să nu fugă iconița de mijloc */
    cursor: default; /* 👈 butonul nu mai e clicabil */
}

.btn-floating span {
    font-size: 18px;
    transition: .2s;
    line-height: 1; /* corectat să nu se taie textul */
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* link-ul din span (numărul) */
.btn-floating span a {
    color: white;
    text-decoration: none;
    font-weight: normal; /* 👈 nu mai e bold */
}

.btn-floating span a:hover {
    text-decoration: underline;
}

/* Phone */
.btn-floating.phone {
    bottom: 125px;
    background-color: #760f10;
}

.btn-floating.phone:hover {
    background-color: #c03421;
}

/* WhatsApp */
.btn-floating.whatsapp {
    background-color: #34af23;
    bottom: 70px;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12;
}
