/* =========================================================
   Construction Quality Lab Theme CSS
   Organized Version
   ========================================================= */

/* =========================================================
   1. CSS Variables
   ========================================================= */
:root {
	--cql-navy: #0F2744;
	--cql-navy-2: #132F52;
	--cql-gold: #D4A017;
	--cql-gold-2: #F5C542;
	--cql-green: #169A4A;
	--cql-ink: #182033;
	--cql-muted: #667085;
	--cql-line: #e5eaf0;
	--cql-bg: #f7f8fb;
	--cql-white: #fff;
	--cql-radius: 24px;
	--cql-shadow: 0 18px 50px rgba(15, 39, 68, 0.10);
}


/* =========================================================
   2. Global Reset & Base Styles
   ========================================================= */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: var(--cql-bg);
	color: var(--cql-ink);
	line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.12;
	margin: 0 0 16px;
	color: var(--cql-navy);
}

p {
	margin: 0 0 18px;
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: min(1180px, 92vw);
	margin-inline: auto;
}

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


/* =========================================================
   3. Header & Navigation
   ========================================================= */
.cql-header {
	position: sticky;
	top: 0;
	z-index: 99;
	background: rgba(15, 39, 68, 0.96) !important; 
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.cql-nav {
	min-height: 78px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 26px;
}

.cql-brand img,
.cql-brand svg,
.custom-logo-link img {
	width: 250px;
	height: auto;
	display: block;
}

.cql-menu {
	display: flex;
	align-items: center;
	gap: 24px;
}

.cql-menu ul {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cql-menu a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
}

.cql-menu a:hover,
.cql-menu .current-menu-item > a {
	color: #fff;
}

.cql-menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 32px;
	cursor: pointer;
}


/* =========================================================
   4. Buttons
   ========================================================= */
.cql-btn,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	border-radius: 999px;
	padding: 13px 20px;
	background: linear-gradient(135deg, var(--cql-gold), var(--cql-gold-2));
	color: var(--cql-navy) !important;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 14px 28px rgba(212, 160, 23, 0.25);
}

.cql-btn.outline {
	background: #fff;
	color: var(--cql-navy) !important;
	border: 1px solid var(--cql-line);
	box-shadow: none;
}

.cql-btn.outline-light {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.65);
	color: #ffffff !important;
	box-shadow: none;
}

.cql-btn.outline-light:hover {
	background: rgba(255, 255, 255, 0.14);
}

.cql-btn.small {
	padding: 10px 14px;
	font-size: 14px;
}


/* =========================================================
   5. Main Hero Section
   ========================================================= */
.cql-hero {
	min-height: 600px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(
			90deg,
			rgba(15, 39, 68, 0.96) 0%,
			rgba(15, 39, 68, 0.88) 42%,
			rgba(15, 39, 68, 0.72) 100%
		),
		url("https://constructionqualitylab.com/wp-content/uploads/2026/05/cql-construction-quality-photos-00001.jpg");
	background-size: cover;
	background-position: left;
	overflow: hidden;
	box-shadow: 0 18px 35px rgba(15, 39, 68, 0.25);
	z-index: 3;

}

.cql-hero.has-featured-image {
	background-size: cover;
	background-position: center;
}

.cql-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 44px 44px;
	opacity: 0.45;
}

.cql-hero-inner {
	position: relative;
	z-index: 1;
	color: #fff;
	padding: 92px 0;
}

.cql-eyebrow {
	display: inline-block;
	color: var(--cql-gold-2);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.10em;
	font-size: 13px;
	margin-bottom: 18px;
}

.cql-hero h1 {
	color: #fff;
	font-size: clamp(36px, 7vw, 62px);
	max-width: 1000px;
}

.cql-hero p {
	color: rgba(255, 255, 255, 0.84);
	font-size: 20px;
	max-width: 760px;
}

.cql-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.cql-hero-title {
	color: #ffffff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 6.2vw, 72px);
	line-height: 1.08;
	font-weight: 800;
	max-width: 1120px;
	margin-bottom: 34px;
}

.cql-hero-title .title-white {
	color: #ffffff;
}

.cql-hero-title .title-gold {
	color: #D4A017;
}

.cql-hero-title .title-dash {
	color: #ffffff;
	margin: 0 18px;
}

