/**
 * Silly Rabbit Motorsport - Custom Styles
 * Engineering-driven design enhancements
 */

/* ==========================================================================
   Global Utilities
   ========================================================================== */

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.container-narrow {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

@media (max-width: 768px) {
	.container,
	.container-narrow {
		padding: 0 1rem;
	}
}

/* ==========================================================================
   Typography Enhancements
   ========================================================================== */

.text-mono {
	font-family: var(--wp--preset--font-family--mono);
}

.text-heading {
	font-family: var(--wp--preset--font-family--heading);
}

.text-uppercase {
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.text-tight {
	letter-spacing: -0.02em;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
	background: var(--wp--preset--color--soft-black);
	color: var(--wp--preset--color--pure-white);
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(27, 29, 33, 0.95) 0%, rgba(17, 18, 20, 0.85) 100%);
	z-index: 1;
}

.hero-section .hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.hero-section .hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
}

.hero-section h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.hero-section .hero-subtitle {
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	line-height: 1.6;
	color: var(--wp--preset--color--brushed-aluminum);
	margin-bottom: 2rem;
}

.hero-section .hero-cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-section .wp-block-button__link {
	padding: 1rem 2.5rem;
	font-size: 1rem;
}

@media (max-width: 768px) {
	.hero-section {
		min-height: 500px;
	}
	
	.hero-section .hero-cta {
		flex-direction: column;
	}
	
	.hero-section .wp-block-button {
		width: 100%;
	}
	
	.hero-section .wp-block-button__link {
		width: 100%;
		text-align: center;
	}
}

/* ==========================================================================
   Platform Selector Cards
   ========================================================================== */

.platform-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin: var(--wp--preset--spacing--2xl) 0;
}

@media (max-width: 1024px) {
	.platform-cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.platform-card {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 4/3;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.platform-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%) brightness(0.9);
	transition: filter 0.4s ease, transform 0.4s ease;
}

.platform-card:hover img {
	filter: grayscale(0%) brightness(1);
	transform: scale(1.05);
}

.platform-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2rem;
	background: linear-gradient(to top, rgba(17, 18, 20, 0.95) 0%, rgba(17, 18, 20, 0) 100%);
	color: var(--wp--preset--color--pure-white);
}

.platform-card-overlay h3 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--3x-large);
	font-weight: 700;
	margin: 0;
}

/* ==========================================================================
   Engineering Authority Section
   ========================================================================== */

.engineering-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	padding: var(--wp--preset--spacing--2xl) 0;
}

@media (max-width: 1024px) {
	.engineering-section {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.engineering-section img {
	border-radius: 4px;
	width: 100%;
	height: auto;
}

.engineering-content h2 {
	margin-bottom: 1.5rem;
}

.engineering-content ul {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.engineering-content ul li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 1rem;
	font-size: var(--wp--preset--font-size--large);
	line-height: 1.7;
}

.engineering-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 6px;
	height: 6px;
	background: var(--wp--preset--color--performance-blue);
	border-radius: 50%;
}

/* ==========================================================================
   Data Visualization Section
   ========================================================================== */

.data-section {
	background: var(--wp--preset--color--soft-black);
	color: var(--wp--preset--color--pure-white);
	padding: var(--wp--preset--spacing--2xl) 0;
	margin: var(--wp--preset--spacing--2xl) 0;
	border-radius: 4px;
}

.data-section h2 {
	text-align: center;
	margin-bottom: var(--wp--preset--spacing--lg);
	color: var(--wp--preset--color--pure-white);
}

.dyno-chart {
	background: var(--wp--preset--color--graphite);
	padding: 2rem;
	border-radius: 4px;
	border: 1px solid var(--wp--preset--color--slate);
}

.performance-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

@media (max-width: 768px) {
	.performance-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

.stat-card {
	text-align: center;
	padding: 2rem;
	background: var(--wp--preset--color--graphite);
	border-radius: 4px;
}

.stat-card .stat-value {
	font-family: var(--wp--preset--font-family--mono);
	font-size: var(--wp--preset--font-size--4x-large);
	font-weight: 700;
	color: var(--wp--preset--color--performance-blue);
	display: block;
	margin-bottom: 0.5rem;
}

.stat-card .stat-label {
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--small);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--brushed-aluminum);
}

/* ==========================================================================
   Custom Header Styles
   ========================================================================== */

.srm-topbar {
	background: #0c0d0f;
	color: var(--wp--preset--color--brushed-aluminum);
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.srm-topbar-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0.4rem 2rem;
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
}
.srm-topbar a { color: var(--wp--preset--color--pure-white); text-decoration: none; }
.srm-topbar a:hover { color: var(--wp--preset--color--performance-blue); }

