/**
 * HyperQuest v1 - Single Product Page Styles
 * Complete single-page responsive design with standard Solera color system
 */

/* =============================
   HyperQuest Shared Header & Footer Styles
   Used by both main-store and product-pages
   ============================= */
@import '../_shared.css';

/* Gradient Text Styling */
.hyperquest-v1-description h2,
.hyperquest-v1-how-it-works h2,
.hyperquest-v1-capabilities h2,
.hyperquest-v1-benefits h2,
.hyperquest-v1-video h2 {
	background: linear-gradient(135deg, var(--solera-blue) 0%, var(--solera-jacarta) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ===== HERO SECTION ===== */
.hyperquest-v1-hero {	
	background-position: center;
	background-size: cover;
    background-color: rgba(0, 0, 0, 0.1);	
	background-blend-mode: overlay;
	color: var(--solera-white);
	padding: 64px 96px;
	display: flex;
	align-items: center;
}

.hyperquest-v1-hero-content {
	max-width: 60%;
}

.hyperquest-v1-hero-title {
	font-size: 40px;
	font-weight: 600;
	margin: 0 0 16px 0;
	line-height: 1.2;
	color: var(--solera-white);
}

.hyperquest-v1-hero-tagline {
	font-size: 22px;
	color: var(--solera-sun);
	margin: 0 0 16px 0;
	font-weight: 500;
}

.hyperquest-v1-hero-intro {
	font-size: 18px;
	line-height: 1.6;
	margin: 0 0 24px 0;
	opacity: 0.95;
}

.hyperquest-v1-hero-price {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 16px 0;
	padding: 20px 0px 0px 0px;
	text-align: center;
}

.hyperquest-v1-period {
	font-size: 16px;
	opacity: 0.9;
}

.hyperquest-v1-hero-subtitle {
	font-size: 16px;
	margin: 0 0 24px 0;
	opacity: 0.85;
	font-weight: 400;
	text-align: center;
}

.hyperquest-v1-hero-image {
	flex: 1;
	max-width: 350px;
	aspect-ratio: 4 / 3;
}

.hyperquest-v1-hero-image svg {
	width: 100%;
	height: 100%;
}

.hyperquest-v1-btn-cart {
	margin-top: 16px;
	min-width: 200px;
	background: var(--solera-sun) !important;
	color: var(--solera-jacarta) !important;
	font-weight: 600;
	padding: 12px 32px !important;
}

.hyperquest-v1-btn-cart:hover {
	opacity: 0.9 !important;
	box-shadow: 0 4px 12px rgba(254, 176, 50, 0.3);
}

/* Hero Responsive */
@media (max-width: 1199px) {
	.hyperquest-v1-hero {
		flex-direction: column;
		text-align: center;
		padding: 50px 40px;
		gap: 32px;
	}
	
	.hyperquest-v1-hero-content,
	.hyperquest-v1-hero-image {
		flex: 1;
		max-width: 100%;
	}
	
	.hyperquest-v1-hero-title {
		font-size: 32px;
	}
	
	.hyperquest-v1-hero-tagline {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.hyperquest-v1-hero {
		padding: 40px 20px;
	}
	
	.hyperquest-v1-hero-image {
		display: none;
	}
	
	.hyperquest-v1-hero-title {
		font-size: 28px;
	}
	
	.hyperquest-v1-hero-tagline {
		font-size: 16px;
	}
	
	.hyperquest-v1-hero-intro {
		font-size: 14px;
	}
	
	.hyperquest-v1-hero-price {
		font-size: 24px;
	}
}

/* ===== DESCRIPTION SECTION ===== */
.hyperquest-v1-description {
	padding: 60px 20px;
	background: var(--solera-white);
}

.hyperquest-v1-description h2 {
	font-size: 36px;
	margin-bottom: 50px;
}

.hyperquest-v1-description p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--solera-shark);
	margin-left: 40px;
}

@media (max-width: 768px) {
	.hyperquest-v1-description {
		padding: 40px 15px;
	}
	
	.hyperquest-v1-description h2 {
		font-size: 26px;
	}
	
	.hyperquest-v1-description p {
		font-size: 14px;
	}
}

/* ===== HOW IT WORKS SECTION ===== */
.hyperquest-v1-how-it-works {
	padding: 60px 20px;
	background: var(--solera-smoke);
}

.hyperquest-v1-how-it-works h2 {
	font-size: 36px;
	margin-bottom: 50px;
	margin-right: 40px;
	text-align: center;
}

.hyperquest-v1-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	max-width: 1200px;
	margin: 0 auto;
}

