.product-card .availability.product-availability {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	width: auto;
	max-width: 100%;
	min-height: 0;
	margin: 5px 0;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	overflow: visible;
	white-space: normal;
	text-overflow: clip;
}

.product-availability__badge {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-height: 24px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 14px;
	line-height: 1.15;
	font-weight: 800;
	white-space: nowrap;
}

.product-availability__note {
	color: #667085;
	font-size: 12px;
	line-height: 1.25;
	font-weight: 650;
}

.product-availability--today .product-availability__badge {
	background: #eef7c7;
	color: #5f6b0d;
}

.product-availability--delayed .product-availability__badge {
	background: #fff1e6;
	color: #b45309;
}

.product-availability--count .product-availability__badge {
	background: #eef2f7;
	color: #667085;
}

.product-availability--unavailable .product-availability__badge {
	background: #fff1f3;
	color: #e11d48;
}

.product-card .preview,
.product-list .product-card .preview {
	background: #fff;
}

@media screen and (max-width: 767px) {
	.product-list .product-card .availability.product-availability {
		order: 2;
		grid-column: 1 / -1;
		width: auto;
		max-width: 100%;
		min-height: 18px;
		gap: 2px;
	}

	.product-list .product-card .product-availability__badge {
		min-height: 18px;
		padding: 2px 7px;
		font-size: 9.5px;
		line-height: 1.25;
		font-weight: 760;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.product-list .product-card .product-availability__note {
		font-size: 9.5px;
		line-height: 1.2;
		font-weight: 650;
	}

	.product-page__delivery-why {
		position: relative;
		display: flex;
		align-items: center;
		width: max-content;
		max-width: 100%;
	}

	.product-page__delivery-why button {
		position: relative;
		width: 32px;
		height: 32px;
		padding: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(12, 120, 159, 0.14);
		border-radius: 999px;
		background: #fff;
		color: #0c789f;
		box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
	}

	.product-page__delivery-why button::before {
		content: "i";
		font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
		font-size: 17px;
		line-height: 1;
		font-weight: 800;
	}

	.product-page__delivery-why button:focus-visible {
		outline: 2px solid rgba(30, 170, 219, 0.35);
		outline-offset: 2px;
	}

	.product-page__delivery-why-img {
		display: none;
	}

	.product-page__delivery-why-text {
		display: block;
		position: absolute;
		top: calc(100% + 8px);
		left: 0;
		z-index: 12;
		width: min(320px, calc(100vw - 72px));
		padding: 14px 16px;
		border: 1px solid rgba(12, 120, 159, 0.12);
		border-radius: 16px;
		background: #fff;
		color: #0c789f;
		box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-4px);
		transition: opacity 140ms ease, transform 140ms ease, visibility 0s linear 140ms;
	}

	.product-page__delivery-why:hover .product-page__delivery-why-text,
	.product-page__delivery-why:focus-within .product-page__delivery-why-text {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
		transition: opacity 140ms ease, transform 140ms ease;
	}
}
