
    /*Основная часть сайта с карточками*/
main{
    display: flex;
    flex-direction: column;
    position: relative;
    top: 133px;
    gap: 57px;
    min-height: 100vh;
    padding: 0 60px;
    }
    #burgerMenu{
        display: none;
    }
/* Фильтры */
#filter-div{
    display: flex;
    justify-content: end;
    width: 100%;
    height: 50px;
}
#filter-img{
    height: 30px;
    width: 30px;
}
#filter{
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #6EA36F;
    border-radius: 5%;
    transition: background-color 0.5s ease;
}
#filter.active{
    background-color: #657765;
}
#filter-main{
    display: flex;
    position: absolute;
    margin-top: 8vh;
    z-index: -1;
    margin-left: 82vw;
    width: 215px;
    height: 390px;
    background-color: #6EA36F;
    border-radius: 5%;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}
#filter-main.opacity{
    z-index: 100;
    opacity: 1;
}
.wight{
    color: white !important;
}
.filter-main-div{
    height: 50%;
}
.filter-ul{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.style-li{
    display: flex;
    column-gap: 10px;
    font-size: 20px;
    align-items: center;
    font-weight: bold;
}
.style-div{
    cursor: pointer;
    width: 20px;
    height: 20px;
    border: 2px solid #657765 ;
    border-radius: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.serkle{
    background-color: #657765;
    border-radius: 30%;
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.serkle.opacitySel{
    opacity: 1;
}
.title{
    margin-left: 20px;
    font-size: 25px;
    font-weight: bold;
}
/* фильтры конец */
#market-div{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
    gap: 80px;
}
.Kart{
        color: white;
    background-color: rgba(78, 170, 73, 0.7);
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    height: 385px;
    min-width: 225px;
    max-width: 300px;
    box-shadow: 0px 0px 20px black;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.Kart-img{
    height: 242px;
    object-fit: cover;
}

.Kart:hover{
    transform: scale(1.02);
    box-shadow: 10px 10px 20px black;
}
.mony{
    font-size: 25px;
    font-weight: 800;
    position: relative;
    bottom: 15px;
    left: 12px;
    transition: color 0.5s; /* Плавный переход */
}
.text-cart{
    overflow-wrap: break-word; /* Современный аналог, лучше использовать */
    padding: 0 5px;
    position: relative;
    left: 5px;
    bottom: 45px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: color 0.5s; /* Плавный переход */
    font-size: 19px;
}
.Kart:hover{
    color: black;
  }
  @media (max-width: 1100px){
    /* Бургер */
    #burgerMenu{
        border-radius: 10%;
        display: flex;
        flex-direction: column;
        row-gap: 30px;
        align-items: center;
        position: fixed;
        justify-content: center;
        height: 200px;
        width: 200px;
        background: -webkit-linear-gradient(180deg, #e8f214,#87cd55,#4aa06c);
        background: linear-gradient(180deg, #e8f214,#87cd55,#4aa06c);
        top: 90px;
        left: 0;
        transform: translateX(0);
        transition: all 0.3s ease 0s;
        margin-left: 100%;
    }
    #burgerMenu.active{
        z-index: 100;
        transform: translateX(-110%)
    }
    .burger-menu-a{
        color: black;
        font-size: 20px;
        font-weight: medium;
    }}
    @media (max-width: 700px){
        #burgerMenu{
            top: 70px;
            row-gap: 20px;
            height: 150px;
            width: 150px;
        }
        .burger-menu-a{
            font-size: 15px;
        }
    }   