.hyperquest-v1-step {
	background: var(--solera-white);
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hyperquest-v1-step:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hyperquest-v1-step:nth-child(4),
.hyperquest-v1-step:nth-child(5) {
	grid-column: auto;
}

.hyperquest-v1-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--solera-blue);
	color: var(--solera-white);
	border-radius: 50%;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
}

.hyperquest-v1-step h3 {
	color: var(--solera-jacarta);
	font-size: 18px;
	margin: 15px 0 10px 0;
}

.hyperquest-v1-step p {
	color: var(--solera-shark);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 1199px) {
	.hyperquest-v1-steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.hyperquest-v1-step:nth-child(5) {
		grid-column: 1;
	}
}

@media (max-width: 768px) {
	.hyperquest-v1-how-it-works {
		padding: 40px 15px;
	}
	
	.hyperquest-v1-how-it-works h2 {
		font-size: 26px;
		margin-bottom: 30px;
	}
	
	.hyperquest-v1-steps-grid {
		grid-template-columns: 1fr;
	}
	
	.hyperquest-v1-step {
		padding: 20px;
	}
}

/* ===== VIDEO SECTION ===== */
.hyperquest-v1-video {
	padding: 60px 20px;
	background: var(--solera-white);
}

.hyperquest-v1-video h2 {
	font-size: 28px;
	margin-bottom: 30px;
	text-align: center;
}

.hyperquest-v1-video-placeholder {
	max-width: 1200px;
	min-width: 750px;
	margin: 0 auto;
	background: #e0e7ff;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.hyperquest-v1-video-placeholder svg,
.hyperquest-v1-video-placeholder iframe {
	width: 100%;
	height: 100%;
	border: none;
}

@media (max-width: 768px) {
	.hyperquest-v1-video {
		padding: 40px 15px;
	}
	
	.hyperquest-v1-video h2 {
		font-size: 26px;
	}
	
	.hyperquest-v1-video-placeholder {
		min-width: auto;
	}
}

/* ===== CAPABILITIES SECTION ===== */
.hyperquest-v1-capabilities {
	padding: 60px 20px;
	background: var(--solera-smoke);
}

.hyperquest-v1-capabilities h2 {
	font-size: 36px;
	margin-bottom: 50px;
	margin-right: 40px;
	text-align: center;
}

.hyperquest-v1-capabilities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin: 0 auto;
}

.hyperquest-v1-capability {
	background: var(--solera-white);
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-top: 3px solid transparent;
}

.hyperquest-v1-capability:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	border-top: 3px solid var(--solera-blue);
}

.hyperquest-v1-capability h3 {
	color: var(--solera-jacarta);
	font-size: 18px;
	margin: 0 0 10px 0;
	font-weight: 600;
}

.hyperquest-v1-capability p {
	color: var(--solera-shark);
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 768px) {
	.hyperquest-v1-capabilities {
		padding: 40px 15px;
	}
	
	.hyperquest-v1-capabilities h2 {
		font-size: 26px;
	}
	
	.hyperquest-v1-capabilities-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 15px;
	}
	
	.hyperquest-v1-capability {
		padding: 15px;
	}
}

/* ===== BENEFITS SECTION ===== */
.hyperquest-v1-benefits {
	padding: 60px 20px;
	background: var(--solera-white);
}

.hyperquest-v1-benefits h2 {
	font-size: 36px;
	margin-bottom: 50px;
	margin-right: 40px;
	text-align: center;
}

.hyperquest-v1-benefits-list {
	max-width: 900px;
	margin: 0 auto;
}

