/* =========================================================
   Single product page
   ========================================================= */

/* ── Hero breadcrumb ── */

.lg-product__hero {
	background: var(--lg-navy);
	padding: 20px 0 22px;
	margin-bottom: 0;
}

.lg-product__hero .woocommerce-breadcrumb {
	font-size: 13px;
	color: rgba(255, 255, 255, .65);
	margin: 0;
}

.lg-product__hero .woocommerce-breadcrumb a {
	color: rgba(255, 255, 255, .65);
}

.lg-product__hero .woocommerce-breadcrumb a:hover {
	color: #fff;
}

.lg-product__hero .woocommerce-breadcrumb .breadcrumb-separator,
.lg-product__hero .woocommerce-breadcrumb span {
	color: rgba(255, 255, 255, .4);
}

/* ── Outer wrapper ── */

.lg-product {
	padding: 32px 0 60px;
}

/* ── Two-column layout ── */

.lg-product__layout {
	display: flex;
	gap: 48px;
	align-items: flex-start;
	margin-bottom: 32px;
	background: #fff;
	border: 1px solid var(--lg-border);
	border-radius: 8px;
	padding: 32px;
}

/* ── Gallery ── */

.lg-product__gallery {
	flex: 1;
	min-width: 0;
}

.lg-product__main-img-wrap {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 380px;
	padding: 24px;
	margin-bottom: 12px;
	touch-action: pan-y;
	user-select: none;
	cursor: pointer;
}

.lg-product__main-img-wrap.is-dragging {
	cursor: grabbing;
}

.lg-product__main-img {
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: contain;
	display: block;
	cursor: pointer;
	-webkit-user-drag: none;
}

/* ── Lightbox ── */

.lg-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease;
}

.lg-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.lg-lightbox__figure {
	position: relative;
	max-width: 90vw;
	max-height: 72vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lg-lightbox__img {
	max-width: 90vw;
	max-height: 72vh;
	object-fit: contain;
	display: block;
	user-select: none;
}

.lg-lightbox__close,
.lg-lightbox__prev,
.lg-lightbox__next {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--lg-border);
	border-radius: 50%;
	color: var(--lg-navy);
	cursor: pointer;
	transition: background .15s, border-color .15s;
	box-shadow: 0 2px 10px rgba(11, 22, 40, .12);
}

.lg-lightbox__close:hover,
.lg-lightbox__prev:hover,
.lg-lightbox__next:hover {
	background: var(--lg-bg, #f4f5f7);
	border-color: var(--lg-orange);
}

.lg-lightbox__close {
	top: -18px;
	right: -18px;
	width: 40px;
	height: 40px;
	font-size: 20px;
}

.lg-lightbox__prev,
.lg-lightbox__next {
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	font-size: 22px;
}

.lg-lightbox__prev {
	left: -64px;
}

.lg-lightbox__next {
	right: -64px;
}

.lg-lightbox__counter {
	color: var(--lg-gray);
	font-size: 13px;
	margin-top: 16px;
}

.lg-lightbox__thumbs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 90vw;
	margin-top: 16px;
}

.lg-lightbox__thumb {
	width: 64px;
	height: 64px;
	padding: 4px;
	background: #fff;
	border: 2px solid var(--lg-border);
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color .15s;
}

.lg-lightbox__thumb:hover {
	border-color: var(--lg-orange);
}

.lg-lightbox__thumb.is-active {
	border-color: var(--lg-navy);
}

.lg-lightbox__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

@media (max-width: 782px) {
	.lg-lightbox__close {
		top: 12px;
		right: 12px;
	}

	.lg-lightbox__prev {
		left: 8px;
	}

	.lg-lightbox__next {
		right: 8px;
	}

	.lg-lightbox__thumbs {
		display: none;
	}
}

.lg-product__thumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.lg-product__thumb {
	width: 72px;
	height: 72px;
	padding: 4px;
	background: #fff;
	border: 2px solid var(--lg-border);
	border-radius: 6px;
	cursor: pointer;
	transition: border-color .15s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lg-product__thumb:hover {
	border-color: var(--lg-orange);
}

.lg-product__thumb.is-active {
	border-color: var(--lg-navy);
}

.lg-product__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* ── Info panel ── */

.lg-product__info {
	flex: 1;
	min-width: 0;
}

.lg-product__eyebrow {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--lg-gray);
	text-transform: uppercase;
	letter-spacing: .03em;
}