.srm-header.site-header,
.site-header {
	background: #ffffff;
	border-bottom: 1px solid #e6e6e6;
	position: sticky;
	top: 0;
	z-index: 1000;
	min-height: 80px;
	height: auto;
}
.srm-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0.6rem 2rem;
}
.srm-logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.srm-logo img {
	height: 44px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}
.srm-nav { flex: 1; min-width: 0; }
.srm-nav ul {
	display: flex;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.srm-nav a {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #1b1d21;
	text-decoration: none;
}
.srm-nav a:hover { color: var(--wp--preset--color--performance-blue); }
.srm-header-actions { display: flex; align-items: center; gap: 1rem; }
.srm-cart {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	color: #1b1d21;
}
.srm-account {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #1b1d21;
	text-decoration: none;
}
.srm-search input {
	background: #efefef;
	border: 1px solid #bdbdbd;
	color: #222;
	padding: 0 1rem;
	height: 42px;
	border-radius: 999px;
	font-size: 0.9rem;
	width: 16rem;
}
.srm-search input::placeholder { color: #7a7a7a; }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
}
.srm-cart-count {
	display: inline-block;
	margin-left: 0.35rem;
	background: var(--wp--preset--color--performance-blue);
	color: #fff;
	border-radius: 999px;
	padding: 0 0.45rem;
	font-size: 0.7rem;
	line-height: 1.4rem;
}
@media (max-width: 1024px) {
	.srm-nav { display: none; }
	.srm-topbar-inner { justify-content: space-between; padding: 0.4rem 1rem; }
	.srm-header-inner { padding: 0.5rem 1rem; }
}
footer.wp-block-template-part,
.wp-site-blocks > footer {
	width: 100%;
	max-width: none;
	display: block;
}
.site-footer a { color: var(--wp--preset--color--pure-white); }
.site-footer a:hover { color: var(--wp--preset--color--performance-blue); }
.platform-cards .wp-block-column h3 { margin-top: 0.75rem; }
.platform-cards img { width: 100%; height: 180px; object-fit: cover; border-radius: 4px; }
.woocommerce-page .woocommerce { max-width: 1400px; margin: 0 auto; }

.site-header .header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.site-logo img {
	height: 40px;
	width: auto;
}

.main-navigation ul {
	display: flex;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation a {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.9375rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--graphite);
	text-decoration: none;
	transition: color 0.2s ease;
}

.main-navigation a:hover {
	color: var(--wp--preset--color--performance-blue);
}

@media (max-width: 1024px) {
	.site-header {
		height: 60px;
	}
	
	.main-navigation {
		display: none;
	}
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

@media (max-width: 1024px) {
	.mobile-menu-toggle {
		display: block;
	}
}

.mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #1b1d21;
	margin: 5px 0;
	transition: transform 0.3s ease;
}

.mobile-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--wp--preset--color--soft-black);
	z-index: 9999;
	display: none;
	padding: 2rem;
	overflow-y: auto;
}

.mobile-nav-overlay.active {
	display: block;
}

.mobile-nav-overlay ul {
	list-style: none;
	margin: 4rem 0 0 0;
	padding: 0;
}

.mobile-nav-overlay li {
	margin-bottom: 1rem;
}

.mobile-nav-overlay a {
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--2x-large);
	font-weight: 600;
	color: var(--wp--preset--color--pure-white);
	text-decoration: none;
	display: block;
	padding: 1rem 0;
	border-bottom: 1px solid var(--wp--preset--color--slate);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer,
footer.wp-block-template-part .site-footer,
.wp-block-group.site-footer {
	background: var(--wp--preset--color--soft-black);
	color: var(--wp--preset--color--brushed-aluminum);
	padding: var(--wp--preset--spacing--2xl) 0 var(--wp--preset--spacing--md) 0;
	max-width: none !important;
	width: 100%;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: var(--wp--preset--spacing--lg);
}

@media (max-width: 768px) {
	.footer-columns {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.footer-column h3 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--pure-white);
	margin-bottom: 1rem;
}

.footer-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-column li {
	margin-bottom: 0.5rem;
}

.footer-column a {
	color: var(--wp--preset--color--brushed-aluminum);
	text-decoration: none;
	transition: color 0.2s ease;
	font-size: 0.9375rem;
}

.footer-column a:hover {
	color: var(--wp--preset--color--pure-white);
}

