/* =====================================
   JAVO FLOATING FOOTER MAIN CONTAINER
   کانتینر اصلی فوتر
===================================== */

.javo-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
    width: 420px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    z-index: 9999;
    background: rgba(248, 248, 248, 0.15); 
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px); 
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 35px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}
/* =====================================
   FOOTER SECTIONS
===================================== */
.javo-footer-section {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* =====================================
   FOOTER BUTTON
===================================== */
.javo-footer-item {
    flex: 1;

    width: 52px;
    height: 52px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 6px;

    color: #222;
    text-decoration: none;

    border-radius: 50%;

    transition: background .2s ease;
}
/* =====================================
   ICON WRAPPER
===================================== */
.javo-footer-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.javo-footer-icon svg {
    width: 100%;
    height: 100%;
}
/* =====================================
   PLAYER BUTTON
   دکمه مرکزی پلیر
===================================== */

.javo-footer-player {
    width: 52px;
    height: 52px;

    background: transparent;
    color: #222;

    box-shadow: none;
}
.javo-footer-player .javo-footer-icon {
    width: 26px;
    height: 26px;
}

/* =====================================
   HIDE FOOTER WHEN PLAYER OPEN
===================================== */

.javo-bottom-nav{
    transition:
        transform .3s ease,
        opacity .3s ease,
        visibility .3s ease;
}


.javo-bottom-nav.player-open{

    transform: translate(-50%,150px);

    opacity:0;

    visibility:hidden;

}


/* =====================================
   SHOW PLAYER
===================================== */

#javo_master_player{

    transform: translateY(120px);
    opacity:0;
    visibility:hidden;

    transition:
        transform .3s ease,
        opacity .3s ease,
        visibility .3s ease;

}


#javo_master_player.active{

    transform: translateY(0);

    opacity:1;

    visibility:visible;

}

.javo-bottom-nav{
    position: fixed;
}

.javo-bottom-nav::before,
.javo-bottom-nav::after{
    content: "";

    position: absolute;

    top: 50%;

    width: 1px;
    height: 26px;

    transform: translateY(-50%);

    background: rgba(34,34,34,.15);

    border-radius: 999px;

    pointer-events: none;
}

/* خط بین دکمه اول و دوم */
.javo-bottom-nav::before{
    left: 33.3333%;
}

/* خط بین دکمه دوم و سوم */
.javo-bottom-nav::after{
    left: 66.6666%;
}