/*
 * Velvot Store Enhancer
 * Premium Single Product Free Gift Box
 */

.velvot-product-gift-box {
	position: relative;
	overflow: hidden;
	margin: 20px 0;
	padding: 18px;
	border: 1px solid rgba(118, 51, 215, 0.18);
	border-radius: 14px;
	background:
		linear-gradient(
			135deg,
			rgba(247, 242, 255, 0.98) 0%,
			rgba(255, 255, 255, 1) 58%,
			rgba(250, 242, 255, 0.98) 100%
		);
	box-shadow: 0 10px 30px rgba(67, 29, 121, 0.10);
}

.velvot-product-gift-box::before {
	content: "";
	position: absolute;
	top: -55px;
	right: -45px;
	width: 145px;
	height: 145px;
	border-radius: 50%;
	background: rgba(130, 54, 221, 0.08);
	pointer-events: none;
}

.velvot-gift-box-heading {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 15px;
}

.velvot-gift-box-heading-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, #5d2ac8, #963be1);
	box-shadow: 0 7px 18px rgba(91, 42, 200, 0.25);
	font-size: 20px;
}

.velvot-gift-box-eyebrow {
	display: block;
	margin-bottom: 3px;
	color: #7a35d1;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.9px;
	text-transform: uppercase;
}

.velvot-gift-box-heading h3 {
	margin: 0;
	color: #171717;
	font-size: 18px;
	font-weight: 750;
	line-height: 1.25;
	text-transform: uppercase;
}

.velvot-gift-box-product {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 15px;
	padding-top: 15px;
	border-top: 1px solid rgba(69, 42, 99, 0.10);
}

.velvot-gift-box-image-wrap {
	position: relative;
	width: 110px;
	min-width: 110px;
	padding: 8px;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 12px;
	background: #fff;
}

.velvot-gift-box-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 7px;
}

.velvot-gift-box-free-label {
	position: absolute;
	right: -8px;
	bottom: -8px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 6px 12px;

	border: 2px solid #fff;
	border-radius: 999px;

	background: linear-gradient(
		135deg,
		#7B2FF7 0%,
		#5D00FF 100%
	);

	box-shadow:
		0 8px 18px rgba(93, 0, 255, 0.30),
		inset 0 1px 0 rgba(255,255,255,.25);

	color: #fff;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .5px;
	text-transform: uppercase;
}

.velvot-gift-box-details {
	min-width: 0;
}

.velvot-gift-box-intro {
	margin: 0 0 4px;
	color: #666;
	font-size: 12px;
	line-height: 1.45;
}

.velvot-gift-box-name {
	margin: 0 0 9px;
	color: #171717;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.35;
}

.velvot-gift-box-benefits {
	display: grid;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.velvot-gift-box-benefits li {
	position: relative;
	margin: 0;
	padding-left: 19px;
	color: #555;
	font-size: 11px;
	line-height: 1.4;
}

.velvot-gift-box-benefits li::before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: #0786c9;
	font-weight: 900;
}

@media (max-width: 575px) {
	.velvot-product-gift-box {
		margin: 16px 0;
		padding: 15px;
	}

	.velvot-gift-box-heading h3 {
		font-size: 16px;
	}

	.velvot-gift-box-product {
		align-items: flex-start;
		gap: 12px;
	}

	.velvot-gift-box-image-wrap {
		width: 78px;
		min-width: 78px;
	}

	.velvot-gift-box-name {
		font-size: 14px;
	}
}

/* Gift value */
.velvot-gift-box-value {
	display: flex;
	align-items: center;
	gap: 6px;

	margin: 0 0 14px;
	padding-bottom: 12px;

	border-bottom: 1px solid rgba(0,0,0,.08);

	color: #666;
	font-size: 12px;
	font-weight: 500;
}

.velvot-gift-box-value strong {
	color: #16a34a;
	font-size: 15px;
	font-weight: 800;
}

/* Subtle premium animation */
.velvot-gift-box-heading-icon {
	animation: velvot-gift-float 3.2s ease-in-out infinite;
}

@keyframes velvot-gift-float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-3px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.velvot-gift-box-heading-icon {
		animation: none;
	}
}