.lg-product__eyebrow-cat {
	color: inherit;
	text-decoration: none;
}

a.lg-product__eyebrow-cat:hover {
	color: var(--lg-navy);
	text-decoration: underline;
}

.lg-product__eyebrow-sep {
	color: var(--lg-border);
}

.lg-product__name {
	font-weight: 700;
	color: var(--lg-navy);
	margin: 0 0 10px;
	line-height: 1.3;
}

.lg-product__rating {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	text-decoration: none;
}

.lg-product__rating-stars {
	overflow: hidden;
	position: relative;
	width: 5.4em;
	height: 1.1em;
	line-height: 1.1em;
	font-size: 14px;
	letter-spacing: .15em;
}

.lg-product__rating-stars::before {
	content: '★★★★★';
	position: absolute;
	top: 0;
	left: 0;
	color: var(--lg-border);
}

.lg-product__rating-stars span {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	padding-top: 1.5em;
}

.lg-product__rating-stars span::before {
	content: '★★★★★';
	position: absolute;
	top: 0;
	left: 0;
	color: var(--lg-orange);
}

.lg-product__rating-count {
	font-size: 13px;
	color: var(--lg-gray);
	transition: color .12s;
}

.lg-product__rating:hover .lg-product__rating-count {
	color: var(--lg-orange);
}

/* Meta row: stock / brand / sku */

.lg-product__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.lg-product__stock {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--lg-navy);
}

.lg-product__stock-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.lg-product__stock--instock .lg-product__stock-dot {
	background: #1e7e34;
}

.lg-product__stock--onbackorder .lg-product__stock-dot {
	background: var(--lg-orange);
}

.lg-product__stock--outofstock .lg-product__stock-dot {
	background: #c0392b;
}

.lg-product__stock-sep {
	color: var(--lg-border);
}

.lg-product__stock-sku {
	font-size: 12px;
	color: var(--lg-gray);
}

/* Top 4 specificații */

.lg-product__top-specs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin: 20px 0;
	padding: 16px;
	background: var(--lg-bg);
	border-radius: 12px;
}

.lg-product__top-spec {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	max-width: 100px;
	min-width: 0;
	margin: 0 auto;
}

.lg-product__top-spec-value {
	font-family: var(--lg-font-heading);
	font-size: 16px;
	font-weight: 700;
	color: var(--lg-navy);
	line-height: 1.25;
	text-align: center;
}

.lg-product__top-spec-label {
	font-size: 11px;
	font-weight: 400;
	color: var(--lg-gray);
	line-height: 1.3;
	text-align: center;
}

/* Price */

.lg-product__price-block {
	margin-bottom: 24px;
	padding: 16px 0;
	border-top: 1px solid var(--lg-border);
	border-bottom: 1px solid var(--lg-border);
}

.lg-product__price {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 4px;
}

.lg-product__price-new,
.lg-product__price ins {
	font-family: var(--lg-font-price);
	font-size: 28px;
	font-weight: 700;
	color: var(--lg-navy);
	text-decoration: none;
}

.lg-product__price del {
	font-family: var(--lg-font-price);
	font-size: 18px;
	color: var(--lg-gray);
	text-decoration: line-through;
}

.lg-product__price-old-wrap {
	display: flex;
	align-items: center;
	gap: 5px;
	position: relative;
	margin-bottom: 4px;
}

.lg-product__price-old-label {
	font-size: 10px;
	font-weight: 700;
	color: var(--lg-gray);
}

.lg-product__discount-tag {
	font-family: var(--lg-font-price);
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	background: var(--lg-orange);
	padding: 2px 7px;
	border-radius: 999px;
	line-height: 1.4;
	margin-right: auto;
}

.lg-product__price-old {
	font-family: var(--lg-font-price);
	font-size: 13px;
	color: var(--lg-gray);
}

.lg-product__price-info {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--lg-border);
	color: var(--lg-gray);
	font-size: 10px;
	font-weight: 700;
	font-style: italic;
	font-family: Georgia, serif;
	border: none;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	position: relative;
}

