.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 88px;
    gap: 32px;
    position: relative;
    z-index: 1000;
}
.header .logo{
    width: 100%;
    max-width: 110px;
    height: 40px;
}
.header .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header .select-restaurant {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background: #2E3030;
    border-radius: 12px;
    width: 100%;
    max-width: 230px;
    cursor: pointer;
    overflow: hidden;
}
.header .select-restaurant.active {
    overflow: unset;
}
.header .select-restaurant .fake-select{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.header .select-restaurant .fake-select .rest-list{
    display: flex;
    flex-direction: column;
    font-weight: 500;
    width: 100%;
    position: absolute;
    top: 0;
    border-radius: 0px 0px 12px 12px;
    overflow: hidden;
}
.header .select-restaurant .fake-select .rest-list li {
    display: none;
}
.header .select-restaurant.active .fake-select .rest-list li {
    display: flex;
}
.header .select-restaurant .fake-select .rest-list li.active {
    display: flex;
    order: -1;
}
.header .select-restaurant .fake-select .rest-list  li a{
    display: flex;
    padding: 12px 40px 12px 20px;
    width: 100%;
}
.header .select-restaurant.active .fake-select .rest-list  li.active{
    background: #BB9255;
    font-weight: 500;
    border-radius: 12px 12px 0px 0px;
        border-bottom: 1px solid rgba(253, 252, 251, 0.05);
}
.header .select-restaurant.active .fake-select .rest-list  li:hover{
    background: #DAAE6C;
}
.header .select-restaurant.active .fake-select .rest-list li.active:hover {
    background: #BB9255;
}
.header .select-restaurant.active .fake-select .rest-list  li{
    font-weight: 300;
    border-bottom: 1px solid rgba(253, 252, 251, 0.05);
    background: #2E3030;
}
.header .select-restaurant.active .fake-select .rest-list  li:last-child{
    border-bottom: none;
}
.header .select-restaurant .fake-select .deco-arrow {
    position: absolute;
    right: 20px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6L7.28327 10.2922C7.67339 10.6831 8.30656 10.6837 8.69749 10.2936L13 6' stroke='%23FDFCFB' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}
.header .select-restaurant.active .fake-select .deco-arrow {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.7886 15.1698C10.5886 15.1698 10.3986 15.0898 10.2586 14.9498L7.83859 12.5298C7.54859 12.2398 7.54859 11.7598 7.83859 11.4698C8.12859 11.1798 8.60859 11.1798 8.89859 11.4698L10.7886 13.3598L15.0886 9.05979C15.3786 8.76979 15.8586 8.76979 16.1486 9.05979C16.4386 9.34979 16.4386 9.82978 16.1486 10.1198L11.3186 14.9498C11.1786 15.0898 10.9886 15.1698 10.7886 15.1698Z' fill='%23FDFCFB'/%3E%3C/svg%3E");
}
.header .events-text {
    text-align: center;
}
.header .events-text:hover {
    color: #BB9255;
}
.header .contact-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: auto;
}
.header .contact-area .icon-area{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    min-width: 40px;
    height: 40px;
    background-color: #2E3030;
}

.header .contact-area .icon-area img{
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.header .contact-area .contact-wrapper{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.header .contact-area .contact-wrapper .tel {
    font-weight: 500;
    line-height: 120%;
}
.header .contact-area .contact-wrapper .opening-hours {
    color: #ABABAB;
    font-size: 12px;
    line-height: 120%;
}
.header .contact-area:hover .icon-area {
    background-color: #BB9255;
}
.header .contact-area:hover .contact-wrapper .tel {
    text-shadow: 0px 4px 4px rgba(37, 37, 37, 0.25);
    color: #BB9255;
}
.header .lang {
    display: flex;
    gap: 6px;
}
.header .lang li{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 300;
}
.header .lang li a{
    color: #ABABAB;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .lang li:hover{
    background-color: #2E3030;
}
.header .lang li:hover a{
    color: #FDFCFB;
}
.header .lang li.active{
    background-color: #2E3030;
    color: #FDFCFB;
    font-weight: 500;
}
.header .lang li.active a {
    color: #FDFCFB;
}
.header .cart{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.header .cart .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    min-width: 40px;
    height: 40px;
    background-color: #2E3030;
}
.header .cart:hover {
    color: #BB9255;
}
.header .cart:hover .icon{
    background-color: #BB9255;
}

.header .cart .icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.header .mob-icon-menu {
    display: none;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 11H25' stroke='%23FDFCFB' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M11 16L25 16' stroke='%23FDFCFB' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M7 21H25' stroke='%23FDFCFB' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}
.header.mob-ver .mob-icon-menu {
    background-color: #2E3030;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.7128 16.773L7.22748 8.28777C6.93757 7.99785 6.93757 7.51702 7.22748 7.22711C7.5174 6.93719 7.99823 6.93719 8.28814 7.22711L16.7734 15.7124C17.0633 16.0023 17.0633 16.4831 16.7734 16.773C16.4835 17.063 16.0027 17.063 15.7128 16.773Z' fill='%23FDFCFB'/%3E%3Cpath d='M7.22658 16.773C6.93666 16.4831 6.93666 16.0023 7.22658 15.7124L15.7119 7.22711C16.0018 6.93719 16.4826 6.93719 16.7725 7.22711C17.0624 7.51702 17.0624 7.99785 16.7725 8.28777L8.28724 16.773C7.99732 17.063 7.51649 17.063 7.22658 16.773Z' fill='%23FDFCFB'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media (max-width: 1100px) {
    .header .contact-area .contact-wrapper {
        display: none;
    }
    .header .cart .cart-text{
        display: none;
    }

}
@media (max-width: 870px) {
     .header {
        height: 60px;
    }
    .header .lang {
        flex-direction: column;
        position: relative;
        /* top: 22px; */
    }
    .header .logo {
        max-width: 78px;
        height: 30px;
    }
    .header .lang li {
        display: none;
    }
    .header .lang li.active {
        display: flex;
    }
    .header .lang:hover {
        top: 10px;
        position: absolute;
        right: 55px;
    }
    .header .lang:hover li {
        display: flex;
    }
}
@media (max-width: 769px) {
    .header {
        gap: 8px;
        position: fixed;
        top: 0;
        background: rgba(37, 37, 37, 0.78);
        box-shadow: 0px 4px 10px 0px rgba(53, 53, 53, 0.05);
        backdrop-filter: blur(10px);
        flex-wrap: wrap;
        z-index: 999;
    }
    .header .select-restaurant {
        display: none;
    }
    .header .events-text {
       display: none;
    }
    .header .cart {
        display: none;
    }
    .header .contact-area .icon-area {
        display: none;
    }
    .header .mob-icon-menu {
        display: flex;
    }
}


.menu-for-mob {
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 100vh;
    left: -200%;
}

.menu-for-mob .mob-wrapper {
    padding: 0 15px 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: fixed;
    overflow-y: scroll;
    width: 100vw;
    height: 100vh;
    top: 60px;
    left: 0;
    gap: 30px;
    background-color: #252525;
    scrollbar-width: none;
    -ms-overflow-style: none;
    left: -200%;
    transition: 0.7s;
}
.menu-for-mob .mob-wrapper.active {
    left: 0;
}

.menu-for-mob .mob-wrapper::-webkit-scrollbar {
    display: none;
}

.menu-for-mob .mob-wrapper .mob-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 16px;
}

.menu-for-mob .mob-wrapper .mob-menu>li {
    padding: 20px 0;
    border-bottom: 1px solid #FDFCFB0D;
}

.menu-for-mob .mob-wrapper .mob-menu>li:last-child {
    border-bottom: unset;
}

.menu-for-mob .mob-wrapper .mob-menu>li .sub-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 15px;
    max-width: 400px;
}

.menu-for-mob .mob-wrapper .mob-menu>li .sub-menu li {
    border-radius: 12px;
    padding: 10px;
    background: #2E3030;
    position: relative;
}

.menu-for-mob .mob-wrapper .mob-menu>li .sub-menu li.active {
    background: #BB9255;
    font-weight: 500;
}

.menu-for-mob .mob-wrapper .mob-menu>li .sub-menu li.active::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 6px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.7886 15.1698C10.5886 15.1698 10.3986 15.0898 10.2586 14.9498L7.83859 12.5298C7.54859 12.2398 7.54859 11.7598 7.83859 11.4698C8.12859 11.1798 8.60859 11.1798 8.89859 11.4698L10.7886 13.3598L15.0886 9.05979C15.3786 8.76979 15.8586 8.76979 16.1486 9.05979C16.4386 9.34979 16.4386 9.82978 16.1486 10.1198L11.3186 14.9498C11.1786 15.0898 10.9886 15.1698 10.7886 15.1698Z' fill='%23FDFCFB'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;

}

.menu-for-mob .mob-wrapper .name-group {
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: #FDFCFBB2;
}
.menu-for-mob .mob-wrapper .contact-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.menu-for-mob .mob-wrapper .contact-area .icon-area {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    min-width: 40px;
    height: 40px;
    background-color: #2E3030;
}

.menu-for-mob .mob-wrapper .contact-area .icon-area img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.menu-for-mob .mob-wrapper .contact-area .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-for-mob .mob-wrapper .contact-area .contact-wrapper .tel {
    font-weight: 500;
    line-height: 120%;
}

.menu-for-mob .mob-wrapper .contact-area .contact-wrapper .opening-hours {
    color: #ABABAB;
    font-size: 12px;
    line-height: 120%;
}

.menu-for-mob .mob-wrapper .contact-area:hover .icon-area {
    background-color: #BB9255;
}

.menu-for-mob .mob-wrapper .contact-area:hover .contact-wrapper .tel {
    text-shadow: 0px 4px 4px rgba(37, 37, 37, 0.25);
    color: #BB9255;
}
.menu-for-mob .mob-wrapper .social-area {
    display: flex;
    padding-bottom: 40px;
    flex-direction: column;
    gap: 20px;
}
.menu-for-mob .mob-wrapper .social-area .social{
    display: flex;
    margin-bottom: 40px;
    gap: 20px;
}
.menu-for-mob .mob-wrapper .social-area .social li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: #363636;
    border-radius: 50%;
}
.menu-for-mob .mob-wrapper .social-area .social li a:hover{
    background: #BB9255;
}
.menu-for-mob .mob-wrapper .social-area .social li a img{
    width: 17px;
    height: 17px;
    object-fit: contain;
}