/* SYSFOB Stage 2 — full rebrand (staging preview) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
	--sf-primary: #0d6e7a;
	--sf-primary-dark: #0a5560;
	--sf-primary-light: #e6f4f6;
	--sf-accent: #e8913a;
	--sf-accent-hover: #d47a22;
	--sf-ink: #0f172a;
	--sf-text: #334155;
	--sf-muted: #64748b;
	--sf-bg: #f8fafc;
	--sf-surface: #ffffff;
	--sf-border: #e2e8f0;
	--sf-radius: 14px;
	--sf-radius-sm: 10px;
	--sf-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
	--sf-font: 'Inter', system-ui, -apple-system, sans-serif;
	--sf-max: 1140px;
}

body.sysfob-v2 {
	font-family: var(--sf-font);
	color: var(--sf-text);
}

body.sysfob-v2 .site-header-wrapper,
body.sysfob-v2 .site-header {
	background: var(--sf-surface);
	border-bottom: 1px solid var(--sf-border);
	box-shadow: none;
}

body.sysfob-v2 .main-navigation a {
	font-weight: 500;
	color: var(--sf-text);
}

body.sysfob-v2 .main-navigation a:hover {
	color: var(--sf-primary);
}

body.sysfob-v2 .site-title a {
	display: inline-flex !important;
	align-items: center;
	gap: 0.65rem;
	font-weight: 700 !important;
	font-size: 1.35rem !important;
	color: var(--sf-ink) !important;
	letter-spacing: -0.02em;
}

body.sysfob-v2 .site-title a::before {
	content: '';
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	background: var(--sf-logo-url) center/contain no-repeat;
}

body.sysfob-v2 .hero,
body.sysfob-v2 .page-title-container {
	display: none;
}

body.sysfob-v2.home .site-content {
	padding-top: 0;
}

body.sysfob-v2 .site-footer,
body.sysfob-v2 .site-info {
	background: var(--sf-ink);
	color: rgba(255,255,255,0.88);
}

body.sysfob-v2 .site-info a {
	color: #fff;
}

/* --- Homepage v2 --- */
.sf-home {
	max-width: var(--sf-max);
	margin: 0 auto;
	padding: 0 1.25rem 3rem;
}

.sf-hero {
	background: linear-gradient(145deg, var(--sf-primary) 0%, var(--sf-primary-dark) 100%);
	color: #fff;
	border-radius: var(--sf-radius);
	padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
	margin: 1.5rem 0 2.5rem;
	text-align: center;
}

.sf-hero-eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: rgba(255,255,255,0.15);
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	margin-bottom: 1rem;
}

.sf-hero h1 {
	color: #fff;
	font-size: clamp(1.85rem, 4.5vw, 3rem);
	line-height: 1.15;
	margin: 0 0 1rem;
	font-weight: 700;
}

.sf-hero-lead {
	color: rgba(255,255,255,0.92);
	font-size: 1.125rem;
	max-width: 38rem;
	margin: 0 auto 1.75rem;
	line-height: 1.6;
}

.sf-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.sf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.6rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none !important;
	transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
	border: 2px solid transparent;
}

.sf-btn-primary {
	background: var(--sf-accent);
	color: #fff !important;
}

.sf-btn-primary:hover {
	background: var(--sf-accent-hover);
	transform: translateY(-1px);
	box-shadow: var(--sf-shadow);
}

.sf-btn-ghost {
	background: transparent;
	color: #fff !important;
	border-color: rgba(255,255,255,0.7);
}

.sf-btn-ghost:hover {
	background: rgba(255,255,255,0.1);
}

.sf-domain-bar {
	display: flex;
	flex-wrap: wrap;
	max-width: 32rem;
	margin: 0 auto;
	gap: 0.5rem;
	background: #fff;
	padding: 0.5rem;
	border-radius: 999px;
	box-shadow: var(--sf-shadow);
}

.sf-domain-bar input {
	flex: 1;
	min-width: 160px;
	border: none;
	padding: 0.75rem 1.25rem;
	font-size: 1rem;
	border-radius: 999px;
	outline: none;
	font-family: inherit;
}

.sf-domain-bar .sf-btn {
	border-radius: 999px;
	padding: 0.75rem 1.25rem;
}

.sf-section-head {
	text-align: center;
	margin-bottom: 1.75rem;
}