.lg-product__price-info:hover,
.lg-product__price-info:focus {
	background: var(--lg-navy);
	color: #fff;
	outline: none;
}

.lg-product__price-tooltip {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	width: 210px;
	background: var(--lg-navy);
	color: #fff;
	font-family: var(--lg-font-base);
	font-size: 12px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.4;
	text-align: center;
	white-space: normal;
	padding: 8px 10px;
	border-radius: 6px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .15s;
	pointer-events: none;
	z-index: 5;
}

.lg-product__price-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: var(--lg-navy);
}

.lg-product__price-info:hover .lg-product__price-tooltip,
.lg-product__price-info:focus .lg-product__price-tooltip {
	opacity: 1;
	visibility: visible;
}

.lg-product__price-excl {
	font-family: var(--lg-font-price);
	font-size: 13px;
	color: var(--lg-gray);
}

/* ── WooCommerce add to cart ── */

.lg-product__cart-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.woocommerce-variation-add-to-cart,
form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	flex: 1 1 auto;
	margin: 0;
}

/* Stepper +/- quantity */
.lg-qty {
	display: flex;
	align-items: center;
	border: 1px solid var(--lg-border);
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.lg-qty__btn {
	width: 40px;
	height: 46px;
	border: none;
	background: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lg-navy);
	transition: background .12s;
	flex-shrink: 0;
}

.lg-qty__btn:hover {
	background: var(--lg-bg);
}

.lg-qty input.qty {
	width: 48px;
	height: 46px;
	border: none;
	border-left: 1px solid var(--lg-border);
	border-right: 1px solid var(--lg-border);
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: var(--lg-navy);
	font-family: inherit;
	background: transparent;
	-moz-appearance: textfield;
}

.lg-qty input.qty::-webkit-outer-spin-button,
.lg-qty input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

form.cart .single_add_to_cart_button {
	position: relative;
	flex: 1;
	min-width: 160px;
	height: 46px;
	background: var(--lg-orange);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: background .15s;
	padding: 0 24px;
	white-space: nowrap;
}

form.cart .single_add_to_cart_button:hover {
	background: var(--lg-orange-2);
}

/* Animație de puncte în timpul adăugării — textul rămâne în DOM (doar
   invizibil), ca butonul să nu-și schimbe lățimea. */
form.cart .single_add_to_cart_button.loading {
	color: transparent;
	pointer-events: none;
}

form.cart .single_add_to_cart_button.loading::before,
form.cart .single_add_to_cart_button.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	animation: lg-btn-dots 1.1s infinite ease-in-out both;
}

form.cart .single_add_to_cart_button.loading::before {
	margin-left: -17px;
	animation-delay: -.32s;
}

form.cart .single_add_to_cart_button.loading::after {
	margin-left: -3px;
	box-shadow: 14px 0 0 0 #fff;
	animation-delay: -.16s;
}

@keyframes lg-btn-dots {
	0%, 80%, 100% { transform: translateY(-50%) scale(.6); opacity: .5; }
	40% { transform: translateY(-50%) scale(1); opacity: 1; }
}

/* ── Butoane secundare: wishlist + compare ── */

.lg-product__secondary-actions {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.lg-product__wishlist-btn,
.lg-product__compare-btn {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	background: #fff;
	border: 1px solid var(--lg-border);
	border-radius: 8px;
	color: var(--lg-navy);
	cursor: pointer;
	transition: border-color .15s, color .15s;
	padding: 0;
}

.lg-product__wishlist-btn .lg-icon,
.lg-product__compare-btn .lg-icon {
	font-size: 19px;
	flex-shrink: 0;
}

.lg-product__wishlist-btn:hover {
	border-color: #e74c3c;
	color: #e74c3c;
}

.lg-product__wishlist-btn.is-active {
	border-color: #e74c3c;
	color: #e74c3c;
	background: #fef5f5;
}

.lg-product__compare-btn:hover {
	border-color: var(--lg-navy);
	color: var(--lg-navy);
}

.lg-product__compare-btn.is-active {
	border-color: var(--lg-navy);
	background: #f0f3f8;
}

/* ── Trust badges ── */

.lg-product__badges {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.lg-product__badge {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--lg-border);
	border-radius: 8px;
	padding: 12px 14px;
}

.lg-product__badge-icon {
	font-size: 24px;
	color: var(--lg-orange);
	flex-shrink: 0;
	margin-top: 2px;
}

.lg-product__badge-icon svg {
	fill: var(--lg-orange);
	display: block;
}

.lg-product__badge-text strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--lg-navy);
}

