/* =========================================================
   HTP SINGLE PRODUCT
   One responsive DOM, mobile accordion, no.
========================================================= */

:root {
	--htp-container: 1280px;
	--htp-red: #ed1c24;
	--htp-red-dark: #d71920;
	--htp-navy: #06111e;
	--htp-dark: #111827;
	--htp-text: #303742;
	--htp-muted: #66707c;
	--htp-border: #e6eaf0;
	--htp-soft: #f7f8fa;
	--htp-font-heading: "Anton", Arial, sans-serif;
	--htp-font-body: "Lato", Arial, sans-serif;
	--htp-box-font: 18px;
	--htp-box-subfont: 16px;
	--htp-shadow: 0 12px 30px rgba(17, 24, 39, .055);
}

html,
body {
	max-width: 100%;
	overflow-x: clip;
}

body.single-product,
body.single-product #page,
body.single-product .site,
body.single-product .site.grid-container,
body.single-product .site-content,
body.single-product .content-area,
body.single-product .site-main,
body.single-product .inside-article,
body.single-product .entry-content {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
}

body.single-product {
	color: var(--htp-dark);
	font-family: var(--htp-font-body);
}

body.single-product img,
body.single-product svg,
body.single-product video,
body.single-product iframe,
body.single-product table {
	max-width: 100%;
}

.htp-single-product,
.htp-single-product *,
.htp-single-product *::before,
.htp-single-product *::after {
	box-sizing: border-box;
}

.htp-single-product {
	width: 100%;
	max-width: 100%;
	background: #fff;
	color: var(--htp-dark);
	overflow-x: clip;
}

.htp-product-container {
	width: min(calc(100% - 96px), var(--htp-container));
	max-width: var(--htp-container);
	margin: 0 auto;
}

.htp-product-breadcrumb {
	padding: 14px 0 16px;
	color: #7a828d;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}

.htp-product-breadcrumb a {
	color: #7a828d;
	text-decoration: none;
}


.htp-product-breadcrumb {
	position: relative;
	z-index: 5;
}

.htp-product-breadcrumb a {
	pointer-events: auto;
}
.htp-product-breadcrumb a:hover {
	color: var(--htp-red);
}

/* Hero */
.htp-product-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
	gap: 44px;
	align-items: start;
	padding-bottom: 22px;
}

.htp-product-gallery,
.htp-product-summary {
	min-width: 0;
}

.htp-product-gallery {
	position: relative;
}

.htp-product-badge {
	position: absolute;
	z-index: 3;
	left: 14px;
	top: 14px;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 11px;
	border-radius: 4px;
	background: var(--htp-red);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.htp-product-main-img {
	position: relative;
	width: 100%;
	margin: 0;
	aspect-ratio: 1 / 1;
	height: auto;
	overflow: hidden;
	border: 1px solid var(--htp-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .9);
}

.htp-product-main-img::before,
.htp-product-main-img::after {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(17, 24, 39, .62);
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	transform: translateY(-50%);
	pointer-events: none;
}

.htp-product-main-img::before {
	content: "‹";
	left: 14px;
}

.htp-product-main-img::after {
	content: "›";
	right: 14px;
}

.htp-product-main-img a,
.htp-product-main-img picture,
.htp-product-main-img figure {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.htp-product-main-img img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	object-fit: cover;
	object-position: center;
	background: #fff;
	box-shadow: none;
}

.htp-product-thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.htp-product-thumbs button {
	min-width: 0;
	min-height: 78px;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--htp-border);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(17, 24, 39, .04);
	color: #333943;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
}

.htp-product-thumbs button:first-child {
	border-color: var(--htp-red);
	box-shadow: inset 0 0 0 1px var(--htp-red), 0 6px 18px rgba(17, 24, 39, .04);
}

.htp-product-thumbs img {
	display: block;
	width: 100%;
	height: 76px;
	margin: 0;
	padding: 0;
	border: 0;
	object-fit: cover;
	object-position: center;
	background: #fff;
	box-shadow: none;
}

.htp-product-thumb-more {
	display: flex;
	align-items: center;
	justify-content: center;
}

.htp-product-summary h1 {
	margin: 0 0 10px;
	color: #15171d;
	font-family: var(--htp-font-body);
	font-size: clamp(30px, 2.35vw, 42px);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -.01em;
	text-transform: none;
	overflow-wrap: break-word;
}

.htp-product-rating {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-bottom: 12px;
	color: #69717c;
	font-size: 13px;
	font-weight: 700;
}

