/* Premium Product Details - Sexy Gradient UI */

.product-details {
	display: flex;
	flex-direction: column;
	gap: 1.7rem;
	padding: 1.6rem;
	position: relative;
	overflow: hidden;
	border-radius: 26px;
	border: 1px solid hsl(var(--base) / 0.14);
	background:
		radial-gradient(circle at 0% 0%, hsl(var(--base) / 0.16), transparent 32%),
		radial-gradient(circle at 100% 10%, hsl(var(--accent) / 0.14), transparent 34%),
		linear-gradient(145deg, hsl(var(--white) / 0.96), hsl(var(--light-2) / 0.92));
	box-shadow:
		0 30px 70px hsl(var(--black) / 0.12),
		inset 0 1px 0 hsl(var(--white) / 0.85);
	backdrop-filter: blur(18px);
}

.product-details::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		transparent 0%,
		hsl(var(--white) / 0.45) 45%,
		transparent 70%
	);
	transform: translateX(-120%);
	transition: 0.7s ease;
	pointer-events: none;
}

.product-details:hover::before {
	transform: translateX(120%);
}

.product-details::after {
	content: "";
	position: absolute;
	right: -70px;
	bottom: -70px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: hsl(var(--base) / 0.12);
	filter: blur(14px);
	pointer-events: none;
}

@media (max-width: 575px) {
	.product-details {
		gap: 1rem;
		padding: 1.1rem;
		border-radius: 20px;
	}
}

.product-details .ratings-area {
	margin-top: 3px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.product-detail-price {
	margin-top: 10px;
}

.product-types {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.product-details-label,
.product-share b {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: hsl(var(--heading-color) / 0.68);
}

.product-types span a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: hsl(var(--body-color));
	background: hsl(var(--white) / 0.85);
	border: 1px solid hsl(var(--border));
	border-radius: 999px;
	padding: 7px 14px;
	font-size: 0.82rem;
	font-weight: 600;
	box-shadow: 0 8px 18px hsl(var(--black) / 0.04);
	transition: 0.3s ease;
}

.product-types span a:hover {
	color: hsl(var(--white));
	background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--accent)));
	border-color: transparent;
	transform: translateY(-3px);
	box-shadow: 0 15px 32px hsl(var(--base) / 0.28);
}

.product-details .ratings {
	font-size: 1rem;
	color: #ffb703;
	text-shadow: 0 6px 16px rgba(255, 183, 3, 0.28);
}

.product-details .product-price {
	line-height: 1;
	font-weight: 900;
	font-size: clamp(1.6rem, 3vw, 2.35rem);
	color: hsl(var(--heading-color));
	letter-spacing: -0.05em;
}

.product-details .product-price del {
	color: hsl(var(--heading-color) / 0.35);
	font-size: 0.7em;
	margin-left: 9px;
	font-weight: 700;
}

.product-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem;
}

.product-details .product-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
}

.product-details .product-share a {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: hsl(var(--white) / 0.9);
	color: hsl(var(--heading-color) / 0.72);
	border-radius: 16px;
	border: 1px solid hsl(var(--border));
	box-shadow: 0 10px 22px hsl(var(--black) / 0.06);
	transition: 0.3s ease;
}

.product-details .product-share a:hover {
	color: hsl(var(--white));
	background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--accent)));
	border-color: transparent;
	transform: translateY(-4px) scale(1.05);
	box-shadow:
		0 18px 36px hsl(var(--base) / 0.32),
		0 0 0 6px hsl(var(--base) / 0.08);
}

.product-details .add-to-wishlist-btn {
	border: 1px solid hsl(var(--base) / 0.16);
	background:
		linear-gradient(135deg, hsl(var(--white) / 0.92), hsl(var(--light-2) / 0.92));
	color: hsl(var(--heading-color) / 0.8);
	padding: 13px 20px;
	font-size: 0.875rem;
	font-weight: 800;
	border-radius: 999px;
	box-shadow: 0 14px 30px hsl(var(--black) / 0.07);
	transition: 0.3s ease;
}

.product-details .add-to-wishlist-btn:hover,
.product-details .add-to-wishlist-btn.active {
	color: hsl(var(--white));
	background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--accent)));
	border-color: transparent;
	transform: translateY(-3px);
	box-shadow:
		0 20px 42px hsl(var(--base) / 0.32),
		0 0 0 6px hsl(var(--base) / 0.09);
}

.product-details .add-to-wishlist-btn .wish-icon {
	content: "";
	font-family: "Line Awesome Free";
	font-weight: 400;
}

.product-details .add-to-wishlist-btn .wish-icon::after {
	content: "\f004";
}

.product-details .add-to-wishlist-btn.active .wish-icon,
.product-details .add-to-wishlist-btn.active .compare-icon {
	font-weight: 900;
	color: hsl(var(--white));
}

.product-details-video {
	max-width: 600px;
	height: 400px;
	width: 100%;
	border-radius: 24px;
	border: 1px solid hsl(var(--base) / 0.14);
	box-shadow:
		0 28px 60px hsl(var(--black) / 0.16),
		0 0 0 7px hsl(var(--base) / 0.05);
	overflow: hidden;
	background: hsl(var(--dark));
}

@media (max-width: 767px) {
	.product-details-video {
		height: 320px;
		border-radius: 20px;
	}
}

@media (max-width: 425px) {
	.product-details-video {
		height: 200px;
	}
}

.review--image {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
	margin-top: 10px;
}

.review--image a {
	display: inline-block;
	width: 94px;
	height: 94px;
	border: 1px solid hsl(var(--base) / 0.14);
	border-radius: 18px;
	padding: 5px;
	background:
		linear-gradient(135deg, hsl(var(--white) / 0.96), hsl(var(--light-2) / 0.9));
	box-shadow: 0 12px 26px hsl(var(--black) / 0.07);
	overflow: hidden;
	transition: 0.3s ease;
}

.review--image a:hover {
	transform: translateY(-4px) scale(1.03);
	border-color: hsl(var(--base) / 0.65);
	box-shadow:
		0 18px 34px hsl(var(--base) / 0.18),
		0 0 0 5px hsl(var(--base) / 0.07);
}

.review--image img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.review-reply-items .review-item .thumb {
	height: 50px !important;
	width: 50px !important;
	padding: 8px;
	border-radius: 50%;
	background:
		linear-gradient(135deg, hsl(var(--base) / 0.14), hsl(var(--accent) / 0.12));
	border: 1px solid hsl(var(--base) / 0.2);
	box-shadow: 0 10px 20px hsl(var(--base) / 0.12);
}

.review-reply-items .posted-by {
	font-size: 16px;
	font-weight: 800;
	color: hsl(var(--heading-color));
}

.review-reply-items .posted-by .posted-on {
	font-size: 13px;
	font-weight: 500;
	color: hsl(var(--body-color) / 0.58);
}

.review-reply-items .review--image a {
	height: 84px;
	width: 84px;
}

.review-reply-items .review-item__reply-msg {
	font-size: 15px;
	line-height: 1.75;
	color: hsl(var(--body-color));
}