/**
 * HiGuppy Single Product Page — Professional WooCommerce styling
 *
 * Targets /product/{slug}/. Synced with higuppy-shop.css design tokens.
 *
 * @package HiGuppy
 * @since 1.3.0
 */

/* ==========================================================================
   PAGE SHELL + TOKENS
   ========================================================================== */

body.single-product {
	--hg-product-blue: #1747b8;
	--hg-product-blue-soft: #eaf6ff;
	--hg-product-cream: #fff6e6;
	--hg-product-orange: #ff6b35;
	--hg-product-orange-dark: #e55a2b;
	--hg-product-ink: #13203a;
	--hg-product-muted: #667085;
	--hg-product-border: #e6ecf7;
	--hg-product-radius: 18px;
	--hg-product-shadow: 0 10px 30px rgba(23, 71, 184, 0.08);
	background: #f7fbff;
}

body.single-product .template-content {
	background: transparent;
}

/* Hide empty duplicate XStore header shell */
body.single-product #header.site-header {
	display: none !important;
}

body.single-product .content-page.container {
	display: flex;
	flex-direction: column;
	max-width: 1160px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 12px;
	padding-bottom: 40px;
}

body.single-product .woocommerce-notices-wrapper {
	order: 0;
}

body.single-product .single-product-builder {
	order: 1;
}

body.single-product .higuppy-product-footer {
	order: 2;
}

/* ==========================================================================
   PAGE HERO / BREADCRUMB
   ========================================================================== */

body.single-product .page-heading {
	background: linear-gradient(135deg, var(--hg-product-cream) 0%, #fff 55%, var(--hg-product-blue-soft) 100%);
	border-bottom: 1px solid rgba(23, 71, 184, 0.08);
	padding: 28px 0 32px;
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}

body.single-product .page-heading::before {
	content: "";
	position: absolute;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(253, 187, 45, 0.35);
	left: -110px;
	bottom: -140px;
	pointer-events: none;
}

body.single-product .page-heading::after {
	content: "";
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(23, 71, 184, 0.06);
	right: -60px;
	top: -80px;
	pointer-events: none;
}

body.single-product .page-heading .container {
	position: relative;
	z-index: 1;
	max-width: 1160px;
}

body.single-product .page-heading .title {
	font-size: clamp(1.35rem, 4vw, 1.85rem) !important;
	font-weight: 900 !important;
	color: var(--hg-product-blue) !important;
	letter-spacing: -0.03em;
	margin: 8px 0 0 !important;
	line-height: 1.12 !important;
}

body.single-product .woocommerce-breadcrumb {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--hg-product-muted);
	margin: 0;
	overflow: visible !important;
	text-overflow: unset !important;
	white-space: normal !important;
}

body.single-product .woocommerce-breadcrumb a {
	color: var(--hg-product-orange);
	text-decoration: none;
}

body.single-product .woocommerce-breadcrumb a:hover {
	color: var(--hg-product-blue);
}

/* XStore uses icon-font arrows that fail on mobile — use text separators */
body.single-product .woocommerce-breadcrumb .delimeter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-width: 8px;
	color: var(--hg-product-blue);
	opacity: 0.5;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

body.single-product .woocommerce-breadcrumb .delimeter i {
	display: none !important;
}

body.single-product .woocommerce-breadcrumb .delimeter::before {
	content: "/";
}

body.single-product .woocommerce-breadcrumb .delimeter:last-of-type {
	display: none !important;
}

body.single-product .page-heading .back-history {
	display: none !important;
}

/* ==========================================================================
   XSTORE SINGLE PRODUCT BUILDER
   ========================================================================== */

body.single-product .single-product-builder > .row,
body.single-product .single-product-builder > .row > .col-md-12 > .row {
	display: flex;
	flex-wrap: wrap;
	margin-left: 0;
	margin-right: 0;
	gap: 0;
}

