/* Exhibition Sale page (templates/page-exhibition-sale.html,
   [wow_exhibition_sale_page] shortcode in functions.php) — only loaded on
   this one page, see the wow_is_page('exhibition-sale') enqueue in
   functions.php. */

.wow-exhibit-page {
	max-width: 1240px;
	margin: 0 auto;
	padding: 60px 24px 100px;
}

.wow-exhibit-page__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}

.wow-exhibit-page__title {
	font-size: 32px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 14px;
}

.wow-exhibit-page__intro {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	margin: 0;
}

.wow-exhibit-page__empty {
	text-align: center;
	padding: 60px 20px;
	color: #777;
	font-size: 15px;
}

.wow-exhibit-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 32px;
}

.wow-exhibit-card {
	border: 1px solid #e6e6e6;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: #fff;
	scroll-margin-top: 120px; /* so the #wow-exhibit-{id} anchor from the product-page notice doesn't land under the fixed header */
}

/* Full, uncropped photo — object-fit:contain instead of cover, so any
   aspect ratio (portrait, landscape, square) shows completely, letterboxed
   on the off-white background rather than cut off. */
.wow-exhibit-card__image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f3f3f3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wow-exhibit-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.wow-exhibit-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.wow-exhibit-card__title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 4px;
}

.wow-exhibit-card__title a {
	color: inherit;
	text-decoration: none;
}

.wow-exhibit-card__batch {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: #b73737;
	font-weight: 700;
	margin: 0 0 16px;
}

.wow-exhibit-card__options {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 16px;
}

.wow-exhibit-card__option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border: 1px solid #e2e2e2;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
}

.wow-exhibit-card__option:has(input:checked) {
	border-color: #b73737;
	background: #fff8f8;
}

.wow-exhibit-card__option input {
	margin: 0;
	flex-shrink: 0;
}

.wow-exhibit-card__option-label {
	flex: 1;
	font-weight: 700;
	text-transform: uppercase;
}

.wow-exhibit-card__option-left {
	display: block;
	font-weight: 400;
	text-transform: none;
	color: #888;
	font-size: 11px;
	margin-top: 2px;
}

.wow-exhibit-card__option-price {
	white-space: nowrap;
	font-weight: 700;
}

.wow-exhibit-card__option-price del {
	color: #999;
	font-weight: 400;
	margin-right: 6px;
}

.wow-exhibit-card__btn {
	margin-top: auto;
	background: #b73737;
	color: #fff;
	border: none;
	padding: 12px 18px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	border-radius: 3px;
	cursor: pointer;
}

.wow-exhibit-card__btn:disabled {
	opacity: .6;
	cursor: default;
}

.wow-exhibit-card__msg {
	font-size: 12px;
	margin: 10px 0 0;
}
