@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    background: #151b20;
}

/* ---------------------- Common CSS Section Start ---------------------- */
:root {
    --themeBlack: #151b20;
    --darkBlack: #0e1317;
    --themeYellow: #f8cc1a;
    --themeMastered: #f8cc49;
    --themeRed: #ec2224;
    --themeWhite: #ffffff;
    --textColor: #a5a6a6;
    --borderRadius: 10px;
    --themeBorder: 0.2px solid #ffffff1f;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 100px;
    font-family: 'Lobster Two';
}

h2 {
    font-size: 80px;
    font-family: 'Lobster Two';
}

h3 {
    font-size: 40px;
    font-family: 'Sofia';
}

h4 {
    font-size: 28px;
    font-family: 'Sofia';
}

h5 {
    font-size: 22px;
    font-family: 'Sofia';
}

h6 {
    font-size: 18px;
    font-family: 'Sofia';
}

.section-header {
    color: var(--themeMastered);
    text-align: center;
    margin-bottom: 40px;
}

.common-btn {
    width: 160px;
    height: 50px;
    background: var(--themeMastered);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--borderRadius);
    color: var(--darkBlack);
    font-weight: 500;
}

/* ---------------------- Common CSS Section End ---------------------- */

/* ---------------------- Font CSS Section Start ---------------------- */
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia';
    src: url('../font/Sofia-Regular.woff2') format('woff2'),
        url('../font/Sofia-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lobster Two';
    src: url('../font/LobsterTwo.woff2') format('woff2'),
        url('../font/LobsterTwo.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lobster Two';
    src: url('../font/LobsterTwo-Bold.woff2') format('woff2'),
        url('../font/LobsterTwo-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* ---------------------- Font CSS Section End ---------------------- */

/* ------------Scrollbar customization Start------------ */
/* width */
::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--themeMastered);
    border-radius: var(--borderRadius);
    /* border-radius: 10px; */
}

/* ------------Scrollbar customization End------------ */

/* ---------------------- Owl-Carousel CSS Section Start ---------------------- */
.owl-dots {
    text-align: center;
    padding-top: 15px;
    margin: 20px auto;
}

.owl-dots button.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: var(--textColor);
    margin: 0 3px;
}

.owl-dots button.owl-dot.active {
    background-color: var(--themeMastered);
}

.owl-dots button.owl-dot:focus {
    outline: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    /* background-color: var(--themeMastered) !important;
    color: var(--darkBlack) !important; */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -10px;
}

.owl-carousel .owl-nav .owl-prev {
    left: 40%;
}

.owl-carousel .owl-nav .owl-next {
    right: 40%;
}

/* ---------------------- Owl-Carousel CSS Section End ---------------------- */

