.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 {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	line-height: 1.1;
	font-weight: 700;
	font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.1rem);
	color: hsl(var(--heading-color));
}

.product-details .product-price del {
	font-size: 1rem;
	font-weight: 400;
	color: hsl(var(--body-color) / 0.55);
}

/* Savings indicator */
.product-save {
	display: inline-flex;
	align-items: center;
	background: hsl(140 60% 96%);
	color: hsl(140 65% 30%);
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1;
	padding: 6px 10px;
	border-radius: 6px;
}

/* Refined summary lead text */
.product-details .product-summary {
	font-size: 1rem;
	line-height: 1.7;
	color: hsl(var(--body-color));
}

/* Responsive product title — larger on desktop, scales down on small screens */
.product-details .product-title {
	font-size: clamp(1.5rem, 1.05rem + 1.7vw, 2.15rem);
	line-height: 1.22;
	font-weight: 700;
	margin-bottom: 0;
}

/* Buy area: quantity on its own line, action buttons on the next line */
.product-buy-area {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.product-qty-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.product-qty-label {
	font-weight: 600;
	font-size: 0.9rem;
	color: hsl(var(--heading-color));
}

.product-action-buttons {
	display: flex;
	gap: 12px;
}

.product-action-buttons .btn {
	flex: 1 1 0;
	min-width: 0;
	min-height: 50px;
	padding: 12px 18px;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	white-space: nowrap;
}

.product-action-buttons .btn i {
	font-size: 1.05rem;
}

@media (max-width: 359px) {
	.product-action-buttons {
		flex-direction: column;
	}
}

/* Rental fields */
.product-rate-unit {
	font-size: 1rem;
	font-weight: 400;
	color: hsl(var(--body-color) / 0.6);
}

.rental-fields {
	border: 1px solid hsl(var(--border));
	border-radius: 10px;
	padding: 16px;
	background: hsl(var(--base) / 0.04);
}

.rental-dates {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.rental-date-field {
	flex: 1 1 160px;
}

.rental-date-field label {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 4px;
	color: hsl(var(--heading-color));
}

.rental-date-field input {
	height: 44px;
}

.rental-summary {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px dashed hsl(var(--border));
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.rental-summary-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	color: hsl(var(--body-color));
}

.rental-summary-total {
	font-weight: 700;
	font-size: 1rem;
	color: hsl(var(--heading-color));
	border-top: 1px solid hsl(var(--border));
	padding-top: 8px;
	margin-top: 2px;
}

/* Trust / feature strip */
.product-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin: 0;
	padding: 16px 0 0;
	list-style: none;
	border-top: 1px solid hsl(var(--border));
}

.product-trust li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.85rem;
	font-weight: 500;
	color: hsl(var(--body-color));
}

.product-trust li i {
	font-size: 1.1rem;
	color: hsl(var(--base));
}

.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-wishlist {
	width: 100%;
}

.product-details .add-to-wishlist-btn {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid hsl(var(--border));
	padding: 12px 18px;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 8px;
	transition: 0.3s;
}

.product-details .add-to-wishlist-btn:hover {
	border-color: hsl(var(--base));
	color: hsl(var(--base));
}

.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 {
	max-width: 600px;
	height: 400px;
	width: 100%;
	border-radius: 8px;
}

@media (max-width: 767px) {
	.product-details-video {
		height: 320px;
	}
}

@media (max-width: 425px) {
	.product-details-video {
		height: 200px;
	}
}
.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;
}

/* ===== Product detail — refreshed UI ===== */

/* Breadcrumb */
.product-breadcrumb .breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	padding: 0;
	font-size: 0.875rem;
}

.product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
	content: "\f105";
	font-family: "Line Awesome Free";
	font-weight: 900;
	color: hsl(var(--body-color) / 0.5);
	margin-right: 6px;
}

.product-breadcrumb .breadcrumb-item a {
	color: hsl(var(--body-color));
	transition: 0.3s;
}

.product-breadcrumb .breadcrumb-item a:hover {
	color: hsl(var(--base));
}

.product-breadcrumb .breadcrumb-item.active span {
	color: hsl(var(--heading-color));
	font-weight: 500;
}

/* Discount badge in the price row */
.product-discount-badge {
	display: inline-flex;
	align-items: center;
	background: hsl(var(--base) / 0.18);
	color: hsl(var(--heading-color));
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1;
	padding: 5px 9px;
	border-radius: 4px;
}

/* Category / Brand / SKU info box */
.product-meta-box {
	border: 1px solid hsl(var(--border));
	border-radius: 10px;
	overflow: hidden;
}

.product-meta-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 11px 16px;
	font-size: 0.9rem;
}

.product-meta-row:not(:last-child) {
	border-bottom: 1px solid hsl(var(--border));
}

.product-meta-box {
	background: hsl(var(--base) / 0.04);
}

.product-meta-label {
	flex: 0 0 96px;
	font-weight: 600;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: hsl(var(--body-color) / 0.7);
	padding-top: 1px;
}

.product-meta-value {
	font-weight: 500;
	color: hsl(var(--heading-color));
}

.product-meta-value {
	color: hsl(var(--body-color));
}

.product-meta-value a {
	color: hsl(var(--body-color));
	transition: 0.3s;
}

.product-meta-value a:hover {
	color: hsl(var(--base));
}

/* Description / Specification tabs */
.products-description .nav-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	border-bottom: 1px solid hsl(var(--border));
	margin-bottom: 24px;
	padding: 0;
	list-style: none;
}

.products-description .nav-tabs li a {
	display: inline-block;
	padding: 10px 18px;
	font-weight: 600;
	font-size: 0.95rem;
	color: hsl(var(--body-color));
	border: 0;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	cursor: pointer;
	transition: 0.3s;
}

.products-description .nav-tabs li a:hover {
	color: hsl(var(--heading-color));
}

.products-description .nav-tabs li a.active {
	color: hsl(var(--heading-color));
	border-bottom-color: hsl(var(--base));
}

/* Similar products section */
.similar-products .section-heading {
	margin-bottom: 2rem;
}

.similar-products .section-heading__title {
	position: relative;
	display: inline-block;
	padding-bottom: 12px;
	font-weight: 600;
}

.similar-products .section-heading__title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	border-radius: 3px;
	background: hsl(var(--base));
}

@media (max-width: 575px) {
	.product-meta-label {
		flex-basis: 84px;
	}
}