﻿.filters_menu{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.filters_menu li{
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    background: #f4f4f4;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.filters_menu li.active{
    background: #ff5722;
    color: white;
}

.filters_menu li:hover{
    background: #ff5722;
    color: white;
}
.box{
    transition: 0.3s;
}

.box:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.options a{
    transition: 0.3s;
}

.options a:hover{
    transform: scale(1.2);
}

/*FOR  IMAGE IN MENU*/
.img-box{
    height: 220px;
    overflow: hidden;
}

.img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*FOR  floating cart IN MENU*/
.floating-cart{

    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #ff5722;
    color: white;
    padding: 14px 22px;
    border-radius: 40px;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    z-index: 9999;

}

.floating-cart a{

    color: white;
    text-decoration: none;
    font-weight: bold;

}

.floating-cart span{

    background: white;
    color: #ff5722;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 6px;
}