/* ---------------------- Loading CSS Section Start ---------------------- */
.loading {
    width: 100%;
    height: 100%;
    /* background-color: #fde500; */
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

@keyframes loading-item {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loading-item div {
    position: absolute;
    animation: loading-item 1s linear infinite;
    width: 128px;
    height: 128px;
    top: 36px;
    left: 36px;
    border-radius: 50%;
    box-shadow: 0 6.4px 0 0 var(--themeYellow);
    transform-origin: 64px 67.2px;
}

.loading-inner {
    width: 200px;
    height: 200px;
    display: inline-block;
    overflow: hidden;
}

.loading-item {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
    /* see note above */
}

.loading-item div {
    box-sizing: content-box;
}

/* ---------------------- Loading CSS Section End ---------------------- */

/* ---------------------- Navbar CSS Section Start ---------------------- */
.custom-navbar {
    width: 100%;
    padding: 10px 0;
    background: var(--darkBlack);
    border-bottom: var(--themeBorder);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: top 0.8s ease-in-out;
}

.custom-navbar .nav-menu {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-navbar .nav-menu .brand {
    width: auto;
    height: 60px;
}

.custom-navbar .nav-menu .brand img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.custom-navbar .nav-menu nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.custom-navbar .nav-menu nav ul li {
    display: inline-block;
    padding-inline: 5px;
}

.custom-navbar .nav-menu nav ul li a {
    text-transform: uppercase;
    font-weight: 400;
    color: var(--themeMastered);
}

.custom-navbar .nav-menu nav ul li a:hover,
.custom-navbar .nav-menu nav ul li a.active {
    color: var(--themeWhite);
    transition: all 0.5s;
}

.custom-navbar .nav-menu .search {
    display: flex;
    align-items: center;
    width: auto;
    transition: all 0.3s ease;
}

.custom-navbar .nav-menu .search-input {
    outline: none;
    background: transparent;
    color: var(--textColor);
    border: none;
    font-size: 16px;
    padding: 15px;
    height: 40px;
    width: 0;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.custom-navbar .nav-menu .search-btn {
    background: var(--darkBlack);
    color: #a5a6a6;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 24px;
    height: 40px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-navbar .nav-menu .search.active .search-input {
    width: 200px;
    opacity: 1;
    border-bottom: var(--themeBorder);
    margin-left: 10px;
}

.custom-navbar .nav-menu .search.active .search-btn {
    background: var(--darkBlack);
}

/* .custom-navbar .nav-menu .search-btn, */
.custom-navbar .nav-menu .cart-btn {
    color: #a5a6a6;
    font-size: 24px;
    padding-left: 20px;
}

.custom-navbar .nav-menu .common-btn {
    margin-left: 20px;
}

.custom-navbar .nav-menu .nav-btn {
    display: none;
}

.hamburger,
.hamburger-two {
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.hamburger .line,
.hamburger-two .line {
    width: 28px;
    height: 2px;
    border-radius: 50px;
    background-color: var(--themeWhite);
    display: block;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover,
.hamburger-two:hover {
    cursor: pointer;
}

#hamburger-1 .line:nth-child(2),
#hamburger-2 .line:nth-child(2) {
    width: 20px;
}

#hamburger-1.is-active .line:nth-child(2),
#hamburger-2.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1),
#hamburger-2.is-active .line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3),
#hamburger-2.is-active .line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ---------------------- Navbar CSS Section End ---------------------- */

/* ---------------------- Mobile view Navbar CSS Section Start ---------------------- */
.mobile-menu {
    display: none;
}

/* ---------------------- Mobile view Navbar CSS Section End ---------------------- */

/* ---------------------- Banner CSS Section Start ---------------------- */
#banner {
    padding: 100px 0;
    /* position: relative; */
}

#banner .banner-text,
#banner .banner-img {
    position: relative;
}

#banner .banner-text h5 {
    color: var(--themeMastered);
    font-family: 'Sofia';
    margin-bottom: 20px;
}

#banner .banner-text h2 {
    color: var(--themeWhite);
    font-family: 'Lobster Two';
    font-weight: bold;
    font-style: normal;
    margin-bottom: 20px;
}

#banner .banner-text p {
    color: var(--textColor);
    font-size: 16px;
    margin-bottom: 20px;
}

#banner .banner-text p span {
    font-family: 'Sofia';
    font-size: 16px;
    color: var(--themeYellow);
}

#banner .banner-object .hero-object {
    position: absolute;
}

#banner .social-media {
    width: 40px;
    height: 180px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#banner .social-media a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--darkBlack);
    transition: all 0.5s;
    position: relative;
    z-index: 96;
}

#banner .social-media a::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--themeMastered);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s;
}

#banner .social-media a:hover {
    color: var(--themeWhite);
    transition: all 0.5s;
}

#banner .social-media a:hover::before {
    color: var(--themeWhite);
    transform: scale(0);
    transition: all 0.5s;
}


#banner .banner-object .prawn {
    top: 150px;
    left: -60px;
}

#banner .banner-object .drumstick {
    width: auto;
    height: 80px;
    bottom: 160px;
    left: 45px;
    transform: rotate(-92deg);
}

#banner .banner-object .bowl {
    bottom: 138px;
    left: 220px;
}

#banner .banner-object .drumstick-r {
    width: auto;
    height: 60px;
    top: -20px;
    left: 180px;
}

#banner .banner-object .momo-r {
    width: 60px;
    height: auto;
    top: -60px;
    right: 120px;
}

#banner .banner-object .chicken-momo-r {
    width: 90px;
    height: auto;
    bottom: 220px;
    right: -50px;
}

#banner .banner-object .prawn-r {
    bottom: 40px;
    right: 0px;
}

#banner .banner-object .veg-momo-r {
    width: 90px;
    height: auto;
    bottom: -80px;
    right: 200px;
}

#banner .banner-object .chilli-r {
    width: 80px;
    height: auto;
    bottom: -120px;
    left: 40px;
}

#banner .feedback {
    width: 40px;
    height: 120px;
    background: var(--themeYellow);
    border-radius: 20px 0 0 20px;
    color: var(--darkBlack);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.5s;
}

#banner .feedback span {
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transform: rotate(90deg);
    transition: all 0.5s;
}

