.index_all{
  height: 60vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #E61D31 #ecf0f1;
  padding: 0 8%;

  margin-bottom: 50px;
}

/* For Chrome, Edge, and Safari */
.index_all::-webkit-scrollbar {
  width: 8px;
}

.index_all::-webkit-scrollbar-track {
  background: #ecf0f1;
  border-radius: 10px;
}

.index_all::-webkit-scrollbar-thumb {
  background-color: #E61D31;
  border-radius: 10px;
  border: 2px solid #ecf0f1;
}

.index_all::-webkit-scrollbar-thumb:hover {
  background-color: #E61D31;
}








.category-filter{
  margin-top: 30px;
}
.menu-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr ;
  gap: 30px;
  margin-top: 35px;
}

.card_box {
  border: 2px solid #ddd;
  background-color: #fff;
  /* border-radius: 25px; */
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  border-radius: 30px;
}

.card_image {
  width: 100%;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  /* border-radius: 30px; */
}

/* .card h4 {
  margin: 5px 0;
  font-size: 1.0em;
} */

.category-name {
 text-align: center;
 font-size: 8px;
}

.card p {
  margin: 5px 0;
  font-size: 1em;
  font-weight: 600;
}

.card_two p{
  font-size: 12px;
}

.card_details {
  padding: 0 3%;
  padding-block: 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.box_details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-block: 10px;

}
.card button {
  color: #243141;
  background-color: transparent;
  border: 2px solid #243141;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 5px;
}

.add_to_cart {
  display: flex;
  gap: 10px;
}

.card_button {
  height: auto;
}





.modal {
  display: none;
  position: fixed;
  z-index: 9001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;

  position: relative;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
}
.slide_button {
  width: 100%;
  display: flex;
  
}
.slide_button button{
width: 100% !important;
background-color: #E61D31;
padding: 15px 85px;
color: #fff;
border: none;

}
.category-filter{
  padding: 0 8%;
}
.swiper {
  width: 100%;
  padding: 10px 35px;
}
.swiper-wrapper {
  display: flex;
  align-items: center;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide button {
padding: 15px 45px;
  border: none;
  background-color: #E61D31;
  color: white;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  white-space: nowrap;
}
.swiper-slide button.active {
  background-color: #034635;
}

@media only screen and (max-width: 1110px) {
  .menu-container {
    display: grid;
    grid-template-columns:  1fr 1fr;
  }
 
}
@media only screen and (max-width: 910px) {
  .menu-container {
    display: grid;
    grid-template-columns:  1fr ;
  }
  .modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 80% !important;
  
    position: relative;
  }
}
@media only screen and (max-width: 450px) {
  .menu-container {
    display: grid;
    grid-template-columns: 1fr;
  }
  .card_price {
    width: 100%;
  }
}
