* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

/* SCROLLBAR */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: hsla(210, 4%, 9%, 1);
}

::-webkit-scrollbar-thumb {
    background: #e3c38c;
    border-radius: 10px;
}

/* HEADER + NAVBAR */

.header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 40px;
    width: 100%;
    font-family: 'Forum';
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(25px);
    font-weight: 100;
    border-bottom: 0.5px solid #e3c38c;
    z-index: 1000;
}

.headerimgs {
    height: 20px;
    width: 20px;
}

.header>.addressheader,
.timeheader,
.callheader,
.emailheader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.addressheader:hover {
    color: #e3c38c;
    cursor: pointer;
    transition: 0.3s;
}

.timeheader:hover {
    color: #e3c38c;
    cursor: pointer;
    transition: 0.3s;
}

.callheader:hover {
    color: #e3c38c;
    cursor: pointer;
    transition: 0.3s;
}

.emailheader:hover {
    color: #e3c38c;
    cursor: pointer;
    transition: 0.3s;
}

@media screen and (max-width: 1180px) {
    .header {
        display: none;
    }

    .cart {
        max-width: 430px;
        width: 377px;
    }

    .cart>.cart-items>.cart-item>span {
        font-size: 19px;
    }
}

/* NAVBAR */

.nav {
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(25px);
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.navlogo {
    height: 100px;
    padding: 10px 30px;
    cursor: pointer;
}

.navul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navli>a {
    padding: 6px 20px;
    color: #fff;
    font-family: 'DM Sans';
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
    overflow: hidden;
}

.navli>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #e3c38c;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.navli>a:hover {
    color: #e3c38c;
}

.navli>a:hover::after {
    width: 100%;
    left: 0;
}

.nav-button {
    background-color: rgb(21, 22, 22);
    border: 1px solid #e3c38c;
    color: #e3c38c;
    padding: 15px 32px;
    margin: 0 20px 0 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 12rem;
}

.nav-button:hover {
    background-color: #e3c38c;
    color: #000000;
}

.toggle-btn {
    background-color: rgb(21, 22, 22);
    border: 1px solid #e3c38c;
    color: #e3c38c;
    padding: 10px 20px 9px 20px;
    margin: 0 20px 0 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-btn:hover {
    background-color: #e3c38c;
    color: #000000;
}

.navbar-toggle {
    display: none;
}

.navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.hamburger {
    display: none;
}

@media only screen and (max-width: 1180px) {
    .nav {
        background-color: rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(25px);
        border-bottom: #e3c38c 1px solid;
    }

    .navul {
        display: none;
    }

    .navbar-toggle {
        display: block;
        transition: all 0.8s ease-in-out;
    }

    .navbar-overlay.active {
        display: block;
        transition: all 0.8s ease-in-out;
    }

    .navul.active {
        display: block;
        position: absolute;
        background-color: #333;
        top: 100px;
        left: 0;
        width: 100%;
        padding: 10px;
        transition: all 0.8s ease-in-out;
    }

    .navul.active li {
        margin-bottom: 10px;
        transition: all 0.8s ease-in-out;
    }

    .nav-button {
        width: auto;
    }

    .navbar-toggle {
        margin-right: 20px;
    }

    .navbar-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        display: block;
    }

    .navlogo {
        height: 80px;
        padding: 10px 30px;
        cursor: pointer;
    }

    .nav-button {
        background-color: rgb(21, 22, 22);
        border: 1px solid #e3c38c;
        color: #e3c38c;
        padding: 11px 20px;
        margin: 0 -10px 0 0;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .nav-button:hover {
        background-color: #e3c38c;
        color: #000000;
    }

    .cart {
        max-width: 430px;
        width: 377px;
    }

    .hamburger {
        display: block;
    }

    .cart>.cart-items>.cart-item>span {
        font-size: 19px;
    }
}

/* FOOTER */

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background-color: rgb(37, 37, 37);
    font-family: 'DM Sans';
    color: #fff;
}

.footer-left,
.footer-right {
    flex: 1;
    max-width: 20%;
    text-align: center;
    padding: 0 15px;
}