#banner .feedback:hover {
    background: var(--themeWhite);
    transition: all 0.5s;
}

#banner .feedback:hover span {
    color: #e63946;
    transition: all 0.5s;
}


/* ---------------------- Banner CSS Section End ---------------------- */

/* ---------------------- About CSS Section Start ---------------------- */
#about {
    padding: 100px 0;
    background: var(--darkBlack);
}

#about .about-text h3 {
    color: var(--themeYellow);
    margin-bottom: 20px;
}

#about .about-text p {
    font-size: 16px;
    text-align: justify;
    color: var(--textColor);
}

#about .about-text .common-btn {
    margin-block: 30px;
}

#about .achievements {
    width: 100%;
    height: 120px;
    /* background: var(--themeBlack); */
    border-radius: var(--borderRadius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-block: 30px;
}

#about .achievements .counter-box {
    width: calc(100% / 3);
    height: 90%;
    border: var(--themeBorder);
    text-align: center;
    border-radius: var(--borderRadius);
    background: var(--themeBlack);
}

#about .achievements .counter-box .counter-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--themeWhite);
}

#about .achievements .counter-box .counter-label {
    font-size: 16px;
    margin-top: 10px;
    color: var(--themeMastered);
}

#about .about-img {
    width: 100%;
    height: auto;
    text-align: center;
    position: relative;
}

#about .about-img .about-main-img {
    width: 60%;
    height: auto;
    margin: 0 auto;
}

#about .about-img .about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-img-object {
    width: 200px;
    height: 200px;
    position: absolute;
}

.about-img-object img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-img-object.one {
    top: -60px;
    right: 40px;
}

.about-img-object.two {
    bottom: -60px;
    left: 40px;
}

/* ---------------------- About CSS Section End ---------------------- */

/* ---------------------- portfolio CSS Section Start ---------------------- */
#portfolio {
    padding: 100px 0;
}

#portfolio .img-box {
    width: 100%;
    height: 263px;
    border-radius: var(--borderRadius);
    overflow: hidden;
}

#portfolio .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------------- portfolio CSS Section End ---------------------- */

/* ---------------------- Menus CSS Section Start ---------------------- */
#menus {
    padding: 100px 0;
    background: var(--darkBlack);
}

#menus .menu-items {
    width: 100%;
    height: 300px;
    border-radius: var(--borderRadius);
    overflow: hidden;
    border: var(--themeBorder);
    margin-block: 10px;
    position: relative;
}

#menus .menu-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.712);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.50s;
}

.img-overlay:hover {
    opacity: 1;
}

.img-overlay>* {
    transform: translateY(40px);
    transition: transform 0.50s;
}

.img-overlay:hover>* {
    transform: translateY(0);
}

.img-overlay h3 {
    color: var(--themeWhite);
    font-family: 'Lobster Two';
    /* text-transform: uppercase; */
}

.img-overlay h5 {
    color: #ffffffa4;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
}


.img-overlay .rating {
    font-size: 24px;
    color: var(--themeYellow);
    font-family: 'Lobster Two';
}

/* .img-overlay a {
    width: 150px;
    height: 55px;
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    color: #ffffff;
    padding: 12px 15px;
    box-sizing: border-box;
    border: 2px solid #ffffff;
    margin: 0px auto;
} */



#menus .common-btn {
    margin: 40px auto 0;
}

/* ---------------------- Menus CSS Section End ---------------------- */

/* ---------------------- Flash Deals CSS Section Start ---------------------- */
#flash-deals {
    padding: 100px 0;
}

/* ---------------------- Flash Deals CSS Section End ---------------------- */

/* ---------------------- Client say CSS Section Start ---------------------- */
#client-say {
    padding: 100px 0;
    background: var(--darkBlack);
}

#client-say .client-say {
    width: 90%;
    min-height: auto;
    background: var(--themeBlack);
    border: var(--themeBorder);
    border-radius: var(--borderRadius);
    position: relative;
    padding: 40px 20px;
    margin-top: 40px;
}

#client-say .client-say::before {
    content: "\f10d";
    /* fa-quote-left */
    font-family: "FontAwesome";
    font-size: 16px;
    color: var(--textColor);
    position: absolute;
    top: -20px;
    left: 20px;
    background: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
}

#client-say .client-say::after {
    content: "\f10e";
    /* fa-quote-right */
    font-family: "FontAwesome";
    font-size: 16px;
    color: var(--textColor);
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
}