body.single-product .single-product-builder .et_product-block {
	width: 100% !important;
	max-width: 100% !important;
	flex: 0 0 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.single-product .single-product-builder .page-heading {
	background: transparent !important;
	border: 0 !important;
	padding: 0 0 14px !important;
	margin: 0 0 8px !important;
	overflow: visible !important;
}

body.single-product .single-product-builder .page-heading::before,
body.single-product .single-product-builder .page-heading::after {
	display: none !important;
}

body.single-product .single-product-builder .page-heading .container,
body.single-product .single-product-builder .page-heading .row,
body.single-product .single-product-builder .page-heading .col-md-12 {
	padding: 0 !important;
	margin: 0 !important;
	max-width: 100% !important;
	width: 100% !important;
}

body.single-product .single-product-builder .page-heading .a-center {
	text-align: left !important;
}

body.single-product .single-product-builder .woocommerce-breadcrumb {
	font-size: 12px;
	gap: 6px 8px;
	margin-bottom: 4px;
}

body.single-product .single-product-builder .images-wrapper,
body.single-product .single-product-builder .woocommerce-product-gallery {
	background: #fff;
	border: 1px solid var(--hg-product-border);
	border-radius: var(--hg-product-radius);
	box-shadow: var(--hg-product-shadow);
	padding: 14px !important;
	margin-bottom: 18px;
}

body.single-product .single-product-builder .main-images,
body.single-product .single-product-builder .swiper-entry .main-images {
	display: flex !important;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	background: linear-gradient(180deg, #f3f9ff 0%, #eef5ff 100%);
	border-radius: 12px;
	overflow: hidden;
}

body.single-product .single-product-builder .main-images img,
body.single-product .single-product-builder .images-wrapper img {
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	aspect-ratio: 1 / 1;
	object-fit: contain !important;
	display: block;
	margin: 0 auto;
}

body.single-product .single-product-builder .main-images img[src*="woocommerce-placeholder"],
body.single-product .single-product-builder .main-images img.woocommerce-placeholder,
body.single-product .single-product-builder .images-wrapper img.higuppy-product-fallback-image {
	object-fit: cover !important;
	background: linear-gradient(180deg, #f3f9ff 0%, #eef5ff 100%);
}

body.single-product .single-product-builder .product_title.entry-title {
	font-size: clamp(1.4rem, 4.5vw, 1.9rem) !important;
	font-weight: 900 !important;
	color: var(--hg-product-ink) !important;
	letter-spacing: -0.04em;
	line-height: 1.12 !important;
	margin: 0 0 10px !important;
}

body.single-product .single-product-builder .price {
	font-size: 1.5rem !important;
	font-weight: 900 !important;
	color: var(--hg-product-orange) !important;
	margin: 0 0 12px !important;
}

body.single-product .single-product-builder .woocommerce-product-details__short-description {
	font-size: 15px;
	line-height: 1.65;
	color: var(--hg-product-muted);
	margin-bottom: 14px !important;
}

body.single-product .single-product-builder form.cart {
	margin-bottom: 14px !important;
}

body.single-product .single-product-builder .single_add_to_cart_button,
body.single-product .single-product-builder .add_to_cart_button {
	width: 100% !important;
}

body.single-product .single-product-builder .higuppy-product-specs,
body.single-product .single-product-builder .higuppy-product-care-links,
body.single-product .single-product-builder .higuppy-product-payment-trust {
	margin-top: 4px;
}

/* Hide XStore sidebar widgets (demo categories/product list) on product pages */
body.single-product .single-product-builder .single-product-custom-widget-area,
body.single-product .single-product-builder .sidebar.single-product-custom-widget-area {
	display: none !important;
}

/* Hide wishlist noise on product summary */
body.single-product .single-product-builder .product_meta + .flex,
body.single-product .single-product-builder .single-product-socials {
	display: none !important;
}

/* Tabs inside builder */
body.single-product .single-product-builder .woocommerce-tabs {
	background: #fff;
	border: 1px solid var(--hg-product-border);
	border-radius: var(--hg-product-radius);
	box-shadow: var(--hg-product-shadow);
	overflow: hidden;
	margin-top: 8px;
}

body.single-product .single-product-builder .woocommerce-tabs .tabs {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--hg-product-border);
	background: linear-gradient(180deg, #fafcff 0%, #fff 100%);
	margin: 0;
	padding: 0 12px;
}

body.single-product .single-product-builder .woocommerce-tabs .tabs .et-woocommerce-tab a {
	display: block;
	padding: 14px 16px;
	font-size: 14px;
	font-weight: 800;
	color: var(--hg-product-muted);
	text-decoration: none;
	border-bottom: 3px solid transparent;
}

body.single-product .single-product-builder .woocommerce-tabs .tabs .et-woocommerce-tab.active a,
body.single-product .single-product-builder .woocommerce-tabs .tabs .et-woocommerce-tab a:hover {
	color: var(--hg-product-blue);
	border-bottom-color: var(--hg-product-orange);
}

body.single-product .single-product-builder .woocommerce-tabs .panel {
	padding: 20px 22px 24px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--hg-product-muted);
}

body.single-product .single-product-builder .woocommerce-tabs .panel h2 {
	font-size: 1.15rem !important;
	font-weight: 900 !important;
	color: var(--hg-product-ink) !important;
	margin: 0 0 12px !important;
}

body.single-product .single-product-builder .related-products-wrapper:empty,
body.single-product .single-product-builder .upsell-products-wrapper:empty {
	display: none !important;
}

/* ==========================================================================
   CUSTOM PRODUCT PAGE FOOTER
   ========================================================================== */

.higuppy-product-footer {
	display: block !important;
	position: relative;
	margin: 28px -16px 0;
	padding: 48px 20px 20px;
	background: #0e2f86;
	color: rgba(255, 255, 255, 0.82);
	overflow: hidden;
}

.higuppy-product-footer__wave {
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(253, 187, 45, 0.85);
	right: -120px;
	top: -160px;
	pointer-events: none;
}

.higuppy-product-footer__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 28px;
	max-width: 1128px;
	margin: 0 auto 28px;
}

.higuppy-product-footer__logo {
	font-size: 1.35rem;
	font-weight: 800;
	color: #fff;
	margin: 0 0 10px;
}

.higuppy-product-footer__brand p {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.6;
}

.higuppy-product-footer__contact {
	font-weight: 700;
	color: #fdbb2d;
}

.higuppy-product-footer h3 {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 800;
	color: #fff;
}

.higuppy-product-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.higuppy-product-footer a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}

.higuppy-product-footer a:hover {
	color: #fdbb2d;
}

.higuppy-product-footer__bottom {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	max-width: 1128px;
	margin: 0 auto;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 13px;
}

.higuppy-product-footer__payments {
	opacity: 0.75;
}

@media (min-width: 992px) {
	body.single-product .single-product-builder .et_product-block.etheme-woocommerce-product-gallery {
		flex: 0 0 48% !important;
		width: 48% !important;
		max-width: 48% !important;
		padding-right: 14px !important;
	}

	body.single-product .single-product-builder .et_product-block:has(.product_title) {
		flex: 0 0 52% !important;
		width: 52% !important;
		max-width: 52% !important;
	}

	body.single-product .single-product-builder .et_product-block:has(.woocommerce-tabs),
	body.single-product .single-product-builder .et_product-block:has(.related.products),
	body.single-product .single-product-builder .page-heading.et_product-block {
		flex: 0 0 100% !important;
		width: 100% !important;
		max-width: 100% !important;
		padding-right: 0 !important;
	}
}