.lg-product__badge-text small {
	display: block;
	font-size: 11px;
	color: var(--lg-gray);
	margin-top: 2px;
}

/* ── Secțiuni produs (Descriere / Specificații) ── */

.lg-product__section {
	background: #fff;
	border: 1px solid var(--lg-border);
	border-radius: 8px;
	margin-bottom: 32px;
}

.lg-product__section-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--lg-navy);
	margin: 0;
	padding: 20px 32px;
	border-bottom: 2px solid var(--lg-border);
}

.lg-product__section-body {
	padding: 32px;
}

/* ── Recenzii (WooCommerce comments/reviews native) ── */

.lg-product__reviews .woocommerce-Reviews-title {
	font-family: var(--lg-font-heading);
	font-size: 16px;
	font-weight: 700;
	color: var(--lg-navy);
	margin: 0 0 20px;
}

.lg-product__reviews .commentlist {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.lg-product__reviews .comment_container {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--lg-border);
}

.lg-product__reviews li:last-child .comment_container {
	border-bottom: none;
}

.lg-product__reviews ul.children {
	list-style: none;
	margin: 0 0 0 30px;
	padding: 0 0 0 16px;
	border-left: 2px solid var(--lg-border);
}

.lg-product__reviews ul.children .comment_container {
	border-bottom: none;
	padding-bottom: 8px;
}

.lg-product__reviews .lg-review-reply {
	margin-top: 8px;
}

.lg-product__reviews .lg-review-reply a {
	font-size: 12px;
	font-weight: 600;
	color: var(--lg-gray);
	text-decoration: none;
}

.lg-product__reviews .lg-review-reply a:hover {
	color: var(--lg-orange);
	text-decoration: underline;
}

.lg-product__reviews .comment_container img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
}

.lg-product__reviews .comment-text {
	flex: 1;
	min-width: 0;
}

.lg-product__reviews .star-rating {
	overflow: hidden;
	position: relative;
	width: 5.4em;
	height: 1.1em;
	line-height: 1.1em;
	font-size: 14px;
	letter-spacing: .15em;
	margin-bottom: 6px;
}

.lg-product__reviews .star-rating::before {
	content: '★★★★★';
	position: absolute;
	top: 0;
	left: 0;
	color: var(--lg-border);
}

.lg-product__reviews .star-rating span {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	padding-top: 1.5em; /* împinge textul real ("Evaluat la X din 5") sub linia vizibilă */
}

.lg-product__reviews .star-rating span::before {
	content: '★★★★★';
	position: absolute;
	top: 0;
	left: 0;
	color: var(--lg-orange);
}

/* Widget interactiv de ales rating din formular (injectat de WooCommerce
   core, assets/js/frontend/single-product.js, peste <select id="rating">) */
.lg-product__reviews p.stars {
	margin: 4px 0 16px;
	padding: 0;
	line-height: 1;
}

.lg-product__reviews p.stars a {
	position: relative;
	display: inline-block;
	width: 1.4em;
	height: 1.4em;
	overflow: hidden;
	text-indent: -999em;
	text-decoration: none;
}

.lg-product__reviews p.stars a::before {
	content: '★';
	position: absolute;
	top: 0;
	left: 0;
	text-indent: 0;
	font-size: 22px;
	line-height: 1;
	color: var(--lg-border);
}

.lg-product__reviews p.stars:hover a::before {
	color: var(--lg-orange);
}

.lg-product__reviews p.stars a:hover ~ a::before {
	color: var(--lg-border);
}

.lg-product__reviews p.stars.selected a::before {
	color: var(--lg-orange);
}

.lg-product__reviews p.stars.selected a.active ~ a::before {
	color: var(--lg-border);
}

.lg-product__reviews .meta {
	font-size: 13px;
	color: var(--lg-gray);
	margin: 0 0 4px;
}

.lg-product__reviews .woocommerce-review__author {
	color: var(--lg-navy);
	font-weight: 600;
}

