.banner_footer_section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-footer {
    padding: 8px 0;
}

.bottom_menu_list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.menu_item {
    padding: 3px;
    flex: 1;
    text-align: center;
}

.menu_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    padding: 8px 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.menu_link:hover,
.menu_link.is_active {
    color: #d5242b;
}

.menu_icon_wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.menu_link.is_active .menu_icon_wrapper {
    background: rgba(213, 36, 43, 0.1);
}

.menu_icon {
    font-size: 24px;
    color: #666;
    transition: all 0.3s ease;
}

.menu_link:hover .menu_icon {
    color: #d5242b;
    transform: scale(1.1);
}

.menu_link.is_active .menu_icon {
    color: #d5242b;
    transform: scale(1.15);
}

.menu_text {
    font-size: 11px;
    font-weight: 500;
    margin-top: 2px;
}

.menu_link.is_active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #d5242b;
    border-radius: 3px 3px 0 0;
}

@media (max-width: 480px) {
    .menu_icon_wrapper {
        width: 36px;
        height: 36px;
    }

    .menu_icon {
        font-size: 22px;
    }

    .menu_text {
        font-size: 10px;
    }
}
