/**
 * PV Coffee Shop — Frontend Modifier Selection UI
 *
 * Styles for modifier groups on single product pages (online ordering).
 * Designed to work with any WordPress theme.
 */

.pv-coffee-modifiers {
	margin: 20px 0;
	padding: 16px;
	background: #f9f9f9;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
}

.pv-coffee-modifier-group {
	margin-bottom: 16px;
}

.pv-coffee-modifier-group:last-child {
	margin-bottom: 0;
}

.pv-coffee-modifier-title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
}

.pv-coffee-required {
	color: #d63638;
	font-weight: 700;
}

.pv-coffee-modifier-options {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.pv-coffee-modifier-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
}

.pv-coffee-modifier-option:hover {
	border-color: #8b5e3c;
	background: #fdf8f4;
}

.pv-coffee-modifier-option input:checked + .pv-coffee-option-label {
	font-weight: 600;
	color: #8b5e3c;
}

.pv-coffee-modifier-option input {
	accent-color: #8b5e3c;
}

.pv-coffee-option-label {
	flex: 1;
	font-size: 14px;
}

.pv-coffee-option-price {
	font-size: 13px;
	color: #8b5e3c;
	font-weight: 500;
}