/* ==========================================================================
   MAIN PRODUCT LAYOUT
   ========================================================================== */

body.single-product .content-page {
	max-width: 1160px;
}

body.single-product .product.type-product {
	margin-top: 0;
}

body.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	margin-bottom: 36px;
}

/* ==========================================================================
   GALLERY CARD
   ========================================================================== */

body.single-product .woocommerce-product-gallery {
	background: #fff;
	border: 1px solid var(--hg-product-border);
	border-radius: var(--hg-product-radius);
	box-shadow: var(--hg-product-shadow);
	overflow: hidden;
	padding: 16px !important;
}

body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image {
	border-radius: 12px;
	overflow: hidden;
}

body.single-product .woocommerce-product-gallery__image img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 12px;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 14px 0 0 !important;
	padding: 0;
	list-style: none;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs li {
	width: calc(25% - 8px) !important;
	margin: 0 !important;
	float: none !important;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
	border: 2px solid transparent;
	border-radius: 10px;
	opacity: 0.7;
	transition: border-color 0.2s ease, opacity 0.2s ease;
	cursor: pointer;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
body.single-product .woocommerce-product-gallery .flex-control-thumbs li img:hover {
	border-color: var(--hg-product-orange);
	opacity: 1;
}

body.single-product .woocommerce-product-gallery__trigger {
	display: none;
}

/* ==========================================================================
   SUMMARY CARD
   ========================================================================== */

body.single-product .summary.entry-summary {
	background: #fff;
	border: 1px solid var(--hg-product-border);
	border-radius: var(--hg-product-radius);
	box-shadow: var(--hg-product-shadow);
	padding: 28px 26px 24px;
}

body.single-product .product_title {
	font-size: clamp(1.5rem, 4vw, 2rem) !important;
	font-weight: 900 !important;
	color: var(--hg-product-ink) !important;
	letter-spacing: -0.04em;
	line-height: 1.1 !important;
	margin: 0 0 10px !important;
}

body.single-product .woocommerce-product-rating {
	margin: 0 0 14px !important;
}

body.single-product .star-rating {
	color: #fdbb2d;
}

/* Injected eyebrow + badge */
.higuppy-product-eyebrow {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--hg-product-orange);
}

.higuppy-product-category-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--hg-product-blue-soft);
	border: 1px solid rgba(23, 71, 184, 0.12);
	font-size: 12px;
	font-weight: 800;
	color: var(--hg-product-blue);
}

.higuppy-product-category-badge__icon {
	font-size: 14px;
	line-height: 1;
}

/* Quick specs */
.higuppy-product-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 14px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.higuppy-product-specs__item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--hg-product-ink);
	line-height: 1.4;
}

.higuppy-product-specs__icon {
	flex-shrink: 0;
	margin-top: 2px;
	color: #17a673;
}

body.single-product .woocommerce-product-details__short-description {
	font-size: 15px;
	line-height: 1.65;
	color: var(--hg-product-muted);
	margin-bottom: 16px !important;
}

body.single-product .woocommerce-product-details__short-description p {
	margin: 0 0 10px;
}

/* Price */
body.single-product .summary .price,
body.single-product .summary .price ins {
	font-size: 1.625rem !important;
	font-weight: 900 !important;
	color: var(--hg-product-orange) !important;
	text-decoration: none;
	letter-spacing: -0.02em;
	margin-bottom: 16px !important;
}

body.single-product .summary .price del {
	font-size: 1rem !important;
	font-weight: 600 !important;
	color: var(--hg-product-muted) !important;
	opacity: 0.75;
}

body.single-product .summary .price .woocommerce-Price-amount {
	color: inherit;
}

/* Add to cart */
body.single-product form.cart {
	margin: 0 0 18px !important;
}

body.single-product form.cart .quantity {
	margin: 0 0 12px !important;
}

body.single-product form.cart .quantity .qty {
	min-height: 48px;
	width: 72px;
	border: 1px solid var(--hg-product-border);
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	color: var(--hg-product-ink);
	text-align: center;
}

body.single-product .single_add_to_cart_button,
body.single-product button.single_add_to_cart_button.button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	min-height: 52px !important;
	padding: 0 24px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--hg-product-orange) !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	letter-spacing: 0.02em;
	box-shadow: 0 10px 24px rgba(255, 107, 53, 0.28);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body.single-product .single_add_to_cart_button:hover,
body.single-product button.single_add_to_cart_button.button:hover {
	background: var(--hg-product-orange-dark) !important;
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(255, 107, 53, 0.32);
}

/* Care links */
.higuppy-product-care-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
}

.higuppy-product-care-links__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--hg-product-blue-soft);
	border: 1px solid rgba(23, 71, 184, 0.1);
	font-size: 12px;
	font-weight: 700;
	color: var(--hg-product-blue);
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.higuppy-product-care-links__item:hover {
	background: #dceeff;
	border-color: rgba(23, 71, 184, 0.2);
	color: var(--hg-product-blue);
}

/* Payment trust */
.higuppy-product-payment-trust {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid var(--hg-product-border);
}

.higuppy-product-payment-trust__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--hg-product-muted);
}

.higuppy-product-payment-trust__icons {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
}

.higuppy-product-payment-trust__badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 6px;
	background: #fff;
	border: 1px solid var(--hg-product-border);
	font-size: 10px;
	font-weight: 800;
	color: var(--hg-product-ink);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

body.single-product .product_meta {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--hg-product-border);
	font-size: 13px;
	color: var(--hg-product-muted);
}

body.single-product .product_meta a {
	color: var(--hg-product-orange);
	font-weight: 600;
	text-decoration: none;
}

/* ==========================================================================
   TABS
   ========================================================================== */