.lg-product__reviews .description p {
	font-size: 14px;
	color: var(--lg-navy);
	line-height: 1.6;
	margin: 0;
}

.lg-product__reviews .woocommerce-noreviews {
	color: var(--lg-gray);
	font-size: 14px;
	margin: 0 0 24px;
}

.lg-product__reviews #review_form_wrapper {
	border-top: 1px solid var(--lg-border);
	padding-top: 24px;
}

.lg-product__reviews #reply-title {
	display: block;
	font-family: var(--lg-font-heading);
	font-size: 15px;
	font-weight: 700;
	color: var(--lg-navy);
	margin: 0 0 16px;
}

.lg-product__reviews .comment-form-rating select,
.lg-product__reviews .comment-form-author input,
.lg-product__reviews .comment-form-email input,
.lg-product__reviews .comment-form-comment textarea {
	display: block;
	width: 100%;
	max-width: 420px;
	border: 1px solid var(--lg-border);
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 14px;
	font-family: inherit;
	color: var(--lg-navy);
	margin-top: 4px;
}

.lg-product__reviews .comment-form-comment textarea {
	max-width: 100%;
	resize: vertical;
}

.lg-product__reviews .comment-form-rating label,
.lg-product__reviews .comment-form-author label,
.lg-product__reviews .comment-form-email label,
.lg-product__reviews .comment-form-comment label {
	font-size: 13px;
	font-weight: 600;
	color: var(--lg-navy);
}

.lg-product__reviews .comment-form-rating,
.lg-product__reviews .comment-form-author,
.lg-product__reviews .comment-form-email,
.lg-product__reviews .comment-form-comment {
	margin-bottom: 16px;
}

.lg-product__reviews .required {
	color: var(--lg-orange);
}

.lg-product__reviews .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 13px;
	color: var(--lg-navy);
}

.lg-product__reviews .comment-form-cookies-consent input {
	margin-top: 3px;
	flex-shrink: 0;
}

.lg-product__reviews .comment-form-cookies-consent a {
	color: var(--lg-orange);
	text-decoration: underline;
}

.lg-product__reviews #submit {
	background: var(--lg-orange);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 28px;
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: background .15s;
}

.lg-product__reviews #submit:hover {
	background: var(--lg-orange-2);
}

.lg-product__reviews .must-log-in,
.lg-product__reviews .woocommerce-verification-required {
	color: var(--lg-gray);
	font-size: 14px;
}

.lg-product__reviews .must-log-in a {
	color: var(--lg-orange);
}

/* ── Description HTML (from Husqvarna import) ── */

.lg-product__desc > p {
	font-size: 15px;
	color: var(--lg-navy);
	line-height: 1.7;
	margin: 0 0 16px;
}

.-b-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 0 0 32px;
}

.-b-container {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s ease-in-out;
}

.-b-grid > .-b-container:nth-child(n + 5) {
	display: none;
}

.-b-grid.is-expanded > .-b-container:nth-child(n + 5) {
	display: flex;
}

.-b-image {
	width: 50%;
	border-radius: 2rem;
	margin: auto;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
}

.-b-description {
	padding: 14px 16px 16px;
}

.-b-description h3 {
	font-weight: 700;
	color: var(--lg-navy);
	margin: 0 0 6px;
	line-height: 1.3;
	text-align: center;
}

.-b-description p {
	font-size: 13px;
	color: var(--lg-gray);
	margin: 0;
	line-height: 1.5;
	text-align: center;
}

.lg-product__desc #read-more-btn.btn {
	display: inline-block;
	background: var(--lg-navy);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 24px;
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	margin-bottom: 24px;
	transition: background .15s;
}

.lg-product__desc #read-more-btn.btn:hover {
	background: var(--lg-orange);
}

.lg-product__desc #read-more-btn.btn.is-hidden {
	display: none;
}

/* ── Specifications table ── */

.lg-specs-table {
	width: 100%;
	border-collapse: collapse;
}

.lg-specs-table td {
	padding: 10px 12px;
	font-size: 14px;
	border-bottom: 1px solid var(--lg-border);
}

.lg-specs-table__group td {
	background: var(--lg-navy);
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: 8px 12px;
	border-bottom: none;
}

