/*
 * Velvot Store Enhancer
 * Premium Automatic Free Gift Badge
 */

.wd-product .product-element-top,
.product-grid-item .product-element-top,
.woocommerce ul.products li.product .product-element-top {
	position: relative;
}

.velvot-free-gift-badge {
	position: absolute;
	top: 145px;
	left: 9px;
	z-index: 35;

	display: inline-flex;
	align-items: center;
	gap: 6px;

	padding: 7px 13px;

	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;

	background: linear-gradient(
		135deg,
		#5b2bc7 0%,
		#7f38df 55%,
		#9c3bdc 100%
	);

	box-shadow:
		0 7px 18px rgba(86, 41, 190, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);

	color: #fff !important;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	white-space: nowrap;

	pointer-events: none;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.velvot-free-gift-badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	line-height: 1;
}

.velvot-free-gift-badge-text {
	color: #fff !important;
	font: inherit;
	line-height: 1;
}

.wd-product:hover .velvot-free-gift-badge,
.product-grid-item:hover .velvot-free-gift-badge {
	transform: translateY(-1px);
	box-shadow:
		0 9px 22px rgba(86, 41, 190, 0.38),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
	.velvot-free-gift-badge {
		top: 100px;
		left: 7px;
		gap: 4px;
		padding: 6px 9px;
		font-size: 9px;
		letter-spacing: 0.25px;
	}

	.velvot-free-gift-badge-icon {
		font-size: 12px;
	}
}