.main-body {
    padding-bottom: 30px;
    background-image: url('../images/smenu-bg.png');
}

.main-body .body-banner {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.body-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #D9D9D9;
    z-index: 1;
    opacity: 70%;
}

.main-body .body-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.main-body .body-banner p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 64px;
    margin: 0;
    font-family: 'Inria Serif';
    z-index: 2;
}

.main-content {
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
}

.main-content-title {
    max-width: 520px;
    margin: 10px 0 32px;
}

.title-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.title-label .line {
    width: 36px;
    height: 1px;
    background-color: #000;
}

.title-label .label-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inria Sans';
    color: #000;
}

.main-content-title h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    color: #000;
    font-family: 'Inria Sans';
}

/* code here */
/* ========== MENU SECTION ========== */
.menu-section,
.bestseller-section {
    margin-bottom: 60px;
}

.menu-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.menu-section-title .line {
    width: 36px;
    height: 1px;
    background-color: #000;
}

.menu-section-title .label-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inria Sans';
    color: #000;
}

/* ========== TABS ========== */
.menu-categories,
.bestseller-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.category-btn,
.bestseller-btn {
    padding: 10px 24px;
    border: 2px solid #014F86;
    background: transparent;
    color: #014F86;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Inria Sans';
    transition: background 0.2s, color 0.2s;
}

.category-btn:hover,
.bestseller-btn:hover,
.category-btn.active,
.bestseller-btn.active {
    background: #014F86;
    color: #fff;
}

/* ========== COMBO CARD ========== */
.combo-card {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.combo-card.active {
    display: grid;
}

.combo-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.combo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combo-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 1;
}

.combo-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    color: #fff;
}

.combo-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 6px;
    font-family: 'Inria Serif';
}

.combo-overlay .for-persons {
    font-size: 14px;
    margin: 0;
    opacity: 0.85;
    font-family: 'Inria Sans';
}

.combo-details {
    padding: 32px;
    overflow-y: auto;
    max-height: 500px;
}

.dish-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dish-list li {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.dish-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dish-list h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #014F86;
    font-family: 'Inria Sans';
    letter-spacing: 0.5px;
}

.dish-list .dish-name {
    font-size: 14px;
    margin: 0 0 2px;
    color: #333;
    font-family: 'Inria Sans';
}

.dish-list .dish-translation {
    font-size: 12px;
    margin: 0;
    color: #999;
    font-family: 'Inria Sans';
}

/* ========== BEST SELLER ========== */
.bestseller-card {
    display: none;
}

.bestseller-card.active {
    display: block;
}

.menu-card-header {
    margin-bottom: 24px;
}

.menu-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    font-family: 'Inria Serif';
    margin: 0 0 4px;
}

.menu-card-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-family: 'Inria Sans';
}

.menu-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.menu-dish {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.menu-dish img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.menu-dish-info {
    padding: 12px 16px 12px 0;
}

.menu-dish h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #000;
    font-family: 'Inria Sans';
}

.menu-dish .dish-vietnamese {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-family: 'Inria Sans';
}

.menu-dish-card {
    display: none;
    width: 100%;
}

.menu-dish-card.active {
    display: grid;
    grid-template-columns: repeat(2 1fr);
    gap: 16px;
}