/* Wrapper for the entire menu section */
.simpremed-menu-wrapper {
	margin-bottom: 2rem;
}

/* Wrapper for each individual menu section */
.simpremed-menu-section {
	margin-bottom: 3rem;
}

/* Title styling for each menu section */
.simpremed-section-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid #ddd;
	padding-bottom: 0.25rem;
}

/* Container for all menu items within a section */
.simpremed-menu-items {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Individual menu item container */
.simpremed-menu-item {
	padding: 16px 0;
	border-bottom: 1px solid #ddd;
}

/* Title of a menu item, including optional badge */
.simpremed-item-title {
	margin: 0;
	font-size: 1.25em;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Special item badge (e.g., for highlighting promotions) */
.simpremed-special-badge {
	background: #e63946;
	color: #fff;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.75em;
}

/* Description paragraph under the menu item title */
.simpremed-item-description {
	margin: 6px 0 12px;
	color: #555;
}

/* Container for multiple price/quantity entries per item */
.simpremed-prices {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* Row representing one quantity-price pair */
.simpremed-price-row {
	display: flex;
	justify-content: space-between;
	align-items: center; /* Vertical alignment */
	padding: 2px 0;
}

/* Label for a quantity option (e.g., "Half", "Full") */
.simpremed-qty-label {
	font-weight: 500;
	color: #333;
}

/* Price associated with a quantity option */
.simpremed-qty-price {
	font-weight: 600;
	color: #000;
}
