 
  .slide img{
    background-size: cover;
    height: 100vh !important;
    object-fit: cover !important;
  } 

  @media screen and (max-width:768px){
    #sec-page img{
        height: 45vh !important;
    }

    #half-page{
        height: 45vh !important;
        margin-top: 10px;
    }
  }

  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

.nav2 {
  max-width: 1200px;
  margin: auto;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box {
  color: white;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
}

.cart-count {
  position: absolute;
  background-color: #a38b5e;
  color: white;
  top: -5px;
  right: 0;
  padding: 3px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  border-radius: 50%;
  z-index: 99;
}

#cart-icon {
  font-size: 1.5rem;
  cursor: pointer;
}

#cart-toggle-icon{
  font-size: 1.5rem;
  cursor: pointer;
}


h2.title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.cart {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  background-color: white;
  box-shadow: 0 1px 4px rgba(40, 37, 37, 0.1);
  z-index: 100;
}



.cart-active {
  right: 0;
  transition: 0.5s;
}

.cart-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-box {
  display: grid;
  grid-template-columns: 32% 50% 18%;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}

.cart-img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding: 5px;
}
.detail-box {
  display: grid;
  row-gap: 0.5rem;
}

.price-box {
  display: flex;
  justify-content: space-between;
}

.cart-food-title {
  font-size: 1rem;
  text-transform: uppercase; 
  font-weight: 500;
}

.cart-price {
  font-weight: 500;
}

.cart-quantity {
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  width: 2.4rem;
  text-align: center;
  font-size: 1rem;
}

.cart-remove {
  font-size: 24px; 
  cursor: pointer;
}


.total {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.total-title {
  font-size: 1rem;
  font-weight: 600;
}

.total-price {
  margin-left: 0.5rem;
}

.btn-buy {
  padding: 12px 20px;
  background-color: #2f3542;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

#cart-close {
  position: absolute;
  top: 1rem;
  right: 0.8rem;
  font-size: 2rem;
  cursor: pointer;
}


#cart-close-btn {
  position: absolute;
  top: 1rem;
  right: 0.8rem;
  font-size: 2rem;
  cursor: pointer;
}


.radio-field-view-cart {
  width: 300px;
  padding: 30px 0;
}

@media screen and (max-width: 990px) {
  #cart-icon {
    background-color: none;
    padding: 5px;
    border-radius: 3px;
  }
}

.rating {
  margin-top: -50px !important;
}

@media screen and (max-width: 768px) {
  .rating {
    margin: 0 !important;
  }
}

@media screen and (max-width: 375px) {
  .cart {
    width: 300px;
  }
}

#button-cart {
  display: block;
  float: left;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  height: 50px;
  line-height: 50px;
  padding: 0 35px;
  border-radius: 30px;
  color: #ffffff; 
}
 

.btn-buy {
  display: block;
  float: left;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  height: 50px;
  line-height: 50px;
  padding: 0 35px;
  border-radius: 30px;
  color: #ffffff; 
}

.radio-field-view-cart label {
  display: block;
  float: left;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  height: 50px;
  line-height: 50px;
  padding: 0 35px;
  border-radius: 30px;
  color: #ffffff; 
  cursor: pointer;
}
 
 

.radio-field-view-cart input[type="radio"] {
  visibility: hidden;
}



.mk-simple-alert-box {
  padding: 10px 15px;
  margin: 10px 0;
  border-left: 5px solid;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mk-simple-alert-box-info {
  background-color: #bfdcef;
  color: #457389;
  border-color: #31708f;
}

.mk-simple-alert-box-warning {
  background-color: #f5eecb;
  color: #8a6d3b;
  border-color: #b88d42;
}

.mk-simple-alert-box-success {
  background-color: #d1f2c4;
  color: #3c763d;
  border-color: #53a354;
}

.mk-simple-alert-box-error {
  background-color: #f0cccc;
  color: #a94442;
  border-color: #db5552;
}



/*  */
@media screen and (max-width:480px) {
  
#short-gap{
  margin: 0 !important;
}
} 

.btn-update{
  background-color: #eceff8 !important;
  border: 1px solid #eceff8;
  height: 45px;
}

.btn-remove{
  background-color: #eceff8 !important;
  border: 1px solid #eceff8;
  height: 45px;
  width:30px;
}


.cart-item{
  margin-bottom: 30px;
} 