/**
 * QTech Distribution
 * Single Product Page
 *
 * Premium, minimal and responsive.
 */

/* =========================================================
   PRODUCT PAGE
========================================================= */

.qtech-single-product {
	width: 100%;
	background: #ffffff;
}


/* =========================================================
   PRODUCT HERO
========================================================= */

.qtech-product-hero {
	padding: 100px 30px;
	background: #f7f8fa;
	border-bottom: 1px solid #e8eaec;
}

.qtech-product-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 70px;
	max-width: 1200px;
	margin: 0 auto;
}

.qtech-product-brand {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #2f8f46;
}

.qtech-product-hero h1 {
	margin: 0 0 20px;
	color: #243447;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.12;
}

.qtech-product-short-description {
	max-width: 620px;
	margin-bottom: 32px;
	color: #64748b;
	font-size: 18px;
	line-height: 1.7;
}

.qtech-product-short-description p {
	margin: 0;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.qtech-product-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.qtech-product-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.qtech-product-button:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.qtech-product-button-primary {
	background: #2f8f46;
	border-color: #2f8f46;
	color: #ffffff;
}

.qtech-product-button-primary:hover,
.qtech-product-button-primary:focus {
	background: #26783a;
	border-color: #26783a;
	color: #ffffff;
}

.qtech-product-button-secondary {
	background: transparent;
	border-color: #d5d9dc;
	color: #243447;
}

.qtech-product-button-secondary:hover,
.qtech-product-button-secondary:focus {
	border-color: #2f8f46;
	color: #2f8f46;
}


/* =========================================================
   PRODUCT HERO IMAGE
========================================================= */

.qtech-product-hero-image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 440px;
	padding: 40px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
}

.qtech-product-hero-image img {
	display: block;
	width: 100%;
	max-width: 500px;
	height: auto;
	max-height: 420px;
	object-fit: contain;
}

.qtech-product-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 300px;
	padding: 30px;
	background: #f1f3f5;
	color: #64748b;
	font-size: 20px;
	text-align: center;
}


/* =========================================================
   PRODUCT OVERVIEW
========================================================= */

.qtech-product-overview {
	padding: 100px 30px;
	background: #ffffff;
}

.qtech-product-overview-inner {
	display: grid;
	grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
	gap: 80px;
	max-width: 1100px;
	margin: 0 auto;
}

.qtech-product-overview-heading span {
	display: inline-block;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #2f8f46;
}

.qtech-product-overview-heading h2 {
	margin: 0;
	color: #243447;
	font-size: 38px;
	line-height: 1.2;
}

.qtech-product-overview-content {
	color: #52606d;
	font-size: 17px;
	line-height: 1.8;
}

.qtech-product-overview-content > *:first-child {
	margin-top: 0;
}

.qtech-product-overview-content > *:last-child {
	margin-bottom: 0;
}

.qtech-product-overview-content h2,
.qtech-product-overview-content h3,
.qtech-product-overview-content h4 {
	margin-top: 30px;
	color: #243447;
}

.qtech-product-overview-content a {
	color: #2f8f46;
}

