.pb-woodmart-fulfillment-card {
	border: 1px solid var(--wd-border-color, rgba(0, 0, 0, 0.105));
	border-radius: var(--wd-brd-radius, 10px);
	background: var(--bgcolor-white, #fff);
	padding: 22px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.pb-woodmart-fulfillment-card__title {
	margin: 0 0 16px;
	font-size: 18px;
	line-height: 1.35;
}

.pb-woodmart-fulfillment-card__options {
	display: grid;
	gap: 10px;
}

.pb-woodmart-fulfillment-card__option {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 12px;
	align-items: center;
	margin: 0;
	padding: 14px;
	border: 1px solid var(--wd-border-color, rgba(0, 0, 0, 0.105));
	border-radius: var(--wd-brd-radius, 8px);
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.pb-woodmart-fulfillment-card__option:has(.pb-woodmart-fulfillment-card__input:checked),
.pb-woodmart-fulfillment-card__option.is-selected {
	border-color: var(--wd-primary-color, #83b735);
	background: color-mix(in srgb, var(--wd-primary-color, #83b735) 8%, #fff);
	box-shadow: 0 0 0 1px var(--wd-primary-color, #83b735);
}

.pb-woodmart-fulfillment-card__input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.pb-woodmart-fulfillment-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.04);
	font-size: 18px;
	line-height: 1;
}

.pb-woodmart-fulfillment-card__content {
	display: grid;
	gap: 3px;
}

.pb-woodmart-fulfillment-card__option-title {
	font-weight: 600;
	color: var(--wd-title-color, #242424);
}

.pb-woodmart-fulfillment-card__description {
	font-size: 13px;
	line-height: 1.4;
	color: var(--wd-text-color, #777);
}

.pb-woodmart-fulfillment-card__meta {
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	color: var(--wd-title-color, #242424);
}

.pb-woodmart-fulfillment-card__meta-separator {
	display: inline-block;
	margin: 0 5px;
	color: var(--wd-text-color, #777);
}

.pb-woodmart-fulfillment-card-is-active #container-fulfillment-options {
	display: none;
}

@media (max-width: 575px) {
	.pb-woodmart-fulfillment-card {
		padding: 18px;
	}

	.pb-woodmart-fulfillment-card__option {
		grid-template-columns: auto 1fr;
	}

	.pb-woodmart-fulfillment-card__meta {
		grid-column: 2;
		white-space: normal;
	}
}