.footer-middle {
    flex: 1;
    max-width: 60%;
    text-align: start;
    padding: 0 15px;
}

.footer-middle ul {
    list-style-type: none;
}

.footer-left img {
    height: 4.8vw;
}

.footer-left p {
    color: #929292;
    padding: 10px 0 0 0;
    margin-top: 10px;
    border-top: #929292 1px solid;
}

.footer-right {
    text-align: start;
}

.footer-right>ul {
    list-style-type: none;
    padding: 0;
}

.footer-right>ul>li {
    margin-bottom: 5px;
}

.footer-right>ul>li>a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.footer-right>ul>li>a:hover {
    color: #e3c38c;
    transition: 0.2s ease-in-out;
}

.footer-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    display: block;
    padding: 5px 0;
}

.footer-nav li a {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: 0.3s ease-in-out;
    display: block;
}

.footer-middle h2,
.footer-right h2 {
    border-bottom: #e3c38c 5px double;
    width: auto;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
    }

    .footer-left,
    .footer-right,
    .footer-middle {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-left img {
        height: 70px;
    }

    .social-icons {
        display: none;
    }

    .checkout-logo {
        display: none;
    }

    .checkout-section>h1 {
        font-size: 30px;
    }

    .cart-section>h2 {
        font-size: 30px;
    }

    .navbar {
        justify-content: center;
        padding-right: 80px;
    }

    .footer-left {
        text-align: left;
    }

    .cart {
        max-width: 430px;
        width: 377px;
    }

    .cart>.cart-items>.cart-item>span {
        font-size: 19px;
    }
}

/* SCROLL TO TOP BUTTON */

#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    cursor: pointer;
    background-color: #e3c38c;
    color: #000000;
    border: #e3c38c 1px solid;
    font-size: xx-large;
    transform: rotate(45deg);
    border-radius: 3px;
    transition: 0.3s ease-in-out;
    height: 50px;
    width: 50px;
}

#scrollToTopBtn>p {
    transform: rotate(-45deg);
}

#scrollToTopBtn:hover {
    background-color: #000000;
    color: #e3c38c;
    transition: 0.3s ease-in-out;
}



/* ------------------------------------------------------------- */

/* --------------------------MENU PAGE-------------------------- */

/* ------------------------------------------------------------- */


.menupage-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    scroll-behavior: smooth;
}

.menupage-container>::-webkit-scrollbar {
    display: none;
}

.menupage-leftpart {
    width: 350px;
    background-color: rgb(30, 29, 29);
    overflow-y: auto;
    font-family: 'DM Sans';
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    border-right: 1px solid #ffffff29;
    scroll-behavior: smooth;
}

.menupage-leftpart>ul {
    list-style-type: none;
    padding: 150px 0 0 0;
    margin: 0;
}

.menupage-leftpart>ul>li {
    padding: 10px 0;
    text-align: center;
}

.menupage-leftpart>ul>li>a {
    color: #fff;
    text-decoration: none;
    transition: 0.1s ease-in-out;
}

.menupage-leftpart>ul>li>a:hover {
    color: #e3c38c;
    transition: 0.1s ease-in-out;
}

.menupage-rightpart {
    flex-grow: 1;
    height: 100vh;
    overflow-y: auto;
    background-color: rgb(30, 29, 29);
    scroll-behavior: smooth;
}

/* MAINMENU + CART + SEARCH  */

.container {
    max-width: 800px;
    margin: 0px 0 0 50px;
    padding: 0 20px;
}

.products {
    margin-top: 20px;
}

