/**
 * On Sale Section Styles
 *
 * Horizontal swiper carousel of volume cards with sale pricing.
 * Data sourced from the active Omoi sale campaign (set in Appearance → Sale Campaign).
 * BEM naming: .on-sale, .on-sale__element, .on-sale__element--modifier
 */

/* Block Container */
.on-sale {
	margin: 4rem 0;
}

/* Header */
.on-sale__header {
	margin-bottom: 1.5rem;
}

.on-sale__kicker {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--color-black);
}

/* Item Card — vertical layout */
.on-sale__item {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.on-sale__item-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
}

.on-sale__item-link:hover .on-sale__item-title {
	color: var(--color-gray-dark);
}

/* Cover Image */
.on-sale__item-image {
	position: relative;
	width: 100%;
	aspect-ratio: 2 / 3;
	background: var(--color-gray-light);
	overflow: hidden;
	margin-bottom: 0.75rem;
}

.on-sale__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.on-sale__item-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--color-gray-mid);
}

/* On Sale Badge — inherits from .kd-badge */

/* Item Text Content */
.on-sale__item-content {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.on-sale__item-title {
	font-family: "Maax Bold";
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.2;
	margin: 0;
	color: var(--color-black);
}

.on-sale__item-creators {
	font-size: 0.875rem;
	color: var(--color-gray-dark);
	margin: 0;
	line-height: 1.4;
}

/* Sale Pricing */
.on-sale__item-prices {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.25rem;
}

.on-sale__item-price--original {
	text-decoration: line-through;
	color: var(--color-text-2);
	font-size: 0.875rem;
}

.on-sale__item-price--sale {
	color: var(--color-black);
	font-family: "Maax Bold";
	font-weight: 400;
	font-size: 0.875rem;
}

/* Product Image Style — padded cover on gray background */
.on-sale--img-product .on-sale__item-image {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	box-sizing: border-box;
}

.on-sale--img-product .on-sale__item-image img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Footer — View More button (uses .arrow-container base) */
.on-sale__footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 1.5rem;
}

/* Empty State */
.on-sale__empty {
	color: var(--color-text-2);
	font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
	.on-sale {
		margin: 3rem 0;
	}
}
