* {
    padding: 0px;
    margin: 0px;
}

@font-face {
    font-family: Seravee_Regular;
    src: url('./Seravee_Regular.otf');
  }

html, 
body, 
#root {
    height: 100%;
    background-color: #1F1F1F;
    font-family: 'Seravee_Regular', serif;
}

/* ------- main start ------- */
.wraper {
    display: flex;
    justify-content: space-between;
    background-color: #1F1F1F;
    height: 100%;
    overflow: scroll;
    overflow-x: hidden;
}

.wraper .menu {
    width: 100%;
    max-width: 500px;
}


.wraper .menu .footer {
    font-size: 15px;
    color: #fbf7ea;
    text-align: center;
    /* margin: 25px; */
    padding-bottom:20px;

    position: relative;
    z-index: 15;
}

.wraper .menu .footer .caviar {
    color: #fbf7ea;    
}

.wraper .main-logo {
    text-align: center;
    width: calc(100% - 500px);
    position: fixed;
    overflow: hidden;
    height: 100%;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.wraper .main-logo img {
    width: 250px;
    height: 175px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1280px) {
    
    .wraper .menu{
      max-width: 100%;
    }

    .wraper .main-logo {
        display: none;
    }

    .carousel .slide img {
        height: 185px !important;
        object-fit: cover;
    }
}

@media 
  (min-device-width: 800px) 
  and (max-device-width: 1280px) {

    .menu-items .items {
        width: 70% !important;
    }

    .carousel .slide img {
        height: 500px !important;
        object-fit: cover;
    }

    .intro .footer {
        left: 45% !important;
    }

    .category .category-item { 
        height: 200px !important;
        margin-bottom: 50px !important;
    }


}


/* ------- main end ------- */

/* ------- intro start ------- */

.intro {
    /* height: 84vh; */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: 0 0;
    animation: parallax 10s infinite linear;
    height: 100%;
}

@keyframes parallax {
    0% { background-position: 0 0; }
    100% { background-position: -80px 0; }
  }

.intro::before {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3a38389e;
}

.intro .head{
    text-align: center;
    padding-top: 15vh;
}


.intro .head  img {
    width: 180px;
    height: 130px;
    border-radius: 15px;
    position: relative;
    z-index: 15;
}


.intro .head h3 {
    margin-bottom: 10px;
    font-size: 28px;
    color: #fbf7ea;
}

.intro .head p {
    color: #fbf7ea;
    line-height: 1.6;
}

.intro form {
    margin: 30px;
    position: relative;
    z-index: 17;
}

.intro form .langBtn {
    cursor: pointer;
    position: relative;
}
.intro form .langBtn img {
    margin: auto;
    width: 80%;
    height: 100px;
    display: block;
}

.intro form .langBtn span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #231f20;
    font-size: 22px;

}

.intro .social {
    text-align: center;
    position: relative;
    z-index: 15;
}

.intro .social a{
    margin: auto 6px;
}

.intro .social img{
    width: 45px;
    height: 45px;
}


.intro .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    gap: 10px;
    color: #AC9874;
    font-size: 18px;
}

.intro .info p i {
    margin-right: 10px;
}

/* ------- intro end ------- */



/* ------- Menu start ------- */

.menu-items {   
    width: 100%;
}


.menu-items .head {
    text-align: center;
    position: relative;
    height: 142px;
    z-index: 15;
    border-radius: 0rem 0rem 4rem 4rem;
    border-bottom: 1px solid #AC9874;
    outline: 1px solid #AC9874;
    /* box-shadow: 0 0 3px 2px #AC9874; */
}

.menu-items .head::before {
    content: "";
    width: 100%;
    height: 142px;
    position: absolute;
    background-color: #19191991;
    left: 0px;
    right: 0px;
    border-radius: 0rem 0rem 4rem 4rem;
}

.menu-items .head .logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 75px;
}

.menu-items .head .vintage {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
}

.menu-items .head h2 span{
    color: #e40b0b;
}

.menu-items .head .backward {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 2px 3px;
    cursor: pointer;
    width: 35px;
    height: 35px;
}