.sf-section-head h2 {
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	color: var(--sf-ink);
	margin: 0 0 0.5rem;
}

.sf-section-head p {
	color: var(--sf-muted);
	margin: 0;
	max-width: 36rem;
	margin-inline: auto;
}

.sf-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1rem;
	margin-bottom: 3rem;
}

.sf-card {
	display: block;
	background: var(--sf-surface);
	border: 1px solid var(--sf-border);
	border-radius: var(--sf-radius);
	padding: 1.35rem 1.5rem;
	text-decoration: none !important;
	color: inherit !important;
	transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.sf-card:hover {
	border-color: var(--sf-primary);
	transform: translateY(-3px);
	box-shadow: var(--sf-shadow);
}

.sf-card-icon {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.sf-card h3 {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	color: var(--sf-primary-dark);
}

.sf-card p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--sf-muted);
	line-height: 1.5;
}

.sf-trust {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
	background: var(--sf-primary-light);
	border-radius: var(--sf-radius);
	padding: 1.5rem;
	margin-bottom: 3rem;
}

.sf-trust strong {
	display: block;
	color: var(--sf-primary-dark);
	margin-bottom: 0.2rem;
	font-size: 0.95rem;
}

.sf-trust span {
	font-size: 0.85rem;
	color: var(--sf-muted);
}