.footer-bottom {
	border-top: 1px solid var(--wp--preset--color--slate);
	padding-top: var(--wp--preset--spacing--md);
	text-align: center;
	font-size: 0.875rem;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center {
	text-align: center;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-sm { margin-bottom: var(--wp--preset--spacing--sm) !important; }
.mb-md { margin-bottom: var(--wp--preset--spacing--md) !important; }
.mb-lg { margin-bottom: var(--wp--preset--spacing--lg) !important; }
.mb-xl { margin-bottom: var(--wp--preset--spacing--xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-sm { margin-top: var(--wp--preset--spacing--sm) !important; }
.mt-md { margin-top: var(--wp--preset--spacing--md) !important; }
.mt-lg { margin-top: var(--wp--preset--spacing--lg) !important; }
.mt-xl { margin-top: var(--wp--preset--spacing--xl) !important; }

/* ==========================================================================
   OBP-style storefront — SRM blue, RS7 hero
   ========================================================================== */
body, .wp-site-blocks {
	background: #fff;
	color: #1b1d21;
}

/* Never show the shop category chip / tag cloud */
.srm-cats,
.tagcloud,
.wp-block-tag-cloud,
.widget_tag_cloud,
.widget_product_tag_cloud {
	display: none !important;
}

.obp-hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding-bottom: 7.5rem;
}
.obp-hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 70% 45%;
}
.obp-hero-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8,10,14,.42) 0%, rgba(8,10,14,.08) 46%, rgba(8,10,14,0) 70%);
	pointer-events: none;
}
.obp-hero-copy {
	position: relative;
	z-index: 2;
	max-width: 640px;
	padding: 5rem 2.5rem 2rem;
	color: #fff;
	text-shadow: 0 1px 12px rgba(0,0,0,.45);
}
.obp-hero-headline {
	margin: 0 0 1rem;
	line-height: 0.92;
	letter-spacing: -0.03em;
	color: #fff;
}
.obp-hero-main,
.obp-hero-sub {
	display: block;
	font-size: clamp(2.8rem, 6vw, 5rem);
}
.obp-hero-main { font-weight: 800; }
.obp-hero-sub { font-weight: 400; }
.obp-lede {
	font-size: 1.12rem;
	line-height: 1.55;
	color: #e8eaee;
	max-width: 34rem;
	margin: 0 0 1.8rem;
}
.obp-hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.obp-btn {
	display: inline-block;
	padding: 0.95rem 1.6rem;
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 0;
	text-shadow: none;
}
.obp-btn-primary { background: #0072ce; color: #fff; }
.obp-btn-primary:hover { background: #005fa8; color: #fff; }
.obp-btn-outline { border: 1px solid #fff; color: #fff; }
.obp-btn-outline:hover { background: #fff; color: #1b1d21; }

.obp-hero-picker {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
}
.obp-hero-picker .srm-fitment {
	background: rgba(255,255,255,.94);
	border-bottom: 0;
	padding: 0.85rem 1.5rem 1rem;
	text-align: center;
	backdrop-filter: blur(8px);
}

.obp-intro {
	text-align: center;
	padding: 4rem 1.5rem 2.5rem;
	max-width: 860px;
	margin: 0 auto;
}
.obp-intro-title {
	margin: 0 0 1rem;
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
	font-weight: 600;
	color: #1b1d21;
}
.obp-intro-rule {
	display: block;
	width: 64px;
	height: 3px;
	background: #0072ce;
	margin: 0 auto 1.25rem;
}
.obp-intro-lead {
	color: #555;
	font-size: 1.08rem;
	line-height: 1.6;
	margin: 0 0 1.5rem;
}
.obp-intro-cats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
}
.obp-intro-cats a {
	border: 1px solid #d8d8d8;
	color: #1b1d21;
	text-decoration: none;
	padding: 0.45rem 0.95rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-family: var(--wp--preset--font-family--heading);
}
.obp-intro-cats a:hover {
	border-color: #0072ce;
	color: #0072ce;
}

.obp-trust {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 2rem;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto 3rem;
	padding: 2rem 2.5rem 3rem;
	background: #fff;
}
.obp-trust-heading {
	margin: 0 0 1rem;
	font-weight: 400;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	line-height: 1.15;
	color: #1b1d21;
}
.obp-trust-heading span { display: block; }
.obp-trust-heading span:last-child { font-weight: 800; }
.obp-trust-intro p { color: #555; font-size: 1.02rem; line-height: 1.6; margin: 0 0 1.4rem; }
.obp-trust-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0.75rem;
}
.obp-trust-item {
	text-align: center;
	padding: 0.5rem 0.25rem;
}
.obp-trust-item svg { width: 42px; height: 42px; display: block; margin: 0 auto 0.55rem; }
.obp-trust-item span { display: block; font-size: 0.82rem; color: #1b1d21; line-height: 1.25; }
.obp-trust-item b { display: block; font-weight: 700; }

.obp-cta-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}
.obp-cta-card {
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
}
.obp-cta-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}
.obp-cta-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.1) 55%);
}
.obp-cta-card:hover img { transform: scale(1.05); }
.obp-cta-card h3 {
	position: relative;
	z-index: 1;
	margin: 0 0 1.6rem 1.6rem;
	font-size: 1.6rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.obp-cta-card h3 span { font-weight: 800; }

.obp-ad {
	position: relative;
	min-height: 340px;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: #fff;
}
.obp-ad > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.obp-ad::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10,12,16,.72) 0%, rgba(10,12,16,.28) 48%, rgba(10,12,16,.08) 100%);
}
.obp-ad-flip::after {
	background: linear-gradient(270deg, rgba(10,12,16,.72) 0%, rgba(10,12,16,.28) 48%, rgba(10,12,16,.08) 100%);
}
.obp-ad-copy {
	position: relative;
	z-index: 1;
	max-width: 480px;
	padding: 3.5rem 2.5rem;
	margin-left: 6%;
}
.obp-ad-flip .obp-ad-copy { margin-left: auto; margin-right: 6%; }
.obp-ad-kicker {
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
	color: #7eb8ef;
	margin-bottom: 0.5rem;
}
.obp-ad-copy h3 {
	margin: 0 0 0.8rem;
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	font-weight: 400;
}
.obp-ad-copy h3 b { font-weight: 800; }
.obp-ad-copy p { color: #d7dbe2; line-height: 1.55; margin: 0 0 1.4rem; }

.obp-featured {
	padding: 3.5rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
}
.obp-section-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 1.5rem;
	gap: 1rem;
}
.obp-section-head h2 {
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	color: #1b1d21;
	font-weight: 400;
}
.obp-section-head h2 em {
	font-style: normal;
	font-weight: 800;
}
.obp-section-head a {
	color: #0072ce;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
}
.obp-featured ul.products {
	grid-template-columns: repeat(4, 1fr) !important;
}