.menu-items .head .language {
    position: absolute;
    top: 10px;
    right: 10px;
}

.menu-items .head .language button{
    display: block;
    width: 60px;
    height: 25px;
    background-color: #fbf7ea;
    border: 1px solid #fbf7ea;
    margin-bottom: 5px;
    border-radius: 15px;
    color: #1F1F1F;
    font-size: 12px;
}

.menu-items .head .language .activ{
    background-color: #1F1F1F;
    color: #fbf7ea;
}


.menu-items .carousel {
    width: 100%;
    text-align: center;
    margin: 15px  0px;
}

.menu-items .carousel img{
    height: 150px;
    max-width: 90%;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
    object-fit: cover;

}

.menu-items .categories {
    
    background-color: #1F1F1F;
    padding: 0px 5px;
    margin-top: 30px;
    margin-bottom: 10px;

}

.menu-items .categories > div {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    margin: auto;
    /* justify-content: space-evenly; */
    width: 98%;
    position: relative;
}



.menu-items .categories .categories-item {
    cursor: pointer;
    position: relative;
    /* width: 15rem; */
}
.menu-items .categories .categories-item img {
    margin: auto;
    width: 150px;
    height: 55px;
    display: block;
}

.menu-items .categories .categories-item span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #231f20;
    font-size: 18px;
}


.menu-items .categories .active .categories-name {
    color: #a27150;
    font-weight: bold;  
}

/* .menu-items .categories .active {
    border-bottom: 2px solid white;
} */

.menu-items .categories .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
}


.menu-items .subcategories {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    width: 98%;
    align-items: center;
    margin: auto;
}

.menu-items .subcategories .categories-item {
    padding: 2px;
    margin: auto 5px;
    display: block;
    color: #AC9874;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
}

.menu-items .subcategories .active {
    color: #a27150;
    font-weight: bold;  
}

.menu-items .items {
    /* width: 90%; */
    margin-bottom: 20px;
    padding: 0 0.75rem;
    margin: auto;
}

.menu-items .head-listview{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 15px 0px;
    width: 95%;
}


.menu-items .head-listview .language{
    display: flex;
    justify-content: center;
    width: 75%;
}

.menu-items .head-listview .language div{
    color: #AC9874;
    font-size: 16px;
}

.menu-items .head-listview .language div:nth-child(even){
    border-left: 1px solid #AC9874;
    border-right: 1px solid #AC9874;
    padding: 0 15px;
    margin: auto 15px;

}


.menu-items .head-listview .listview{
    display: flex;
    justify-content: center;
    border: 1px solid #AC98744F;
    border-radius: 4px;
    padding: 2px;
}

.menu-items .head-listview .listview img {
    width: 28px;
    height: 28px;
    margin: auto 3px;
}


.item-order {
    position: absolute;
    background-color: #9d670a;
    color: white !important;
    border-radius: 5px;
    width: 25px;
    text-align: center;
    font-size: 14px !important;
    height: 15px;
}

.menu-items .items .style-list {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0px;
    background-color: #29180e;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 1px 1px #22140C;
}

.menu-items .items .style-list .side-right {
    width: 33.33333333%;
    text-align: end;
    height: 100px;
    overflow: hidden;
}

.menu-items .items .style-list .side-right img{
    width: 100px;
    height: 100px;
    border: 3px;
    /* box-shadow: 0px 1px 5px #1F1F1F; */
    border-radius: 8px !important;
}

.menu-items .items .style-list .side-left{
    width: 66.66666667%;
}

.menu-items .items .style-list .side-left h5{
    color: #fbf7ea;
    font-size: 16px;
    margin: 10px;
}

.menu-items .items .style-list .side-left p{
    color: #fbf7ea;
    font-size: 13px;
    margin: 0px 10px;
}

.menu-items .items .style-list .side-left .price{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 10px;
    flex-direction: column;
}

.menu-items .items .style-list .side-left .price span{
    color: #fbf7ea;
    font-size: 13px;
    font-weight: 600;
}

.menu-items .items .style-list .side-left .price span span{
    margin: 10px
}

