.restaurant-detail-tabs-wrap
{
    clear:both;
    border-bottom:1px solid #e0e3ef;
    background:#fff;
    scroll-margin-top:18px
}
.restaurant-detail-tabs
{
    display:flex;
    gap:38px;
    padding-top:6px
}
.restaurant-detail-tabs a
{
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:20px 5px 17px;
    border-bottom:3px solid transparent;
    color:#72758a;
    font:500 15px "Poppins",sans-serif;
    text-decoration:none
}
.restaurant-detail-tabs a[aria-current]
{
    border-color:#2e3192;
    color:#2e3192
}
.restaurant-detail-tabs a.is-disabled,.restaurant-detail-tabs a.is-disabled:hover
{
    opacity: .45;
    cursor: not-allowed;
    background: transparent;
}

.restaurant-detail-tabs a:hover
{
    color:#2e3192;
    background:#f8f9fd
}
.restaurant-detail-tabs a:focus-visible,.restaurant-detail-gallery a:focus-visible
{
    outline:2px solid #2e3192;
    outline-offset:4px
}
.restaurant-detail-panel
{
    clear:both;
    padding-top:32px;
    padding-bottom:48px;
    font-family:"Poppins",sans-serif
}
.restaurant-detail-panel__heading
{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
    gap:16px
}
.restaurant-detail-panel__heading h2
{
    font-size:24px;
    font-weight:600;
    color:#292653;
    margin:0
}
.restaurant-detail-panel__heading>span
{
    color:#72758a;
    font-size:12px
}
.restaurant-detail-gallery
{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px
}
.restaurant-detail-gallery a
{
    display:block;
    border-radius:10px;
    overflow:hidden;
    background:#f0f2f8;
    aspect-ratio:4/3
}
.restaurant-detail-gallery img
{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .2s
}
.restaurant-detail-gallery a:hover img
{
    transform:scale(1.025)
}
.restaurant-detail-gallery--menus a
{
    aspect-ratio:3/4
}
.restaurant-detail-gallery--menus img
{
    object-fit:contain
}
.restaurant-detail-empty
{
    clear:both;
    text-align:center;
    padding-top:70px;
    padding-bottom:80px;
    color:#6d7286
}
.restaurant-detail-empty>i
{
    font-size:32px;
    color:#969bc1;
    margin-bottom:20px
}
.restaurant-detail-empty h2,.restaurant-detail-empty h3
{
    font-size:23px;
    color:#302c59;
    margin:0 0 14px
}
.restaurant-detail-empty p
{
    font-size:14px
}
.restaurant-detail-products
{
    clear:both;
    margin-bottom:25px;
    padding:24px;
    border:1px solid #e0e3ef;
    border-radius:18px;
    background:#fff;
    box-shadow:0 4px 16px rgba(35,44,90,.04)
}
.restaurant-detail-products h2
{
    font-size:17px;
    font-weight:600;
    color:#292653;
    margin:0 0 15px
}
.restaurant-detail-products ul
{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    padding:0;
    margin:0;
    list-style:none
}
.restaurant-detail-products li
{
    max-width:100%;
    padding:7px 14px;
    border:1px solid #dddff3;
    border-radius:24px;
    background:#f2f3fc;
    color:#37388b;
    font-size:13px;
    font-weight:500;
    line-height:1.5;
    overflow-wrap:anywhere
}

.hms-listing-features h2
{
    margin:0 0 20px;
    color:#242951;
    font-size:22px;
    font-weight:600;
}

.hms-listing-features-grid
{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    align-items:start;
    gap:16px;
}