body.single-product .woocommerce-tabs {
	grid-column: 1 / -1;
	background: #fff;
	border: 1px solid var(--hg-product-border);
	border-radius: var(--hg-product-radius);
	box-shadow: var(--hg-product-shadow);
	overflow: hidden;
	margin-top: 4px;
}

body.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin: 0 !important;
	padding: 0 16px !important;
	list-style: none !important;
	border-bottom: 1px solid var(--hg-product-border);
	background: linear-gradient(180deg, #fafcff 0%, #fff 100%);
}

body.single-product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce-tabs ul.tabs::after {
	display: none !important;
}

body.single-product .woocommerce-tabs ul.tabs li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
}

body.single-product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 16px 18px !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	color: var(--hg-product-muted) !important;
	text-decoration: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -1px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

body.single-product .woocommerce-tabs ul.tabs li.active a,
body.single-product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--hg-product-blue) !important;
	border-bottom-color: var(--hg-product-orange);
}

body.single-product .woocommerce-tabs .panel {
	padding: 24px 26px 28px !important;
	margin: 0 !important;
	font-size: 15px;
	line-height: 1.7;
	color: var(--hg-product-muted);
}

body.single-product .woocommerce-tabs .panel h2 {
	font-size: 1.25rem !important;
	font-weight: 900 !important;
	color: var(--hg-product-ink) !important;
	margin: 0 0 12px !important;
}

/* ==========================================================================
   RELATED PRODUCTS
   ========================================================================== */

body.single-product .related.products {
	grid-column: 1 / -1;
	margin-top: 12px;
	padding-top: 8px;
}

body.single-product .related.products > h2 {
	font-size: clamp(1.35rem, 3vw, 1.75rem) !important;
	font-weight: 900 !important;
	color: var(--hg-product-blue) !important;
	letter-spacing: -0.03em;
	margin: 0 0 22px !important;
	text-align: center;
}

body.single-product .related.products ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

body.single-product .related.products ul.products::before,
body.single-product .related.products ul.products::after {
	display: none !important;
}

body.single-product .related.products ul.products > li.product {
	width: auto !important;
	flex: none !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

body.single-product .related.products .content-product {
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--hg-product-border);
	border-radius: var(--hg-product-radius);
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(23, 71, 184, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.single-product .related.products .content-product:hover {
	transform: translateY(-4px);
	border-color: rgba(23, 71, 184, 0.18);
	box-shadow: var(--hg-product-shadow);
}

body.single-product .related.products .product-image-wrapper {
	background: linear-gradient(180deg, #f3f9ff 0%, #eef5ff 100%);
	border-bottom: 1px solid rgba(23, 71, 184, 0.06);
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

body.single-product .related.products .product-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.single-product .related.products .product-details {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 14px 14px 16px;
}

body.single-product .related.products .product-details .product-title a {
	font-size: 14px !important;
	font-weight: 800 !important;
	color: var(--hg-product-ink) !important;
	text-decoration: none;
	line-height: 1.35;
}

body.single-product .related.products .product-details .price {
	font-size: 1rem !important;
	font-weight: 900 !important;
	color: var(--hg-product-orange) !important;
	margin: 0 0 10px !important;
}

body.single-product .related.products .product-details .button,
body.single-product .related.products .product-details .add_to_cart_button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	min-height: 40px !important;
	padding: 0 16px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--hg-product-orange) !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	margin-top: auto;
}

/* Hide sidebar on product page */
body.single-product .sidebar-position-left .sidebar,
body.single-product .sidebar-position-left aside.sidebar {
	display: none !important;
}

body.single-product .sidebar-position-left > .row {
	display: block;
}

body.single-product .main-products-loop,
body.single-product .content-page > .row > .content {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
	body.single-product .template-content,
	body.single-product .page-wrapper,
	body.single-product .content-page.container {
		overflow: visible !important;
		height: auto !important;
		max-height: none !important;
	}

	body.single-product .single-product-builder > .row,
	body.single-product .single-product-builder > .row > .col-md-12,
	body.single-product .single-product-builder > .row > .col-md-12 > .row {
		display: flex !important;
		flex-direction: column !important;
		flex-wrap: nowrap !important;
		width: 100% !important;
		max-width: 100% !important;
		overflow: visible !important;
		height: auto !important;
		max-height: none !important;
	}

	body.single-product .single-product-builder .et_product-block {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 auto !important;
		overflow: visible !important;
		height: auto !important;
		max-height: none !important;
		min-height: 0 !important;
	}

	body.single-product .single-product-builder .et_product-block[data-sticky],
	body.single-product .single-product-builder .et_product-block:has(.single-product-custom-widget-area) {
		display: none !important;
	}

	body.single-product .single-product-builder .sticky-block,
	body.single-product .single-product-builder .sticky-background {
		position: static !important;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		max-height: none !important;
		transform: none !important;
		overflow: visible !important;
	}

	body.single-product .higuppy-product-specs {
		margin-top: 16px;
		padding: 14px;
		background: #fff;
		border: 1px solid var(--hg-product-border);
		border-radius: 12px;
	}

	body.single-product .higuppy-product-care-links {
		margin-top: 12px;
	}

	body.single-product div.product {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	body.single-product .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.higuppy-product-specs {
		grid-template-columns: 1fr;
	}

	.higuppy-product-footer__inner {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.higuppy-product-footer {
		margin-left: -12px;
		margin-right: -12px;
		padding-left: 16px;
		padding-right: 16px;
	}
}

@media (max-width: 767px) {
	html:has(body.single-product),
	body.single-product {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden !important;
		background: #f7fbff;
	}

	body.single-product .page-wrapper,
	body.single-product .template-content,
	body.single-product .content-page,
	body.single-product .content-page.container,
	body.single-product .single-product-builder,
	body.single-product .single-product-builder > .row,
	body.single-product .single-product-builder > .row > .col-md-12,
	body.single-product .single-product-builder > .row > .col-md-12 > .row {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		overflow-x: hidden !important;
	}

	body.single-product .content-page.container {
		padding-left: 12px;
		padding-right: 12px;
		padding-top: 8px;
	}

	body.single-product .single-product-builder .main-images,
	body.single-product .single-product-builder .swiper-entry .main-images {
		min-height: 220px;
	}

	body.single-product .summary.entry-summary {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		padding: 22px 18px 20px;
	}

	body.single-product .single-product-builder form.cart {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	body.single-product .higuppy-qty-wrap {
		width: 100%;
		justify-content: center;
		margin-bottom: 10px;
	}

	body.single-product .higuppy-product-cta-row {
		width: 100%;
		max-width: 100%;
	}

	body.single-product .higuppy-product-buy-now,
	body.single-product .higuppy-product-cta-row .single_add_to_cart_button,
	body.single-product button.single_add_to_cart_button.button {
		min-width: 0 !important;
		white-space: normal !important;
	}

	body.single-product .woocommerce-product-gallery {
		padding: 12px !important;
	}

	body.single-product .related.products,
	body.single-product .related.products ul.products {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	body.single-product .woocommerce-tabs .panel {
		padding: 18px 16px 22px !important;
	}

	body.single-product .woocommerce-tabs ul.tabs li a {
		padding: 14px 12px !important;
		font-size: 13px !important;
	}

}

@media (max-width: 480px) {
	body.single-product .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.higuppy-product-care-links {
		flex-direction: column;
	}

	.higuppy-product-care-links__item {
		justify-content: center;
	}
}

/* ==========================================================================
   MOBILE HEADER — keep hg-nav collapsed until hamburger opens
   ========================================================================== */

@media (max-width: 900px) {
	body.single-product > nav.hg-nav,
	body.single-product nav#hgSiteNav.hg-nav {
		display: flex !important;
		flex-wrap: wrap;
		align-items: center;
		gap: 8px 10px;
		border-radius: 22px;
		width: min(100% - 20px, 1160px);
		margin: 10px auto 12px;
		padding: 10px 14px;
		min-height: 58px;
		grid-template-columns: none;
	}

	body.single-product > nav.hg-nav .hg-logo,
	body.single-product nav#hgSiteNav.hg-nav .hg-logo {
		flex: 0 0 auto;
	}

	body.single-product > nav.hg-nav .hg-menu,
	body.single-product nav#hgSiteNav.hg-nav .hg-menu {
		display: none !important;
		order: 4;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		padding: 0 0 10px;
	}

	body.single-product > nav.hg-nav.is-open .hg-menu,
	body.single-product nav#hgSiteNav.hg-nav.is-open .hg-menu {
		display: flex !important;
	}

	body.single-product > nav.hg-nav .hg-menu a,
	body.single-product nav#hgSiteNav.hg-nav .hg-menu a {
		display: block !important;
		width: 100%;
		justify-content: flex-start;
		padding: 8px 0;
	}

	body.single-product > nav.hg-nav .hg-menu a::after,
	body.single-product nav#hgSiteNav.hg-nav .hg-menu a::after {
		display: none;
	}

	body.single-product > nav.hg-nav .hg-actions,
	body.single-product nav#hgSiteNav.hg-nav .hg-actions {
		margin-left: auto;
	}

	body.single-product > nav.hg-nav .hg-menu-toggle,
	body.single-product nav#hgSiteNav.hg-nav .hg-menu-toggle {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		margin-left: 4px;
	}
}

