
.menu_main_page{
    
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    
}
.menu_categories::-webkit-scrollbar {
  display: none;
  width: 0; /* For vertical scrollbar */
  height: 0; /* For horizontal scrollbar */
}
.menu_categories {
    position: -webkit-sticky;
    position: sticky ;
    top: 0;
   z-index: 199;
    display: flex;
    
     /* Set a fixed width for the container */
  overflow-x: auto; /* Enable horizontal scrolling when needed */
  white-space: nowrap; /* Prevent text wrapping */
  background-color: whitesmoke;
  
  
}

.menu_categories div {
    line-height: 50px;
  display: inline-block; /* Arrange items horizontally */
  /* background-color: lightblue; */
font-family: var(--ysa);
font-size: 20px;
margin: 0px 10px 0px 20px;
font-weight: 800;

  
  
  
}







.card_photo_container{
  position: relative;
}

/* photo */
.card_photo_container>*:first-child{
    width: 100%;
    border-radius: 5px 5px 0 0;
    /* object-fit: cover; */
}

/* heart */
.heart_icon_button,.heart_icon{
    position: absolute;
    width: 6vw;
    height: 6vw;
    border-radius: 50%;
    right: 10px;
    top: 10px;
    border:none;
}


.menu_item_card{
    width: 60vw;
    
    
    background-color: white;
    border-radius: 5px;
    
}

/* strawberrycake */
.menu_item_card>div:nth-of-type(2){  
    font-family: var(--ysa);
    width: 100%; 
    font-size: 25px;
    font-weight: 600; 
    display: flex;
    justify-content: center;
    line-height: 25px; 
    text-align: center;
    background-color: whitesmoke;
    padding: 10px 0 10px 0;
}


.menu_card_links{

    background-color:var(--main_green);
    color: white;
    font-family:var(--ysa);
    font-weight: 700;
    height: 70px; 
    font-size: 15px;
    width: 100%;
    border-radius:0 0 5px 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    
  
}

.menu_card_links>div:first-child,.menu_card_links>div:last-child{
    display: flex;
    align-items: center;
    
}


.item_counter{
    display: flex;
    justify-content: space-between;
    background-color: cadetblue;
    height: 30px;
    width: 150px;
}
.item_counter>button:first-of-type,.item_counter>button:last-of-type{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background-size: contain;
    background-color: lightgrey;
    
}
.item_counter>button:first-of-type{
    background-image: url("../icons/remove_24dp_434343_FILL0_wght400_GRAD0_opsz24.png");
}
.item_counter>button:last-of-type{
    background-image: url("../icons/add_24dp_434343_FILL0_wght400_GRAD0_opsz24.png");
}

.item_counter>div{
    display: flex;
    align-items: center;
    /* background-color: chocolate; */
    font-size: 30px;
    font-family: var(--ysa);
    font-weight: bolder;
}

.categories_title{
    font-family: var(--ysa);
    font-size: 30px;
    display: inline-block;
    /* background-color: thistle; */
    margin: 0px;
    margin-left: 5%;
    font-weight: 800;
    /* border-bottom: solid 2px rgb(40, 42, 75); */
    
    
}
.categories_description{
    font-family: var(--scope01);
    font-size: 18px;
    margin:0 5% 0 5%;
    

}




















@media only screen and (max-width:250px) {
    .menu_item_card{
        width: 200px;
    }
    
}




