.freshio-custom-item {
	margin: 16px 0;
	padding: 16px;
	background: #f6f6f6;
	border-radius: 6px;
}
.freshio-custom-item label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}
.freshio-custom-item__row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 8px;
}
/* Note + quantity always stay paired on one line, on both mobile and desktop --
   only the "Add" button drops to its own line if the row runs out of room. */
.freshio-custom-item__fields {
	display: flex;
	flex: 1 1 220px;
	gap: 8px;
	min-width: 0;
}
.freshio-custom-item__note {
	flex: 1 1 auto;
	min-width: 0;
	box-sizing: border-box;
	min-height: 42px;
	max-height: 120px;
	padding: 10px 12px !important;
	line-height: 1.3;
	font-family: inherit;
	font-size: inherit;
	resize: none;
	overflow-y: auto;
}
.freshio-custom-item__qty {
	flex: 0 0 70px;
	width: 70px;
	box-sizing: border-box;
	height: 42px;
	padding: 0 !important;
	text-align: center;
}
.freshio-custom-item__add {
	flex: 0 0 auto;
	height: 42px;
	padding: 0 20px;
	margin: 0;
}
