.omg-vc-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.omg-vc-card {
	width: 130px;
	border: 2px solid #e2e2e2;
	border-radius: 10px;
	padding: 8px;
	cursor: pointer;
	text-align: center;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.omg-vc-card:hover {
	border-color: #b9b9ff;
	transform: translateY(-2px);
}

.omg-vc-card.is-selected {
	border-color: #5b4fc4;
	box-shadow: 0 0 0 1px #5b4fc4;
}

.omg-vc-card.is-unavailable {
	opacity: 0.4;
	cursor: not-allowed;
	filter: grayscale(1);
}

.omg-vc-card-image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 6px;
	background: #f5f5f5;
}

.omg-vc-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.omg-vc-card-name {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	color: #222;
}

.omg-vc-card-price {
	font-size: 13px;
	color: #5b4fc4;
	font-weight: 600;
}

.omg-vc-card-price .amount {
	font-weight: 600;
}

/* WooCommerce's native select is kept in the DOM (hidden) for compatibility. */
.omg-vc-hidden-select {
	display: none !important;
}

@media (max-width: 480px) {
	.omg-vc-card {
		width: calc(50% - 6px);
	}
}
