.product-details {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}

@media (max-width: 575px) {
	.product-details {
		gap: 1rem;
	}
}

.product-details .ratings-area {
	margin-top: 3px;
}

.product-detail-price {
	margin-top: 8px;
}

.product-types {
	gap: 6px;
}

.product-details-label,
.product-share b {
	font-size: 0.875rem;
	font-weight: 600;
}

.product-types span a {
	color: hsl(var(--body-color));
}

.product-types span a:hover {
	color: hsl(var(--base));
}

.product-details .ratings {
	font-size: 1rem;
}

.product-details .product-price {
	line-height: 1;
	font-weight: 600;
	font-size: 1.1rem;
}

.product-details .product-price {
	color: hsl(var(--heading-color));
}

.product-details .product-price del {
	color: hsl(var(--heading-color) / 0.6);
}

.product-add-to-cart {
	display: flex;
	gap: 0.8rem;
}

.product-details .product-share a {
	background: hsl(var(--white));
	padding: 5px 12px;
	color: hsl(var(--white));
	border-radius: 3px;
	margin: 0 2px;
	border: 1px solid #ebebeb;
	color: #424242;
	transition: 0.3s;
}

.product-details .product-share a:hover {
	color: hsl(var(--base));
}

.product-details .add-to-wishlist-btn {
	border: 1px solid hsl(var(--border));
	padding: 8px 14px;
	font-size: 0.875rem;
	border-radius: 3px;
}

.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(--base));
}

.product-details-video {
	width: 100%;
	max-width: 340px;
	aspect-ratio: 9 / 16;
	height: auto;
	border-radius: 12px;
	border: none;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
	display: block;
}

@media (max-width: 575px) {
	.product-details-video {
		max-width: 100%;
	}
}

.review--image {
	display: flex;
	gap: 5px;
	margin-top: 5px;
}

.review--image a {
	display: inline-block;
	width: 90px;
	height: 90px;
	border: 1px solid #e7e7e7;
	border-radius: 3px;
	padding: 5px;
}

.review--image img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
}

.review-reply-items .review-item .thumb {
	height: 45px !important;
	width: 45px !important;
	padding: 8px;
}

.review-reply-items .posted-by {
	font-size: 16px;
}

.review-reply-items .posted-by .posted-on {
	font-size: 13px;
}

.review-reply-items .review--image a {
	height: 80px;
	width: 80px;
}

.review-reply-items .review-item__reply-msg {
	font-size: 15px;
}

/* ===== Buy Now Button ===== */
.product-add-to-cart .buyNow,
.product-add-to-cart .buyNowLink {
	background: #01102B;
	color: #fff !important;
	border: none;
	line-height: 24px;
	letter-spacing: 0.03em;
	transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
	box-shadow: 0 2px 8px rgba(1, 16, 43, 0.35);
}

.product-add-to-cart .buyNow:hover,
.product-add-to-cart .buyNow:active,
.product-add-to-cart .buyNowLink:hover,
.product-add-to-cart .buyNowLink:active {
	background: #02204f !important;
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(1, 16, 43, 0.45);
	transform: translateY(-1px);
}

.product-add-to-cart .buyNow:disabled,
.product-add-to-cart .buyNow:disabled:hover,
.product-add-to-cart .buyNowLink.disabled,
.product-add-to-cart .buyNowLink.disabled:hover {
	cursor: not-allowed;
	background: rgba(1, 16, 43, 0.3) !important;
	box-shadow: none;
	transform: none;
}

/* ===== Product Section Scroll Navigation ===== */
.product-details-nav-sticky {
	position: sticky;
	top: 126px;
	z-index: 100;
	background: hsl(var(--white));
	padding: 10px 0;
	margin-bottom: 30px;
	border-bottom: 1px solid hsl(var(--border) / 0.4);
	transition: top 0.3s ease;
}

@media (max-width: 991px) {
	.product-details-nav-sticky {
		top: 60px;
	}
}

.products-description .nav-tabs {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	/* Firefox */
	border: 1px solid hsl(var(--border));
	padding: 8px 12px;
	gap: 10px;
	border-radius: 8px;
	background: hsl(var(--white));
	margin-bottom: 0;
}

.products-description .nav-tabs::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari, Edge */
}

.products-description .nav-tabs li {
	flex: 0 0 auto;
	margin: 0;
}

.products-description .nav-tabs li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	font-weight: 500;
	font-size: 0.95rem;
	color: hsl(var(--heading-color) / 0.8);
	background: #f8f9fa;
	border: 1px solid transparent;
	border-radius: 6px;
	transition: all 0.25s ease;
	text-decoration: none;
	cursor: pointer;
}

.products-description .nav-tabs li a:hover {
	color: hsl(var(--base));
	background: #f0f4ff;
}

