
.footer{
    background:#fff;
    border-top:4px solid var(--primary-red);
}

.footer-top{
    padding:70px 0 50px;
}

.footer-logo{
    height:45px;
    width:auto;
    margin-bottom:20px;
}

.footer-desc{
    color:var(--text-muted);
    font-size:15px;
    line-height:1.8;
    margin-bottom:25px;
}

.footer-payment{
    margin-top:20px;
}

.payment-cards{
    max-height:36px;
    width:auto;
}

.footer-title{
    color:var(--primary-red);
    font-size:17px;
    font-weight:700;
    margin-bottom:22px;
    position:relative;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.footer-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:40px;
    height:3px;
    background:var(--primary-yellow);
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:var(--text-dark);
    text-decoration:none;
    transition:var(--transition);
    font-size:15px;
}

.footer-links a:hover{
    color:var(--primary-red);
    padding-left:4px;
}

.footer-support{
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid #ececec;
}

.support-item{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    color:var(--text-dark);
    font-size:14px;
}

.support-item i{
    color:var(--primary-red);
    width:18px;
}

.footer-bottom{
    border-top:1px solid #ececec;
    background:#fafafa;
    padding:18px 0;
}

.secure-text{
    color:var(--primary-red);
    font-weight:600;
    font-size:14px;
}

.secure-text i{
    color:var(--primary-yellow);
    margin-right:8px;
}

.footer-disclaimer{
    padding:12px 0;
    background:rgba(255,255,255,.05);
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-disclaimer p{
    margin:0;
    text-align:center;
    font-size:13px;
    line-height:1.6;
}

.footer-disclaimer strong{
    color:var(--primary-yellow);
}

.payment-cards-bottom{
    max-height:34px;
    width:auto;
}

@media(max-width:991px){

    .footer{
        text-align:center;
    }

    .footer-title::after{
        left:50%;
        transform:translateX(-50%);
    }

    .support-item{
        justify-content:center;
    }

    .payment-cards-bottom{
        margin-top:15px;
    }

}

/* back to top */
.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:var(--primary-red);
    color:var(--text-light);
    font-size:18px;
    cursor:pointer;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:var(--transition);
    box-shadow:var(--shadow-md);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    background:var(--primary-yellow);
    color:var(--primary-red);
    transform:translateY(-3px);
}

.back-to-top:focus{
    outline:none;
}

.back-to-top i{
    line-height:1;
}

@media(max-width:768px){

    .back-to-top{
        width:48px;
        height:48px;
        right:20px;
        bottom:20px;
        font-size:16px;
    }

}
