/* font-family: 'Nanum Gothic', sans-serif; */
html{
  scroll-behavior: smooth;
  font-size: 14px;
}
body{
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}
#navbar{
  border-top: 4px solid #eb6f95;
}
#desktop-nav{
  white-space: nowrap;
  top:65px
}
#menu-list::-webkit-scrollbar {
  display:none;
}

/* Track */
#menu-list::-webkit-scrollbar-track {
  display: none;
}

/* Handle */
#menu-list::-webkit-scrollbar-thumb {
  display: none;
}

/* Handle on hover */
#menu-list::-webkit-scrollbar-thumb:hover {
  display: none;
}
.nav-item{
  border-bottom:2px solid transparent;
}

.increase-decrease input{
  width:20px;
  text-align: center;
}
.increase-decrease input::-webkit-outer-spin-button,
.increase-decrease input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.button-color{
  padding:6px 12px;
  font-size:14px;
}
/* Firefox */
.increase-decrease input[type=number] {
  -moz-appearance: textfield;
}
button:focus{
  outline:none;
}
.cart-items-wrapper{
  max-height:200px;
  padding:8px 2px;
  overflow-y: auto;
}
#variant-modal{
  z-index:999;
  background-color:rgba(0, 0, 0, 0.8);
  display: none;
  overflow-y:auto;
}
.modal-here{
  background-color: #fff;
  max-width:900px;
  height:auto;
  display:flex;
}
#variant-modal .content-wrapper{
  padding-top: 30px;
  padding-bottom:30px;
  height: 100%;
}
.variant-label{
  border:1px solid #e74b7a;
}
.variant-label.selected{
  background-color: #e74b7a;
  color:#fefefe;
}
.variant-label:hover{
  cursor: pointer;
}
#close-variant{
  background-color:#e74b7a;
  border-radius: 50%;
  width:25px;
  height:25px;
  top:-10px;
  right:-10px;
  color:#fefefe;
}
#close-variant:hover{
  cursor: pointer;
}
.item-card .card-info{
  padding-top: 10px;
  padding:10px 10px 0 10px;
}
.item-name .remove-item{
  margin-left:4px;
  font-size:8px;
  background-color: #cb5933;
  border-radius:50%;
  color:#fff;
  padding:2px 3px;
}
#place-order{
  width:100vw;
  height: 100vh;
  position: fixed;
  top:0;
  left:0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index:999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.place-order-wrapper{
  background-color: #fefefe;
  width:450px;
}
.cart-items-wrapper::-webkit-scrollbar {
  width:4px;
}
.hidden-details{
  display: none;
}
.del-icon{
  font-size:48px;
}
#place-order{
  display: none;
  transition: all 0.4s ease-in-out;
}
#place-order.flex-show{
  display: flex;
}
#be-delivery, #be-pickup{
  width:49%;
  border:2px solid #000;
  padding:4px 0;
  opacity:0.4;
}
#be-delivery:hover, #be-pickup:hover{
  cursor: pointer;
}
#be-delivery.active, #be-pickup.active{
  opacity:0.9;
}
#pickup-form{
  display: none;
}
.offer-codes{
  transform:translateX(100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.offer-codes.show{
  transform:translateX(0);
}
.head-banner{
    height:60vh;
}
.head-banner img{
    object-fit:cover;
    object-position:center
}
#fixed-social {
    position: fixed;
    bottom: 130px;
    z-index:999999;
  }
  
  #fixed-social a {
    color: #fff;
    display: block;
    height: 40px;
    position: relative;
    text-align: center;
    line-height: 40px;
    width: 40px;
    margin-bottom: 1px;
    z-index: 2;
  }
  #fixed-social a:hover>span{
    visibility: visible;
    left: 41px;
    opacity: 1;
  } 
  #fixed-social a span {
    line-height: 40px;
    left: 60px;
    position: absolute;
    text-align: center;
    width: 200px;
    visibility: hidden;
    transition-duration: 0.5s;
    z-index: 1;
    opacity: 0;
  }
  .fixed-call{
    background-color: #e74b7a;
  }
  .fixed-email{
    background-color:#665CAC;
  }
  .fixed-whatsapp{
    background: #25D366;
  }
  .fixed-call span{
    background-color: #e74b7a;
  }
  .fixed-email span{
    background-color:#665CAC;
  }
  .fixed-whatsapp span{
    background: #25D366;
  }
  .main-logo{
      height:45px;
  }
  del{
      display:inline-block;
      margin-right:5px;
      opacity:0.7;
  }
  .modal-image{
      width:50%;
  }
  .modal-image img{
      max-width:none;
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center;
  }
  .modal-body{
      width:50%;
  }
@media only screen and (max-width:1300px){
  .cart-items-wrapper {
    max-height: 100px;
    padding: 4px 2px;
    overflow-y: auto;
  }
}
@media only screen and (max-width:1024px){
  /* .menu-right:before{
    
  } */
  #shopping-cart{
    display: none;
  }
  #shopping-cart.show{
    display: block;
  }
  .cart-wrapper{
    opacity: 0;
    visibility: hidden;
  }
  .cart-wrapper.show{
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    position: fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:90%;
    z-index:999;
  }
  body.show-mobile-cart:before{
    content:'';
    z-index:99;
    position: fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background-color:#000;
    opacity:0.6;
  }
  #desktop-nav{
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width:90% !important;
    text-align: center;
    display: none;
    z-index:999;
  }
  #desktop-nav .arrow{
    display: none !important;
  }
  #menu-list{
    overflow-x: visible;
    
  }
  #menu-list li{
    display: block;
  }
  #desktop-nav.show{
    display: block;
  }
  .cart-wrapper.mobile-hide{
    display: none;
  }
}
.mobile-only{
    display:none;
}
.item-card{
    position:relative;
}
.item-card .full-link{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:2;
}
@media only screen and (max-width:600px){
    .desktop-only{
        display:none;
    }
    .mobile-only{
        display:block;
    }
    .modal-image{
        height:200px;
    }
    #variant-modal .content-wrapper{
        padding:30px;
    }
    #close-variant {
        background-color: #e74b7a;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        top: 10px;
        right: 10px;
        color: #fefefe;
    }
  .modal-here, .place-order-wrapper{
    max-width:100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: scroll;
    margin-bottom:20px;
  }
  .cart-items .increase-decrease {
      width:60px;
  }
  .order-detail-form input, .order-detail-form textarea{
      padding-left:25px;
  }
  .modal-image, .modal-body{
      width:100%;
  }
  .button-color{
    padding:6px 12px;
    font-size:13px;
  }
  .card-info .text-lg{
      font-size:13px;
      line-height:17px;
  }
  .item-card .card-info{
      padding:10px 5px 0 5px;
  }
   .card-info .text-base{
      font-size:12px;
      margin:10px 0;
      font-weight:600;
      line-height:15px;
  }
  .head-banner{
      height:225px;
  }
  
  #mobile-cart-button p{
      margin-left:45px;
  }
  #fixed-social a{
      width:35px;
      height:35px;
      line-height:35px;
      margin-bottom:-1px;
  }
  #fixed-social a span{
      line-height:35px;
  }
  .main-logo {
    height: 32px;
}
#cart-message{
   margin-bottom:10px; 
}
}