/* ==========================================================
   MENU PAGE
   ========================================================== */

.menu-page {
    padding: 70px 0 90px;
    background: #f8f6ef;
}

.menu-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 45px;
}

.menu-header .section-subtitle {
    display: inline-block;
    margin-bottom: 18px;
}

.menu-header h1 {
    margin: 0 0 18px;
    color: #17361e;
    font-size: 48px;
    line-height: 1.15;
}

.menu-header p {
    margin: 0 auto;
    max-width: 720px;
    color: #52605a;
    font-size: 17px;
    line-height: 1.7;
}


/* ==========================================================
   MENU SEARCH
   ========================================================== */

.menu-search {
    position: relative;
    display: flex;
    align-items: center;
    width: min(760px, 100%);
    min-height: 54px;
    margin: 0 auto 22px;
    padding: 5px;
    border: 1px solid #dfe5dc;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(23, 54, 30, 0.06);
}

.menu-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    color: #b88a16;
    font-size: 26px;
    line-height: 1;
}

.menu-search input[type="search"] {
    flex: 1;
    min-width: 0;
    height: 44px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #17361e;
    font-size: 16px;
}

.menu-search input[type="search"]::placeholder {
    color: #7b857f;
}

.menu-search-button {
    min-height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #17361e;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.menu-search-button:hover {
    background: #244b2a;
    transform: translateY(-1px);
}


.menu-no-results {
    max-width: 720px;
    margin: 20px auto 0;
    padding: 55px 25px;
    border: 1px solid #e0e5dc;
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
}

.menu-no-results h2 {
    margin: 0 0 10px;
    color: #17361e;
}

.menu-no-results p {
    margin: 0;
    color: #52605a;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================
   CATEGORY NAVIGATION
   ========================================================== */

.menu-categories {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin: 0 auto 55px;
}

.menu-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    flex: 0 1 auto;
    border: 1px solid #dfe5dc;
    border-radius: 50px;
    background: #ffffff;
    color: #17361e;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.menu-category:hover {
    background: #17361e;
    border-color: #17361e;
    color: #ffffff;
    transform: translateY(-2px);
}

.menu-category.active {
    background: #17361e;
    border-color: #17361e;
    color: #ffffff;
}


/* ==========================================================
   PRODUCTS AREA
   ========================================================== */

.menu-products {
    width: 100%;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 768px) {

    .menu-page {
        padding: 50px 0 70px;
    }

    .menu-header {
        margin-bottom: 35px;
    }

    .menu-header h1 {
        font-size: 38px;
    }

    .menu-header p {
        font-size: 15px;
    }

    .menu-search {
        min-height: 50px;
        padding: 4px;
        border-radius: 18px;
    }

    .menu-search-icon {
        width: 38px;
        font-size: 23px;
    }

    .menu-search input[type="search"] {
        height: 40px;
        font-size: 14px;
    }

    .menu-search-button {
        min-height: 40px;
        padding: 0 15px;
        font-size: 13px;
    }

   .menu-categories {
        gap: 8px;
        margin-bottom: 40px;
    }

    .menu-category {
        min-height: 40px;
        padding: 8px 15px;
        font-size: 13px;
    }

}
/* ==========================================================
   CATEGORY STORY / HISTORY
   ========================================================== */

.menu-category-story {
    max-width: 900px;
    margin: -10px auto 38px;
    padding: 26px 30px;
    border: 1px solid #e2d7bb;
    border-radius: 18px;
    background: #fffdf8;
    text-align: left;
}

.menu-category-story h2 {
    margin: 0 0 10px;
    color: #17361e;
    font-size: 25px;
}

.menu-category-story p {
    margin: 0;
    color: #52605a;
    font-size: 16px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .menu-category-story {
        margin: -5px auto 30px;
        padding: 22px;
    }

    .menu-category-story h2 {
        font-size: 21px;
    }
}