.cql-hero p {
	max-width: 850px;
	font-size: 20px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

/* =========================================================
   6. Blueprint Hero Section
   ========================================================= */
.cql-hero-blueprint {
	min-height: 720px;
	position: relative;
	display: flex;
	align-items: center;
	background:
		linear-gradient(
			90deg,
			rgba(15, 39, 68, 0.96) 0%,
			rgba(15, 39, 68, 0.88) 42%,
			rgba(15, 39, 68, 0.72) 100%
		),
		url("https://constructionqualitylab.com/wp-content/uploads/2026/05/cql-construction-quality-photos-00008.jpg");
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.cql-hero-blueprint::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 44px 44px;
	opacity: 0.55;
	pointer-events: none;
}

.cql-hero-blueprint::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 22% 38%,
		rgba(212, 160, 23, 0.14),
		transparent 32%
	);
	pointer-events: none;
}

.cql-hero-blueprint .cql-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	padding-top: 90px;
	padding-bottom: 70px;
}

.cql-hero-badge {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(212, 160, 23, 0.75);
	background: rgba(212, 160, 23, 0.10);
	color: #F5C542;
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.04em;
	margin-bottom: 30px;
}

.cql-hero-blueprint h1 {
	color: #ffffff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(48px, 5.8vw, 76px);
	line-height: 1.08;
	font-weight: 800;
	margin-bottom: 26px;
}

.cql-hero-blueprint h1 span {
	color: #D4A017;
}

.cql-hero-blueprint p {
	color: rgba(255, 255, 255, 0.88);
	font-size: 19px;
	line-height: 1.75;
	max-width: 660px;
	margin-bottom: 32px;
}

.cql-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 70px;
}

.cql-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
	max-width: 700px;
	margin-top: 90px;
}

.cql-hero-stats strong {
	display: block;
	color: #F5C542;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	line-height: 1;
	margin-bottom: 6px;
}

.cql-hero-stats span {
	display: block;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
}


/* =========================================================
   7. Sections & Layouts
   ========================================================= */
.cql-section {
	padding: 86px 0;
}

.cql-section-title {
	max-width: 820px;
	margin-bottom: 40px;
}

.cql-section-title h2 {
	font-size: clamp(34px, 4vw, 54px);
}

.cql-section-title p {
	font-size: 18px;
	color: var(--cql-muted);
}

.cql-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.cql-split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 44px;
	align-items: center;
}


/* =========================================================
   8. Cards, Features & Panels
   ========================================================= */
.cql-card,
.cql-feature,
.cql-panel {
	background: #fff;
	border: 1px solid var(--cql-line);
	border-radius: var(--cql-radius);
	box-shadow: var(--cql-shadow);
	overflow: hidden;
}

.cql-card-body,
.cql-feature,
.cql-panel {
	padding: 26px;
}

.cql-card-image {
	aspect-ratio: 16 / 10;
	background:
		linear-gradient(135deg, rgba(15, 39, 68, 0.88), rgba(15, 39, 68, 0.72)),
		radial-gradient(circle at 30% 30%, rgba(245, 197, 66, 0.22), transparent 25%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.76);
}

.cql-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cql-category {
	display: inline-block;
	background: rgba(212, 160, 23, 0.14);
	border: 1px solid rgba(212, 160, 23, 0.28);
	color: var(--cql-navy);
	border-radius: 999px;
	padding: 6px 11px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 12px;
}

.cql-card h3,
.cql-feature h3 {
	font-size: 24px;
}

.cql-card p,
.cql-feature p {
	color: var(--cql-muted);
}

.cql-meta {
	color: #778195;
	font-size: 13px;
	font-weight: 700;
}

.cql-read-more {
	display: inline-flex;
	color: var(--cql-navy);
	font-weight: 900;
	border-bottom: 2px solid var(--cql-gold);
	text-decoration: none;
	margin-top: 12px;
}

.cql-panel ul {
	margin: 0;
	padding-left: 20px;
	color: var(--cql-muted);
}

.cql-panel li {
	margin: 10px 0;
}


/* =========================================================
   9. Page Hero & Article Content
   ========================================================= */
.cql-page-hero {
	background: linear-gradient(135deg, var(--cql-navy), var(--cql-navy-2));
	color: #fff;
	padding: 76px 0 56px;
}

.cql-page-hero h1 {
	color: #fff;
	font-size: clamp(38px, 5vw, 66px);
}

.cql-page-hero p {
	color: rgba(255, 255, 255, 0.82);
	max-width: 820px;
	font-size: 19px;
}