.obp-contact-band {
	position: relative;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	color: #fff;
}
.obp-contact-band > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.obp-contact-band::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10,12,16,.55);
}
.obp-contact-copy { position: relative; z-index: 1; padding: 3.5rem 1.5rem; }
.obp-contact-copy h2 {
	margin: 0 0 0.6rem;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 400;
	color: #fff;
}
.obp-contact-copy h2 em { font-style: normal; font-weight: 800; }
.obp-contact-copy p { color: #d7dbe2; margin: 0 0 1.4rem; }
.obp-contact-copy .obp-hero-ctas { justify-content: center; }

.srm-fitment {
	background: #f3f3f3;
	border-bottom: 1px solid #e6e6e6;
	text-align: center;
}
.srm-fitment-title { color: #0072ce; }
.srm-fitment-form { justify-content: center; }
.srm-fitment select {
	background: #fff;
	color: #1b1d21;
	border: 1px solid #cfcfcf;
}
.srm-fit-active { color: #444; }
.srm-fit-active strong { color: #1b1d21; }
.srm-fit-clear { color: #0072ce; }

.woocommerce-products-header { background: transparent !important; color: #1b1d21 !important; padding: 1.25rem 0 0.5rem; }
.woocommerce-products-header__title { color: #1b1d21 !important; }
.term-description { color: #555; }
body.woocommerce-page h1, body.woocommerce-archive h1 { color: #1b1d21; }

@media (max-width: 1100px) {
	.obp-trust { grid-template-columns: 1fr; }
	.obp-trust-list { grid-template-columns: repeat(3, 1fr); }
	.obp-cta-cards { grid-template-columns: 1fr; }
	.obp-featured ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 800px) {
	.obp-hero { min-height: 70vh; padding-bottom: 10rem; }
	.obp-hero-copy { padding: 3rem 1.25rem 1.5rem; }
	.obp-trust { padding: 1.5rem 1.25rem; }
	.obp-trust-list { grid-template-columns: 1fr 1fr; }
	.srm-search { display: none; }
	.obp-ad-copy, .obp-ad-flip .obp-ad-copy { margin: 0; padding: 2.2rem 1.25rem; }
}
@media (max-width: 560px) {
	.obp-featured ul.products { grid-template-columns: 1fr !important; }
}
