/* ===== Companion row: minimalist, borderless, clean ===== */
.psa-row {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.9em;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 1.1em 0;
	padding: 0;
	border: 0;
	background: transparent;
}

/* full-width line inside flex/grid product forms */
form.cart .psa-row-inform {
	flex-basis: 100%;
	min-width: 100%;
	grid-column: 1 / -1;
}
form.cart:has(.psa-row-inform) {
	flex-wrap: wrap;
}

/* --- checkbox: slightly larger, accent-colored, first --- */
.psa-row .psa-checkbox {
	order: 1;
	margin: 0;
	width: 1.2em;
	height: 1.2em;
	min-width: 1.2em;
	cursor: pointer;
	accent-color: currentColor;
	flex: 0 0 auto;
}

/* --- quantity stepper: gray buttons flush with the number --- */
.psa-row .psa-qty {
	order: 2;
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 0;
}

.psa-row .psa-qty-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 30px !important;
	height: 35px !important;
	min-height: 0 !important;
	min-width: 0 !important;
	border: 1px solid #cac9c9 !important;
	background: #e2e2e2 !important;
	color: #333 !important;
	cursor: pointer;
	font-size: 16px !important;
	line-height: 1 !important;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 2px !important;
	box-sizing: border-box !important;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none !important;
	flex: 0 0 30px !important;
}

.psa-row .psa-qty-btn:hover {
	background: #d5d5d5 !important;
}

.psa-row .psa-qty-input {
	width: 45px !important;
	height: 35px !important;
	min-height: 0 !important;
	border: 1px solid #666 !important;
	border-radius: 2px !important;
	background: #fff !important;
	text-align: center !important;
	font-weight: 600;
	font-size: 15px !important;
	line-height: 33px !important;
	-moz-appearance: textfield;
	appearance: textfield;
	padding: 0 !important;
	margin: 0 !important;
	color: inherit;
	box-sizing: border-box !important;
	flex: 0 0 45px !important;
}

.psa-row .psa-qty-input::-webkit-outer-spin-button,
.psa-row .psa-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* --- text block: title + muted subtitle --- */
.psa-row .psa-titles {
	order: 3;
	display: flex;
	flex-direction: column;
	gap: 0.2em;
	cursor: pointer;
	margin: 0;
	flex: 1 1 240px;
	min-width: 0;
}

.psa-row .psa-title {
	font-weight: 500;
	line-height: 1.45;
	font-size: 16px;
}

.psa-row .psa-price .woocommerce-Price-amount {
	font-weight: 700;
}

.psa-row .psa-subtitle {
	font-size: 12px;
	line-height: 1.4;
	opacity: 0.6;
}

@media (max-width: 640px) {
	.psa-row .psa-title {
		font-size: 15px;
	}
	.psa-row .psa-subtitle {
		font-size: 0.6em;
	}
}