.product {
    padding: 20px;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 47.8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.menu-item-flex {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    width: 60%;
}

.menu-item-flex>h3 {
    font-family: 'Forum';
    font-size: 5vh;
    font-weight: 100;
}

.menu-item-flex>.price {
    font-family: 'Forum';
    font-weight: 100;
    font-size: 4vh;
}

.menu-item-flex>.description {
    font-family: 'DM Sans';
    font-weight: 500;
    font-size: 1.5vh;
}

.add-to-cart {
    background-color: rgb(30, 29, 29);
    border: 1px solid #e3c38c;
    color: #e3c38c;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0px 0 0px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #e3c38c;
    color: #000000;
}

.cart {
    position: fixed;
    top: 0;
    right: -1000px;
    width: 460px;
    height: 100%;
    background-color: rgb(36, 36, 38);
    padding: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.cart>h2 {
    color: #fff;
    border-bottom: #e3c38c 10px double;
    margin-bottom: 20px;
    font-size: 45px;
    font-family: 'Forum';
    font-weight: 100;
    text-align: center;
}

.cart>.cart-items>.cart-item>span {
    color: #fff;
    font-family: 'Forum';
    font-size: 22px;
    margin: 8px 0;
}

.item-quantity {
    color: #fff;
    background-color: transparent;
    border: transparent;
    outline: none;
    width: 40px;
    height: 22px;
    border-radius: 3px;
    text-align: center;
    margin: 0 10px 0 0;
    font-size: 20px;
}

.cart.open {
    right: 0;
}

.cart-items {
    list-style: none;
    padding: 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.cart-item button {
    background-color: rgb(36, 36, 38);
    color: #e3c38c;
    border: 1px solid #e3c38c;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-item button:hover {
    background-color: #e3c38c;
    color: #000000;
}

.total-price {
    color: #fff;
    font-family: 'Forum';
    font-size: 35px;
}

.total {
    font-weight: bold;
}

.close-cart {
    background-color: rgb(36, 36, 38);
    color: #e3c38c;
    border: 1px solid #e3c38c;
    padding: 10px 10px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    width: 100%;
    font-size: 20px;
}

.close-cart:hover {
    background-color: #e3c38c;
    color: #000000;
    cursor: pointer;
}

.proceed-to-checkout {
    background-color: #e3c38c;
    color: #000000;
    border: 1px solid #e3c38c;
    padding: 10px 10px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    width: 100%;
    font-size: 20px;
    cursor: pointer;
}

.proceed-to-checkout:hover {
    background-color: rgb(36, 36, 38);
    color: #e3c38c;
}

.cart-buttons {
    margin-top: 20px;
    text-align: center;
}

.category-name {
    font-family: 'Forum';
    margin: 10px;
    width: 46.2vw;
}

.category-name>h1 {
    font-size: 70px;
    font-weight: 100;
    color: #fff;
    border-bottom: 7px double #e3c38c;
    text-align: center;
}

.search-menu {
    padding: 12px 20px 12px 20px;
    outline: none;
    background-color: rgb(22 22 22);
    border: 1px solid #e3c38c;
    width: 288px;
    color: #fff;
    font-family: 'Forum';
    font-size: 18px;
}

.search-menu-second {
    padding: 12px 20px 12px 20px;
    outline: none;
    background-color: rgb(22 22 22);
    border: 1px solid #e3c38c;
    width: 88vw;
    color: #fff;
    font-family: 'Forum';
    font-size: 18px;
    display: none;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff4500; /* Matching color for the cart button */
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cart-container {
    position: relative;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1180px) {
    .menupage-leftpart {
        display: none;
    }

    .container {
        margin: 0px 0 0 2vw;
        padding: 0 20px;
    }

    .category-name {
        width: 85vw;
    }

    .category-name>h1 {
        font-size: 50px;
        font-weight: 100;
        color: #fff;
        border-bottom: 7px double #e3c38c;
        text-align: center;
    }

    .product {
        padding: 20px 20px 0 0;
        color: #fff;
        border-radius: 5px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        width: 88vw;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 17vw;
    }

    .menu-item-flex>.description {
        width: 65vw;
    }

    .menu-item-flex>h3 {
        font-family: 'Forum';
        font-size: 3.5vh;
        font-weight: 100;
    }

    .menu-item-flex>.price {
        font-family: 'Forum';
        font-weight: 100;
        font-size: 2.5vh;
    }

    .search-menu-second {
        display: block;
    }

    .menupage-rightpart {
        background-color: rgb(30, 29, 29);
    }

    body {
        background-color: rgb(30, 29, 29);
    }

    .cart {
        max-width: 430px;
        width: 377px;
    }

    .cart>.cart-items>.cart-item>span {
        font-size: 19px;
    }
}
