/**
 * Farasale VIP Pricing — frontend styles
 * Only enqueued on WooCommerce-related pages. Kept minimal on purpose.
 */

/* ---- VIP price highlight ------------------------------------------- */
.fvp-vip-price {
	color: #ff7a00; /* brand orange */
	font-weight: 700;
}

del .fvp-vip-price,
.price del {
	opacity: 0.6;
}

/* ---- Badge, shared base ---------------------------------------------- */
.fvp-vip-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: linear-gradient(135deg, #0a5cff, #0044cc);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	padding: 4px 10px 4px 6px;
	border-radius: 999px;
	box-shadow: 0 2px 6px rgba(10, 92, 255, 0.35);
	white-space: nowrap;
}

.fvp-vip-badge .fvp-badge-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	display: block;
}

/* Badge on the single product page, next to the price */
.fvp-vip-badge--single {
	margin-inline-start: 8px;
	vertical-align: middle;
}

/* Badge overlaid on product cards (shop / category / search / related) */
ul.products li.product {
	position: relative;
}

.fvp-vip-badge--card {
	position: absolute;
	top: 10px;
	inset-inline-end: 10px;
	z-index: 2;
}