.cql-content {
	padding: 64px 0 86px;
}

.cql-article {
	width: min(900px, 92vw);
	margin-inline: auto;
}

.cql-article-cover {
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(15, 39, 68, 0.16);
	margin: 0 0 40px;
}

.cql-article-cover img {
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: cover;
}

.cql-article-body {
	background: #fff;
	border: 1px solid var(--cql-line);
	border-radius: 28px;
	padding: clamp(26px, 4vw, 46px);
	box-shadow: var(--cql-shadow);
}

.cql-article-body p,
.cql-article-body li {
	font-size: 18px;
	color: #394153;
}

.cql-article-body h2 {
	font-size: 34px;
	margin-top: 34px;
}

.cql-pagination {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 34px;
}


/* =========================================================
   10. Forms & Notices
   ========================================================= */
.cql-contact-form {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.cql-contact-form input,
.cql-contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	border-radius: 14px;
	border: 1px solid var(--cql-line);
	background: #fff;
}

.cql-notice {
	background: #fff7df;
	border: 1px solid #f7d36c;
	color: #5c4300;
	border-radius: 18px;
	padding: 16px;
	font-weight: 700;
}

.cql-success {
	background: #e8f8ee;
	border: 1px solid #bde7ca;
	color: #14532d;
	border-radius: 18px;
	padding: 16px;
	font-weight: 700;
}


/* =========================================================
   11. Footer
   ========================================================= */
.cql-footer {
	background: var(--cql-navy);
	color: rgba(255, 255, 255, 0.74);
	padding: 50px 0;
}

.cql-footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.cql-footer-logo img {
	width: 230px;
	height: auto;
}

.cql-footer a {
	color: #fff;
}

.cql-footer-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.cql-footer-menu a {
	color: rgba(255, 255, 255, 0.76);
	text-decoration: none;
}


/* =========================================================
   12. WooCommerce
   ========================================================= */
.woocommerce .site-main,
.woocommerce-page .site-main {
	width: min(1180px, 92vw);
	margin: 60px auto 90px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: #fff;
	border: 1px solid var(--cql-line);
	border-radius: 20px;
	padding: 18px !important;
	box-shadow: var(--cql-shadow);
}


/* =========================================================
   13. Responsive Styles
   ========================================================= */