.qtech-product-overview-content ul,
.qtech-product-overview-content ol {
	padding-left: 22px;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.qtech-product-button:focus-visible {
	outline: 3px solid rgba(47, 143, 70, 0.35);
	outline-offset: 3px;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1024px) {

	.qtech-product-hero {
		padding: 80px 30px;
	}

	.qtech-product-hero-inner {
		gap: 45px;
	}

	.qtech-product-hero h1 {
		font-size: 44px;
	}

	.qtech-product-overview-inner {
		gap: 50px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 767px) {

	.qtech-product-hero {
		padding: 65px 20px;
	}

	.qtech-product-hero-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.qtech-product-hero-content {
		order: 1;
	}

	.qtech-product-hero-image {
		order: 2;
		min-height: 300px;
		padding: 25px;
	}

	.qtech-product-hero h1 {
		font-size: 36px;
	}

	.qtech-product-short-description {
		font-size: 16px;
	}

	.qtech-product-hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.qtech-product-button {
		width: 100%;
	}

	.qtech-product-overview {
		padding: 70px 20px;
	}

	.qtech-product-overview-inner {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.qtech-product-overview-heading h2 {
		font-size: 32px;
	}

}

/* ========================================
   PRODUCT OVERVIEW
======================================== */

.qtech-product-overview {
	padding: 100px 30px;
	background: #ffffff;
}

.qtech-product-overview-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.qtech-product-overview-heading {
	max-width: 800px;
	margin-bottom: 50px;
}

.qtech-product-overview-heading span {
	display: block;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	color: #3b8748;
}

.qtech-product-overview-heading h2 {
	margin: 0;
	font-size: 46px;
	line-height: 1.15;
	font-weight: 700;
	color: #26364a;
}

.qtech-product-overview-content {
	max-width: 900px;
	font-size: 18px;
	line-height: 1.8;
	color: #5d6b7a;
}

.qtech-product-overview-content h1,
.qtech-product-overview-content h2,
.qtech-product-overview-content h3,
.qtech-product-overview-content h4 {
	margin-top: 45px;
	margin-bottom: 18px;
	color: #26364a;
	line-height: 1.3;
}

.qtech-product-overview-content h2 {
	font-size: 32px;
}

.qtech-product-overview-content h3 {
	font-size: 25px;
}

.qtech-product-overview-content p {
	margin-bottom: 24px;
}

.qtech-product-overview-content ul,
.qtech-product-overview-content ol {
	margin: 25px 0 30px 25px;
	padding-left: 20px;
}

.qtech-product-overview-content li {
	margin-bottom: 10px;
}

/* Tablet */
@media screen and (max-width: 1024px) {

	.qtech-product-overview {
		padding: 80px 25px;
	}

	.qtech-product-overview-heading h2 {
		font-size: 40px;
	}

}

/* Mobile */
@media screen and (max-width: 768px) {

	.qtech-product-overview {
		padding: 65px 20px;
	}

	.qtech-product-overview-heading {
		margin-bottom: 35px;
	}

	.qtech-product-overview-heading h2 {
		font-size: 34px;
	}

	.qtech-product-overview-content {
		font-size: 16px;
		line-height: 1.75;
	}

	.qtech-product-overview-content h2 {
		font-size: 27px;
	}

	.qtech-product-overview-content h3 {
		font-size: 22px;
	}

}

/* =========================================================
   TECHNICAL SPECIFICATIONS
========================================================= */

.qtech-product-specifications {
	padding: 100px 30px;
	background: #f7f8fa;
	border-top: 1px solid #e8eaec;
}

.qtech-product-specifications-inner {
	max-width: 1200px;
	margin: 0 auto;
}


/* SECTION HEADING */

.qtech-product-specifications-heading {
	max-width: 750px;
	margin-bottom: 55px;
}

.qtech-product-specifications-heading span {
	display: inline-block;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #2f8f46;
}

.qtech-product-specifications-heading h2 {
	margin: 0 0 15px;
	color: #243447;
	font-size: 46px;
	line-height: 1.15;
}

.qtech-product-specifications-heading p {
	margin: 0;
	color: #64748b;
	font-size: 17px;
	line-height: 1.7;
}


/* SPECIFICATION CONTENT */

.qtech-product-specifications-content {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 40px;
	align-items: start;
}


/* CATEGORY / SECTION HEADINGS */

.qtech-product-spec-section {
	grid-column: 1 / -1;
	margin: 55px 0 0;
	padding: 18px 22px;
	background: #243447;
	border-radius: 4px 4px 0 0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.3;
}

.qtech-product-spec-section:first-child {
	margin-top: 0;
}


/* SPECIFICATION ROW */

.qtech-product-spec-row {
	display: grid;
	grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.4fr);
	grid-column: 1 / -1;
	border-bottom: 1px solid #e1e5e8;
	background: #ffffff;
}

.qtech-product-spec-name,
.qtech-product-spec-value {
	padding: 18px 22px;
	font-size: 15px;
	line-height: 1.6;
}

.qtech-product-spec-name {
	border-right: 1px solid #e1e5e8;
	color: #243447;
	font-weight: 600;
}

.qtech-product-spec-value {
	color: #64748b;
}


/* LAST ROW BEFORE NEXT SECTION */

.qtech-product-spec-row:last-child {
	border-bottom: 0;
}


/* TABLET */

@media screen and (max-width: 1024px) {

	.qtech-product-specifications {
		padding: 80px 25px;
	}

	.qtech-product-specifications-heading h2 {
		font-size: 40px;
	}

}


/* MOBILE */

@media screen and (max-width: 767px) {

	.qtech-product-specifications {
		padding: 65px 20px;
	}

	.qtech-product-specifications-heading {
		margin-bottom: 40px;
	}

	.qtech-product-specifications-heading h2 {
		font-size: 34px;
	}

	.qtech-product-spec-section {
		margin-top: 40px;
		padding: 15px 18px;
		font-size: 16px;
	}

	.qtech-product-spec-row {
		grid-template-columns: 1fr;
	}

	.qtech-product-spec-name {
		padding: 15px 18px 5px;
		border-right: 0;
		border-bottom: 0;
	}

	.qtech-product-spec-value {
		padding: 5px 18px 15px;
	}

}
/* =========================================================
   PRODUCT DOWNLOADS
========================================================= */

.qtech-product-downloads {
	padding: 100px 30px;
	background: #ffffff;
	border-top: 1px solid #e8eaec;
}

.qtech-product-downloads-inner {
	max-width: 1200px;
	margin: 0 auto;
}


/* SECTION HEADING */

.qtech-product-downloads-heading {
	max-width: 750px;
	margin-bottom: 55px;
}

.qtech-product-downloads-heading span {
	display: inline-block;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #2f8f46;
}

.qtech-product-downloads-heading h2 {
	margin: 0 0 15px;
	color: #243447;
	font-size: 46px;
	line-height: 1.15;
}

.qtech-product-downloads-heading p {
	margin: 0;
	color: #64748b;
	font-size: 17px;
	line-height: 1.7;
}


/* DOWNLOAD GRID */

.qtech-product-downloads-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}


/* DOWNLOAD CARD */

.qtech-product-download-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 24px;
	background: #f7f8fa;
	border: 1px solid #e4e7eb;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.25s ease;
}

