/* ==========================================================
   EKBATAN SANAT MOBILE BOTTOM BAR
========================================================== */

.es-mobile-bar{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:space-between;

    height:64px;

    background:#ffffff;
    box-shadow:0 -5px 25px rgba(0,0,0,.12);

    border-top:1px solid #e7e7e7;

    direction:rtl;

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    animation:esBarUp .45s ease;
}

@keyframes esBarUp{

from{

opacity:0;
transform:translateY(100%);
}

to{

opacity:1;
transform:translateY(0);

}

}

.es-btn{

flex:1;

height:100%;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-decoration:none;

transition:.25s;

font-family:inherit;

font-size:13px;

font-weight:700;

gap:4px;

}

.es-btn svg{

width:22px;
height:22px;

transition:.25s;

}

.es-btn span{

line-height:1;

}

.es-btn:hover{

transform:translateY(-2px);

}

.es-btn:hover svg{

transform:scale(1.15);

}

.es-phone{

color:#0b74ff;

}

.es-chat{

background:#25D366;

color:#fff;

}

.es-catalog{

color:#ff6600;

}

.es-chat:hover{

background:#1fb859;

}

.es-phone:hover{

background:#eef6ff;

}

.es-catalog:hover{

background:#fff5eb;

}

/* خط جداکننده */

.es-btn:not(:last-child){

border-left:1px solid #ececec;

}

/* فقط موبایل */

@media(min-width:768px){

.es-mobile-bar{

display:none;

}

}

/* جلوگیری از مخفی شدن محتوا پشت نوار */

body{

padding-bottom:72px;

}