.htp-product-rating .star-rating {
	margin: 0;
}

.htp-product-summary-lead {
	margin: 0 0 18px;
	color: #3f4652;
	font-size: var(--htp-box-font);
	font-weight: 600;
	line-height: 1.65;
}

.htp-product-highlight-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	margin: 20px 0 18px;
	padding: 14px;
	border: 1px solid #e8ecf2;
	border-radius: 10px;
	background: #fff;
}

.htp-product-highlight-grid div {
	min-width: 0;
	padding: 7px 5px;
	border-radius: 8px;
	text-align: center;
	overflow: hidden;
}

.htp-product-highlight-grid svg,
.htp-product-highlight-grid img {
	display: block;
	width: 42px;
	height: 42px;
	padding: 8px;
	margin: 0 auto 8px;
	border: 1px solid rgba(237, 28, 36, .45);
	border-radius: 50%;
	object-fit: contain;
}

.htp-product-highlight-grid svg {
	stroke: var(--htp-red);
	stroke-width: 2;
}

.htp-product-highlight-grid strong {
	display: block;
	color: var(--htp-red);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.htp-product-highlight-grid span {
	display: block;
	margin-top: 4px;
	color: #606873;
	font-size: 11.5px;
	font-weight: 700;
	line-height: 1.3;
}

.htp-product-promo-box {
	padding: 20px 22px 18px;
	border: 1px solid #edf0f5;
	border-radius: 10px;
	background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
	box-shadow: var(--htp-shadow);
}

.htp-product-promo-box h2 {
	margin: 0 0 16px;
	color: var(--htp-dark);
	font-family: var(--htp-font-body);
	font-size: var(--htp-box-font);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.htp-product-promo-box h2 span,
.htp-product-promo-box h2 span .amount,
.htp-product-promo-box h2 span bdi {
	color: var(--htp-red);
}

.htp-product-promo-box ul {
	display: grid;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.htp-product-promo-box li {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	color: var(--htp-text);
	font-size: var(--htp-box-font);
	font-weight: 500;
	line-height: 1.45;
}

.htp-product-promo-box li svg {
	width: 22px;
	height: 22px;
	stroke: #4caf2f;
}

.htp-product-quote {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	border-radius: 7px;
	background: linear-gradient(90deg, #ff9200 0%, #ff4b1f 48%, var(--htp-red) 100%);
	box-shadow: 0 14px 26px rgba(239, 31, 43, .18);
	color: #fff;
	font-size: var(--htp-box-font);
	font-weight: 400;
	line-height: 1;
	letter-spacing: .035em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	font-family: var(--htp-font-heading, "Anton", Arial, sans-serif);
}

.htp-product-quote small {
	display: block;
	margin-top: 4px;
	font-size: var(--htp-box-subfont);
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	font-family: var(--htp-font-body, "Lato", Arial, sans-serif);
}

.htp-product-quote,
.htp-product-quote:visited {
	color: #fff;
}

.htp-product-quote:hover,
.htp-product-quote:focus,
.htp-product-quote:active {
	background: linear-gradient(90deg, #ff7a00 0%, #ff3b1f 48%, var(--htp-red-dark) 100%);
	box-shadow: 0 16px 30px rgba(239, 31, 43, .2);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.htp-product-quote small,
.htp-product-quote:hover small,
.htp-product-quote:focus small,
.htp-product-quote:active small {
	color: rgba(255, 255, 255, .92);
}

.htp-product-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 14px;
}

.htp-product-actions a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 16px;
	border: 1px solid #dce1e8;
	border-radius: 7px;
	background: #fff;
	color: var(--htp-dark);
	font-size: var(--htp-box-font);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: .02em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.htp-product-actions a:first-child {
	border-color: var(--htp-navy);
	background: var(--htp-navy);
	color: #fff;
}

/* Trust */
.htp-product-trust {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding: 20px 0 26px;
	border-top: 1px solid #eef1f5;
	border-bottom: 1px solid #eef1f5;
}

.htp-product-trust div {
	min-width: 0;
	padding: 14px 12px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(17, 24, 39, .04);
	color: var(--htp-dark);
	font-size: var(--htp-box-font);
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	text-transform: uppercase;
}

.htp-product-trust small {
	display: block;
	margin-top: 7px;
	color: var(--htp-muted);
	font-size: var(--htp-box-subfont);
	font-weight: 400;
	line-height: 1.35;
	text-transform: none;
}

/* Shared sections */
.htp-product-two-cols {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 36px;
	padding: 28px 0 22px;
}

.htp-product-section,
.htp-product-card {
	width: 100%;
	max-width: 100%;
	padding: 0 0 28px;
}

.htp-product-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 18px;
}

.htp-product-section__head h2,
.htp-product-section > h2,
.htp-product-card > h2,
.htp-product-accordion > summary span {
	margin: 0;
	color: var(--htp-dark);
	font-family: var(--htp-font-body);
	font-size: clamp(20px, 1.65vw, 28px);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: .01em;
	text-transform: uppercase;
}

.htp-product-section small,
.htp-product-accordion small {
	color: #555;
	font-size: 16px;
	font-weight: 500;
	text-transform: none;
}

/* Accordions: desktop behaves like normal section, mobile becomes collapsible */
.htp-product-accordion {
	border: 0;
}

.htp-product-accordion > summary {
	display: block;
	margin: 0 0 18px;
	list-style: none;
}

.htp-product-accordion > summary::-webkit-details-marker {
	display: none;
}

.htp-product-accordion__body {
	min-width: 0;
}

/* Tables / specs */
.htp-product-spec-desc,
.htp-price-table,
.htp-price-table--dynamic {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	border: 1px solid var(--htp-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(17, 24, 39, .035);
	color: #333943;
}

.htp-price-table,
.htp-price-table--dynamic {
	border-color: var(--htp-red);
}

.htp-product-spec-desc table,
.htp-price-table table,
.htp-price-table--dynamic table,
.htp-product-content__body table,
.htp-product-content-compare table {
	width: 100%;
	max-width: 100%;
	margin: 0;
	border-collapse: collapse;
	border-spacing: 0;
	background: #fff;
}

.htp-product-spec-desc th,
.htp-product-spec-desc td,
.htp-price-table th,
.htp-price-table td,
.htp-price-table--dynamic th,
.htp-price-table--dynamic td,
.htp-product-content__body th,
.htp-product-content__body td,
.htp-product-content-compare th,
.htp-product-content-compare td {
	padding: 9px 12px;
	border: 1px solid var(--htp-border);
	color: var(--htp-text);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	text-align: left;
	vertical-align: top;
	white-space: normal;
	overflow-wrap: anywhere;
}

.htp-product-spec-desc th,
.htp-product-spec-desc table tr:first-child td,
.htp-product-spec-desc table tr:first-child th,
.htp-price-table th,
.htp-price-table--dynamic th,
.htp-product-content__body th,
.htp-product-content-compare th {
	background: #f8fafc;
	color: #111827;
	font-weight: 700;
}

.htp-price-table th,
.htp-price-table--dynamic th {
	height: 50px;
	text-align: center;
	vertical-align: middle;
	font-size: 18px;
	font-weight: 700;
}

.htp-price-table td,
.htp-price-table--dynamic td {
	height: 50px;
	text-align: center;
	vertical-align: middle;
	font-size: 16px;
	font-weight: 400;
}

.htp-product-outline-btn {
	display: inline-flex;
	float: right;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 44px;
	margin-top: 12px;
	border: 1px solid var(--htp-red);
	border-radius: 6px;
	background: #fff;
	color: var(--htp-red);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.htp-product-outline-btn:hover {
	background: var(--htp-red);
	color: #fff;
}

/* Benefits */
.htp-product-benefits {
	display: grid;
	grid-template-columns: 1fr;
	gap: 9px;
}

.htp-product-benefits div {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 12px;
	row-gap: 4px;
	align-items: start;
	padding: 12px 14px;
	border: 1px solid var(--htp-border);
	border-radius: 10px;
	background: #fff;
}

.htp-product-benefits svg,
.htp-product-benefits .htp-icon,
.htp-product-benefits img {
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.htp-product-benefits strong,
.htp-product-benefits span {
	grid-column: 2;
	min-width: 0;
	overflow-wrap: anywhere;
}

.htp-product-benefits strong {
	display: block;
	color: var(--htp-red);
	font-size: var(--htp-box-font);
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.htp-product-benefits span {
	display: block;
	color: #555c67;
	font-size: var(--htp-box-font);
	font-weight: 500;
	line-height: 1.45;
}

/* Industries */
.htp-product-industry-slider {
	width: 100%;
	overflow: hidden;
}

.htp-product-industry-grid {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, calc((100% - 48px) / 4));
	gap: 16px;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding: 0 0 12px;
	scrollbar-width: thin;
}

.htp-product-industry-card {
	width: 100%;
	min-width: 0;
	overflow: hidden;
	scroll-snap-align: start;
	border: 1px solid var(--htp-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: var(--htp-shadow);
	text-align: center;
}

.htp-product-industry-card img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	background: #f4f6f8;
}

.htp-product-industry-card strong {
	display: block;
	padding: 14px 12px 4px;
	color: var(--htp-dark);
	font-size: var(--htp-box-font);
	font-weight: 700;
	line-height: 1.25;
}

.htp-product-industry-card span {
	display: block;
	min-height: 58px;
	padding: 0 12px 16px;
	color: var(--htp-muted);
	font-size: var(--htp-box-font);
	font-weight: 500;
	line-height: 1.45;
}

/* Process */
.htp-order-process {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.htp-order-process div {
	position: relative;
	padding: 18px 12px;
	border: 1px solid var(--htp-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(17, 24, 39, .04);
	text-align: center;
}

.htp-order-process div:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 39px;
	right: -15px;
	width: 15px;
	height: 2px;
	background: var(--htp-red);
}

.htp-order-process strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--htp-red);
	color: #fff;
	font-size: var(--htp-box-font);
	font-weight: 700;
	line-height: 1;
}

.htp-order-process b {
	display: block;
	margin: 12px 0 5px;
	color: var(--htp-red);
	font-size: var(--htp-box-font);
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.htp-order-process span {
	color: #555c67;
	font-size: var(--htp-box-subfont);
	font-weight: 500;
	line-height: 1.35;
}

/* Editorial content */
.htp-product-content--pro {
	padding: 30px 0 34px;
	border-top: 1px solid #eef1f5;
	border-bottom: 1px solid #eef1f5;
}

.htp-product-content-head {
	max-width: 100%;
	margin-bottom: 22px;
}

.htp-product-content-head > span {
	display: inline-flex;
	margin-bottom: 8px;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(237, 28, 36, .08);
	color: var(--htp-red);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.htp-product-content-head p {
	margin: 0;
	color: #4f5966;
	font-size: var(--htp-box-font);
	font-weight: 500;
	line-height: 1.65;
}

.htp-product-content-layout {
	display: block;
	width: 100%;
}

.htp-product-content-nav {
	position: relative;
	width: 100%;
	margin-bottom: 22px;
	border: 1px solid #e7ebf1;
	border-radius: 12px;
	background: #fbfcfd;
	box-shadow: 0 14px 32px rgba(17, 24, 39, .05);
	overflow: hidden;
}

.htp-product-content-nav > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 54px;
	padding: 0 18px;
	color: #111827;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	cursor: pointer;
	list-style: none;
}

.htp-product-content-nav > summary::-webkit-details-marker {
	display: none;
}

.htp-product-content-nav > summary span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.htp-product-content-nav > summary span::before {
	content: "";
	display: inline-block;
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	background: url("https://hungthinhpack.com/wp-content/themes/htp-child-theme/assets/icons/nav.svg") center / contain no-repeat;
}

.htp-product-content-nav > summary::after {
	content: "+";
	flex: 0 0 auto;
	color: var(--htp-red);
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
}

.htp-product-content-nav[open] > summary::after {
	content: "−";
}

.htp-product-content-nav__panel {
	display: grid;
	gap: 9px;
	padding: 0 14px 14px;
}

.htp-product-content-nav a,
.htp-product-content-nav__empty {
	display: flex;
	align-items: center;
	min-height: 40px;
	padding: 9px 12px;
	border: 1px solid #edf0f5;
	border-radius: 9px;
	background: #fff;
	color: #48515e;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}

.htp-product-content-nav a:hover {
	border-color: rgba(237, 28, 36, .28);
	background: rgba(237, 28, 36, .05);
	color: var(--htp-red);
}

.htp-product-content-nav__link {
	gap: 10px;
}

.htp-product-content-nav__link span {
	flex: 0 0 auto;
	color: var(--htp-red);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .02em;
}

.htp-product-content-nav__link strong {
	min-width: 0;
	color: inherit;
	font-size: inherit;
	font-weight: 700;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.htp-product-content-nav__link--level-3 {
	margin-left: 14px;
}

.htp-product-content-nav__link--level-4 {
	margin-left: 28px;
}

.htp-product-content-nav__empty {
	color: #7a8493;
	font-weight: 700;
}

.htp-product-content-nav__cta {
	justify-content: center;
	background: var(--htp-red);
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}

.htp-product-content-main {
	min-width: 0;
}

.htp-product-content-intro,
.htp-product-content-compare,
.htp-product-content-commit {
	border: 1px solid #e7ebf1;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(17, 24, 39, .045);
}

.htp-product-content-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 260px;
	gap: 22px;
	align-items: center;
	padding: 20px;
	margin-bottom: 22px;
	background: linear-gradient(135deg, #fff 0%, #fff6f6 100%);
}

.htp-product-content-intro strong {
	display: block;
	margin-bottom: 8px;
	color: #111827;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}

.htp-product-content-intro p {
	margin: 0;
	color: #4f5966;
	font-size: var(--htp-box-font);
	font-weight: 500;
	line-height: 1.65;
}

.htp-product-content-intro img {
	display: block;
	width: 100%;
	height: 160px;
	padding: 10px;
	border-radius: 10px;
	background: #fff;
	object-fit: contain;
}

.htp-product-content__body {
	max-width: 100%;
	padding: 20px 0 2px;
	color: #20242b;
	font-size: var(--htp-box-font);
	font-weight: 400;
	line-height: 1.75;
	overflow-wrap: break-word;
}

.htp-product-content__body > :first-child {
	margin-top: 0;
}

.htp-product-content__body p {
	margin: 0 0 24px;
	color: #20242b;
	font-size: var(--htp-box-font);
	font-weight: 400;
	line-height: 1.75;
}

.htp-product-content__body h1,
.htp-product-content__body h2,
.htp-product-content__body h3,
.htp-product-content__body h4 {
	margin: 42px 0 18px;
	color: #15171d;
	font-family: var(--htp-font-body);
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: 0;
	text-transform: none;
}

.htp-product-content__body h1 {
	font-size: clamp(34px, 3vw, 46px);
}

.htp-product-content__body h2 {
	padding-top: 8px;
	border-top: 1px solid #eef1f5;
	font-size: clamp(28px, 2.4vw, 38px);
}

.htp-product-content__body h3 {
	font-size: clamp(24px, 2vw, 30px);
}

.htp-product-content__body h4 {
	font-size: 22px;
}

.htp-product-content__body ul,
.htp-product-content__body ol {
	margin: 0 0 26px 24px;
	padding: 0;
}

.htp-product-content__body li {
	margin: 0 0 10px;
	color: #20242b;
	font-size: var(--htp-box-font);
	font-weight: 400;
	line-height: 1.7;
}

.htp-product-content__body a {
	color: var(--htp-red);
	font-weight: 700;
	text-decoration: none;
}

.htp-product-content__body a:hover {
	text-decoration: underline;
}

.htp-product-content__body img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	margin: 24px auto;
	border-radius: 5px;
}

.htp-product-content__body table,
.htp-product-content-compare table {
	margin: 16px 0 0;
	border-radius: 10px;
	overflow: hidden;
}

.htp-product-content-compare {
	padding: 20px;
	margin: 22px 0;
}

.htp-product-content-compare h3,
.htp-product-content-commit h3 {
	margin: 0 0 12px;
	color: #111827;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}

.htp-product-content-commit {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	gap: 20px;
	align-items: center;
	padding: 20px;
	background: var(--htp-navy);
	color: #fff;
}

.htp-product-content-commit h3,
.htp-product-content-commit li {
	color: #fff;
}

.htp-product-content-commit ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.htp-product-content-commit li {
	position: relative;
	margin: 0 0 8px;
	padding-left: 24px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

.htp-product-content-commit li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #66d36e;
	font-weight: 700;
}

.htp-product-content-commit a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	border-radius: 8px;
	background: var(--htp-red);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

/* FAQ */
.htp-product-faq {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 18px;
}

.htp-product-faq details {
	width: 100%;
	overflow: hidden;
	border: 1px solid var(--htp-border);
	border-radius: 8px;
	background: #f9fafb;
}

.htp-product-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 16px;
	color: var(--htp-dark);
	font-size: var(--htp-box-font);
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
}

.htp-product-faq summary::-webkit-details-marker {
	display: none;
}

.htp-product-faq summary::after {
	content: "+";
	flex: 0 0 auto;
	color: var(--htp-red);
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.htp-product-faq details[open] summary::after {
	content: "−";
}

.htp-product-faq p {
	margin: 0;
	padding: 0 16px 16px;
	color: #555c67;
	font-size: var(--htp-box-subfont);
	line-height: 1.6;
}

/* Related products */
.htp-product-related {
	overflow: hidden;
}

.htp-related-product-grid,
.htp-product-related .related.products ul.products,
.htp-single-product .related.products ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.htp-related-product-card,
.htp-product-related .related.products ul.products li.product,
.htp-single-product .related.products ul.products li.product {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0;
	padding: 0;
	float: none;
	overflow: hidden;
	border: 1px solid var(--htp-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: var(--htp-shadow);
	text-align: left;
}

.htp-related-product-card__image,
.htp-product-related .related.products ul.products li.product > a:first-child,
.htp-single-product .related.products ul.products li.product > a:first-child {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #fff;
}

.htp-related-product-card__image img,
.htp-related-product-card img.wp-post-image,
.htp-product-related .related.products ul.products li.product img,
.htp-single-product .related.products ul.products li.product img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	object-fit: contain;
	object-position: center;
}

.htp-related-product-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	padding: 18px;
}

.htp-related-product-card h3,
.htp-product-related .woocommerce-loop-product__title,
.htp-single-product .related.products .woocommerce-loop-product__title {
	margin: 0;
	padding: 0;
	color: var(--htp-dark);
	font-family: var(--htp-font-body);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.32;
}

.htp-related-product-card h3 a {
	color: inherit;
	text-decoration: none;
}

.htp-related-product-card__excerpt {
	display: -webkit-box;
	margin: 0;
	color: #555c67;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.htp-related-product-card__price,
.htp-product-related .price,
.htp-single-product .related.products .price {
	display: block;
	margin: 0;
	color: var(--htp-red);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.htp-related-product-card__btn,
.htp-product-related .button,
.htp-single-product .related.products .button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	margin-top: auto;
	border: 0;
	border-radius: 6px;
	background: linear-gradient(90deg, #ff9200 0%, #ff2b2b 100%);
	box-shadow: 0 12px 24px rgba(239, 31, 43, .16);
	color: #fff;
	font-family: var(--htp-font-heading, "Anton", Arial, sans-serif);
	font-size: 17px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .015em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.htp-related-product-card__btn:visited,
.htp-product-related .button:visited,
.htp-single-product .related.products .button:visited {
	color: #fff;
}

.htp-related-product-card__btn:hover,
.htp-related-product-card__btn:focus,
.htp-related-product-card__btn:active,
.htp-product-related .button:hover,
.htp-product-related .button:focus,
.htp-product-related .button:active,
.htp-single-product .related.products .button:hover,
.htp-single-product .related.products .button:focus,
.htp-single-product .related.products .button:active {
	background: linear-gradient(90deg, #ff7a00 0%, var(--htp-red) 100%);
	box-shadow: 0 14px 28px rgba(239, 31, 43, .2);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.htp-related-product-card__note {
	position: relative;
	display: block;
	margin-top: 2px;
	padding-left: 14px;
	color: #555c67;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.htp-related-product-card__note::before {
	content: "";
	position: absolute;
	left: 0;
	top: .2em;
	width: 3px;
	height: 1.2em;
	border-radius: 9px;
	background: var(--htp-red);
}

@media (max-width: 1100px) {
	.htp-product-container {
		width: min(calc(100% - 40px), 980px);
	}

	.htp-product-hero-grid,
	.htp-product-two-cols {
		grid-template-columns: 1fr;
	}

	.htp-product-highlight-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.htp-order-process,
	.htp-related-product-grid,
	.htp-product-related .related.products ul.products,
	.htp-single-product .related.products ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.htp-product-industry-grid {
		grid-auto-columns: minmax(0, calc((100% - 32px) / 3));
	}
}

@media (max-width: 1100px) and (min-width: 768px) {
	.htp-product-content-nav__panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.htp-single-product {
		--htp-box-font: 16px;
		--htp-box-subfont: 16px;
	}

	.htp-product-container {
		width: 100%;
		padding-right: 14px;
		padding-left: 14px;
	}

	.htp-product-breadcrumb {
		padding: 10px 0 12px;
		font-size: 12px;
	}

	.htp-product-hero-grid {
		display: block;
		padding-bottom: 18px;
	}

	.htp-product-thumbs {
		display: flex;
		gap: 10px;
		overflow-x: auto;
		padding-bottom: 6px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.htp-product-thumbs::-webkit-scrollbar,
	.htp-product-highlight-grid::-webkit-scrollbar,
	.htp-product-industry-grid::-webkit-scrollbar,
	.htp-product-trust::-webkit-scrollbar,
	.htp-order-process::-webkit-scrollbar {
		display: none;
	}

	.htp-product-thumbs button {
		flex: 0 0 29%;
		min-height: 64px;
		scroll-snap-align: start;
	}

	.htp-product-thumbs img {
		height: 62px;
		object-fit: cover;
	}

	.htp-product-summary {
		margin-top: 18px;
	}

	.htp-product-summary h1 {
		font-size: 24px;
		line-height: 1.25;
	}

	.htp-product-summary-lead {
		font-size: var(--htp-box-font);
		line-height: 1.55;
	}

	.htp-product-highlight-grid {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 34%;
		grid-template-columns: none;
		gap: 8px;
		padding: 10px 0;
		border: 0;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.htp-product-highlight-grid > div {
		min-height: 96px;
		padding: 8px 5px;
		border: 1px solid #e8ecf2;
		background: #fff;
		scroll-snap-align: start;
	}

	.htp-product-highlight-grid svg,
	.htp-product-highlight-grid img {
		width: 38px;
		height: 38px;
	}

	.htp-product-highlight-grid strong,
	.htp-product-highlight-grid span {
		font-size: 12px;
	}

	.htp-product-promo-box {
		padding: 16px 14px;
	}

	.htp-product-actions {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.htp-product-actions a {
		min-height: 48px;
		padding: 10px 8px;
		font-size: var(--htp-box-font);
	}

	.htp-product-trust {
		grid-template-columns: repeat(4, minmax(138px, 1fr));
		overflow-x: auto;
		padding: 16px 0;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.htp-product-trust div {
		min-height: 76px;
		font-size: var(--htp-box-font);
		scroll-snap-align: start;
	}

	.htp-product-trust small {
		font-size: var(--htp-box-subfont);
	}

	.htp-product-two-cols {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 18px 0 8px;
	}

	.htp-product-section,
	.htp-product-card {
		padding-bottom: 0px;
	}

	.htp-product-accordion {
		margin: 0 0 8px;
		border: 1px solid #e1e6ee;
		border-radius: 10px;
		background: #fff;
		box-shadow: 0 8px 18px rgba(17, 24, 39, .035);
		overflow: hidden;
	}

	.htp-product-accordion > summary {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 24px;
		align-items: center;
		gap: 12px;
		min-height: 48px;
		margin: 0;
		padding: 8px 14px;
		cursor: pointer;
	}

	.htp-product-accordion > summary span {
		display: block;
		min-width: 0;
		padding-top: 0;
		color: var(--htp-dark);
		font-size: 17px;
		font-weight: 700;
		line-height: 1.18;
		letter-spacing: .01em;
		text-transform: uppercase;
	}

	.htp-product-accordion > summary small {
		display: block;
		margin: 3px 0 0;
		color: #555;
		font-size: 16px;
		font-weight: 400;
		line-height: 1.22;
		letter-spacing: 0;
		text-transform: none;
	}

	.htp-product-accordion > summary::after {
		content: "+";
		display: flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		color: var(--htp-red);
		font-size: 25px;
		font-weight: 400;
		line-height: 1;
	}

	.htp-product-accordion[open] > summary::after {
		content: "−";
	}

	.htp-product-accordion__body {
		padding: 0 14px 14px;
	}

	.htp-product-spec-desc,
	.htp-price-table,
	.htp-price-table--dynamic {
		border: 0;
		border-radius: 0;
		box-shadow: none;
		overflow-x: auto;
	}

	.htp-product-spec-desc th,
	.htp-product-spec-desc td,
	.htp-price-table th,
	.htp-price-table td,
	.htp-price-table--dynamic th,
	.htp-price-table--dynamic td {
		padding: 8px 6px;
		font-size: 16px;
	}

	.htp-price-table th,
	.htp-price-table--dynamic th {
		font-weight: 700;
	}

	.htp-price-table td,
	.htp-price-table--dynamic td {
		font-weight: 400;
	}

	.htp-price-table table,
	.htp-price-table--dynamic table,
	.htp-product-content-compare table,
	.htp-product-content__body table {
		min-width: 620px;
	}

	.htp-product-benefits div {
		grid-template-columns: 28px minmax(0, 1fr);
		padding: 12px;
	}

	.htp-product-benefits svg,
	.htp-product-benefits .htp-icon,
	.htp-product-benefits img {
		width: 28px;
		height: 28px;
	}

	.htp-product-benefits strong {
		font-size: var(--htp-box-font);
	}

	.htp-product-benefits span {
		font-size: var(--htp-box-font);
	}

	.htp-product-industry-grid {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		padding: 0 0 14px;
	}

	.htp-product-industry-card {
		flex: 0 0 86%;
		max-width: 86%;
		scroll-snap-align: start;
	}

	.htp-product-outline-btn {
		float: none;
		width: 100%;
	}

	.htp-order-process {
		grid-template-columns: repeat(5, minmax(136px, 1fr));
		overflow-x: auto;
		gap: 10px;
		padding-bottom: 8px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.htp-order-process div {
		padding: 14px 10px;
		scroll-snap-align: start;
	}

	.htp-order-process div:not(:last-child)::after {
		display: none;
	}

	.htp-product-content--pro {
		padding-top: 0;
		padding-bottom: 0px;
		border-top: 0;
		border-bottom: 0;
	}

	.htp-product-content-head p {
		font-size: var(--htp-box-font);
	}

	.htp-product-content-nav {
		margin-bottom: 16px;
		border-radius: 10px;
	}

	.htp-product-content-nav > summary {
		min-height: 50px;
		padding: 0 14px;
		font-size: 14px;
	}

	.htp-product-content-nav__panel {
		grid-template-columns: 1fr;
		gap: 7px;
		padding: 0 12px 12px;
	}

	.htp-product-content-nav a,
	.htp-product-content-nav__empty {
		font-size: 13px;
	}

	.htp-product-content-nav__link--level-3,
	.htp-product-content-nav__link--level-4 {
		margin-left: 0;
	}

	.htp-product-content-intro {
		grid-template-columns: 1fr;
		padding: 14px;
	}

	.htp-product-content-intro strong {
		font-size: 18px;
	}

	.htp-product-content-intro p,
	.htp-product-content__body p,
	.htp-product-content__body li {
		font-size: var(--htp-box-font);
		line-height: 1.68;
	}

	.htp-product-content-intro img {
		height: auto;
		max-height: 220px;
	}

	.htp-product-content__body {
		font-size: var(--htp-box-font);
		line-height: 1.68;
	}

	.htp-product-content__body h1,
	.htp-product-content__body h2,
	.htp-product-content__body h3,
	.htp-product-content__body h4 {
		margin-top: 28px;
		margin-bottom: 12px;
	}

	.htp-product-content__body h1 {
		font-size: 27px;
	}

	.htp-product-content__body h2 {
		font-size: 22px;
	}

	.htp-product-content__body h3,
	.htp-product-content-compare h3,
	.htp-product-content-commit h3 {
		font-size: 18px;
	}

	.htp-product-content-compare {
		padding: 14px;
		overflow-x: auto;
	}

	.htp-product-content-commit {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.htp-product-content-commit a {
		width: 100%;
	}

	.htp-product-faq {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.htp-product-faq summary {
		font-size: var(--htp-box-font);
	}

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

	.htp-related-product-card__body {
		padding: 12px;
	}

	.htp-related-product-card h3,
	.htp-product-related .woocommerce-loop-product__title,
	.htp-single-product .related.products .woocommerce-loop-product__title {
		font-size: 15px;
	}

	.htp-related-product-card__excerpt {
		font-size: 13px;
		line-height: 1.45;
	}

	.htp-related-product-card__btn,
	.htp-product-related .button,
	.htp-single-product .related.products .button {
		min-height: 42px;
		font-size: 15px;
		letter-spacing: .01em;
		white-space: nowrap;
	}
}

@media (max-width: 480px) {
	.htp-product-container {
		padding-right: 12px;
		padding-left: 12px;
	}

	.htp-product-highlight-grid {
		grid-auto-columns: 38%;
	}

	.htp-product-thumbs button {
		flex-basis: 31%;
	}

	.htp-related-product-grid,
	.htp-product-related .related.products ul.products,
	.htp-single-product .related.products ul.products {
		gap: 10px;
	}

	.htp-related-product-card__btn,
	.htp-product-related .button,
	.htp-single-product .related.products .button {
		font-size: 14px;
	}
}


/* v46: product CTA mobile typography + buy-now button */
.htp-product-actions a,
.htp-product-buy-now {
	font-family: var(--htp-font-heading, "Anton", Arial, sans-serif);
	font-weight: 400;
}

@media (max-width: 767px) {
	.htp-product-actions a,
	.htp-product-buy-now,
	.htp-product-quote,
	.htp-product-quote__title {
		font-size: 16px;
		font-weight: 400;
		line-height: 1.15;
		letter-spacing: .035em;
	}

	.htp-product-quote small {
		font-size: 12px;
		line-height: 1.2;
	}

	.htp-product-actions {
		gap: 10px;
	}

	.htp-product-actions a {
		min-height: 50px;
		padding: 10px 12px;
	}
}
