.aucafe-brunch {
    --aucafe-accent: #a8bcc0;
    --aucafe-border: #e3e0dc;
    --aucafe-separator: #e9e3dc;
    --aucafe-allergen: #9ba2aa;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    color: inherit;
    font-family: inherit;
    box-sizing: border-box;
}

.aucafe-brunch *,
.aucafe-brunch *::before,
.aucafe-brunch *::after {
    box-sizing: border-box;
}

.aucafe-brunch-intro {
    margin: 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.aucafe-brunch-program {
    margin-top: 16px;
    text-align: center;
    font-size: 16px;
    line-height: 1.45;
}

.aucafe-brunch-program strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.aucafe-brunch-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 54px auto 34px;
}

.aucafe-brunch .aucafe-brunch-tab {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    min-height: 42px;
    padding: 12px 14px;
    border: 1px solid var(--aucafe-border);
    border-radius: 9px;
    background: #fff;
    color: #000;
    font: inherit;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: none;
    text-decoration: none;
    letter-spacing: 0;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.aucafe-brunch .aucafe-brunch-tab:hover,
.aucafe-brunch .aucafe-brunch-tab:focus-visible {
    border-color: var(--aucafe-accent);
    outline: none;
}

.aucafe-brunch .aucafe-brunch-tab.is-active {
    color: #fff;
    background: var(--aucafe-accent);
    border-color: var(--aucafe-accent);
}

.aucafe-brunch .aucafe-brunch-tab.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--aucafe-accent);
}

.aucafe-brunch-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
}

.aucafe-brunch-panel[hidden] {
    display: none !important;
}

.aucafe-brunch-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 64px;
    padding: 17px 0 14px;
    border-bottom: 1px dashed var(--aucafe-separator);
}

.aucafe-brunch-item-title {
    min-width: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.aucafe-brunch-allergens {
    color: var(--aucafe-allergen);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .aucafe-brunch-intro {
        font-size: 16px;
        line-height: 1.45;
    }

    .aucafe-brunch-program {
        margin-top: 16px;
        font-size: 16px;
    }

    .aucafe-brunch-tabs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
        margin: 56px 0 30px;
    }

    .aucafe-brunch .aucafe-brunch-tab {
        width: 100%;
        min-height: 45px;
        padding: 13px 18px;
        border-radius: 9px;
        font-size: 14px;
    }

    .aucafe-brunch .aucafe-brunch-tab.is-active::after {
        display: none;
    }

    .aucafe-brunch-panel {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .aucafe-brunch-item {
        min-height: 82px;
        padding: 21px 0 18px;
        gap: 14px;
    }

    .aucafe-brunch-item-title {
        font-size: 14px;
        line-height: 1.35;
    }

    .aucafe-brunch-allergens {
        font-size: 14px;
    }
}
