.header-info {
    display: flex;
    align-items: center;
    width: 72%;
    padding: 14px 40px;
    position: fixed;
    top: 0;
    left: 12%;
    z-index: 20;
    color: var(--white-text-color);
    background-color: var(--bg-color);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
}

.logo {
    margin-right: 20px;
}

.logo img {
    height: 2em;
}

.header-city{
    font-size: 1.3em;
    margin-right: auto;
}

.header-links {
    display: flex;
    gap: 50px;
}

.header-links a:last-child{
    margin-right: 40px;
}

.header-item {
    text-decoration: none;
    color: var(--white-text-color);
    font-size: 1.4em;
    font-weight: lighter;
}

#site_navbar {
    position: fixed;
    top: 70px;
    left: 35%;
    width: fit-content;
    display: flex;
    justify-content: center;
    background-color: #444650ab;
    color: var(--white-text-color);
    backdrop-filter: blur(6px);
    padding: 10px;
    z-index: 10;
    border-radius: 30px;
}

@media(max-width: 1440px) {
    .header-info {
        width: 95%;
        left: 0;
        border-radius: 0;
    }

    #site_navbar {
        top: 63px;
        left: 0;
        width: 100%;
        border-radius:0px;
    }
}

@media(max-width: 963px) {
    .header-info {
        width: 93%;
        left: 0;
        border-radius: 0 0 20px 20px;
        padding: 14px 40px;
    }
}
@media(max-width: 700px) {
    .header-info {
        width: 94%;
        padding: 14px 20px;
    }
}


.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu {
    display: none;
    position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #444650b5;
  color: var(--white-text-color);
  z-index: 1001;
  height: 100%;
  backdrop-filter: blur(6px);
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.menu-close-toggle{
    position: absolute;
  right: 30px;
  top: 20px;
    cursor: pointer;
}

.menu.active {
    display: flex;
}

.menu-item {
    display: block;
    text-decoration: none;
    color: var(--white-text-color);
    font-size: 2em;
}


#header-cart {
    display: flex;
    gap: 5px;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

#header-cart svg path {
    transition: fill 0.3s ease-in-out;
}


#header-cart:hover, #header-cart.cart-no-empty{
    color: var(--yelow-accent-color);
}

#header-cart:hover svg path, #header-cart.cart-no-empty svg path{
    fill: var(--yelow-accent-color);
}

#header-cart-total{
    font-size: 1.4em;
}

@media (max-width: 768px) {
    .header-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

     #header-cart{
        margin-right: 30px;
    }
}

@media (min-width: 768px) {
    #pre-order-quantity-container {
        width: 70%; !important;
    }

    .pre-order-description-and-quantity-container {
        height: 70% !important;
    }

    .modal-content {
        position: relative !important;
        width: 640px !important;
        margin-left: calc(50% - 384px) !important;
        z-index: 2 !important;
    }

    #order-modal-content {
        margin-left: 0 !important;
    }

    .modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--bg-transparent);
        z-index: 1;
    }

    .pre-order-product {
        height: auto !important;
    }
}

.close-button {
    cursor: pointer;
    position: absolute;
    top: 10.5%;
    right: 2%;
    z-index: 10000;
    background-color: var(--bg-color);
    color: var(--yelow-accent-color);
    border-radius: 0.2em;
}

.back-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--white-text-color);
    font-size: 1.3em;
}

#authorization-content {
    align-items: center;
    justify-content: center;
}

#authorization-content h2 {
    text-align: center;
    font-weight: lighter;
    color: var(--white-text-color);
}

#orders-site-content {
    display: none;
}

@media (max-width: 768px) {
    .order-block:first-child {
        margin-top: 17% !important;
    }
}

@media (min-width: 768px) {
    .order-block:first-child {
        margin-top: 7% !important;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 20px;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 100%;
    height: 95%;
    box-sizing: border-box;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    padding: 30px;
    border-radius: 1em;
    background-color: var(--bg-color);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.menu-cart {
    display: flex;
    gap: 15px;
    align-items: center;
}

.menu-cart-total {
  font-size: 1.4em;
}

@media (max-width: 768px) {
    .modal {
        top: 0;
        height: 100% !important;
    }

    .modal-content {
        height: 100%;
    }

    .menu-cart {
        margin-right: 30px;
    }
}