.hyperquest-v1-benefit {
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
	align-items: flex-start;
}

.hyperquest-v1-benefit-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	min-width: 60px;
	background: var(--solera-blue);
	color: var(--solera-white);
	border-radius: 50%;
	font-size: 28px;
	font-weight: 700;
	flex-shrink: 0;
}

.hyperquest-v1-benefit-content h3 {
	color: var(--solera-jacarta);
	font-size: 18px;
	margin: 0 0 10px 0;
}

.hyperquest-v1-benefit-content p {
	color: var(--solera-shark);
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

@media (max-width: 768px) {
	.hyperquest-v1-benefits {
		padding: 40px 15px;
	}
	
	.hyperquest-v1-benefits h2 {
		font-size: 26px;
	}
	
	.hyperquest-v1-benefit {
		flex-direction: column;
		gap: 15px;
	}
	
	.hyperquest-v1-benefit-number {
		width: 50px;
		height: 50px;
		min-width: 50px;
		font-size: 24px;
		margin: 0 auto;
	}
	
	.hyperquest-v1-benefit-content {
		text-align: center;
	}
}

/* ===== RELATED PRODUCTS SECTION ===== */
.hyperquest-v1-related-products {
	padding: 60px 20px;
	background: linear-gradient(135deg, var(--solera-jacarta) 0%, var(--solera-jacarta) 65%, var(--solera-blue) 100%);
	color: var(--solera-white);
}

.hyperquest-v1-related-products h2 {
	font-size: 30px;
	margin-bottom: 50px;
	margin-right: 20px;
	text-align: center;
	color: var(--solera-white);
}

.hyperquest-v1-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	max-width: 1200px;
	margin: 0 auto;
}

.hyperquest-v1-related-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 30px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.hyperquest-v1-related-card:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

.hyperquest-v1-related-card h3 {
	font-size: 18px;
	margin: 0 0 10px 0;
	color: var(--solera-white);
}

.hyperquest-v1-related-card p {
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 20px 0;
	color: rgba(255, 255, 255, 0.9);
}

.hyperquest-v1-related-card .btn {
	width: 100%;
}

@media (max-width: 768px) {
	.hyperquest-v1-related-products {
		padding: 40px 15px;
	}
	
	.hyperquest-v1-related-products h2 {
		font-size: 26px;
	}
}

/* ===== FOOTER CTA SECTION ===== */
.hyperquest-v1-footer-cta {
	background: linear-gradient(135deg, var(--solera-sun) 0%, #d99b1a 100%);
	color: var(--solera-white);
	padding: 60px 20px;
}

.hyperquest-v1-footer-cta h2 {
	font-size: 36px;
	margin: 0 40px 20px 0;
	color: var(--solera-white);
}

.hyperquest-v1-footer-cta p {
	font-size: 16px;
	margin: 0 0 40px 0;
	opacity: 0.95;
	padding-right: 1%;
}

.hyperquest-v1-btn-footer-cart {
	min-width: 300px;
	padding: 16px 40px !important;
	background: linear-gradient(135deg, var(--solera-jacarta) 0%, var(--solera-jacarta) 65%, var(--solera-blue) 100%);
	color: var(--solera-white) !important;
	font-weight: 700 !important;
	font-size: 30px !important;
	border-radius: 15px !important;
	display: inline-block;
}

.hyperquest-v1-btn-footer-cart:hover {
	background: #f0f0f0 !important;
	color: var(--solera-jacarta) !important;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 768px) {
	.hyperquest-v1-footer-cta {
		padding: 40px 15px;
		text-align: center;
	}
	
	.hyperquest-v1-footer-cta h2 {
		font-size: 26px;
	}
	
	.hyperquest-v1-footer-cta p {
		font-size: 14px;
		padding-right: 0;
	}
	
	.hyperquest-v1-btn-footer-cart {
		min-width: 100%;
	}
}

/* ===== HEADER & FOOTER STYLES ===== */

/* .hyperquest-v1-header-content {
	display: flex;
	align-items: center;
	height: 70px;
} */