.category{
    width: 100%;
    padding-top: 150px;
}

.wraper{
    position: relative;
}

.category_wraper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 55px;
    border-radius: 10px;
    gap: 10px;
}

.category_item{
    width: fit-content;
    padding-left: 15px;
    padding-right: 15px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: white;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.category_item.active_category{
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.items_wraper{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.napojovy_content{
    margin-top: 75px;
}

.napovovy_item{
    width: 310px;
    height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    border: 2px solid black;
}

.drink_info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.napovovy_item img{
    width: 140px;
    height: 220px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
    margin-top: 50px;
}

.ml_switcher{
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 10px;
    margin-right: 10px;
}


.ml_btn{
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background-color: white;
    border: 2px solid black;
    color: black;
}

.ml_btn.active_ml {
    background: #2f2519;
    color: #fff;
    border-color: #2f2519;
}

.category_select_wrap{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    margin-top: 10px;
    position: relative;
}

.subcategory_title {
    flex-basis: 100%;
    width: 100%;
    display: block;
    margin: 30px 0 10px 0;
    font-weight: 700;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}

.select-arrow {
    position: absolute;
    top: 37px;
    right: 5px;
    width: 24px;
    height: 24px;
    background-image: url(/images/chevron-down.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    cursor: pointer;
    
}

#category_select{
    width: 200px;
    height: 40px;
    border-radius: 5px;
    padding-left: 10px;
    border: 2px solid black;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    font-size: 16px;
}


.drink_name{
    text-transform: uppercase;
}

.drink_price{
    font-weight: 700;
}


@media screen and (max-width: 1350px) {
    .items_wraper{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: auto;
        width: 100%;
    }

    .napovovy_item {
        width: 370px;
        height: 460px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        border: 2px solid black;
    }
}

@media screen and (max-width: 1200px) {
    .items_wraper{
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 30px;
        width: 100%;
    }

    .napovovy_item {
        width: 330px;
        height: 460px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        border: 2px solid black;
    }
    
}

@media screen and (max-width: 1100px) {
    .items_wraper{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    }

    .napovovy_item {
        width: 48%;
        height: 460px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        border: 2px solid black;
    }
    
}

@media screen and (max-width: 600px) {
    .category_select_wrap{
        width: 100%;
        align-items: flex-start;
    }
    #category_select{
        width: 100%;
    }
    .select-arrow {
        content: '';
        width: 24px;
        position: absolute;
        top: 28px;
        right: 5px;
        height: 24px;
        background-image: url(/images/chevron-down.png);
        margin-top: 10px;
    }
    .napojovy_content{
        margin-top: 125px;
    }
}

@media screen and (max-width: 500px) {
    .items_wraper{
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
    }

    .napovovy_item {
        width: 100%;
        height: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        border: 2px solid black;
    }
}