/*
 * preloved-bazaar-theme — listing-card.css
 *
 * Shared listing-card surface. Used wherever pb_listings are rendered:
 *   - Home page "new in" rail (patterns/new-in-carousel.php)
 *   - /catalog grid + filtered catalog (templates/archive-pb_listing.html)
 *   - Seller profile pages (TODO)
 *   - "More from seller" + "Similar items" rails on PDP (TODO)
 *
 * Single source of truth so every listing surface stays visually consistent.
 *
 * Card class: .pb-listing-card
 * Coordinates with patterns/listing-card.php (the WP-pattern wrapper) which
 * emits the same class names. Agent B is the canonical owner of that pattern;
 * this file is the styling contract.
 *
 * Spec ref: prelovedbazaar-rebuild-spec.md §8 (cards) + §4.2 (catalog).
 *
 * No discount badges, no "X% OFF" — that's a deliberate departure from the
 * Motta-themed live site (see banked feedback: community-first, not discount-
 * shouting).
 */

.pb-listing-card {
	position: relative;
	display: block;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--subtle);
	border-radius: var(--wp--custom--radius--md, 8px);
	overflow: hidden;
	transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out, border-color 200ms ease-in-out;
}

.pb-listing-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--wp--custom--shadow--md, 0 1px 4px rgba(21, 25, 26, 0.16));
	border-color: var(--wp--preset--color--brand-green-mid);
}

.pb-listing-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.pb-listing-card__link:focus-visible {
	outline: 2px solid var(--wp--preset--color--brand-blue);
	outline-offset: 2px;
}

.pb-listing-card__media {
	position: relative;
	aspect-ratio: 4 / 5;
	background: var(--wp--preset--color--subtle);
	overflow: hidden;
}

.pb-listing-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 300ms ease-in-out;
}

.pb-listing-card:hover .pb-listing-card__img {
	transform: scale(1.03);
}

.pb-listing-card__img--placeholder {
	background:
		linear-gradient(135deg, var(--wp--preset--color--brand-green-soft) 0%, var(--wp--preset--color--brand-pink-soft) 100%);
}

.pb-listing-card__body {
	padding: 12px 14px 14px;
}

.pb-listing-card__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--wp--preset--color--contrast);
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pb-listing-card__price {
	margin: 6px 0 0;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 1rem;
	font-weight: 600;
	color: var(--wp--preset--color--brand-green);
}

@media (prefers-reduced-motion: reduce) {
	.pb-listing-card,
	.pb-listing-card__img {
		transition: none;
	}
	.pb-listing-card:hover {
		transform: none;
	}
	.pb-listing-card:hover .pb-listing-card__img {
		transform: none;
	}
}