/* ==========================================================================
   MOBILE PRODUCT MOCKUP — NEW COMPONENTS
   ========================================================================== */

/* Back button */
.higuppy-product-back {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--hg-product-blue-soft);
	color: var(--hg-product-blue);
	cursor: pointer;
	flex-shrink: 0;
}

.higuppy-product-back--in-nav {
	display: inline-flex;
}

@media (max-width: 900px) {
	body.single-product > nav.hg-nav .hg-logo,
	body.single-product nav#hgSiteNav.hg-nav .hg-logo {
		flex: 1;
		justify-content: center;
		text-align: center;
	}
}

/* Gallery counter */
.higuppy-product-gallery-counter {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(19, 32, 58, 0.72);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.02em;
	pointer-events: none;
}

body.single-product .single-product-builder .main-images,
body.single-product .single-product-builder .swiper-entry .main-images {
	aspect-ratio: 4 / 3;
	min-height: 240px;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
body.single-product .woocommerce-product-gallery .flex-control-thumbs li img:hover,
body.single-product .single-product-builder .thumbnails-list img.active,
body.single-product .single-product-builder .swiper-thumbs .swiper-slide-thumb-active img {
	border-color: var(--hg-product-blue) !important;
	opacity: 1 !important;
}

/* Sale badge */
.higuppy-product-sale-badge {
	display: inline-flex;
	align-items: center;
	margin-left: 8px;
	padding: 4px 10px;
	border-radius: 999px;
	background: #ffe8e5;
	color: #d92d20;
	font-size: 12px;
	font-weight: 800;
	vertical-align: middle;
}

body.single-product .summary .price,
body.single-product .single-product-builder .price {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

/* Trust badges row */
.higuppy-product-trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
}

.higuppy-product-trust-badges__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--hg-product-blue-soft);
	border: 1px solid rgba(23, 71, 184, 0.1);
	font-size: 11px;
	font-weight: 800;
	color: var(--hg-product-blue);
	white-space: nowrap;
}

.higuppy-product-trust-badges__icon {
	display: inline-flex;
	color: #17a673;
}