.sf-why {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.sf-why-block {
	background: var(--sf-surface);
	border: 1px solid var(--sf-border);
	border-radius: var(--sf-radius);
	padding: 1.5rem;
}

.sf-why-block h3 {
	margin: 0 0 0.5rem;
	color: var(--sf-ink);
	font-size: 1.1rem;
}

.sf-why-block p {
	margin: 0;
	color: var(--sf-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

.sf-cta-band {
	background: var(--sf-ink);
	color: #fff;
	border-radius: var(--sf-radius);
	padding: 2rem 1.5rem;
	text-align: center;
	margin-bottom: 1rem;
}

.sf-cta-band h2 {
	color: #fff;
	margin: 0 0 0.5rem;
	font-size: 1.5rem;
}

.sf-cta-band p {
	margin: 0 0 1.25rem;
	color: rgba(255,255,255,0.85);
}

body.sysfob-v2 .sysfob-footer-tagline {
	opacity: 0.75;
	font-size: 0.85rem;
}

@media (max-width: 640px) {
	.sf-domain-bar {
		border-radius: var(--sf-radius-sm);
		flex-direction: column;
	}
	.sf-domain-bar input,
	.sf-domain-bar .sf-btn {
		border-radius: var(--sf-radius-sm);
		width: 100%;
	}
}

/* Hub pages (Domains, Hosting, etc.) */
body.sysfob-v2 .site-content {
	padding-top: 0;
}

.sf-hub-hero {
	background: linear-gradient(145deg, var(--sf-primary) 0%, var(--sf-primary-dark) 100%);
	color: #fff;
	border-radius: var(--sf-radius);
	padding: clamp(2rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
	margin: 1.25rem 0 2rem;
}

.sf-hub-hero h1 {
	color: #fff;
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	margin: 0 0 0.75rem;
	line-height: 1.2;
}

.sf-hub-hero p {
	color: rgba(255,255,255,0.92);
	margin: 0;
	max-width: 40rem;
	line-height: 1.6;
}

.sf-hub-block {
	margin: 1.5rem 0 2rem;
}

.sf-hub-block .rstore-domain-search,
.sf-hub-block .widget {
	max-width: var(--sf-max);
	margin: 0 auto;
}

.sf-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.sf-link-chip {
	display: block;
	padding: 0.85rem 1rem;
	background: var(--sf-surface);
	border: 1px solid var(--sf-border);
	border-radius: var(--sf-radius-sm);
	text-decoration: none !important;
	color: var(--sf-primary-dark) !important;
	font-weight: 600;
	text-align: center;
	transition: border-color 0.15s, background 0.15s;
}

.sf-link-chip:hover {
	border-color: var(--sf-primary);
	background: var(--sf-primary-light);
}

.sf-prose {
	max-width: 42rem;
	margin-bottom: 2rem;
}

.sf-prose p {
	color: var(--sf-muted);
	line-height: 1.65;
}

/* Domain search — fit within page */
.sf-domain-search-box {
	max-width: min(640px, 100%);
	margin: 0 auto 2rem;
	padding: 1.25rem 1.5rem;
	background: var(--sf-surface);
	border: 1px solid var(--sf-border);
	border-radius: var(--sf-radius);
	box-shadow: var(--sf-shadow);
	box-sizing: border-box;
}

body.sysfob-v2 .sf-domain-search-box .widget.rstore-domain {
	padding: 0;
	margin: 0;
	max-width: 100%;
	overflow: hidden;
}

body.sysfob-v2 .sf-domain-search-box .widget-title {
	padding: 0 0 0.75rem;
	margin: 0;
	font-size: 1.05rem;
	color: var(--sf-ink);
}

body.sysfob-v2 .sf-domain-search-box .search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	max-width: 100%;
	padding: 0 !important;
	margin: 0;
	box-sizing: border-box;
}

body.sysfob-v2 .sf-domain-search-box .search-form label {
	flex: 1 1 12rem;
	min-width: 0;
	margin: 0;
	max-width: 100%;
}

body.sysfob-v2 .sf-domain-search-box .search-field {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.7rem 1rem;
	font-size: 1rem;
	border: 1px solid var(--sf-border);
	border-radius: var(--sf-radius-sm);
	font-family: inherit;
}

body.sysfob-v2 .sf-domain-search-box .search-submit {
	display: inline-block !important;
	flex: 0 0 auto;
	padding: 0.7rem 1.25rem;
	background: var(--sf-accent);
	color: #fff !important;
	border: none;
	border-radius: var(--sf-radius-sm);
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
}

body.sysfob-v2 .rstore-domain-search {
	max-width: 100% !important;
	white-space: normal !important;
	overflow-x: hidden;
}

body.sysfob-v2 .rstore-domain-search .form-container,
body.sysfob-v2 .rstore-domain-search .form-container .search-form {
	max-width: 100%;
	flex-wrap: wrap;
}

body.sysfob-v2 .rstore-domain-search .domain-result {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	float: none !important;
	box-sizing: border-box;
}

body.sysfob-v2 .entry-content {
	overflow-x: hidden;
	max-width: 100%;
}

@media (max-width: 480px) {
	body.sysfob-v2 .sf-domain-search-box .search-submit {
		width: 100%;
	}
}

/* Product landing pages */
.sf-product-list {
	max-width: var(--sf-max);
	margin: 0 auto 1.5rem;
	display: grid;
	gap: 1rem;
}

body.sysfob-v2 .sf-product-list .rstore-list-product,
body.sysfob-v2 .sf-product-list article.product,
body.sysfob-v2 .sf-product-list .rstore-product {
	background: var(--sf-surface);
	border: 1px solid var(--sf-border);
	border-radius: var(--sf-radius-sm);
	padding: 1rem 1.25rem;
	margin: 0 !important;
	box-sizing: border-box;
}

body.sysfob-v2 .sf-product-list .rstore-price {
	color: var(--sf-primary-dark);
}

.sf-back-link {
	text-align: center;
	margin: 0.5rem 0 2rem;
}

.sf-back-link a {
	color: var(--sf-primary);
	font-weight: 600;
	text-decoration: none;
}

.sf-back-link a:hover {
	text-decoration: underline;
}

.sf-prose a {
	color: var(--sf-primary);
	font-weight: 500;
}

/* Global Reseller Store product widgets */
body.sysfob-v2 .widget.rstore-product {
	background: var(--sf-surface);
	border: 1px solid var(--sf-border);
	border-radius: var(--sf-radius-sm);
	padding: 1.25rem 1.5rem;
	margin-bottom: 0;
	box-sizing: border-box;
}

body.sysfob-v2 .rstore-product-header .widget-title {
	color: var(--sf-primary-dark);
	font-size: 1.15rem;
	margin: 0 0 0.75rem;
	padding: 0;
}

body.sysfob-v2 .rstore-product-summary {
	height: auto !important;
	max-height: none !important;
	color: var(--sf-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

body.sysfob-v2 .rstore-price {
	color: var(--sf-primary-dark) !important;
	font-size: 1.35rem !important;
}

body.sysfob-v2 .rstore-product-permalink a {
	color: var(--sf-primary);
	font-weight: 500;
}

body.sysfob-v2 .rstore-add-to-cart-form input[type="submit"],
body.sysfob-v2 .rstore-add-to-cart-form button {
	background: var(--sf-accent) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--sf-radius-sm) !important;
	padding: 0.6rem 1.25rem !important;
	font-weight: 600 !important;
	cursor: pointer;
}

body.sysfob-v2 .rstore-add-to-cart-form input[type="submit"]:hover,
body.sysfob-v2 .rstore-add-to-cart-form button:hover {
	background: var(--sf-accent-hover) !important;
}

/* Single product archive (/products/) */
body.sysfob-v2 .rstore-list-product {
	background: var(--sf-surface);
	border: 1px solid var(--sf-border);
	border-radius: var(--sf-radius-sm);
	padding: 1rem 1.25rem;
	margin-bottom: 1rem;
}

body.sysfob-v2 .rstore-list-product .entry-title a {
	color: var(--sf-primary-dark);
}

/* Custom logo (icon + SYSFOB wordmark) */
body.sysfob-v2 .site-title a::before {
	display: none;
}

body.sysfob-v2 .custom-logo-link img,
body.sysfob-v2 .custom-logo,
body.sysfob-v2 .sysfob-logo-redesign {
	height: 46px;
	width: auto;
	max-width: min(220px, 65vw);
	object-fit: contain;
}

body.sysfob-v2 .site-title-wrapper {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

body.sysfob-v2 .site-title-wrapper .site-title-text,
body.sysfob-v2 .site-title-wrapper .site-title:not(.custom-logo-link) {
	display: none;
}

/* Single product page (/products/...) */
body.sysfob-v2.single-reseller_product .site-content {
	padding-top: 1rem;
}

body.sysfob-v2.single-reseller_product article.rstore-product {
	max-width: var(--sf-max);
	margin: 0 auto;
	padding: 0 1.25rem 2rem;
}

body.sysfob-v2.single-reseller_product article.rstore-product > .row {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	background: var(--sf-surface);
	border: 1px solid var(--sf-border);
	border-radius: var(--sf-radius);
	padding: 1.5rem;
	box-shadow: var(--sf-shadow);
}

body.sysfob-v2.single-reseller_product .column.medium-3,
body.sysfob-v2.single-reseller_product .column.medium-9 {
	flex: 1 1 280px;
	min-width: 0;
	width: auto !important;
	max-width: 100%;
}

body.sysfob-v2.single-reseller_product .product-header .entry-title {
	color: var(--sf-ink);
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	margin-bottom: 0.5rem;
}

body.sysfob-v2.single-reseller_product .product-summary .entry-summary {
	color: var(--sf-muted);
	line-height: 1.6;
}

body.sysfob-v2.single-reseller_product .post-navigation {
	display: none;
}


/* Product category archives (e.g. /product-category/hosting/) */
body.sysfob-v2.tax-reseller_product_category.custom-header-image .hero,
body.sysfob-v2.post-type-archive-reseller_product.custom-header-image .hero {
	display: none !important;
}

body.sysfob-v2.tax-reseller_product_category .page-title-container,
body.sysfob-v2.post-type-archive-reseller_product .page-title-container {
	display: none !important;
}

body.sysfob-v2.tax-reseller_product_category #content.site-content,
body.sysfob-v2.post-type-archive-reseller_product #content.site-content {
	max-width: var(--sf-max);
	margin: 0 auto;
	padding: 0 1.25rem 2.5rem;
	box-sizing: border-box;
}

body.sysfob-v2.tax-reseller_product_category .sf-category-intro,
body.sysfob-v2.post-type-archive-reseller_product .sf-category-intro {
	max-width: var(--sf-max);
	margin: 0 auto;
	padding: 0 1.25rem;
	box-sizing: border-box;
}

body.sysfob-v2.tax-reseller_product_category .sf-category-intro .sf-back-link,
body.sysfob-v2.post-type-archive-reseller_product .sf-category-intro .sf-back-link {
	margin: -0.5rem 0 1.25rem;
}

body.sysfob-v2.tax-reseller_product_category .sf-category-chips,
body.sysfob-v2.post-type-archive-reseller_product .sf-category-chips {
	margin-bottom: 1.5rem;
}

body.sysfob-v2.tax-reseller_product_category #primary,
body.sysfob-v2.post-type-archive-reseller_product #primary {
	float: none;
	width: 100% !important;
	max-width: 100%;
}

body.sysfob-v2.tax-reseller_product_category #secondary,
body.sysfob-v2.post-type-archive-reseller_product #secondary {
	float: none;
	width: 100% !important;
	max-width: 100%;
	margin: 2rem 0 0;
	padding: 0;
	clear: both;
}

body.sysfob-v2.tax-reseller_product_category #secondary .widget,
body.sysfob-v2.post-type-archive-reseller_product #secondary .widget {
	background: var(--sf-surface);
	border: 1px solid var(--sf-border);
	border-radius: var(--sf-radius-sm);
	padding: 1.25rem 1.5rem;
	box-shadow: var(--sf-shadow);
}

body.sysfob-v2.tax-reseller_product_category #secondary .widget-title,
body.sysfob-v2.post-type-archive-reseller_product #secondary .widget-title {
	color: var(--sf-primary-dark);
	font-size: 1rem;
	margin-bottom: 0.75rem;
}

