/* ==========================================================================
   /trade/products/ — Caliber Turf Company (trade sub-site) page styles.
   Clean rebuild of the original Elementor page (post-582).
   NOTE: the trade sub-site is standalone — it uses its own Caliber header,
   hero and footer (shell rules below, .ct-*), not the Green Guard chrome.
   ========================================================================== */

body {
	background: #fff;
}

/* ---------------------------------------------------------------- shell:
   Caliber header (dark bar, logo left, Poppins nav right)          */
.ct-header {
	background: #232323;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 32px 0;
}
.ct-logo {
	width: 23%;
	max-width: 23%;
	flex-shrink: 0;
	font-size: 0;
	text-align: center;
}
.ct-logo img {
	width: 100%;
	height: auto;
	display: inline-block;
}
.ct-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}
.ct-nav a {
	display: flex;
	align-items: center;
	padding: 13px 20px;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	color: #fff;
	fill: #fff;
	text-decoration: none;
}

/* mobile burger + dropdown (hidden on desktop) */
.ct-menu-mobile { display: none; }
.ct-menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 33px;
	height: 33px;
	padding: 5.5px;
	margin: 0 43px 30px;
	border: none;
	border-radius: 3px;
	background: rgba(0, 0, 0, .05);
	color: #33373D;
	cursor: pointer;
}
.ct-menu-toggle svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}
.ct-menu-toggle .ct-icon-close { display: none; }
.ct-menu-mobile.is-open .ct-icon-close { display: block; }
.ct-menu-mobile.is-open .ct-icon-open { display: none; }
.ct-nav-dropdown {
	display: none;
	margin-top: 10px;
	background: #fff;
	width: fit-content;
}
.ct-menu-mobile.is-open .ct-nav-dropdown { display: block; }
.ct-nav-dropdown ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ct-nav-dropdown a {
	display: block;
	padding: 10px 20px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 20px;
	color: #33373D;
	text-decoration: none;
}
.ct-nav-dropdown a.is-active {
	background: #55595C;
	color: #fff;
}

