/* Fix for uneven text spacing in the English menu section */

/* Center and emphasize the main Menu heading */
.menu-page .page-title,
.menu-page h1.page-title {
    text-align: center !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    margin: 30px auto 40px !important;
    position: relative;
    padding-bottom: 15px;
    color: var(--text-color, #333);
}

/* Add decorative underline to the Menu heading */
.menu-page .page-title:after,
.menu-page h1.page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color, #508d69);
}

/* Ensure the menu category headings have balanced spacing */
.menu-category h2 {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Fix card spacing to ensure text is vertically centered */
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
}

/* Balance the spacing in product titles */
.card-title {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Ensure product descriptions have consistent spacing */
.card-desc {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Fix spacing in the menu list items */
.menu-list table td {
    padding: 10px 15px;
    vertical-align: middle;
}

/* Ensure consistent spacing in product price */
.card-price, .menu-price {
    margin-top: 5px;
    margin-bottom: 5px;
}