.hms-listing-feature-group
{
    min-width:0;
    height:100%;
    padding:20px;
    border:1px solid #e1e4ef;
    border-radius:16px;
    background:linear-gradient(145deg,#fafaff,#fff 65%);
    box-shadow:0 4px 16px rgba(35,44,90,.035);
}

.hms-listing-feature-heading
{
    display:flex;
    align-items:center;
    gap:11px;
    margin-bottom:16px;
}

.hms-listing-feature-icon
{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 36px;
    height:36px;
    border-radius:11px;
    color:#47419a;
    background:#eeedfb;
    font-size:16px;
}

.hms-listing-feature-icon img
{
    width:20px;
    height:20px;
    object-fit:contain;
}

.hms-listing-feature-heading h3
{
    margin:0;
    color:#303557;
    font-size:15px;
    font-weight:600;
    line-height:1.5;
    overflow-wrap:anywhere;
}

.hms-listing-feature-group ul
{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:0;
    padding:0;
    list-style:none;
}

.hms-listing-feature
{
    display:inline-flex;
    align-items:baseline;
    gap:7px;
    max-width:100%;
    padding:6px 10px;
    border:1px solid #dce9e2;
    border-radius:9px;
    background:#f2f8f4;
    color:#325b49;
    font-size:12px;
    font-weight:500;
    line-height:1.6;
    overflow-wrap:anywhere;
}

.hms-listing-feature i
{
    flex-shrink:0;
    color:#27805b;
    font-size:10px;
}

.hms-listing-feature.is-unavailable
{
    border-color:#e4e5eb;
    background:#f5f5f8;
    color:#707487;
}

.hms-listing-feature.is-unavailable i
{
    color:#707487;
}

@media(max-width:767px)
{
    .restaurant-detail-tabs
    {
        gap:16px
    }
    .restaurant-detail-tabs a
    {
        padding:16px 7px 13px;
        font-size:13px;
        gap:6px
    }
    .restaurant-detail-gallery
    {
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:12px
    }
    .restaurant-detail-panel
    {
        padding-top:24px;
        padding-bottom:32px
    }
    .restaurant-detail-empty
    {
        padding-top:50px;
        padding-bottom:60px
    }
}
@media(prefers-reduced-motion:reduce)
{
    .restaurant-detail-gallery img
    {
        transition:none
    }
}
.restaurant-detail-gallery a.is-unavailable
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: #777d99;
    font-size: 12px;
    cursor: default;
}
.restaurant-detail-gallery a.is-unavailable i
{
    font-size: 28px;
}

.hms-listing-tabs-toolbar
{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}
.hms-listing-tabs-toolbar .certified-detail-share-control
{
    flex-shrink:0;
    margin-left:auto;
    border-color:#dadaef;
    color:#323394;
    background:#f7f7fd;
    height:auto;
    line-height:1.5;
}
.certified-detail-share-control .share-toggle
{
    display:flex;
    align-items:center;
    gap:7px;
    min-height:38px;
    padding:6px 13px;
    border:0;
    border-radius:100px;
    background:transparent;
    color:inherit;
    font-size:13px;
    font-weight:500;
}
.certified-detail-share-control .share-toggle:hover
{
    background:#ebebf8;
}
.certified-detail-share-control .share-popup
{
    left:auto;
    right:0;
    transform:translate(0,10px) scale(.95);
    line-height:1.5;
}
.certified-detail-share-control.active .share-popup
{
    transform:translate(0,0) scale(1);
}
.certified-detail-share-control .share-popup:before
{
    left:auto;
    right:25px;
    transform:none;
}
.certified-detail-share-control .share-close
{
    border:0;
    background:transparent;
}
.certified-detail-share-control button:focus-visible,
.certified-detail-share-control a:focus-visible
{
    outline:2px solid #323394;
    outline-offset:3px;
}
@media(max-width:399px)
{
    .hms-listing-tabs-toolbar
    {
        gap:6px;
    }
    .hms-listing-tabs-toolbar .restaurant-detail-tabs
    {
        gap:6px;
    }
    .hms-listing-tabs-toolbar .restaurant-detail-tabs a
    {
        padding-right:5px;
        padding-left:5px;
    }
    .hms-listing-tabs-toolbar .restaurant-detail-tabs a i
    {
        display:none;
    }
}