@media (max-width: 1024px) {
	.ct-nav { display: none; }
	.ct-menu-mobile {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

/* ------------------------------------------------------------- shell:
   hero banner (bg-green photo + dark green overlay + title)      */
.ct-hero {
	position: relative;
	min-height: 350px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: url('/assets/images/bg-green.jpg') center center / cover no-repeat;
}
.ct-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #0F2A1D;
	opacity: .65;
}
/* The hero title is the page's h1; it renders exactly as the original's
   h2 did (margin and every type property are set explicitly here, so the
   tag's UA defaults never surface). */
.ct-hero h1,
.ct-hero h2 {
	position: relative;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 2.6rem;
	font-weight: 500;
	line-height: 1.15em;
	color: #fff;
	text-align: center;
}
@media (max-width: 1024px) {
	.ct-hero { min-height: 246px; }
	.ct-hero h1, .ct-hero h2 { font-size: 1.8rem; }
}
@media (max-width: 767px) {
	.ct-hero { min-height: 10rem; padding: 0 1rem; }
	.ct-hero h1, .ct-hero h2 { font-size: 1.6rem; }
}

/* ------------------------------------------------------------- shell:
   footer (black bar, centered Caliber logo)                      */
.ct-footer {
	background: #000;
	padding: 2rem 0;
	text-align: center;
	font-size: 14px;
	line-height: 1.4em;
}
.ct-footer img {
	width: 20%;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}
@media (max-width: 767px) {
	/* kit primary typography on mobile (16px/1.5em) sets the footer strut */
	.ct-footer { font-size: 16px; line-height: 1.5em; }
}

/* ---------------------------------------------------- intro section
   "How to Choose the Right Tier?" (image right / copy left)      */
.tp-intro { padding: 0 20px; }
.tp-intro-inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 60px 0 80px;
	display: flex;
	flex-direction: row-reverse;
	gap: 10px;
}
.tp-intro-media,
.tp-intro-copy {
	flex: 0 0 calc(50% - 5px);
	max-width: calc(50% - 5px);
	padding: 0 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.tp-intro-media { text-align: center; }
.tp-intro-media img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	align-self: center;
}
.tp-intro-copy h2 {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2em;
	color: #000;
}
.tp-intro-text p {
	margin: 16px 0;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8em;
	color: #000;
}
@media (max-width: 1024px) {
	.tp-intro-copy h2 { font-size: 29px; }
}
@media (max-width: 767px) {
	.tp-intro { padding: 0 1rem; }
	.tp-intro-inner {
		padding: 3rem 0;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.tp-intro-media,
	.tp-intro-copy {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0 20px;
	}
	.tp-intro-copy h2 { font-size: 25px; }
}

/* ---------------------------------------------------- product cards */
.tp-cards { padding: 0; }
.tp-cards-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.tp-card {
	width: 100%;
	padding: 10px;
	display: flex;
	flex-direction: row;
}
.tp-card-media {
	flex: 0 0 33.3333%;
	max-width: 33.3333%;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.tp-card--center .tp-card-media { justify-content: center; }
.tp-card-media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 24px;
}
.tp-card-body {
	flex: 0 0 66.6666%;
	max-width: 66.6666%;
	padding: 10px;
	display: flex;
	flex-direction: column;
}
.tp-card-body h2 {
	margin: 0;
	align-self: flex-start;
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2em;
	color: #000;
}
.tp-desc {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4em;
	color: #000;
}
.tp-specs {
	padding: 10px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 14px;
	row-gap: 13px;
}
.tp-spec {
	flex: 0 0 23.3333%;
	max-width: 23.3333%;
	height: 0;            /* the original fixes tiles at 80px and lets long */
	min-height: 80px;     /* values overflow into the row gap               */
	padding: 10px;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 0;
}
/* the first spec tile of every card has no fixed height in the original */
.tp-spec:first-child { height: auto; min-height: 0; }
/* Spec labels are h3 so the outline runs h2 (card title) -> h3 with no
   skipped level; margin, size and weight are all set here, so the heading
   tag contributes nothing of its own. Both tags are listed for safety. */
.tp-spec h3,
.tp-spec h5 {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2em;
	color: #000;
}
.tp-spec p {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4em;
	color: #000;
}
.tp-cta {
	padding: 10px;
	display: flex;
	flex-direction: column;
}
.tp-btn {
	box-sizing: border-box;
	width: 33%;
	display: block;
	padding: 12px 24px;
	border: none;
	border-radius: 9px;
	background: #E04F1B;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4em;
	color: #fff;
	text-align: center;
	text-decoration: none;
}
@media (max-width: 1024px) {
	.tp-card-body h2 { font-size: 29px; }
	.tp-desc { font-size: 15px; }
	.tp-spec { flex-basis: 31%; max-width: 31%; }
	.tp-spec h3, .tp-spec h5 { font-size: 18px; }
	.tp-spec p { font-size: 15px; }
}
@media (max-width: 767px) {
	.tp-cards { padding: 3rem 1rem; }
	/* the original reverses the card order on mobile (wrap-reverse) */
	.tp-cards-inner { flex-direction: column-reverse; }
	.tp-card { flex-direction: column; }
	.tp-card-media,
	.tp-card-body {
		flex-basis: auto;
		max-width: 100%;
	}
	.tp-card-body h2 { font-size: 25px; }
	/* kit primary typography on mobile: 16px / 1.5em */
	.tp-desc { font-size: 16px; line-height: 1.5em; }
	.tp-spec { flex-basis: auto; max-width: 100%; width: 100%; }
	.tp-spec h3, .tp-spec h5 { font-size: 17px; }
	.tp-spec p { font-size: 16px; line-height: 1.5em; }
	.tp-btn { width: 63%; font-size: 16px; line-height: 1.5em; }
}
