/* Pigeon Express for WooCommerce - customer checkout picker.
 * Scoped under .pe-wc- to avoid clashes with theme styles. */

.pe-wc-location-picker {
	display: block;
	margin: 10px 0 6px;
	padding: 12px 14px;
	border: 1px solid #d6d8db;
	border-radius: 6px;
	background: #fafbfc;
	font-size: 14px;
	line-height: 1.4;
	position: relative;
}

.pe-wc-location-picker__label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: #1d2327;
}

.pe-wc-location-picker__input {
	box-sizing: border-box;
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	background: #fff;
	color: inherit;
	font: inherit;
}
.pe-wc-location-picker__input:focus {
	border-color: #2271b1;
	outline: 2px solid #2271b1;
	outline-offset: 0;
}

.pe-wc-location-picker__suggestions {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	max-height: 280px;
	overflow-y: auto;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.pe-wc-location-picker__suggestions li {
	margin: 0;
	padding: 8px 10px;
	cursor: pointer;
	border-bottom: 1px solid #f0f0f1;
}
.pe-wc-location-picker__suggestions li:last-child {
	border-bottom: 0;
}
.pe-wc-location-picker__suggestions li[aria-selected="true"],
.pe-wc-location-picker__suggestions li:hover {
	background: #f0f6fc;
}
.pe-wc-location-picker__suggestions .pe-wc-suggestion-name {
	display: block;
	font-weight: 600;
}
.pe-wc-location-picker__suggestions .pe-wc-suggestion-meta {
	display: block;
	color: #50575e;
	font-size: 12px;
}

.pe-wc-location-picker__empty {
	margin: 6px 0 0;
	color: #82141a;
	font-size: 13px;
}

.pe-wc-location-picker__selected {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.pe-wc-location-picker__selected-name {
	color: #1b5e20;
}
.pe-wc-location-picker__selected-meta {
	color: #50575e;
}
.pe-wc-location-picker__change {
	margin-left: auto;
	border: 1px solid #c3c4c7;
	background: #fff;
	padding: 4px 10px;
	border-radius: 4px;
	cursor: pointer;
	color: inherit;
	font: inherit;
}
.pe-wc-location-picker__change:hover {
	background: #f0f6fc;
	border-color: #2271b1;
}

/* Hide the WC billing/shipping address rows while a Pigeon Express office or
 * locker is the active delivery target. Applied to the row, not the input, so
 * the row's label and required-asterisk also disappear. */
.pe-wc-address-fields-hidden {
	display: none !important;
}