@media (max-width: 960px) {
	.cql-grid-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cql-split {
		grid-template-columns: 1fr;
	}

	.cql-menu-toggle {
		display: block;
	}

	.cql-menu {
		display: none;
		position: absolute;
		top: 78px;
		left: 0;
		right: 0;
		background: var(--cql-navy);
		padding: 20px 4vw;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.cql-nav.is-open .cql-menu {
		display: block;
	}

	.cql-menu ul {
		display: grid;
		gap: 16px;
	}
}

@media (max-width: 768px) {
	.cql-hero-blueprint {
		min-height: auto;
		background-position: center;
	}

	.cql-hero-blueprint .cql-hero-inner {
		padding-top: 70px;
		padding-bottom: 60px;
	}

	.cql-hero-actions {
		margin-bottom: 46px;
	}

	.cql-hero-stats {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 60px;
	}
}

@media (max-width: 640px) {
	.cql-grid-3 {
		grid-template-columns: 1fr;
	}

	.cql-brand img,
	.cql-brand svg,
	.custom-logo-link img {
		width: 210px;
	}

	.cql-hero {
		min-height: 560px;
	}

	.cql-footer-row {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* =========================================================
   Desktop Proportion Adjustment - Match 85% Browser Zoom Feel
   ========================================================= */

@media (min-width: 1024px) {

	.cql-nav {
		min-height: 90px;
	}

	.cql-brand img,
	.cql-brand svg,
	.custom-logo-link img {
		width: 220px;
	}

	.cql-menu ul {
		gap: 22px;
	}

	.cql-menu a {
		font-size: 16px;
	}


	/* Hero section height and spacing */
	.cql-hero {
		min-height: 610px;
	}

	.cql-hero-inner {
		padding-top: 72px;
		padding-bottom: 62px;
		max-width: 860px;
	}


	/* Hero badge */
	.cql-hero-badge {
		font-size: 12px;
		padding: 7px 15px;
		margin-bottom: 28px;
	}


	/* Hero title */
	.cql-hero-title {
		font-size: clamp(44px, 4.9vw, 68px);
		line-height: 1.08;
		max-width: 1050px;
		margin-bottom: 28px;
	}

	.cql-hero-title .title-dash {
		margin: 0 16px;
	}


	/* Hero paragraph */
	.cql-hero p {
		font-size: 17px;
		line-height: 1.65;
		max-width: 760px;
		margin-bottom: 28px;
	}


	/* Hero buttons */
	.cql-actions {
		gap: 14px;
		margin-top: 24px;
		margin-bottom: 54px;
	}

	.cql-btn,
	.wp-block-button__link,
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button {
		font-size: 14px;
		padding: 12px 20px;
	}


	/* Hero statistics */
	.cql-hero-stats {
		margin-top: 54px;
		gap: 80px;
		max-width: 720px;
	}

	.cql-hero-stats strong {
		font-size: 31px;
		line-height: 1;
	}

	.cql-hero-stats span {
		font-size: 13px;
	}


	/* Next section */
	.cql-section {
		padding: 68px 0;
	}

	.cql-section-title h2 {
		font-size: clamp(34px, 4vw, 48px);
	}

	.cql-section-title p {
		font-size: 16px;
	}
}

/* =========================================================
   Align Header Logo, Hero Content, and Page Sections
   ========================================================= */

.cql-header .container,
.cql-hero .container,
.cql-section .container {
	width: min(1300px, 90vw);
	max-width: 14000px;
	margin-left: auto;
	margin-right: auto;
}

/* Do not center the hero text inside a smaller box */
.cql-hero-inner {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}

/* Keep the readable text width controlled without moving the whole block */
.cql-hero-title,
.cql-hero p,
.cql-actions,
.cql-hero-stats {
	max-width: 850px;
}
.cql-brand {
	margin-left: 1;
}

/* =========================================================
   Final Footer Alignment Fix
   ========================================================= */

.cql-footer-final {
	background: #0F2744 !important;

	/* Reduced footer height by around 10% and moved content slightly down */
	padding-top: 70px !important;
	padding-bottom: 40px !important;
}

.cql-footer-final .container {
	width: min(1400px, 92vw) !important;
	max-width: 1400px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.cql-footer-final-row {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	align-items: center !important;
	align-items: flex-start !important;
	gap: 40px !important;
	width: 100% !important;
}

.cql-footer-left {
	justify-self: start !important;
	text-align: left !important;
	padding-top: 100px !important;
	color: rgba(212, 175, 55, 0.85) !important;
}

.cql-footer-left p {
	margin: 0 !important;
	margin-bottom: 0 !important;
}

.cql-footer-right {
	justify-self: end !important;
	text-align: right !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-end !important;
	max-width: 700px !important;
}

.cql-footer-right .cql-footer-logo {
	width: 100% !important;
	display: flex !important;
	justify-content: flex-end !important;
	align-items: center !important;
}

.cql-footer-right .cql-footer-logo a,
.cql-footer-right .cql-footer-logo img,
.cql-footer-right .cql-footer-logo svg,
.cql-footer-right .custom-logo-link {
	display: block !important;
	margin-left: auto !important;
	margin-right: 0 !important;
}

.cql-footer-right .cql-footer-logo img,
.cql-footer-right .custom-logo-link img {
	width: 260px !important;
	max-width: 260px !important;
	height: auto !important;
}

.cql-footer-right p {
	margin-top: 14px !important;
	margin-bottom: 0 !important;
	text-align: right !important;
	color: rgba(255, 255, 255, 0.78) !important;
}

/* Mobile */
@media (max-width: 768px) {
	.cql-footer-final-row {
		grid-template-columns: 1fr !important;
	}

	.cql-footer-left,
	.cql-footer-right {
		justify-self: start !important;
		text-align: left !important;
		align-items: flex-start !important;
	}

	.cql-footer-right .cql-footer-logo {
		justify-content: flex-start !important;
	}

	.cql-footer-right .cql-footer-logo a,
	.cql-footer-right .cql-footer-logo img,
	.cql-footer-right .cql-footer-logo svg,
	.cql-footer-right .custom-logo-link {
		margin-left: 0 !important;
		margin-right: auto !important;
	}

	.cql-footer-right p {
		text-align: left !important;
	}
}

/* =========================================================
   Hero Load Animation - Slide Up
   ========================================================= */

@keyframes cqlSlideUp {
	from {
		opacity: 0;
		transform: translateY(35px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Initial animation setup */
.cql-hero-badge,
.cql-hero-title,
.cql-hero p,
.cql-actions,
.cql-hero-stats {
	opacity: 0;
	animation-name: cqlSlideUp;
	animation-duration: 0.85s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

/* Animation sequence */
.cql-hero-badge {
	animation-delay: 0.15s;
}

.cql-hero-title {
	animation-delay: 0.30s;
}

.cql-hero p {
	animation-delay: 0.48s;
}

.cql-actions {
	animation-delay: 0.65s;
}

.cql-hero-stats {
	animation-delay: 0.85s;
}

.cql-counter {
	display: inline-block;
	min-width: 110px;
}

/* Accessibility: disable animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.cql-hero-badge,
	.cql-hero-title,
	.cql-hero p,
	.cql-actions,
	.cql-hero-stats {
		opacity: 1;
		transform: none;
		animation: none;
	}
}

/* =========================================================
   Store Page
   ========================================================= */

.cql-store-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(
			90deg,
			rgba(15, 39, 68, 0.97) 0%,
			rgba(15, 39, 68, 0.90) 50%,
			rgba(15, 39, 68, 0.76) 100%
		),
		radial-gradient(circle at 18% 24%, rgba(212, 160, 23, 0.18), transparent 28%),
		linear-gradient(135deg, #0F2744, #132F52);
	color: #fff;
	padding: 105px 0 95px;
}

.cql-store-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 44px 44px;
	opacity: 0.5;
	pointer-events: none;
}

.cql-store-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 880px;
}

.cql-store-badge,
.cql-store-bundle-badge {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(212, 160, 23, 0.75);
	background: rgba(212, 160, 23, 0.10);
	color: #F5C542;
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.cql-store-hero h1 {
	color: #fff;
	font-size: clamp(42px, 5vw, 72px);
	line-height: 1.08;
	max-width: 960px;
	margin-bottom: 24px;
}

.cql-store-hero p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 19px;
	line-height: 1.75;
	max-width: 820px;
}

.cql-store-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 34px;
}

.cql-store-intro {
	background: #fff;
	padding: 76px 0;
}

.cql-store-intro-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: start;
}

.cql-store-intro h2 {
	font-size: clamp(34px, 4vw, 54px);
}

.cql-store-intro-text p {
	color: var(--cql-muted);
	font-size: 18px;
	line-height: 1.75;
}

.cql-store-products {
	background: #f7f8fb;
	padding: 82px 0;
}

.cql-store-filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 32px;
}

.cql-store-filter-row span {
	font-weight: 900;
	color: var(--cql-navy);
}

.cql-store-filter-row a {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--cql-line);
	background: #fff;
	color: var(--cql-navy);
	padding: 8px 13px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.cql-store-filter-row a:hover {
	background: var(--cql-navy);
	color: #fff;
}

.cql-store-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.cql-store-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--cql-line);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 14px 36px rgba(15, 39, 68, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cql-store-card:hover {
	transform: translateY(-5px);
	border-color: rgba(15, 39, 68, 0.35);
	box-shadow: 0 22px 55px rgba(15, 39, 68, 0.14);
}

.cql-store-card-image {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(15, 39, 68, 0.92), rgba(15, 39, 68, 0.72)),
		radial-gradient(circle at 70% 25%, rgba(212, 160, 23, 0.30), transparent 26%);
	text-decoration: none;
}

.cql-store-card-image-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 900;
	font-size: 18px;
}

.cql-store-label {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--cql-navy);
	color: #fff;
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 11px;
	font-weight: 900;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.cql-store-badge-small {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--cql-navy);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 11px;
	font-weight: 900;
	backdrop-filter: blur(6px);
}