.lg-specs-table__label {
	color: var(--lg-gray);
	width: 45%;
}

.lg-specs-table__value {
	color: var(--lg-navy);
	font-weight: 500;
}

.lg-specs-table tr:last-child td {
	border-bottom: none;
}

.lg-specs-empty {
	color: var(--lg-gray);
	font-size: 14px;
	margin: 0;
}

/* ── Related products ── */

.lg-product__related {
	margin-top: 0;
}

.lg-product__related-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--lg-navy);
	margin: 0 0 24px;
}

.lg-product__related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.lg-product__related-card {
	background: #fff;
	border: 1px solid var(--lg-border);
	border-radius: 8px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	transition: border-color .15s, box-shadow .15s;
}

.lg-product__related-card:hover {
	border-color: var(--lg-orange);
	box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.lg-product__related-img-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 140px;
	margin-bottom: 12px;
}

.lg-product__related-img {
	max-width: 100%;
	max-height: 140px;
	object-fit: contain;
}

.lg-product__related-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--lg-navy);
	text-transform: uppercase;
	letter-spacing: .02em;
	margin-bottom: 8px;
	line-height: 1.3;
	flex: 1;
}

.lg-product__related-price {
	font-family: var(--lg-font-price);
	font-size: 14px;
	font-weight: 700;
	color: var(--lg-navy);
}

.lg-product__related-price del {
	font-family: var(--lg-font-price);
	color: var(--lg-gray);
	font-weight: 400;
	font-size: 12px;
}

.lg-product__related-price ins {
	color: var(--lg-orange);
	text-decoration: none;
}

/* ── Recently viewed products ── */

.lg-product__recent {
	margin-top: 48px;
}

.lg-product__recent-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--lg-navy);
	margin: 0 0 24px;
}

.lg-product__recent-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.lg-product__recent-card {
	background: #fff;
	border: 1px solid var(--lg-border);
	border-radius: 8px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	transition: border-color .15s, box-shadow .15s;
}

.lg-product__recent-card:hover {
	border-color: var(--lg-orange);
	box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.lg-product__recent-img-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 140px;
	margin-bottom: 12px;
}

.lg-product__recent-img {
	max-width: 100%;
	max-height: 140px;
	object-fit: contain;
}

.lg-product__recent-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--lg-navy);
	text-transform: uppercase;
	letter-spacing: .02em;
	margin-bottom: 8px;
	line-height: 1.3;
	flex: 1;
}

.lg-product__recent-price {
	font-family: var(--lg-font-price);
	font-size: 14px;
	font-weight: 700;
	color: var(--lg-navy);
}

.lg-product__recent-price del {
	font-family: var(--lg-font-price);
	color: var(--lg-gray);
	font-weight: 400;
	font-size: 12px;
}

.lg-product__recent-price ins {
	color: var(--lg-orange);
	text-decoration: none;
}

/* ── WooCommerce notices ── */

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
	background: #fff;
	border: 1px solid var(--lg-border);
	border-left: 4px solid var(--lg-orange);
	border-radius: 6px;
	padding: 14px 18px;
	margin-bottom: 24px;
	font-size: 14px;
	list-style: none;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
	.lg-product__related-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.lg-product__recent-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 860px) {
	.lg-product__layout {
		flex-direction: column;
		gap: 28px;
	}

	.lg-product__gallery {
		flex: none;
		max-width: 100%;
		width: 100%;
	}

	.lg-product__related-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lg-product__recent-grid {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (max-width: 992px) {
	.-b-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 1160px) {
	.-b-grid > :nth-child(4n + 3),
	.-b-grid > :nth-child(4n + 4) {
		display: flex;
		flex-direction: row-reverse;
	}
}

@media (max-width: 540px) {
	.lg-product__layout {
		padding: 16px;
	}

	.lg-product__section-body {
		padding: 20px 16px;
	}

	.lg-product__section-title {
		padding: 16px;
	}

	.lg-product__badges {
		grid-template-columns: 1fr;
	}

	.lg-product__top-specs {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 16px;
	}

	.lg-product__related-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lg-product__recent-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	form.cart .single_add_to_cart_button {
		min-width: 0;
		flex: 1 1 100%;
	}
}
