/* PDP "hot size" flame badge — sits above the best-selling size buttons. */
.vale-size-options .vale-size-opt {
	position: relative;
	overflow: visible;
}
.vale-size-opt__hot {
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 15px;
	line-height: 1;
	pointer-events: none;
	z-index: 2;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.18));
}
/* A best-selling size that's currently sold out shouldn't scream "hot". */
.vale-size-opt.is-oos .vale-size-opt__hot {
	display: none;
}

/* Order: struck price → real price → badge; badge as tall as the real price. */
.vale-info__price-row {
	align-items: center;
}
.vale-info__price-row .vale-price-save {
	align-self: stretch;
	display: inline-flex;
	align-items: center;
	padding: 0 12px;
	font-size: 13px;
}

/* Verified Authentic · Inspected by hand — single-line trust badge under stock.
   The verified row owns the divider lines, so drop the stock block's own border
   to avoid a doubled rule. */
.vale-info__stock {
	margin-bottom: 16px !important;
	padding-bottom: 0 !important;
	border-bottom: 0 !important;
}
.vale-info__verified {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 22px;
	padding: 15px 0;
	border-top: 1px solid var(--vale-line, rgba(10, 10, 10, 0.1));
	border-bottom: 1px solid var(--vale-line, rgba(10, 10, 10, 0.1));
	font-size: 15px;
	line-height: 1.3;
}
.vale-info__verified-ic {
	display: inline-flex;
	color: var(--vale-accent-solid, #1a2942); /* theme colour, not the reference red */
}
.vale-info__verified strong {
	color: var(--vale-black, #0a0a0a);
	font-weight: 700;
}
.vale-info__verified-sub {
	color: var(--vale-muted, rgba(10, 10, 10, 0.55));
}
