.mrvp-wrapper h4 {
	margin-bottom: 10px;
	font-size: 18px;
}

.mrvp-product-list {
	list-style: none;
	padding: 0 !important;
	margin: 0 !important;
	display: flex;
}


.mrvp-product-list li {
	display: flex;
	align-items: center;
	padding: 10px 0;
}

.mrvp-product-list li:first-child {
	border-top: none;
}

.mrvp-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 5px;
}

.mrvp-title {
	font-weight: bold;
	padding: 10px 10px 0;
	text-align: center;
}

.mrvp-price {
	text-align: center;
}

.mrvp-product-item {
	width: 279px;
    height: 322px;
    border-radius: 10px;
    background-color: #f7f7f7;
    position: relative;
	margin-right: 15px;
	display: flex;
}

.mrvp-product-link {
	display: flex;
	align-items: center;
	flex-direction: column; 
	text-decoration: none;
	color: inherit;
	width: 100%;
}

.mrvp-product-link img {
	width: 70%;
	height: auto;
	border-radius: 4px;
	flex-shrink: 0;
}

.mrvp-product-link span {
	font-size: 16px;
}

.mrvp-loading {
	padding: 10px;
	text-align: left;
	display: none;
}
.mrvp-spinner {
	width: 24px;
	height: 24px;
	border: 3px solid #ccc;
	border-top: 3px solid #000;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}
@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
	ul.mrvp-product-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	ul.mrvp-product-list li.mrvp-product-item {
		width: 100%;
		height: auto;
		float: none;
		margin: 0;
	}
}