#client-say .client-say::after img {
    width: 60%;
}

#client-say .client-say .client-msg {
    font-size: 20px;
    color: var(--textColor);
    margin-bottom: 40px;
}

#client-say .client-say .client-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#client-say .client-say .client-info .rating {
    color: var(--themeMastered);
    font-size: 20px;
}

#client-say .client-say .client-info .client-name {
    color: var(--themeMastered);
}

.swiper {
    width: 60%;
    height: 360px;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.swiper-pagination-bullet {
    right: 10px;
    background: var(--textColor);
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: var(--themeMastered);
    opacity: 1;
}

/* ---------------------- Client say CSS Section End ---------------------- */

/* ---------------------- Blog CSS Section Start ---------------------- */
#blog {
    padding: 100px 0;
}

#blog .stories {
    width: 100%;
    height: auto;
    margin: 40px auto 0;
    background: var(--darkBlack);
}

#blog .stories .video-item {
    width: 100%;
    height: 320px;
}

#blog .stories .video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#blog .stories .video-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#blog .stories .stories-info {
    padding: 20px;
}

#blog .stories .stories-info .stories-title {
    font-size: 28px;
    color: var(--themeMastered);
}

#blog .stories .stories-info .stories-details {
    font-size: 16px;
    color: var(--textColor);
}

/* ---------------------- Blog CSS Section End ---------------------- */

/* ---------------------- Contact CSS Section Start ---------------------- */
#contact {
    padding: 100px 0;
    background: var(--darkBlack);
}

#contact .section-header {
    text-align: left;
}

#contact .brand {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
}

#contact .brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#contact .get-in-touch ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#contact .get-in-touch ul li a {
    color: var(--textColor);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

#contact .get-in-touch ul li .icon {
    width: 30px;
    height: 30px;
}

#contact .get-in-touch ul li .icon img {
    width: auto;
    height: 100%;
}

#contact .social-media {
    /* width: 180px; */
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    /* border: var(--themeBorder); */
    border-radius: 50px;
}

#contact .social-media a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--darkBlack);
    transition: all 0.5s;
    position: relative;
    z-index: 98;
}

#contact .social-media a::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--themeMastered);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s;
}

#contact .social-media a:hover {
    color: var(--themeWhite);
    transition: all 0.5s;
}

#contact .social-media a:hover::before {
    color: var(--themeWhite);
    transform: scale(0);
    transition: all 0.5s;
}

#contact .h5 {
    font-size: 22px;
    color: var(--themeMastered);
    margin-top: 24px;
}

#contact ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#contact ul li {
    padding-block: 5px;
    color: var(--textColor);
    font-weight: 500;
}

#contact ul li a {
    color: var(--textColor);
    font-weight: 500;
}

#contact ul li span {
    display: inline-block;
    width: 50px;
    margin-right: 10px;
}

#contact .location {
    width: 100%;
    height: 320px;
    border-radius: var(--borderRadius);
    overflow: hidden;
}

#contact .location iframe {
    width: 100%;
    height: 100%;
}

/* ---------------------- Contact CSS Section End ---------------------- */

/* ---------------------- Legal CSS Section Start ---------------------- */
#legal {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#legal p {
    text-align: center;
    line-height: 0;
    color: var(--textColor);
    padding-top: 5px;
}

/* ---------------------- Legal CSS Section End ---------------------- */

/* ---------------------- Scroll-Top CSS Section Start ---------------------- */
#scroll-top {
    width: 40px;
    height: 40px;
    background: #000;
    border: 1px solid var(--textColor);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 30px;
    bottom: 30px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s;
    z-index: 9999;
}

#scroll-top:hover {
    background: var(--themeWhite);
}

#scroll-top:hover .arrow-w {
    opacity: 0;
}

#scroll-top:hover .arrow-b {
    opacity: 1;
}

#scroll-top.active {
    transform: translateY(0px);
    opacity: 1;
    transition: 0.5s ease;
}

#scroll-top img {
    position: absolute;
}

#scroll-top img.arrow-b {
    opacity: 0;
}

/* ---------------------- Scroll-Top CSS Section End ---------------------- */


/* =========================== SPECIAL MENU PAGE CSS START =========================== */
/* ---------------------- Item list CSS Section Start ---------------------- */
#item-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#item-list .main-items {
    width: 300px;
    height: 100vh;
    background: var(--darkBlack);
    border-right: var(--themeBorder);
    padding: 90px 20px 40px 20px;
    z-index: 99;
    overflow-x: hidden;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 0;
}