body.sysfob-v2.tax-reseller_product_category #secondary .search-form,
body.sysfob-v2.post-type-archive-reseller_product #secondary .search-form {
	display: flex;
	gap: 0.5rem;
}

body.sysfob-v2.tax-reseller_product_category #secondary .search-field,
body.sysfob-v2.post-type-archive-reseller_product #secondary .search-field {
	flex: 1;
	border: 1px solid var(--sf-border);
	border-radius: var(--sf-radius-sm);
	padding: 0.55rem 0.75rem;
}

body.sysfob-v2.tax-reseller_product_category #secondary .search-submit,
body.sysfob-v2.post-type-archive-reseller_product #secondary .search-submit {
	background: var(--sf-accent);
	color: #fff;
	border: none;
	border-radius: var(--sf-radius-sm);
	padding: 0.55rem 1rem;
	font-weight: 600;
	cursor: pointer;
}

body.sysfob-v2.tax-reseller_product_category .rstore-list-product,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product {
	background: var(--sf-surface);
	border: 1px solid var(--sf-border);
	border-radius: var(--sf-radius);
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.25rem;
	box-shadow: var(--sf-shadow);
}

body.sysfob-v2.tax-reseller_product_category .rstore-list-product .row,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 1rem 1.5rem;
	margin: 0;
}