.products-description .nav-tabs li a.active {
	background: hsl(var(--base));
	color: hsl(var(--white)) !important;
	border-color: hsl(var(--base));
	font-weight: 600;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.product-sections-wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.product-details-section {
	scroll-margin-top: 145px;
	padding-top: 10px;
	padding-bottom: 30px;
	border-bottom: 1px solid hsl(var(--border) / 0.6);
}

.product-details-section:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.product-section-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: hsl(var(--heading-color));
	margin-bottom: 24px;
	padding-bottom: 10px;
	position: relative;
	border-bottom: 2px solid hsl(var(--border) / 0.4);
}

.product-section-title::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: hsl(var(--base));
	border-radius: 2px;
}

@media (max-width: 575px) {
	.product-details-section {
		scroll-margin-top: 125px;
		padding-bottom: 20px;
	}

	.product-section-title {
		font-size: 1.15rem;
		margin-bottom: 16px;
	}

	.products-description .nav-tabs li a {
		padding: 6px 12px;
		font-size: 0.875rem;
	}
}

/* ===== Product Review Form Styling ===== */
.product-review-form-wrapper {
	background: hsl(var(--white));
	border: 1px solid hsl(var(--border));
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 30px;
}

.rating {
	border: none;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.rating>label {
	color: hsl(var(--border));
	cursor: pointer;
}

.rating>label:before {
	margin-right: 6px;
	font-size: 1.8rem;
	font-family: 'Line Awesome Free';
	content: "\f005";
	display: inline-block;
}

.rating>input {
	display: none;
}

.rating>input:checked~label,
.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
	color: #ffa53e;
}

.rating>input:checked~label::before,
.rating:not(:checked)>label:hover::before,
.rating:not(:checked)>label:hover~label::before {
	font-weight: 900;
}

.rating>input:checked+label:hover,
.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,
.rating>input:checked~label:hover~label {
	color: #ffc363;
}

.review-text-wrapper {
	padding: 12px;
	border: 1px solid hsl(var(--border));
	border-radius: 6px;
	background: hsl(var(--white));
}

.review-text {
	resize: vertical;
	line-height: 1.5 !important;
	font-size: 0.875rem;
	padding: 0 !important;
	border: none !important;
	box-shadow: none !important;
	width: 100%;
}

/* ===== Product FAQ / Extra Descriptions Card ===== */
.product-faq-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.product-faq-card-header {
	padding: 24px 28px 20px 28px;
	border-bottom: 1px solid #f1f5f9;
}

.product-faq-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 6px;
	letter-spacing: -0.01em;
}

.product-faq-subtitle {
	font-size: 0.9rem;
	color: #64748b;
	margin-bottom: 0;
	font-weight: 400;
}

.product-faq-card-body {
	padding: 0;
}

.product-faq-item {
	padding: 24px 28px;
	border-bottom: 1px solid #f1f5f9;
}

.product-faq-item:last-child {
	border-bottom: none;
}

.product-faq-question {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 16px;
}

.product-faq-answer {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.faq-badge {
	width: 32px;
	height: 32px;
	min-width: 32px;
	min-height: 32px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.95rem;
	flex-shrink: 0;
}

.badge-q {
	background-color: #eff6ff;
	color: #2563eb;
}

.badge-a {
	background-color: #d1fae5;
	color: #059669;
}

.faq-question-text {
	font-size: 1.05rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.45;
	margin: 0;
	padding-top: 3px;
}

.faq-answer-text {
	font-size: 0.95rem;
	font-weight: 400;
	color: #475569;
	line-height: 1.6;
	padding-top: 3px;
	flex: 1;
}

.faq-answer-text p {
	margin-bottom: 0;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.faq-answer-text p+p {
	margin-top: 8px;
}

.faq-answer-text strong,
.faq-answer-text b {
	font-weight: 600;
	color: #1e293b;
}

@media (max-width: 575px) {
	.product-faq-card-header {
		padding: 18px 20px 16px 20px;
	}

	.product-faq-title {
		font-size: 1.2rem;
	}

	.product-faq-subtitle {
		font-size: 0.85rem;
	}

	.product-faq-item {
		padding: 18px 20px;
	}

	.product-faq-question {
		gap: 10px;
		margin-bottom: 12px;
	}

	.product-faq-answer {
		gap: 10px;
	}

	.faq-badge {
		width: 28px;
		height: 28px;
		min-width: 28px;
		min-height: 28px;
		font-size: 0.875rem;
		border-radius: 5px;
	}

	.faq-question-text {
		font-size: 0.95rem;
		padding-top: 2px;
	}

	.faq-answer-text {
		font-size: 0.875rem;
		padding-top: 2px;
	}

	.product-details-nav-sticky {
		top: 118px;
	}
}