#item-list .main-items h4 {
    text-align: left;
    color: var(--themeWhite);
}

#item-list .main-items ul.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#item-list .main-items ul.main-menu li {
    width: 100%;
    border-bottom: var(--themeBorder);
    padding: 10px 0px;
    box-sizing: border-box;
}

.momo-items-list li a.active {
    color: var(--themeMastered);
}

.main-menu li.drop-down-btn {
    position: relative;
}

.main-menu li.drop-down-btn::before {
    content: "";
    background-image: url('../img/icon_plus.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 16px;
    height: 16px;
}

.main-menu li.drop-down-btn.expanded::before {
    background-image: url('../img/icon_minus.png');
}

#item-list .main-items ul.main-menu li a {
    color: var(--textColor);
    font-size: 20px;
    font-weight: 600;
    display: block;
}

/* #item-list .main-items ul.main-menu li a:hover, */
#item-list .main-items ul.main-menu li a.active {
    color: var(--themeMastered);
}

#item-list .main-items ul.main-menu li .momo-items-list {
    width: calc(100% - 10px);
    display: none;
    background: var(--darkBlack);
    padding: 10px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#item-list .main-items ul.main-menu li .momo-items-list li {
    padding: 5px 5px 5px 20px;
    border: none;
    /* box-sizing: border-box; */
}

.momo-items-list li a {
    font-size: 16px !important;
    color: var(--textColor);
}

/* .momo-items-list li a:hover, */
.momo-items-list li a.active {
    color: var(--themeMastered);
}

#item-list .card-menus {
    width: calc(100% - 300px);
    margin-left: 320px;
}

#item-list .tab-content {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 100px 20px 0px;
    overflow-x: hidden;
    overflow-y: auto;
}

#item-list .tab-content .legal {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--textColor);
    margin-top: 40px;
}

#item-list .tab-content h3 {
    color: var(--themeYellow);
    font-weight: 400;
    margin-bottom: 20px;
}

#item-list .tab-content h5 {
    color: var(--textColor);
    font-weight: 400;
    margin-bottom: 20px;
}

/* #item-list .tab-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#item-list .tab-content ul li {
    display: flex;
    padding-block: 5px;
}

#item-list .tab-content ul li .icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 20px;
}

#item-list .tab-content ul li .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

#item-list .tab-content ul li a span {
    width: 310px;
    display: inline-block;
}

#item-list .tab-content ul li a .half,
#item-list .tab-content ul li a .full {
    width: 50px;
    display: inline-block;
    text-align: center;
}

#item-list .tab-content ul li a .qty {
    color: var(--themeMastered);
    text-align: center;
}

#item-list .tab-content ul li a {
    color: var(--themeWhite);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s;
}

#item-list .tab-content .card {
    width: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: 25px;
    background: var(--darkBlack);
    margin-block: 15px;
}

#item-list .tab-content .card .card-image {
    width: 100%;
    height: auto;
}

#item-list .tab-content .card .card-image>img {
    width: 100%;
    border-bottom-right-radius: 30px;
    transform: rotate(10deg) translate(-15px, -25px);
    height: 220px;
    object-fit: cover;
    /* object-position: center; */
}

#item-list .tab-content .card .card-details {
    padding: 5px 20px 20px 20px;
}

#item-list .tab-content .card .card-details .card-info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

#item-list .tab-content .card .card-details .icon {
    width: 20px;
    height: 20px;
}

#item-list .tab-content .card .card-details .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#item-list .tab-content .card .card-details .item-title {
    width: calc(100% - 30px);
    height: 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--themeMastered);
    margin-bottom: 10px;
}

#item-list .tab-content .card .card-details .item-title span {
    font-size: 12px;
    color: var(--textColor);
}

#item-list .tab-content .card .card-details .item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#item-list .tab-content .card .card-details .item-info .item-flavour {
    font-size: 15px;
    font-weight: 600;
    color: var(--textColor);
}

#item-list .tab-content .card .card-details .item-info .item-rating {
    font-size: 14px;
    text-align: right;
    color: orangered;
}

