/**
 * Product Card Component
 * ============================================================================
 * Card with image, title, optional pricing, features list, and CTA button.
 *
 * Load order: After 01-base.css, before panel CSS files
 * Dependencies: 00-tokens.css (design tokens)
 * ============================================================================
 */

.product-card {
	display: flex;
	flex-direction: column;
}

/* Image */
.product-card__image-wrapper {
	overflow: hidden;
	border-radius: var(--radius-md);
}

.product-card__image {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	aspect-ratio: 4 / 3;
}

/* Content */
.product-card__content {
	padding: var(--space-6) 0;
}

/* Title */
.product-card__title {
	font-size: var(--heading-sub);
	font-weight: var(--font-black);
	color: var(--black);
	margin-bottom: var(--space-4);
}

/* Description */
.product-card__description {
	font-size: var(--text-base);
	line-height: var(--leading-normal);
	color: var(--black);
}

/* Pricing */
.product-card__pricing {
	margin-bottom: var(--space-4);
}

.product-card__price {
	font-size: var(--text-lg);
	font-weight: var(--font-bold);
	color: var(--black);
}

.product-card__price-suffix {
	font-size: var(--text-base);
	color: var(--text-secondary);
}

/* Features list */
.product-card__features {
	list-style: none;
	margin: var(--space-4) 0 0;
	padding: 0;
}

.product-card__feature {
	padding: var(--space-2) 0;
	font-size: var(--text-base);
	color: var(--black);
}

/* Button */
.product-card__button {
	margin-top: var(--space-5);
}

.product-card__button .button {
	margin: 0;
}

/* Highlight variant */
.product-card--highlight {
	border: 2px solid var(--blue);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.product-card--highlight .product-card__image-wrapper {
	border-radius: 0;
}

.product-card--highlight .product-card__content {
	padding: var(--space-6);
}
