/* Small merchandising badges; never used for availability or price wording. */
.product,
.thps-v2-product-card,
.thps-catalog-card,
.thps-brand-product{
	position:relative;
}
.thps-product-badges{
	position:absolute;
	z-index:8;
	top:clamp(.65rem,1.1vw,1rem);
	right:clamp(.65rem,1.1vw,1rem);
	display:flex;
	max-width:calc(100% - 1.3rem);
	flex-direction:column;
	align-items:flex-end;
	gap:.35rem;
	pointer-events:none;
}
.thps-product-badge{
	display:inline-flex;
	min-height:1.75rem;
	align-items:center;
	justify-content:center;
	padding:.33rem .65rem;
	border:1px solid rgba(255,255,255,.52);
	box-shadow:0 .2rem .7rem rgba(22,40,18,.16);
	color:#fff;
	font-size:.67rem;
	font-weight:850;
	letter-spacing:.1em;
	line-height:1;
	text-transform:uppercase;
	white-space:nowrap;
}
.thps-product-badge--offer{background:#c45d22}
.thps-product-badge--new{background:#20351a}
.thps-product-badges--detail{
	top:1rem;
	right:1rem;
}
@media(max-width:600px){
	.thps-product-badges{top:.55rem;right:.55rem;max-width:calc(100% - 1.1rem);gap:.25rem}
	.thps-product-badge{min-height:1.55rem;padding:.28rem .5rem;font-size:.61rem;letter-spacing:.075em}
}
@media(prefers-reduced-motion:reduce){
	.thps-product-badge{transition:none!important}
}