.cql-store-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px;
}

.cql-store-category {
	color: var(--cql-navy);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 900;
	margin-bottom: 10px;
}

.cql-store-card h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 900;
	margin-bottom: 10px;
	color: var(--cql-ink);
}

.cql-store-card h3 a {
	color: inherit;
	text-decoration: none;
}

.cql-store-card p {
	color: var(--cql-muted);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 18px;
}

.cql-store-formats {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: auto;
	margin-bottom: 18px;
}

.cql-store-formats span {
	background: rgba(212, 160, 23, 0.12);
	border: 1px solid rgba(212, 160, 23, 0.25);
	color: #5f4300;
	border-radius: 7px;
	padding: 5px 8px;
	font-size: 11px;
	font-weight: 800;
}

.cql-store-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-top: 16px;
	border-top: 1px solid var(--cql-line);
}

.cql-store-card-footer strong {
	color: var(--cql-ink);
	font-size: 21px;
	font-weight: 900;
}

.cql-store-card-footer a {
	color: var(--cql-navy);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	transition: gap 0.2s ease;
}

.cql-store-card-footer a:hover {
	color: var(--cql-gold);
}

.cql-store-bundle {
	background: #f7f8fb;
	padding: 0 0 90px;
}

.cql-store-bundle-box {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
	background:
		radial-gradient(circle at 10% 20%, rgba(212, 160, 23, 0.20), transparent 30%),
		linear-gradient(135deg, #0F2744, #132F52);
	border-radius: 30px;
	padding: 46px;
	color: #fff;
	box-shadow: 0 24px 70px rgba(15, 39, 68, 0.22);
}

.cql-store-bundle-box h2 {
	color: #fff;
	font-size: clamp(30px, 3.5vw, 46px);
}

.cql-store-bundle-box p {
	color: rgba(255, 255, 255, 0.76);
	max-width: 720px;
	font-size: 17px;
	line-height: 1.7;
}

.cql-store-bundle-action {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 16px;
}

.cql-store-bundle-price {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.cql-store-bundle-price span {
	font-size: 34px;
	font-weight: 900;
	color: #fff;
}

.cql-store-bundle-price del {
	color: rgba(255, 255, 255, 0.48);
	font-size: 20px;
}

@media (max-width: 1180px) {
	.cql-store-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.cql-store-intro-grid,
	.cql-store-bundle-box {
		grid-template-columns: 1fr;
	}

	.cql-store-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cql-store-bundle-action {
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.cql-store-hero {
		padding: 74px 0;
	}

	.cql-store-grid {
		grid-template-columns: 1fr;
	}

	.cql-store-hero h1 {
		font-size: clamp(34px, 11vw, 48px);
	}
}
/* =========================================================
   WooCommerce Connected Store Landing
   ========================================================= */

.cql-store-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 100% 0%, rgba(255,255,255,0.08), transparent 88%),
		radial-gradient(circle at 0% 100%, rgba(255,255,255,0.06), transparent 88%),
		linear-gradient(135deg, #0F2744, #122f52),
		url("https://constructionqualitylab.com/wp-content/uploads/2026/05/cql-construction-quality-photos-00001.jpg");
	background-size: cover;
	color: #fff;
	padding: 118px 0 105px;
}

.cql-store-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
	background-size: 44px 44px;
	opacity: 0.7;
	pointer-events: none;
}

.cql-store-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
}

