.single-menu-section {
    padding: 150px 0;
    background: #f5f5f5;
}

.single-menu-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.single-menu-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.single-menu-left,
.single-menu-right {
    width: 50%;
}

.menu-img {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.dish-title {
    line-height: 1.2;
    margin: 0 0 25px;
    text-align: left;
    color: #1d6b45;
}

.dish-meta {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d8d8d8;
}

.meta-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1f6b45;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 18px;
    color: #333333;
    line-height: 1.7;
}

.dish-description p {
    margin: 0;
}

.dish-prices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
}

.branch-name {
    font-weight: 600;
    color: #1f6b45;
}

.branch-price {
    font-weight: 700;
    color: #222222;
}

.dish-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.location-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #1f6b45;
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 991px) {
       .single-menu-section {
       padding: 130px 0px 30px;
    }

    .single-menu-card {
        flex-direction: column;
        padding: 30px;
    }

    .single-menu-left,
    .single-menu-right {
        width: 100%;
    }

    .menu-img img {
        height: 340px;
    }

}

@media (max-width: 575px) {
    .single-menu-section {
       padding: 100px 0px 30px;
    }

    .single-menu-card {
        padding: 20px;
        gap: 25px;
    }

    .menu-img img {
        height: 260px;
    }

    .meta-value {
        font-size: 16px;
    }

    .price-row {
        flex-direction: column;
        gap: 4px;
    }
}