.footer {
    background: linear-gradient(180deg, #FFFFFF 0%, #F45E5E 65%);
    color: #000000;
    padding: 50px 0 20px;
    margin-top: 60px;
}
.footer-container {
    max-width: 1422px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-wrapper-1-left{
    width: 60%;
}
.footer-logo{
    margin-bottom: 30px;
}
.footer-logo img {
    max-width: 255px;
    height: auto;
    filter: brightness(1.1);
}

.footer-read-more {
    color: #888888;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
    display: none;
    background: #1A1A1A;
    padding-left: 10px;
    cursor: pointer;
}

.footer-description {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    position: relative;
}
.footer-description.expanded {
    max-height: 1000px;
}

.footer-read-more.show {
    display: inline-block;
}
.footer-description::after {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.footer-description:not(.expanded)::after {
    opacity: 1;
}

.footer-read-more:hover {
    color: #FFFFFF;
}
.footer-wrapper-1-right{
    width: 40%;
}
.box-item{
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    a{
        display: flex;
        flex-direction: column;
        max-width: 200px;
        text-decoration: none;
    }
    img{
        margin: 0 auto;
        max-height: 200px;
        max-width: 100%;
    }
    p{
        color: #000000;
        font-size: 10px;
        margin-top: 15px;
        text-align: center;
    }
    .title-app{
        color: #ffffff;
        background: linear-gradient(180deg, #f50, #ff0d00);
        border: 1.5px solid #fff;
        border-radius: 24px;
        box-shadow: 0 3.19px 3.19px #00000040;
        font-size: 13.5px;
        font-weight: 700;
        line-height: 30px;
        margin: 15px auto;
        width: 121.5px;
    }
}
.box-item:last-child {
    background: url("/images/footer/bar_app.webp") no-repeat 0;
    text-align: right;
}

.desktop-only{
    .footer-wrapper-2{
        display: grid;
        grid-template-columns: auto auto auto auto;
        margin-top: 50px;
        margin-bottom: 20px;
    }
    .wrapper-2-item{
        color: #fff;
        display: flex;
        font-size: 15px;
        gap: 10px;
    }
    .wrapper-2-item-social{
        img{
            width: 380px;
            height: 98px;
            margin: auto;
        }
    }
    .wrapper-2-item-content{
        img{
            margin: 0 auto 10px;
        }
        p{
            margin-bottom: 0;
        }
    }
}
.footer-row-3 {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-payment-icons img,
.footer-social-icons img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    color: #888888;
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}
.footer-menu-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-menu-item {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.mobile-only{
    display: none;
}
@media screen and (max-width: 992px){
    .footer-logo {
        text-align: center;
    }
    .footer-wrapper-1{
        flex-direction: column;
    }
    .footer-wrapper-1-left{
        width: 100%;
    }
    .footer-wrapper-1-right {
        width: 100%;
    }
    .desktop-only{
        display: none;
    }
    .desktop-row-3{
        display: none;
    }
    .mobile-only{
        display: block;
        .mobile-box-title{
            background: url("../images/footer/bg_title.webp") no-repeat 50% / 100% 100%;
            color: #fff;
            font-size: 3.3vw;
            height: 30px;
            line-height: 22px;
            text-align: center;
            margin-top: 30px;
        }
        .mobile-box-content{
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            padding: 15px;
            p{
                color: #000000;
                font-size: 13px;
                margin-bottom: 0;
                text-align: right;
            }
        }
        .mobile-box-news{
            padding: 15px;
            ul{
                background: linear-gradient(180deg, #dd4812, #a8051d);
                border: 1px solid red;
                border-radius: 7px;
            }
            li{
                color: #fff;
                padding: 0 10px;
                list-style: none;
            }
            .box-li-inner{
                align-items: center;
                border-bottom: 1px solid red;
                display: grid;
                grid-template-columns: 150px auto;
                padding: 10px 0;
                img{
                    max-width: 150px;
                }
                .box-news-inner{
                    padding-left: 15px;
                    .title{
                        color: #fffb00;
                        font-size: 3vw;
                        margin-bottom: 3.5px;
                    }
                    .title-child{
                        color: #fff;
                        font-size: 2vw;
                        line-height: 1.33;
                        margin: 0;
                    }
                }
            }
        }
    }
}