.cql-store-pill {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(255,255,255,0.20);
	background: rgba(255,255,255,0.12);
	color: #fff;
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 900;
	margin-bottom: 26px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}

.cql-store-hero h1 {
	color: #fff;
	font-size: clamp(44px, 5vw, 72px);
	line-height: 1.05;
	margin-bottom: 22px;
}

.cql-store-hero p {
	color: rgba(255,255,255,0.78);
	font-size: 20px;
	line-height: 1.75;
	max-width: 740px;
}

.cql-store-benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin-top: 34px;
	color: rgba(255,255,255,0.80);
	font-size: 14px;
	font-weight: 800;
}

.cql-store-benefits span::before {
	content: "⌄";
	display: inline-block;
	color: #F5C542;
	margin-right: 8px;
}

.cql-store-filters {
	position: sticky;
	top: 78px;
	z-index: 20;
	background: #fff;
	border-bottom: 1px solid #c8d3e0;
	box-shadow: 0 8px 18px rgba(15,39,68,0.05);
}

.cql-store-filter-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.cql-filter-icon {
	color: #0F2744;
	font-weight: 900;
	font-size: 18px;
}

.cql-store-filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #8FA3BA;
	color: #0F2744;
	border-radius: 999px;
	padding: 9px 18px;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	transition: all 0.2s ease;
}

.cql-store-filter:hover,
.cql-store-filter.is-active {
	background: #0F2744;
	color: #fff;
	box-shadow: 0 8px 18px rgba(15,39,68,0.20);
}

.cql-store-products {
	background: #fff;
	padding: 72px 0 70px;
}

.cql-store-count {
	font-size: 15px;
	color: #0F2744;
	margin-bottom: 34px;
}

.cql-store-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
}