body.sysfob-v2.tax-reseller_product_category .rstore-list-product .column.medium-3,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .column.medium-9,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .column.medium-3,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .column.medium-9 {
	width: auto !important;
	max-width: 100%;
	flex: 1 1 240px;
	min-width: 0;
	padding: 0;
}

body.sysfob-v2.tax-reseller_product_category .rstore-list-product .column.medium-3,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .column.medium-3 {
	flex: 0 0 72px;
	max-width: 72px;
}

body.sysfob-v2.tax-reseller_product_category .rstore-list-product .entry-title,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .entry-title a,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .entry-title,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .entry-title a {
	color: var(--sf-ink);
	font-size: 1.15rem;
	font-weight: 600;
	margin: 0 0 0.35rem;
}

body.sysfob-v2.tax-reseller_product_category .rstore-list-product .entry-summary,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .entry-summary {
	color: var(--sf-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

body.sysfob-v2.tax-reseller_product_category .rstore-list-product .product-summary .link,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .product-summary .link {
	color: var(--sf-primary);
	font-weight: 500;
}

body.sysfob-v2.tax-reseller_product_category .rstore-list-product .rstore-svg-hosting,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .rstore-product-icons svg,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .rstore-svg-hosting,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .rstore-list-product .rstore-product-icons svg {
	width: 56px;
	height: 56px;
}

body.sysfob-v2.tax-reseller_product_category .posts-navigation,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .navigation,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .pagination,
body.sysfob-v2.post-type-archive-reseller_product .posts-navigation,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .navigation,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .pagination {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid var(--sf-border);
}

body.sysfob-v2.tax-reseller_product_category .posts-navigation a,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .navigation a,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .pagination a,
body.sysfob-v2.post-type-archive-reseller_product .posts-navigation a,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .navigation a,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .pagination a {
	color: var(--sf-primary);
	font-weight: 600;
	text-decoration: none;
}

body.sysfob-v2.tax-reseller_product_category .posts-navigation a:hover,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .navigation a:hover,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .pagination a:hover,
body.sysfob-v2.post-type-archive-reseller_product .posts-navigation a:hover,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .navigation a:hover,
body.sysfob-v2.tax-reseller_product_category,
body.sysfob-v2.post-type-archive-reseller_product .pagination a:hover {
	color: var(--sf-primary-dark);
}
