/**
 * Ronin WC Booking — frontend styles.
 *
 * Selector de fecha/hora en página de producto agendable.
 * Estilos mínimos, no pisan el tema base; usan box-sizing inherit.
 */

.rwcb-picker {
	margin: 18px 0;
	padding: 18px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	background: #fafafa;
	font-family: inherit;
}

.rwcb-picker__field {
	margin: 0 0 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.rwcb-picker__field:last-of-type {
	margin-bottom: 0;
}

.rwcb-picker__field label {
	font-weight: 600;
	font-size: 14px;
	color: #1a3a5c;
}

.rwcb-picker__field label .required {
	color: #dc3232;
	margin-left: 2px;
}

.rwcb-picker__field input[type="date"],
.rwcb-picker__field select {
	width: 100%;
	max-width: 320px;
	padding: 9px 12px;
	font-size: 14px;
	line-height: 1.4;
	border: 1px solid #cfcfcf;
	border-radius: 4px;
	background: #fff;
	color: #2c2c2c;
	box-sizing: border-box;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.rwcb-picker__field input[type="date"]:focus,
.rwcb-picker__field select:focus {
	outline: none;
	border-color: #1a3a5c;
	box-shadow: 0 0 0 2px rgba(26, 58, 92, .15);
}

.rwcb-picker__field select:disabled {
	background: #f1f1f1;
	color: #888;
	cursor: not-allowed;
}

.rwcb-picker__feedback {
	min-height: 18px;
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.4;
}

.rwcb-feedback--loading {
	color: #666;
	font-style: italic;
}

.rwcb-feedback--info {
	color: #1a3a5c;
}

.rwcb-feedback--error {
	color: #dc3232;
}