.cql-store-product-card {
	background: #fff;
	border: 1px solid #b6c8da;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 6px 18px rgba(15,39,68,0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cql-store-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 40px rgba(15,39,68,0.14);
}

.cql-store-product-image {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9.25;
	overflow: hidden;
	background: #0F2744;
}

.cql-store-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.cql-store-product-card:hover .cql-store-product-image img {
	transform: scale(1.04);
}

.cql-store-image-placeholder {
	height: 100%;
	display: grid;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(15,39,68,0.96), rgba(15,39,68,0.78)),
		radial-gradient(circle at 70% 25%, rgba(212,160,23,0.25), transparent 30%);
	color: #fff;
	font-weight: 900;
	text-align: center;
	padding: 20px;
}

.cql-store-card-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	z-index: 2;
}

.cql-card-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 900;
	color: #fff;
	box-shadow: 0 8px 16px rgba(0,0,0,0.18);
}

.cql-card-badge.dark {
	background: #0F2744;
}

.cql-card-badge.green {
	background: #16A34A;
}

.cql-card-iso {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	background: rgba(255,255,255,0.92);
	color: #0F2744;
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 900;
	box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.cql-store-product-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px;
}

.cql-store-product-category {
	color: #0F2744;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.03em;
	margin-bottom: 10px;
}

.cql-store-product-body h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
	line-height: 1.25;
	color: #0F2744;
	margin-bottom: 10px;
}

.cql-store-product-body h2 a {
	color: inherit;
	text-decoration: none;
}

.cql-store-short-description {
	color: #1f2937;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 18px;
}

.cql-store-short-description p {
	margin-bottom: 0;
}

.cql-store-format-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: auto;
	margin-bottom: 20px;
}

.cql-store-format-tags span {
	background: #3A260D;
	color: #fff;
	border-radius: 5px;
	padding: 5px 9px;
	font-size: 12px;
	font-weight: 900;
}

.cql-store-card-footer {
	border-top: 1px solid #d8e0e8;
	padding-top: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.cql-store-price {
	color: #000;
	font-size: 24px;
	font-weight: 900;
}

.cql-store-price del {
	color: #5f6368;
	font-size: 14px;
	margin-left: 6px;
	opacity: 0.8;
}

.cql-store-price ins {
	text-decoration: none;
}

.cql-store-view-link {
	color: #0F2744;
	font-weight: 900;
	font-size: 14px;
	text-decoration: none;
}

.cql-store-view-link span {
	font-size: 20px;
	vertical-align: -1px;
	margin-left: 5px;
}

.cql-store-bundle-section {
	background: #fff;
	padding: 10px 0 90px;
}

.cql-store-bundle-box {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
	background: #0F2744;
	border-radius: 22px;
	padding: 52px;
	color: #fff;
	box-shadow: 0 22px 55px rgba(15,39,68,0.16);
}

.cql-store-bundle-box::after {
	content: "";
	position: absolute;
	top: -120px;
	right: -80px;
	width: 320px;
	height: 320px;
	background: rgba(255,255,255,0.06);
	border-radius: 50%;
}

.cql-store-bundle-content,
.cql-store-bundle-action {
	position: relative;
	z-index: 2;
}

.cql-store-bundle-label {
	display: inline-flex;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.18);
	color: #fff;
	border-radius: 999px;
	padding: 7px 14px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.cql-store-bundle-box h2 {
	color: #fff;
	font-size: clamp(30px, 3vw, 42px);
	margin-bottom: 12px;
}

.cql-store-bundle-box p {
	color: rgba(255,255,255,0.78);
	font-size: 17px;
	line-height: 1.65;
	max-width: 760px;
}

.cql-store-bundle-action {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 18px;
}

.cql-store-bundle-price {
	color: #fff;
	font-size: 32px;
	font-weight: 900;
}

.cql-store-bundle-price del {
	color: rgba(255,255,255,0.45);
	font-size: 18px;
	margin-left: 8px;
}

.cql-store-bundle-price ins {
	text-decoration: none;
}

@media (max-width: 1100px) {
	.cql-store-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.cql-store-hero {
		padding: 82px 0;
	}

	.cql-store-filters {
		position: static;
	}

	.cql-store-grid {
		grid-template-columns: 1fr;
	}

	.cql-store-bundle-box {
		grid-template-columns: 1fr;
		padding: 34px;
	}

	.cql-store-bundle-action {
		align-items: flex-start;
	}
}