/**
 * Single Product block - front-end + editor preview styles.
 */
.ptpb-single-product {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

/* Whole-card link: image + title are one clickable link. */
.ptpb-single-product .ptpb-product-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.ptpb-single-product .ptpb-product-link:hover .ptpb-caption {
	text-decoration: underline;
}

.ptpb-single-product .ptpb-image-wrap {
	border: 1px solid #e0e0e0;
	padding: 12px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.06 );
	line-height: 0;
}

/**
 * Fixed image height (set per block; defaults to 280px).
 *
 * The image is scaled to fit the height and never cropped (object-fit:
 * contain). If it ends up narrower than the card, the white card background
 * shows on the sides. This makes every card the same height.
 */
.ptpb-single-product img {
	display: block;
	width: 100%;
	height: var( --ptpb-img-h, 280px );
	object-fit: contain;
	border-radius: 4px;
}

.ptpb-single-product .ptpb-caption {
	margin-top: 10px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
}