.menu-items .items .style-two {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu-items .items .style-two .item {
    width: 46%;
    margin: auto;
    position: relative;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    height: 3vh;
    margin-bottom: 25px;
    transition: height 1s ease-in-out;
    overflow: hidden;
}

.menu-items .items .style-two .item .image{
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.menu-items .items .style-two .item .info{
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.menu-items .items .style-two .item-expand {
    height: 22vh;
}

.menu-items .items .style-two .item-expand .image{
    opacity: 100;
    max-height: 50%;
}

.menu-items .items .style-two .item-expand .info{
    opacity: 100; 
}

.item-bg-two {
    position: relative;
    height: 100%;
}

.item-bg-two .item-bg-content {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.item-bg-two .item-bg-head {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 3;
}

.item-bg-two .item-bg-foot {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 3;
}

.menu-items .items .style-two .image {
    position: absolute;
    max-height: 75px;
    overflow: hidden;
    top: 17%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
}

.menu-items .items .style-two .image .image-loading {
    max-height: 75px;
}

.menu-items .items .style-two .image img {
    width: 100%;
    height: 75px;
    object-fit: cover;
    /* border: 1px solid #fbf7ea; */
    border-radius: 1.75rem;
}

.menu-items .items .style-two .image .item-order {
    top: 4px;
    left: 4px;
}

.menu-items .items .style-two .info {
    position: absolute;
    z-index: 2;
    width: 65%;
    text-align: center;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.menu-items .items .style-two .info h5{
    color: #1F1F1F;
    font-size: 16px;
    display: inline-block;
}

.menu-items .items .style-two .info .price{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.menu-items .items .style-two .info .price span{
    color: #1F1F1F;
    font-size: 10px;
    font-weight: 600;
    margin: auto;
    display: inline-block;
    
}

.menu-items .items .style-two .info .price span span{
    display: block;
    margin-bottom: 5px;
}

.style-large .item {
    width: 7%;
    height: 33vh;
    padding: 8px;
    border-radius: 8px;
    position: relative;
    margin: auto;
    margin-bottom: 15px;
    background-size: 100% 100% !important;
    overflow: hidden;
    transition: width 1s ease-in-out;
}


.style-large .item .image-loading,
.style-large .item h5,
.style-large .item .price
{
    opacity: 0;
    transition: opacity 3s ease-in-out;
}


.style-large .item-expand {
    width: 80%;
}

.style-large .item-expand .image-loading,
.style-large .item-expand h5,
.style-large .item-expand .price
{
    opacity: 100; 
}

.item-bg-large {
    position: relative;
  width: 100%;
  height: 100%;
}

.item-bg-large .item-bg-content {
    height: 74%;
    position: absolute;
    width: 95%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.item-bg-large .item-bg-head {
    position: absolute;
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 3;
}

.item-bg-large .item-bg-foot {
    position: absolute;
    height: 100%;
    top: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 3;
}

.style-large .item .image-loading {
    width: 70%;
    height: 50%;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 18%;
}

.style-large .item .image-loading img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 100%;
}

.style-large .item .item-order {
    top: 12px;
    left: 12px;
}

.style-large .item-bg-large-info {
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.style-large .item h5{
    color: #fbf7ea;
    font-size: 16px;
    color: #1F1F1F;
    margin-bottom: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.style-large .item .price {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.style-large .item .price span{
    color: #1F1F1F;
    font-size: 13px;
    font-weight: 600;
}

.style-large .item .price span span{
    display: block;
    margin-bottom: 5px;
}

/* ------- Menu end ------- */

/* ------- Loader start ------- */

.loader-container {
    margin: auto;
    width: 100%;
    text-align: center;
    margin-top: 60px;
}

.loader {
    width: 35px;
    height: 35px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 

  /* ------- Loader end ------- */


  .swal2-container.swal2-center > .swal2-popup {
    background-color: #29180e;
  }

  .swal2-styled.swal2-confirm {
    background-color: #1F1F1F !important;
    color: #fbf7ea !important;
  }

  .swal2-show {
    animation: swal2-show .7s !important; 
  }

  .image-loading {
    overflow: hidden;
}

.image-view-container {
    position: fixed;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-color: #0d0d0db8;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

@media only screen and (max-width: 1280px) {
    
    .image-view-container {
      max-width: 100%;
    }
}

.image-view-container-hide {
    display: none;
}

.image-view {
    position: absolute;
    width: 15%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    transition: width 1s ease-in-out;
}

.image-view-show {
    width: 95%;
}

.image-view .item-bg-large .item-bg-content {
    height: 74%;
    position: absolute;
    width: 95%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-view .item-bg-large .item-bg-head {
    position: absolute;
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 3;
}

.image-view .item-bg-large .item-bg-foot {
    position: absolute;
    height: 100%;
    top: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 3;
}

.image-view .content-img {
    position: absolute;
    width: 80%;
    height: 55%;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 51;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    object-fit: cover;
}

.image-view .image-view-info{
    position: absolute;
    bottom: 14%;
    left: 10%;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 55;
    flex-direction: column;
    font-size: 20px;
}

.image-view-show .content-img {
    opacity: 1;
}

/* .page-load {
    width: 100%;
    max-width: 500px;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: #000;
    z-index: 100;
    display: flex;
    justify-content: center;
    opacity: 1;
    transition: opacity 3s ease-in-out;
}

.page-load .logo {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 3s ease-in-out;
}

.page-load .logo {
    width: 180px;
    height: 130px;
}

@media only screen and (max-width: 1280px) {
    
    .page-load{
      max-width: 100%;
    }
} */

.sticky-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 500px;
    z-index: 1000;
    background-color: #1F1F1F;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
  }
  

  @media only screen and (max-width: 1280px) {
    
    .sticky-navbar {
      max-width: 100%;
    }
}




.feedback {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feedback h1{
    text-align: center;
    color: #EEE;
    margin: 10px auto;
}

.feedback .feedback-item {
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback .feedback-item .title {
    margin-bottom: 5px;
    color: #EEE;
    font-size: 18px;
}

.feedback .feedback-item textarea, input {
    background-color: #EEE;
    border: none;
    outline: none;
    width: 320px;
    border-radius: 2px;
    color: #16142d;
    padding: 10px;
    margin-top: 10px;
    font-size: 18px;
    box-shadow: 0px 0px 3px 2px #24221f;
}

.feedback .feedback-item textarea {
    height: 100px;
}

.feedback .feedback-item input {
    height: 20px;
}

.feedback .feedback-item button {
    background-color: #C2A580;
    border: none;
    outline: none;
    width: 200px;
    border-radius: 2px;
    color: #1E1E1E;
    padding: 10px;
    height: 40px;
    font-weight: bold;
    margin: 15px auto;
    cursor: pointer;
    font-size: 18px;
}

.feedback-success-message {

    margin: 50px auto;
    padding: 15px;
    text-align: center;
    color: white;
    font-size: 20px;

}

.head-feedback {
    display: flex;
  justify-content: space-between;
}

.head-feedback .backward {
    padding: 25px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    filter: brightness(100);
}


.head-feedback .lang {
    display: flex;
    gap: 10px;
    justify-content: end;
    align-items: center;
    margin-right: 35px;
}

.head-feedback .lang div {
    color: #EEE;
    cursor: pointer;
    font-size: 18px;
}

.head-feedback .lang div:nth-child(2n) {
    border-left: 1px solid #AC9874;
    border-right: 1px solid #AC9874;
    padding: 0 15px;
    margin: auto 15px;
  }

.head-feedback .lang .active {
    color: #AC9874;
}

.send-feedback {
    text-align: center;
    margin: 15px auto;
    border: 1px solid #C2A580;
    padding: 5px;
    border-radius: 3rem 5rem / 4rem 1rem;
    background-color: #C2A580;
    position: relative;
    z-index: 17;
}

.send-feedback a{
    font-size: 20px;
    margin: 8px;
    color: #1F1F1F;
    text-decoration: none;
}

.send-feedback i{
    font-size: 18px;
    margin-right: 4px;
}