/* Pack option cards */
.higuppy-product-pack-options {
	margin: 0 0 16px;
}

.higuppy-product-pack-options__label {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 800;
	color: var(--hg-product-ink);
}

.higuppy-product-pack-options__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.higuppy-product-pack-options__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	min-height: 88px;
	padding: 12px 10px;
	border: 2px solid var(--hg-product-border);
	border-radius: 14px;
	background: #fff;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.higuppy-product-pack-options__card.is-selected {
	border-color: var(--hg-product-blue);
	box-shadow: 0 0 0 1px rgba(23, 71, 184, 0.12);
}

.higuppy-product-pack-options__card.is-disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.higuppy-product-pack-options__check {
	position: absolute;
	top: 8px;
	right: 8px;
	display: none;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: var(--hg-product-blue);
	color: #fff;
}

.higuppy-product-pack-options__card.is-selected .higuppy-product-pack-options__check {
	display: inline-flex;
}

.higuppy-product-pack-options__name {
	font-size: 12px;
	font-weight: 800;
	color: var(--hg-product-ink);
	line-height: 1.25;
	padding-right: 18px;
}

.higuppy-product-pack-options__price {
	font-size: 13px;
	font-weight: 900;
	color: var(--hg-product-orange);
}

.higuppy-product-pack-options__price del {
	display: none;
}

.higuppy-product-variations--hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Quantity stepper */
.higuppy-qty-wrap {
	display: inline-flex !important;
	align-items: center;
	gap: 0;
	border: 1px solid var(--hg-product-border);
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
}

.higuppy-qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 48px;
	border: 0;
	background: #fff;
	color: var(--hg-product-ink);
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
}

.higuppy-qty-btn:hover {
	background: var(--hg-product-blue-soft);
}

body.single-product form.cart .quantity .qty {
	border: 0 !important;
	border-radius: 0 !important;
	width: 56px !important;
}

/* Dual CTA row */
.higuppy-product-cta-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 4px;
}

.higuppy-product-cta-row .single_add_to_cart_button {
	width: 100% !important;
	background: #fff !important;
	color: var(--hg-product-blue) !important;
	border: 2px solid var(--hg-product-blue) !important;
	box-shadow: none !important;
}

.higuppy-product-cta-row .single_add_to_cart_button:hover {
	background: var(--hg-product-blue-soft) !important;
	transform: none !important;
}

.higuppy-product-buy-now {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100% !important;
	min-height: 52px !important;
	padding: 0 18px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--hg-product-blue) !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	box-shadow: 0 10px 24px rgba(23, 71, 184, 0.22);
	cursor: pointer;
}

.higuppy-product-buy-now:hover {
	background: #0e2f86 !important;
}

/* Shipping trust strip */
.higuppy-product-shipping-trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 18px 0 16px;
	padding: 16px;
	border-radius: var(--hg-product-radius);
	background: #f4f7fc;
	border: 1px solid var(--hg-product-border);
}

.higuppy-product-shipping-trust__item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.higuppy-product-shipping-trust__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: #fff;
	color: var(--hg-product-blue);
	border: 1px solid rgba(23, 71, 184, 0.1);
}

.higuppy-product-shipping-trust__icon svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.higuppy-product-shipping-trust__item strong {
	display: block;
	font-size: 12px;
	font-weight: 900;
	color: var(--hg-product-ink);
	margin-bottom: 4px;
}

.higuppy-product-shipping-trust__item p {
	margin: 0;
	font-size: 11px;
	line-height: 1.45;
	color: var(--hg-product-muted);
}

/* Mobile accordions */
.higuppy-product-accordions {
	display: none;
	margin-top: 18px;
}

.higuppy-product-accordion {
	border: 1px solid var(--hg-product-border);
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
	margin-bottom: 10px;
}

.higuppy-product-accordion__summary {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	cursor: pointer;
	list-style: none;
	font-size: 15px;
	font-weight: 800;
	color: var(--hg-product-ink);
}

.higuppy-product-accordion__summary::-webkit-details-marker {
	display: none;
}

.higuppy-product-accordion__icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	border-radius: 8px;
	background: var(--hg-product-blue-soft);
	position: relative;
}

.higuppy-product-accordion__icon--doc::after,
.higuppy-product-accordion__icon--drop::after,
.higuppy-product-accordion__icon--truck::after,
.higuppy-product-accordion__icon--shield::after {
	content: "";
	position: absolute;
	inset: 5px;
	background: var(--hg-product-blue);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

.higuppy-product-accordion__icon--doc::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3C/svg%3E");
}

.higuppy-product-accordion__icon--drop::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.69l5.66 5.66a8 8 0 1 1-11.32 0z'/%3E%3C/svg%3E");
}

.higuppy-product-accordion__icon--truck::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 7h13v10H3z'/%3E%3C/svg%3E");
}

.higuppy-product-accordion__icon--shield::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l8 3v6c0 5.25-3.5 9.74-8 11-4.5-1.26-8-5.75-8-11V5z'/%3E%3C/svg%3E");
}

.higuppy-product-accordion__title {
	flex: 1;
}

.higuppy-product-accordion__chevron {
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--hg-product-muted);
	border-bottom: 2px solid var(--hg-product-muted);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	margin-right: 4px;
}

.higuppy-product-accordion[open] .higuppy-product-accordion__chevron {
	transform: rotate(-135deg);
	margin-top: 6px;
}

.higuppy-product-accordion__panel {
	padding: 0 18px 18px 52px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--hg-product-muted);
}

.higuppy-product-accordion__panel a {
	color: var(--hg-product-orange);
	font-weight: 700;
	text-decoration: none;
}

/* Related products header + horizontal scroll */
.higuppy-related-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 18px;
}