/* .card {
   width: 295px;
   overflow: hidden;
   border-radius: 25px;
   border: 1px solid lavender;
   margin: 10px;
   box-shadow: 5px 5px 15px 5px rgba(230, 230, 250, 1);
}

.card__image {
   position: relative;
   height: 140px;
}
.card__image > img {
   max-width: 100%;
   border-bottom-right-radius: 30px;
   transform: rotate(10deg) translate(-15px, -55px);
   position: absolute;
   height: 200px;
   object-fit: cover;
   object-position: center;
}

.card__info {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   padding: 0px 30px 20px 30px;
}
.card__info h3 {
   font-size: 18px;
   font-weight: 700;
}
.card__info p {
   font-size: 14px;
   font-weight: 600;
}
.card__info--price {
   text-align: right;
   color: orangered;
} */
/* ---------------------- Item list CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */
/* =========================== SPECIAL MENU PAGE CSS END =========================== */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section Start ---------------------- */

#feedback {
    padding: 60px 0;
}

#feedback .feedback-area {
    width: 100%;
    background: var(--darkBlack);
    border: var(--themeBorder);
    border-radius: 20px;
    padding: 40px;
}

#feedback .feedback-area .brand {
    width: 300px;
    height: auto;
    margin: 0 auto 40px;
}

#feedback .feedback-area .brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#feedback .feedback-area h2 {
    text-align: center;
    color: var(--themeMastered);
    margin-bottom: 40px;
}

#feedback .feedback-area .question {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-block: 20px;
    color: var(--themeWhite);
}

#feedback .feedback-area .question .qus,
#feedback .feedback-area .fieldset .qus {
    width: 50%;
    font-size: 20px;
    display: block;
    font-weight: 400;
    color: var(--textColor);
}

#feedback .feedback-area .question .stars {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

#feedback .feedback-area .question .stars .star {
    font-size: 30px;
    color: #ffcc00;
    opacity: 0.2;
    cursor: pointer;
    transition: opacity 0.2s;
}

#feedback .feedback-area .label span {
    color: var(--themeRed);
}

#feedback .feedback-area .fieldset label {
    margin-right: 20px;
}

#feedback .feedback-area .fieldset input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

#feedback .feedback-area .fieldset input[type="radio"]:checked {
    border-color: var(--themeWhite);
}

#feedback .feedback-area .fieldset input[type="radio"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--themeMastered);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#feedback label {
    font-size: 20px;
    color: var(--textColor);
}

#feedback .feedback-area .fieldset {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-block: 20px;
}

#feedback .feedback-area .fieldset .ans-box {
    width: 50%;
    height: auto;
}

#feedback .feedback-area .fieldset .fav-item,
#feedback .feedback-area .fieldset .text-area {
    width: 50%;
    height: 60px;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 10px;
    border: var(--themeBorder);
    background: transparent;
    font-size: 16px;
    color: var(--themeWhite);
}

#feedback .feedback-area .question .stars .star.active {
    opacity: 1;
}

#feedback .feedback-area .agree {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-block: 20px;
}

#feedback .feedback-area .agree input[type="checkbox"] {
    margin-block: 8px;
    width: 15px;
    height: 15px;
}

#feedback .feedback-area .submit-btn {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    margin: 50px auto 0;
}

#feedback .feedback-area .submit-btn:hover {
    background: #e63946;
}

#feedback .feedback-area .input-box {
    margin-block: 10px;
}

#feedback .feedback-area .input-box input {
    width: 100%;
    height: 50px;
    padding: 10px;
    background: transparent;
    font-size: 16px;
    color: var(--themeWhite);
    outline: none;
    border: none;
    border-bottom: 1px solid var(--textColor);
    margin-bottom: 20px;
    border-radius: 5px;
    z-index: 1111;
    position: relative;
}

#feedback .feedback-area .input-box .label {
    background: var(--darkBlack);
    color: var(--themeWhite);
    font-size: 16px;
    position: absolute;
    transform: translate(10px, -56px);
    transition: 0.5s ease;
    z-index: 10px;
}

#feedback .feedback-area .input-box input:focus+.label,
#feedback .feedback-area .input-box input:valid+.label {
    color: var(--textColor);
    background: var(--darkBlack);
    padding: 5px;
    transform: translate(-10px, -95px) scale(0.90);
    z-index: -1px;
}

/* #feedback .feedback-area form button {
    width: 140px;
    height: 40px;
    outline: none;
    border: none;
    border-radius: 5px;
    background: var(--theme-red);
    color: var(--theme-white);
} */

/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */
/* =========================== Untitle Page End =========================== */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */
/* =========================== Untitle Page End =========================== */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */
/* =========================== Untitle Page End =========================== */

/* ---------------------- Responsive CSS Start ---------------------- */

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {}

@media (max-width: 480px) {}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */