/**
 * DesignLamp 2026 shared product badge presentation.
 * Business decisions stay in designlamp-store-ui.
 */

.dl-badge-stack {
	display: flex;
	gap: 0.375rem;
	font-family: var(--dl-font-ui);
}

.dl-badge-stack--card {
	position: absolute;
	z-index: 20;
	top: 0.75rem;
	left: 0.75rem;
	max-width: calc(100% - 4.75rem);
	flex-direction: column;
	align-items: flex-start;
	pointer-events: none;
}

.dl-product-card__media > .dl-badge-stack--card {
	top: 0.75rem;
	left: 0.75rem;
}

.dl-product-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.75rem;
	max-width: 100%;
	padding: 0.32rem 0.65rem;
	border: 1px solid transparent;
	border-radius: 999px;
	box-shadow: 0 0.18rem 0.55rem rgb(23 22 20 / 8%);
	font-size: 0.69rem;
	font-weight: 750;
	letter-spacing: 0.015em;
	line-height: 1.15;
	text-align: center;
	text-wrap: balance;
}

.dl-product-badge--sale,
.dl-product-badge--promotion {
	border-color: var(--dl-text);
	background: var(--dl-text);
	color: var(--dl-surface);
}

.dl-product-badge--coupon {
	border-color: rgb(168 117 72 / 58%);
	background: var(--dl-accent-soft);
	color: #704823;
}

.dl-product-badge--new {
	border-color: rgb(23 22 20 / 42%);
	background: rgb(255 255 255 / 94%);
	color: var(--dl-text);
}

.dl-badge-stack--single {
	position: static;
	flex-flow: row wrap;
	align-items: center;
	margin: 0.15rem 0 0.85rem;
}

.dl-badge-stack--single:empty {
	display: none;
}

.dl-single-product .dl-badge-stack--single .dl-product-badge {
	box-shadow: none;
}

@media (max-width: 767px) {
	.dl-badge-stack--card {
		top: 0.5rem;
		left: 0.5rem;
		max-width: calc(100% - 5rem);
		gap: 0.28rem;
	}

	.dl-product-card__media > .dl-badge-stack--card {
		top: 0.5rem;
		left: 0.5rem;
	}

	.dl-product-badge {
		min-height: 1.625rem;
		padding: 0.28rem 0.48rem;
		font-size: 0.65rem;
		line-height: 1.18;
	}
}

@media (max-width: 390px) {
	.dl-product-badge--coupon {
		white-space: normal;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dl-product-badge {
		transition: none;
	}
}
