/* ===== MOBILE ===== */
.wrap-fixed-footer {
    background: #fff;
    -webkit-box-shadow: 0 7px 36px rgba(16, 42, 67, 0.15);
    -moz-box-shadow: 0 7px 36px rgba(16, 42, 67, 0.15);
    box-shadow: 0 7px 36px rgba(16, 42, 67, 0.15);
    width: 100%;
    color: #fff;
    height: 55px;
    line-height: 55px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 90;
    padding: 5px;
    margin: 0;
    box-shadow: 0 4px 10px 0 #000;
}
.wrap-fixed-footer
  z-index: 9999;
}

ul.wrap-fixed-footer li {
    margin-bottom: 0px;
}
.wrap-fixed-footer li .a-button, .icon-hotline-detail a {
    background: 0 0;
    color: #0088d0;
    width: 100%;
    height: 100%;
    line-height: 16px;
    text-align: center;
    display: block;
    position: relative;
    font-size: 12px;
    font-weight: 400;
    padding: 2px 0 0;
}
.wrap-fixed-footer li .a-button i, .icon-hotline-detail a i {
    font-size: 26px;
    display: block;
}

i.fa-solid.fa-phone {
    position: absolute;
    margin-top: -83px;
    background: red;
    padding: 25px;
    color: #ffffff;
    border-radius: 50%;
    animation: luc-lac 1s infinite ease-in-out;
    height: 62px;
    width: 62px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
a.a-button.my-phone {
    bottom: -14px;
}
@keyframes luc-lac{
0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
}
10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
}
20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
}
30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
}
40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
}
50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
}
100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
}
}
.wrap-fixed-footer {
    display: none;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    width: 100%;
    height: 55px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    margin: 0;
    padding: 0;
}

/* chỉ hiện mobile */
@media (max-width: 768px) {
    .wrap-fixed-footer {
        display: flex;
    }
}

.wrap-fixed-footer li {
    flex: 1;
    list-style: none;
    height: 100%;
}

.wrap-fixed-footer li .a-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* ✅ CĂN GIỮA DỌC */
    width: 100%;
    height: 100%;
    padding: 0; /* ❌ bỏ padding-top */
    font-size: 12px;
    color: #0088d0;
    text-align: center;
    line-height: 1.2;
}

.wrap-fixed-footer li .a-button i {
    font-size: 22px;
    margin-bottom: 2px;
}