body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--base-bg);
    color: var(--text-dark);
    max-width: 100%;
    overflow-x: clip;
}
.brand-font {
    font-family: 'Bree Serif', serif;
}
.nav-pills .nav-link {
    color: var(--text-dark);
    white-space: nowrap;
    cursor: pointer;
}
.nav-pills .nav-link.active {
    background-color: var(--primary-accent);
    color: white;
}
.card {
    border-radius: var(--menu-radius-md, 12px);
}
.menu-category-content {
    display: none;
}
.menu-category-content.active {
    display: block;
}
.item-image-tabs {
    width: 70px;
    height: 70px;
    border-radius: var(--menu-radius-md, 10px);
    object-fit: cover;
    background-color: #f8f9fa;
}

.menu-header {
    position: relative;
    overflow: hidden;
    padding: 50px 20px;
    color: white;
    isolation: isolate;
}

.tabs-header-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.tabs-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

