#main-content {
    position: fixed;
    inset: 0; /* top: 0; left: 0; right: 0; bottom: 0 */
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 9999;
    -webkit-overflow-scrolling: touch;
}

body.doc-loaded .sticky-menu,
body.doc-loaded #main-content {
    visibility: visible;
    opacity: 1;
}

.header {
    position: relative;
    color: #fff;
    padding: 40px 16px 20px 16px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 1.4em;
    letter-spacing: 2px;
}

/*
body.doc-loaded .loader-overlay {
    visibility: hidden;
    opacity: 0;
}*/

body:not(.swiper-navigation) #main-content {
    overflow-y: scroll;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.category-container {
    position: relative;
    padding: 70px 16px 84px 16px;
    margin-bottom: 20px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    min-width: 100%;
}

body:not(.swiper-navigation) .category-container {
    overflow-y: unset;
}

body:not(.swiper-navigation) .category-container:not(:first-child) {
    padding-top: 0;
}

body:not(.swiper-navigation) .category-container {
    padding-bottom: 0;
}

body:not(.swiper-navigation) .category-container:last-child {
    margin-bottom: 20px;
}

.category-container::-webkit-scrollbar {
    display: none;
}

.category-container h2 {
    margin-top: 0;
    margin-bottom: 28px;
    text-align: center;
}

/* Header */
.restaurant-header {
    display: flex;
    width: 100%;
    margin: 10px;
}

.restaurant-header .logo-container {
    text-align: center;
}

.restaurant-header img {
    width: 48px;
}

.restaurant-header .store-name-container {
    display: flex;
    flex: 1;
    color: #fff;
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* Swiper Navigation */
.container.swiper-nav {
    position: relative;
    width: 100%;
    height: 100%;
    flex-wrap: unset;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
}

.container.swiper-nav .category-container {
    scroll-snap-align: center;
    width: 100%;
    min-width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev {
    inset-inline-start: 10px;
}

.swiper-button-next {
    inset-inline-end: 10px;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 24px;
    height: 24px;
}