.hvt-rp-inline {
	margin: 18px 0;
	padding: 12px 16px;
	border-left: 4px solid #2271b1;
	background: #f6f7f7;
	font-size: 16px;
	line-height: 1.5;
	clear: both;
}

.hvt-rp-inline-label {
	font-weight: 700;
	margin-right: 4px;
}

.hvt-rp-inline-link {
	font-weight: 600;
	text-decoration: none;
}

.hvt-rp-section {
	margin-top: 32px;
	clear: both;
}

.hvt-rp-title {
	margin: 0 0 18px;
	font-size: inherit;
	line-height: 1.5;
	font-weight: 700;
}

.hvt-rp-grid {
	display: grid;
	grid-template-columns: repeat(var(--hvt-rp-desktop-cols, 3), minmax(0, 1fr));
	gap: 18px;
}

.hvt-rp-card {
	min-width: 0;
}

.hvt-rp-card-link {
	display: block;
	text-decoration: none;
}

.hvt-rp-thumb {
	display: block;
	width: 100%;
	aspect-ratio: 7 / 5;
	background: #f1f1f1;
	overflow: hidden;
	border-radius: 8px;
}

.hvt-rp-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.hvt-rp-thumb-placeholder {
	background: linear-gradient(135deg, #f4f4f4, #e7e7e7);
}

.hvt-rp-card-title {
	display: block;
	margin-top: 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}

.hvt-rp-card-date,
.hvt-rp-card-excerpt {
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.5;
	color: #555;
}

@media (max-width: 768px) {
	.hvt-rp-grid {
		grid-template-columns: repeat(var(--hvt-rp-tablet-cols, 2), minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.hvt-rp-grid {
		grid-template-columns: repeat(var(--hvt-rp-mobile-cols, 1), minmax(0, 1fr));
	}
}

/* HVT WooCommerce product recommendations - compact layout */
.hvt-rp-product-section,
.hvt-rp-product-inline,
.hvt-rp-product-final {
	margin: 18px 0;
	padding: 10px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	background: #f6f7f7;
	clear: both;
}

.hvt-rp-product-final {
	margin-top: 28px;
}

.hvt-rp-product-block-title,
.hvt-rp-product-section-title {
	margin: 0 0 8px;
	font-size: inherit;
	font-weight: 700;
	line-height: 1.4;
}

.hvt-rp-product-block-title strong,
.hvt-rp-product-section-title strong,
.hvt-rp-title strong {
	font-weight: 700;
}

.hvt-rp-product-single {
	background: #f6f7f7;
}

.hvt-rp-product-single-layout {
	display: grid;
	grid-template-columns: minmax(96px, 24%) minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 10px;
	border-radius: 8px;
	background: #fff;
}

.hvt-rp-product-single-image,
.hvt-rp-product-image {
	display: block;
	background: #f6f7f7;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
}

.hvt-rp-product-single-image {
	max-width: 150px;
}

.hvt-rp-product-single-image img,
.hvt-rp-product-image img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	object-fit: cover;
}

.hvt-rp-product-single-body,
.hvt-rp-product-card-body {
	min-width: 0;
}

.hvt-rp-product-title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}

.hvt-rp-product-single .hvt-rp-product-title {
	font-size: 15px;
}

.hvt-rp-product-price {
	margin-top: 5px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.hvt-rp-product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	margin-top: 8px;
}

.hvt-rp-product-actions .button,
.hvt-rp-product-actions a.button {
	margin: 0;
	padding: 6px 10px;
	min-height: 0;
	font-size: 13px;
	line-height: 1.2;
	white-space: nowrap;
}

.hvt-rp-product-view-button {
	text-decoration: none;
}

.hvt-rp-product-carousel {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - (var(--hvt-rp-product-desktop-visible, 4) - 1) * 10px) / var(--hvt-rp-product-desktop-visible, 4));
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 1px 1px 8px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.hvt-rp-carousel-mode-peek .hvt-rp-product-carousel {
	grid-auto-columns: calc((100% - (var(--hvt-rp-product-desktop-visible, 4) - 0.35) * 10px) / (var(--hvt-rp-product-desktop-visible, 4) + 0.35));
}

.hvt-rp-product-card {
	min-width: 0;
	padding: 8px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	background: #fff;
	scroll-snap-align: start;
}

.hvt-rp-product-card .hvt-rp-product-title {
	margin-top: 7px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hvt-rp-product-card .hvt-rp-product-actions {
	gap: 5px;
}

.hvt-rp-product-card .hvt-rp-product-actions .button,
.hvt-rp-product-card .hvt-rp-product-actions a.button {
	padding: 5px 8px;
	font-size: 12px;
}

@media (max-width: 768px) {
	.hvt-rp-product-carousel {
		grid-auto-columns: calc((100% - (var(--hvt-rp-product-tablet-visible, 2) - 1) * 9px) / var(--hvt-rp-product-tablet-visible, 2));
		gap: 9px;
	}

	.hvt-rp-carousel-mode-peek .hvt-rp-product-carousel {
		grid-auto-columns: calc((100% - (var(--hvt-rp-product-tablet-visible, 2) - 0.35) * 9px) / (var(--hvt-rp-product-tablet-visible, 2) + 0.35));
	}
}

@media (max-width: 560px) {
	.hvt-rp-product-single-layout {
		grid-template-columns: 88px minmax(0, 1fr);
		gap: 10px;
	}

	.hvt-rp-product-single-image {
		max-width: 88px;
	}
}

@media (max-width: 480px) {
	.hvt-rp-product-section,
	.hvt-rp-product-inline,
	.hvt-rp-product-final {
		padding: 9px;
	}

	.hvt-rp-product-carousel {
		grid-auto-columns: calc((100% - (var(--hvt-rp-product-mobile-visible, 1) - 1) * 8px) / var(--hvt-rp-product-mobile-visible, 1));
		gap: 8px;
	}

	.hvt-rp-carousel-mode-peek .hvt-rp-product-carousel {
		grid-auto-columns: calc((100% - (var(--hvt-rp-product-mobile-visible, 1) - 0.25) * 8px) / (var(--hvt-rp-product-mobile-visible, 1) + 0.25));
	}
}