.higuppy-related-header__title {
	margin: 0 !important;
	font-size: clamp(1.2rem, 3vw, 1.5rem) !important;
	font-weight: 900 !important;
	color: var(--hg-product-blue) !important;
	text-align: left !important;
}

.higuppy-related-header__link {
	font-size: 13px;
	font-weight: 800;
	color: var(--hg-product-orange);
	text-decoration: none;
	white-space: nowrap;
}

body.single-product .related.products > h2 {
	display: none !important;
}

/* Sticky bottom bar */
.higuppy-product-sticky-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--hg-product-border);
	box-shadow: 0 -8px 30px rgba(23, 71, 184, 0.12);
	backdrop-filter: blur(8px);
}

.higuppy-product-sticky-bar[hidden] {
	display: none !important;
}

body.single-product.higuppy-sticky-visible {
	padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
}

.higuppy-product-sticky-bar__thumb {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--hg-product-blue-soft);
}

.higuppy-product-sticky-bar__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.higuppy-product-sticky-bar__info {
	flex: 1;
	min-width: 0;
}

.higuppy-product-sticky-bar__title {
	display: block;
	font-size: 12px;
	font-weight: 800;
	color: var(--hg-product-ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.higuppy-product-sticky-bar__meta {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: var(--hg-product-muted);
}

.higuppy-product-sticky-bar__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.higuppy-product-sticky-bar__price {
	font-size: 14px;
	font-weight: 900;
	color: var(--hg-product-orange);
	white-space: nowrap;
}

.higuppy-product-sticky-bar__price del {
	display: none;
}

.higuppy-product-sticky-bar__buy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border: 0;
	border-radius: 999px;
	background: var(--hg-product-blue);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	white-space: nowrap;
}

@media (max-width: 991px) {
	body.single-product .woocommerce-tabs,
	body.single-product .single-product-builder .woocommerce-tabs {
		display: none !important;
	}

	.higuppy-product-accordions {
		display: block;
	}

	.higuppy-product-care-links {
		display: none !important;
	}

	body.single-product .related.products ul.products {
		display: flex !important;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 14px;
		padding-bottom: 6px;
		-webkit-overflow-scrolling: touch;
	}

	body.single-product .related.products ul.products > li.product {
		flex: 0 0 min(72vw, 260px);
		scroll-snap-align: start;
	}
}

@media (min-width: 992px) {
	.higuppy-product-sticky-bar {
		display: none !important;
	}

	.higuppy-product-back {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.higuppy-product-pack-options__grid {
		grid-template-columns: 1fr;
	}

	.higuppy-product-pack-options__card {
		min-height: 0;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.higuppy-product-shipping-trust {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   STOCK BADGE + PRICE ROW
   ========================================================================== */

.higuppy-product-stock {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
}

.higuppy-product-stock__dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #17a673;
	flex-shrink: 0;
}

.higuppy-product-stock--low-stock {
	background: #fff6e6;
	color: #b54708;
}

.higuppy-product-stock--low-stock .higuppy-product-stock__dot {
	background: #ff6b35;
}

.higuppy-product-stock--out-of-stock {
	background: #ffe8e5;
	color: #b42318;
}

.higuppy-product-stock--out-of-stock .higuppy-product-stock__dot {
	background: #d92d20;
}

.higuppy-product-stock--backorder {
	background: var(--hg-product-blue-soft);
	color: var(--hg-product-blue);
}

body.single-product .summary .price,
body.single-product .single-product-builder .price {
	margin-bottom: 8px !important;
}

body.single-product .woocommerce-product-details__short-description {
	margin-top: 0 !important;
}

.higuppy-product-short-desc {
	margin: 0 0 16px;
	padding: 14px 16px;
	border-radius: 14px;
	background: linear-gradient(180deg, #fafcff 0%, #fff 100%);
	border: 1px solid var(--hg-product-border);
}

.higuppy-product-short-desc .woocommerce-product-details__short-description {
	margin-bottom: 10px !important;
}

.higuppy-product-short-desc__note {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	color: var(--hg-product-muted);
}

.higuppy-product-specs--inline {
	margin: 0 0 16px;
}

/* ==========================================================================
   GALLERY LIVE BADGE
   ========================================================================== */

.higuppy-product-gallery-live {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(23, 71, 184, 0.12);
	color: var(--hg-product-blue);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	box-shadow: 0 6px 18px rgba(23, 71, 184, 0.12);
}

.higuppy-product-gallery-live__dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #17a673;
	box-shadow: 0 0 0 4px rgba(23, 166, 115, 0.18);
	animation: higuppy-live-pulse 1.8s ease-in-out infinite;
}

@keyframes higuppy-live-pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.15);
		opacity: 0.75;
	}
}

body.single-product .single-product-builder .images-wrapper,
body.single-product .single-product-builder .woocommerce-product-gallery,
body.single-product .woocommerce-product-gallery {
	position: relative;
}

/* ==========================================================================
   TRUST / CARE SECTION PANEL
   ========================================================================== */

.higuppy-product-trust-panel {
	grid-column: 1 / -1;
	margin: 8px 0 20px;
	padding: 24px 22px;
	border-radius: calc(var(--hg-product-radius) + 4px);
	background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
	border: 1px solid var(--hg-product-border);
	box-shadow: var(--hg-product-shadow);
}

.higuppy-product-trust-panel__header {
	margin-bottom: 20px;
}

.higuppy-product-trust-panel__eyebrow {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--hg-product-orange);
}

.higuppy-product-trust-panel__title {
	margin: 0 0 10px;
	font-size: clamp(1.25rem, 3vw, 1.65rem);
	font-weight: 900;
	color: var(--hg-product-blue);
	letter-spacing: -0.03em;
}