.qtech-product-download-card:hover {
	background: #ffffff;
	border-color: #2f8f46;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


/* ICON */

.qtech-product-download-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	background: #243447;
	border-radius: 50%;
	color: #ffffff;
	font-size: 24px;
	font-weight: 400;
}


/* DOCUMENT INFO */

.qtech-product-download-info {
	flex: 1;
	min-width: 0;
}

.qtech-product-download-label {
	display: block;
	margin-bottom: 5px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: #2f8f46;
}

.qtech-product-download-info h3 {
	margin: 0;
	color: #243447;
	font-size: 19px;
	line-height: 1.4;
}


/* ARROW */

.qtech-product-download-arrow {
	font-size: 24px;
	color: #2f8f46;
	transition: transform 0.25s ease;
}

.qtech-product-download-card:hover
.qtech-product-download-arrow {
	transform: translateX(4px);
}


/* TABLET */

@media screen and (max-width: 1024px) {

	.qtech-product-downloads {
		padding: 80px 25px;
	}

	.qtech-product-downloads-heading h2 {
		font-size: 40px;
	}

}


/* MOBILE */

@media screen and (max-width: 767px) {

	.qtech-product-downloads {
		padding: 65px 20px;
	}

	.qtech-product-downloads-heading {
		margin-bottom: 40px;
	}

	.qtech-product-downloads-heading h2 {
		font-size: 34px;
	}

	.qtech-product-downloads-grid {
		grid-template-columns: 1fr;
	}

	.qtech-product-download-card {
		padding: 20px;
	}

	.qtech-product-download-info h3 {
		font-size: 17px;
	}

}