/* Buy-box alternate-availability notice */
.vru-alt-in-stock-notice {
	margin: 12px 0;
	padding: 14px 18px;
	border-radius: 6px;
	border: 2px solid;
}
/* Variant: shippable alternate — loud, urgent (the "you can buy and
   ship today" callout). Default. */
.vru-alt-in-stock-notice--shippable {
	background: #fff7e6;
	border-color: #d97706;
}
.vru-alt-in-stock-notice--shippable .vru-alt-in-stock-notice__title {
	color: #b45309;
}
/* Variant: special-order fallback — gentler tone, since the
   alternate is also a special order; we're just acknowledging
   *some* path forward exists. */
.vru-alt-in-stock-notice--special-order {
	background: #eef2ff;
	border-color: #4338ca;
}
.vru-alt-in-stock-notice--special-order .vru-alt-in-stock-notice__title {
	color: #312e81;
}
.vru-alt-in-stock-notice__title {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}
.vru-alt-in-stock-notice__lead {
	font-size: 12px;
	color: #4f46e5;
	margin-bottom: 6px;
}
.vru-alt-in-stock-notice__list {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 240px, 1fr ) );
	gap: 12px;
}
.vru-alt-in-stock-notice__item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	background: #fff;
	padding: 8px;
	border-radius: 4px;
}
.vru-alt-in-stock-notice__image img {
	width: 90px;
	height: auto;
	display: block;
}
.vru-alt-in-stock-notice__body {
	flex: 1 1 auto;
	min-width: 0;
}
.vru-alt-in-stock-notice__name {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
	line-height: 1.2;
}
.vru-alt-in-stock-notice__price {
	color: #1f3a5f;
	font-weight: 600;
	margin-bottom: 6px;
}
.vru-alt-in-stock-notice__cart .button {
	font-size: 14px;
	padding: 6px 10px;
}

/* Generic alternates grid below the buy box */
.vru-alt-grid {
	margin-top: 24px;
}
.vru-alt-grid h2 {
	margin-bottom: 8px;
}
.vru-alt-grid .grid-item-product__oos {
	color: #b91c1c;
	font-size: 13px;
	font-style: italic;
}

/* Inline alternate row inside schematic parts table */
.vru-alt-schematic-row td {
	background: #f0f9ff;
}
.vru-alt-schematic-row__label {
	display: block;
	font-size: 12px;
	color: #1d4ed8;
	font-weight: 600;
	margin-bottom: 4px;
}
/* Condition-tinted variant rows — softer for non-new alternates */
.vru-alt-schematic-row--reconditioned td,
.vru-alt-schematic-row--pre-owned td,
.vru-alt-schematic-row--factory-repackaged td,
.vru-alt-schematic-row--refurbished td {
	background: #fef3c7;
}
.vru-alt-schematic-row--reconditioned .vru-alt-schematic-row__label,
.vru-alt-schematic-row--pre-owned .vru-alt-schematic-row__label,
.vru-alt-schematic-row--factory-repackaged .vru-alt-schematic-row__label,
.vru-alt-schematic-row--refurbished .vru-alt-schematic-row__label {
	color: #b45309;
}

/* Condition badges (used in alternates grid + buy-box notice) */
.vru-alt-condition-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 3px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	margin: 0 0 4px;
	background: #f3f4f6;
	color: #374151;
}
.vru-alt-condition-badge--reconditioned,
.vru-alt-condition-badge--refurbished {
	background: #fef3c7;
	color: #b45309;
}
.vru-alt-condition-badge--pre-owned {
	background: #dbeafe;
	color: #1e40af;
}
.vru-alt-condition-badge--factory-repackaged {
	background: #ede9fe;
	color: #5b21b6;
}
