.sm-multi-address-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 280px, 1fr ) );
	gap: 16px;
	margin-bottom: 16px;
}

.sm-multi-address-card {
	display: flex;
	gap: 12px;
	border: 1px solid rgba( 0, 0, 0, 0.12 );
	border-radius: 6px;
	padding: 16px;
}

.sm-multi-address-card--default {
	border-color: currentColor;
	border-width: 2px;
}

.sm-multi-address-card__icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba( 0, 0, 0, 0.05 );
}

.sm-multi-address-card__icon .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

.sm-multi-address-card__content {
	flex: 1 1 auto;
	min-width: 0;
}

.sm-multi-address-card__top {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
}

.sm-multi-address-card__icon--home {
	background: #e8f1fb;
	color: #2271b1;
}

.sm-multi-address-card__icon--work {
	background: #f3eafb;
	color: #8250df;
}

.sm-multi-address-card__icon--custom {
	background: #e5f9f6;
	color: #0f9d8e;
}

.sm-multi-address-chip {
	font-size: 0.7em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 3px 10px;
	border-radius: 12px;
}

.sm-multi-address-chip--home {
	background: #e8f1fb;
	color: #2271b1;
}

.sm-multi-address-chip--work {
	background: #f3eafb;
	color: #8250df;
}

.sm-multi-address-chip--custom {
	background: #e5f9f6;
	color: #0f9d8e;
}

.sm-multi-address-card__postcode {
	font-weight: 400;
	opacity: 0.75;
	margin-left: 6px;
}

.sm-multi-address-star {
	display: inline-flex;
	align-items: center;
	color: #8c8f94;
}

.sm-multi-address-star .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

.sm-multi-address-star--filled,
.sm-multi-address-star--filled .dashicons {
	color: #dba617;
}

.sm-multi-address-card__icon-actions {
	display: flex;
	gap: 4px;
	margin-left: auto;
}

.sm-multi-address-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 4px;
	color: inherit;
	text-decoration: none;
	opacity: 0.7;
}

.sm-multi-address-icon-btn:hover {
	opacity: 1;
	background: rgba( 0, 0, 0, 0.05 );
}

.sm-multi-address-icon-btn .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

.sm-multi-address-card__name {
	display: block;
	margin-bottom: 4px;
}

.sm-multi-address-card__body {
	font-style: normal;
	line-height: 1.5;
	opacity: 0.85;
}

.sm-multi-address-hint {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9em;
	opacity: 0.75;
	margin-bottom: 16px;
}

.sm-multi-address-hint .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
}

.sm-multi-address-form .form-row {
	margin-bottom: 12px;
}

.sm-multi-address-label-options {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 4px;
}

.sm-multi-address-label-option {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: normal;
}

.sm-multi-address-custom-label-row {
	display: none;
}

.sm-multi-address-checkout-selector {
	margin-bottom: 20px;
}

.sm-multi-address-selector-title {
	font-weight: 600;
	margin-bottom: 8px;
}

.sm-multi-address-radio-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sm-multi-address-radio-option {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	border: 1px solid rgba( 0, 0, 0, 0.12 );
	border-radius: 4px;
	padding: 10px 12px;
	cursor: pointer;
	font-weight: normal;
}

.sm-multi-address-radio-option:has( input:checked ) {
	border-color: currentColor;
}

.sm-multi-address-radio-option input[type="radio"] {
	margin-top: 3px;
}

.sm-multi-address-radio-option__text {
	line-height: 1.5;
}

.sm-multi-address-radio-option .sm-multi-address-chip {
	margin-right: 6px;
}

@media screen and ( max-width: 480px ) {
	.sm-multi-address-grid {
		grid-template-columns: 1fr;
	}

	.sm-multi-address-card__icon-actions {
		gap: 2px;
	}
}
