/* ==========================================================================
   /trade/accessories/ — Caliber Turf Company (trade sub-site) page styles.
   Clean rebuild of the original Elementor page (post-820).
   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; }
}

/* ------------------------------------------------- pricing sheet grid */
.ta-wrap {
	width: 75%;
	margin: 0 auto;
	padding: 10px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.ta-col {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 10px;
	display: flex;
	flex-direction: column;
}
.ta-block {
	width: 100%;
	padding: 10px;
	display: flex;
	flex-direction: column;
}
.ta-block h2 {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2em;
	color: #000;
}
.ta-block table {
	width: 100%;
	border-collapse: collapse;
	color: #000;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.4em;
}
.ta-block th,
.ta-block td {
	text-align: left;
	border: 1px solid #ddd;
	padding: 8px;
}
.ta-block th { font-weight: 700; }

@media (max-width: 1024px) {
	.ta-wrap {
		width: 100%;
		flex-direction: column;
	}
	.ta-col {
		flex-basis: auto;
		max-width: 100%;
	}
	.ta-block h2 { font-size: 29px; }
	.ta-block table { font-size: 15px; }
}
@media (max-width: 767px) {
	.ta-block h2 { font-size: 25px; }
	/* kit primary typography on mobile: 16px / 1.5em */
	.ta-block table { font-size: 16px; line-height: 1.5em; }
}