.higuppy-product-trust-panel__lead {
	margin: 0;
	max-width: 68ch;
	font-size: 15px;
	line-height: 1.65;
	color: var(--hg-product-muted);
}

.higuppy-product-trust-panel__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.higuppy-product-section {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 18px 18px 16px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid var(--hg-product-border);
	box-shadow: 0 8px 22px rgba(23, 71, 184, 0.05);
}

.higuppy-product-section--featured {
	border-color: rgba(23, 71, 184, 0.18);
	background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.higuppy-product-section--warning {
	border-color: rgba(255, 107, 53, 0.22);
	background: linear-gradient(180deg, #fff8f4 0%, #fff 100%);
}

.higuppy-product-section__eyebrow {
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--hg-product-muted);
}

.higuppy-product-section__title-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.higuppy-product-section__icon {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	border-radius: 10px;
	background: var(--hg-product-blue-soft);
	position: relative;
}

.higuppy-product-section__icon::after,
.higuppy-product-accordion__icon--box::after {
	content: "";
	position: absolute;
	inset: 7px;
	background: var(--hg-product-blue);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

.higuppy-product-section__icon--shield::after,
.higuppy-product-accordion__icon--shield::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l8 3v6c0 5.25-3.5 9.74-8 11-4.5-1.26-8-5.75-8-11V5z'/%3E%3C/svg%3E");
}

.higuppy-product-section__icon--truck::after,
.higuppy-product-accordion__icon--truck::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 7h13v10H3z'/%3E%3C/svg%3E");
}

.higuppy-product-section__icon--alert::after,
.higuppy-product-accordion__icon--alert::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 9v4m0 4h.01M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3C/svg%3E");
}

.higuppy-product-section__icon--drop::after,
.higuppy-product-accordion__icon--drop::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.69l5.66 5.66a8 8 0 1 1-11.32 0z'/%3E%3C/svg%3E");
}

.higuppy-product-section__icon--box::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3C/svg%3E");
}

.higuppy-product-section__icon--steps::after,
.higuppy-product-accordion__icon--steps::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 6h13M8 12h13M8 18h13M3 6h.01M3 12h.01M3 18h.01'/%3E%3C/svg%3E");
}

.higuppy-product-section__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 900;
	color: var(--hg-product-ink);
	line-height: 1.25;
}

.higuppy-product-section__body {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--hg-product-muted);
}

.higuppy-product-section__intro {
	margin: 0 0 12px;
}

.higuppy-product-section__list,
.higuppy-product-section__steps {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 8px;
}

.higuppy-product-section__steps {
	list-style: none;
	padding-left: 0;
	counter-reset: higuppy-step;
}

.higuppy-product-section__steps li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.higuppy-product-section__step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: var(--hg-product-blue);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	flex-shrink: 0;
}

.higuppy-product-section__table {
	margin: 0 0 12px;
	display: grid;
	gap: 8px;
}

.higuppy-product-section__row {
	display: grid;
	grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(23, 71, 184, 0.08);
}

.higuppy-product-section__row:last-child {
	border-bottom: 0;
}

.higuppy-product-section__row dt {
	margin: 0;
	font-size: 12px;
	font-weight: 800;
	color: var(--hg-product-ink);
}

.higuppy-product-section__row dd {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--hg-product-muted);
}

.higuppy-product-section__link {
	margin: 12px 0 0;
}

.higuppy-product-section__link a {
	color: var(--hg-product-orange);
	font-weight: 800;
	text-decoration: none;
}

.higuppy-product-section__link a:hover {
	color: var(--hg-product-blue);
}

.higuppy-product-trust-panel--accordion {
	display: none;
}

.higuppy-product-accordions--description {
	display: none;
}

.higuppy-product-accordion--section .higuppy-product-accordion__panel {
	padding-left: 18px;
}

.higuppy-product-accordion__icon--box::after {
	inset: 5px;
}

.higuppy-product-accordion__icon--alert::after {
	inset: 5px;
}

.higuppy-product-accordion__icon--steps::after {
	inset: 5px;
}

body.single-product .single-product-builder .higuppy-product-trust-panel,
body.single-product .higuppy-product-trust-panel {
	width: 100%;
}

@media (max-width: 991px) {
	.higuppy-product-trust-panel--grid {
		display: none !important;
	}

	.higuppy-product-trust-panel--accordion {
		display: block !important;
		padding: 18px 14px;
	}

	.higuppy-product-trust-panel--accordion .higuppy-product-trust-panel__grid {
		display: block;
	}

	.higuppy-product-trust-panel--accordion .higuppy-product-trust-panel__header {
		margin-bottom: 14px;
	}

	.higuppy-product-accordions--description {
		display: block;
		margin-top: 0;
		margin-bottom: 12px;
	}

	.higuppy-product-short-desc__note {
		display: block;
	}
}

@media (min-width: 992px) {
	.higuppy-product-trust-panel--grid .higuppy-product-section--live-arrival,
	.higuppy-product-trust-panel--grid .higuppy-product-section--acclimation {
		grid-column: span 1;
	}

	.higuppy-product-trust-panel--grid .higuppy-product-section--featured {
		grid-column: 1 / -1;
	}

	.higuppy-product-short-desc__note {
		display: none;
	}
}

@media (max-width: 767px) {
	.higuppy-product-trust-panel {
		margin-left: 0;
		margin-right: 0;
	}

	.higuppy-product-section__row {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}

@media (max-width: 480px) {
	.higuppy-product-trust-badges {
		flex-direction: column;
	}

	.higuppy-product-trust-badges__item {
		justify-content: center;
	}

	.higuppy-product-cta-row {
		grid-template-columns: 1fr;
	}

	.higuppy-product-sticky-bar__price {
		display: none;
	}
}
