/* ============================================================
   ENOPOLY DISTRIBUTION - 2026 MODERN REDESIGN
   Brand palette:
     Navy   #1f3a5f  (primary)
     Blue   #1d9bf0  (accent)
     Ink    #1e1e24  (text)
     White  #ffffff  (background)
   Built on top of Bootstrap 3 - all Bootstrap JS hooks preserved.
   ============================================================ */

:root {
	--eno-navy: #1f3a5f;
	--eno-navy-dark: #16294a;
	--eno-blue: #1d9bf0;
	--eno-blue-dark: #0d84d4;
	--eno-ink: #1e1e24;
	--eno-white: #ffffff;
	--eno-gray-50: #f6f8fb;
	--eno-gray-100: #eef2f7;
	--eno-gray-200: #dde5ee;
	--eno-gray-500: #64748b;
	--eno-radius: 10px;
	--eno-radius-sm: 6px;
	--eno-shadow: 0 2px 10px rgba(31, 58, 95, .08);
	--eno-shadow-lg: 0 10px 30px rgba(31, 58, 95, .14);
}

#hp-tabs { display: none; }
#hp-nav { display: none; }
#hp-content { display: none; }

/* ---------- Base typography ---------- */
html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: var(--eno-ink);
	background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
	font-family: inherit;
	font-weight: 700;
	color: var(--eno-ink);
	letter-spacing: -0.01em;
}

a {
	color: var(--eno-blue-dark);
	transition: color .15s ease;
}

a:hover,
a:focus {
	color: var(--eno-navy);
	text-decoration: none;
}

a.nolink {
	cursor: default;
}

::selection {
	background: var(--eno-blue);
	color: #fff;
}

@media print {
	a[href]:after {
		content: none;
	}
}

/* ---------- Utility spacers (legacy names preserved) ---------- */
.spacer-sm { padding-bottom: 10px; }
.spacer-md { padding-bottom: 15px; }
.spacer-top-sm { padding-top: 10px; }
.spacer-top-md { padding-top: 15px; }

.divider {
	border-top: 1px solid var(--eno-gray-200);
	margin: 14px 0;
}

.list-group-divider {
	border-top-width: 4px !important;
	border-top-color: var(--eno-gray-100) !important;
}

/* ---------- Headings ---------- */
.heading, .heading-alt {
	border-bottom: 2px solid var(--eno-gray-200);
}

h1.heading {
	font-size: 24px;
	font-weight: 800;
	color: var(--eno-navy);
	padding-bottom: 10px;
	margin-top: 6px;
	margin-bottom: 18px;
}

h4.heading {
	padding: 6px 0;
	margin-top: 22px;
	color: var(--eno-navy);
	font-weight: 700;
}

h4.heading-alt {
	padding-bottom: 6px;
	color: var(--eno-navy);
}

h1.welcome,
h2.welcome {
	font-size: 22px;
	font-weight: 800;
	color: var(--eno-navy);
}

.paging-sm { text-align: center; }
.paging-sm > nav > ul.pagination { margin: 0; }

.logo-grid {
	text-align: center;
	padding-top: 15px;
}

.btn-block-reg { display: block; }

.popover { max-width: 400px; }

/* ---------- Buttons ---------- */
.btn {
	border-radius: 999px;
	font-weight: 600;
	transition: all .18s ease;
}

.btn-primary {
	background-color: var(--eno-blue);
	border-color: var(--eno-blue);
	color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: var(--eno-blue-dark);
	border-color: var(--eno-blue-dark);
	color: #fff;
	box-shadow: 0 4px 14px rgba(29, 155, 240, .35);
}

.btn-default {
	background-color: #fff;
	border: 1px solid var(--eno-gray-200);
	color: var(--eno-navy);
}

.btn-default:hover,
.btn-default:focus {
	background-color: var(--eno-gray-50);
	border-color: var(--eno-blue);
	color: var(--eno-blue-dark);
}

.btn-success {
	background-color: var(--eno-navy);
	border-color: var(--eno-navy);
}

.btn-success:hover,
.btn-success:focus {
	background-color: var(--eno-navy-dark);
	border-color: var(--eno-navy-dark);
	box-shadow: 0 4px 14px rgba(31, 58, 95, .35);
}

.btn .badge {
	background-color: var(--eno-blue);
}

/* ---------- Forms ---------- */
.form-control {
	border-radius: var(--eno-radius-sm);
	border: 1px solid var(--eno-gray-200);
	box-shadow: none;
	color: var(--eno-ink);
	transition: border-color .15s ease, box-shadow .15s ease;
}

.form-control:focus {
	border-color: var(--eno-blue);
	box-shadow: 0 0 0 3px rgba(29, 155, 240, .18);
}

label {
	font-weight: 600;
	color: var(--eno-navy);
}

/* ---------- Labels & badges ---------- */
.label-default {
	background-color: var(--eno-blue);
	border-radius: 999px;
	padding: .25em .8em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.badge {
	background-color: var(--eno-blue);
	border-radius: 999px;
}

/* ---------- Panels (cards) ---------- */
.panel {
	border: 1px solid var(--eno-gray-200);
	border-radius: var(--eno-radius);
	box-shadow: var(--eno-shadow);
	overflow: hidden;
}

.panel-default > .panel-heading {
	background: var(--eno-navy);
	color: #fff;
	border: none;
	padding: 14px 18px;
}

.panel-default > .panel-heading .panel-title {
	color: #fff;
	font-weight: 700;
}

.panel-body h4 { margin-top: 0; }

.list-group-item {
	border-color: var(--eno-gray-100);
	color: var(--eno-ink);
	transition: background .15s ease;
}

.list-group-item:hover {
	background: var(--eno-gray-50);
	color: var(--eno-blue-dark);
}

.list-group-item.list-group-item-info {
	background: var(--eno-blue);
	color: #fff;
	border-color: var(--eno-blue);
}

.list-group-item.list-group-item-info:hover {
	background: var(--eno-blue-dark);
	color: #fff;
}

/* ---------- Tables ---------- */
.table > thead > tr > th {
	background: var(--eno-gray-50);
	color: var(--eno-navy);
	border-bottom: 2px solid var(--eno-navy);
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .04em;
}

.table > tbody > tr:hover {
	background-color: var(--eno-gray-50);
}

.table > tbody > tr.no-bg {
	background-color: transparent;
}

/* ---------- Pagination ---------- */
.pagination > li > a,
.pagination > li > span {
	color: var(--eno-navy);
	border-color: var(--eno-gray-200);
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > span {
	background-color: var(--eno-blue);
	border-color: var(--eno-blue);
}

/* ---------- Progress ---------- */
.progress {
	border-radius: 999px;
	background: var(--eno-gray-100);
	box-shadow: none;
}

.progress-bar-blank {
	background-color: var(--eno-gray-200);
	color: var(--eno-ink);
}

.progress-bar-success {
	background-color: var(--eno-blue);
}

.progress-bar-success a { color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
header {
	margin-top: 0;
	background: #fff;
}

.hd-main {
	padding-top: 18px;
	padding-bottom: 12px;
}

/* Desktop: flex row so logo (left), tagline (center), phone (right)
   align flush with the nav bar edges below */
@media (min-width: 768px) {
	.hd-main > .row {
		display: flex;
		align-items: center;
	}

	.hd-main > .row:before,
	.hd-main > .row:after {
		display: none;
	}

	.hd-main .hd-phone,
	.hd-main .hd-tagline {
		padding-top: 0;
	}
}

#hd-logo {
	margin-bottom: 0;
	height: 74px;
	width: auto;
	max-width: 100%;
	display: block;
}

.hd-tagline {
	text-align: center;
	color: var(--eno-gray-500);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .14em;
	padding-top: 26px;
}

.hd-tagline .hd-tagline-strong {
	display: block;
	color: var(--eno-navy);
	font-size: 17px;
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: none;
}

.hd-phone {
	text-align: right;
	padding-top: 16px;
}

.hd-phone .hd-phone-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--eno-gray-500);
	text-transform: uppercase;
	letter-spacing: .1em;
}

.hd-phone a {
	font-size: 24px;
	font-weight: 800;
	color: var(--eno-navy);
	letter-spacing: -0.01em;
}

.hd-phone a:hover {
	color: var(--eno-blue);
}

/* ---------- Department nav ---------- */
#hd-departments {
	background-color: #1f3a5f;
	border: none;
	border-radius: var(--eno-radius);
	box-shadow: var(--eno-shadow);
	margin-bottom: 8px;
}

#hd-departments .icon-bar {
	background-color: #fff;
}

#hd-departments .navbar-toggle {
	border-color: rgba(255, 255, 255, .4);
	border-radius: var(--eno-radius-sm);
}

#hd-departments .navbar-toggle:hover,
#hd-departments .navbar-toggle:focus {
	background-color: rgba(255, 255, 255, .12);
}

#navbar > ul.nav li.dropdown > a.dropdown-toggle,
#hd-departments .navbar-brand,
#hd-departments .navbar-nav > li > a {
	color: #ffffff;
	font-weight: 600;
}

#navbar > ul.nav li.dropdown > a.dropdown-toggle {
	transition: background-color .18s ease;
	border-radius: var(--eno-radius-sm);
}

#navbar > ul.nav li.dropdown > a.dropdown-toggle:hover,
#navbar > ul.nav li.dropdown > a.dropdown-toggle:focus,
#navbar > ul.nav li.dropdown:hover > a.dropdown-toggle,
#navbar > ul.nav li.dropdown.open > a.dropdown-toggle {
	background-color: var(--eno-blue) !important;
	color: #fff;
}

#hd-departments .navbar-nav > .open > a,
#hd-departments .navbar-nav > .active > a {
	background-color: var(--eno-blue);
	color: #fff;
}

/* Nav utility buttons (Help / Apply / Log In / Order) */
#hd-departments .btn-default.navbar-btn {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .25);
	color: #fff;
}

#hd-departments .btn-default.navbar-btn:hover,
#hd-departments .btn-default.navbar-btn:focus {
	background: #fff;
	color: var(--eno-navy);
	border-color: #fff;
}

#hd-departments .btn-success.navbar-btn {
	background: var(--eno-blue);
	border-color: var(--eno-blue);
}

#hd-departments .btn-success.navbar-btn:hover {
	background: var(--eno-blue-dark);
	border-color: var(--eno-blue-dark);
}

/* Search */
#hd-search .form-control {
	border-radius: 999px 0 0 999px;
	border: none;
}

#hd-search .btn {
	border-radius: 0 999px 999px 0;
	background: var(--eno-blue);
	border: none;
	color: #fff;
}

#hd-search .btn:hover {
	background: var(--eno-blue-dark);
}

/* ---------- Dropdown menus ---------- */
.dropdown-menu {
	border: 1px solid var(--eno-gray-200);
	border-radius: var(--eno-radius-sm);
	box-shadow: var(--eno-shadow-lg);
	padding: 6px 0;
}

.dropdown-menu > li > a {
	padding: 7px 20px;
	color: var(--eno-ink);
	font-weight: 500;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
	background: var(--eno-gray-50);
	color: var(--eno-blue-dark);
}

@media (max-width: 767px) {
	#navbar > ul.nav li.dropdown > ul.dropdown-menu a {
		color: #fff !important;
	}

	.mobile-spacer-xs { padding-top: 5px; }

	.mobile-input {
		max-width: 200px;
		margin: auto;
	}

	.menu-lv-1 { padding-left: 40px !important; }
	.menu-lv-2 { padding-left: 55px !important; }

	.hd-phone,
	.hd-tagline {
		text-align: center;
		padding-top: 4px;
	}
}

@media (min-width: 768px) {
	#navbar { padding-left: 0; }
	#hd-search-form { width: 42%; }
	#hd-search { width: 100%; }
	#account-links { display: block; }
	.short-input { width: 50% !important; }

	#navbar > ul.nav li.dropdown:hover > ul.dropdown-menu {
		display: block;
		margin-top: 0;
	}
}

@media (min-width: 1200px) {
	#hd-search-form { width: 30%; }
	.container { width: 98%; }
}

/* ---------- Submenus ---------- */
.dropdown-submenu { position: relative; }

.dropdown-submenu > .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	border-radius: 0 var(--eno-radius-sm) var(--eno-radius-sm) var(--eno-radius-sm);
}

.dropdown-submenu:hover > .dropdown-menu { display: block; }

.dropdown-submenu > a:after {
	display: block;
	content: " ";
	float: right;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-left-color: var(--eno-gray-500);
	margin-top: 5px;
	margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
	border-left-color: var(--eno-blue);
}

.dropdown-submenu.pull-left { float: none; }

.dropdown-submenu.pull-left > .dropdown-menu {
	left: -100%;
	margin-left: 10px;
	border-radius: var(--eno-radius-sm) 0 var(--eno-radius-sm) var(--eno-radius-sm);
}

/* ============================================================
   CAROUSEL
   ============================================================ */
#main-carousel {
	border-radius: var(--eno-radius);
	overflow: hidden;
	box-shadow: var(--eno-shadow);
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
	margin: 0 auto;
}

.carousel-control {
	width: 8%;
	background-image: none !important;
	opacity: .6;
}

.carousel-control:hover { opacity: 1; }

.carousel-indicators li {
	border: 2px solid #fff;
	background: rgba(255, 255, 255, .35);
	width: 12px;
	height: 12px;
	margin: 1px 3px;
}

.carousel-indicators .active {
	background: var(--eno-blue);
	border-color: #fff;
	width: 14px;
	height: 14px;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
#index-tabs {
	border-bottom: 2px solid var(--eno-gray-200);
	padding-bottom: 5px;
	margin-bottom: 12px;
}

.nav-pills > li > a {
	border-radius: 999px;
	font-weight: 600;
	color: var(--eno-navy);
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
	background-color: var(--eno-blue);
	color: #fff;
}

.nav-tabs > li > a {
	font-weight: 600;
	color: var(--eno-gray-500);
	border-radius: var(--eno-radius-sm) var(--eno-radius-sm) 0 0;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
	color: var(--eno-navy);
	border-bottom-color: transparent;
}

.tab-content { margin: 10px; }

.product {
	background: #fff;
	border: 1px solid var(--eno-gray-200);
	border-radius: var(--eno-radius);
	padding: 16px;
	margin-bottom: 16px;
	transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.product:hover {
	box-shadow: var(--eno-shadow-lg);
	border-color: var(--eno-blue);
	transform: translateY(-2px);
}

.product h5, .product h6 {
	margin: 2px 0;
	font-weight: 700;
}

.product h5 { font-size: 16px; }

.product h5 > a { color: var(--eno-navy); }
.product h5 > a:hover { color: var(--eno-blue-dark); }

.product h6 {
	color: var(--eno-gray-500);
	font-weight: 600;
}

.product p { margin-bottom: 0; }

.product-info-col,
.product-info-pg {
	text-align: center;
}

.product-info-pg p { margin-bottom: 4px; }

.product-info-quick,
.product-order { float: left; }

.product-order-pg {
	margin: 15px auto;
	max-width: 350px;
	background: var(--eno-gray-50);
	border-radius: var(--eno-radius);
	padding: 14px 10px;
}

.product-more {
	float: left;
	margin-top: 17px;
	margin-right: 10px;
}

.product-tag {
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
	color: var(--eno-blue-dark);
}

h5.product-tag { font-size: 14px !important; }

@media (max-width: 767px) {
	.product-pricing table { margin: 10px 0; }
}

@media (min-width: 768px) {
	.product-info-row {
		display: inline-block;
		display: table-cell;
		vertical-align: middle;
		height: 200px;
		padding-left: 10px;
	}

	.product-img-row { float: left; }

	.product-pricing table { margin: 10px auto; }

	.product-order {
		padding-left: 10px;
		margin-top: 10px;
	}
}

.product-img,
.product-img-row {
	position: relative;
	width: 200px;
	height: 200px;
}

.product-page-img {
	width: 350px;
	height: 350px;
	border: 1px solid var(--eno-gray-200);
	border-radius: var(--eno-radius);
	background: #fff;
}

.product-img img,
.product-img-row img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 200px;
	max-height: 200px;
}

.product-page-img img {
	max-width: 340px;
	max-height: 340px;
}

.product-pricing,
.product-pricing-quick {
	float: left;
	width: 200px;
}

.product-pricing td,
.product-pricing-col td,
.product-pricing-quick td,
.product-pricing-embed td {
	border: 1px solid var(--eno-gray-200);
	padding: 3px 6px;
	font-size: 12px;
	color: var(--eno-gray-500);
}

.product-pricing-col table {
	margin: 10px auto;
	text-align: left;
}

.product-pricing-quick table { margin: 0 10px; }

.product-img-table {
	display: table;
	border-spacing: 5px;
}

.product-img-table > div { display: table-row; }

.product-img-table > div > div {
	display: table-cell;
	border: 1px solid var(--eno-gray-200);
	border-radius: var(--eno-radius-sm);
}

.product-img-table img {
	max-width: 75px;
	max-height: 75px;
}

#product-model {
	font-size: 18px;
	font-weight: 700;
	color: var(--eno-navy);
	margin-top: 0;
	margin-bottom: 4px;
}

tr.priceTableOnDiscount {
	background-color: #e3f3fd;
}

td.endColumnTableLabel,
td.endColumnTableValue {
	font-weight: 700;
	color: var(--eno-navy);
}

.list-price { color: var(--eno-gray-500); }

/* ============================================================
   FOOTER  (dark navy - use ED_Logo-Horizontal-White.png here)
   ============================================================ */
footer {
	background-color: #1f3a5f;
	color: #cdd8e6;
	border-top: 4px solid var(--eno-blue);
	padding: 44px 0 24px;
	margin-top: 44px;
}

footer h4 {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 14px;
}

footer a {
	color: #cdd8e6;
}

footer a:hover,
footer a:focus {
	color: var(--eno-blue);
	text-decoration: none;
}

footer ul.list-unstyled li {
	padding: 3px 0;
}

.ft-logo {
	max-width: 260px;
	height: auto;
	margin-bottom: 16px;
}

.copyright-top {
	border-top: 1px solid rgba(255, 255, 255, .15);
	padding-top: 15px;
	margin-top: 24px;
}

.copyright {
	color: #8fa3bb;
	padding-top: 5px;
}

.copyright a { color: #cdd8e6; }
.copyright a:hover { color: var(--eno-blue); }

.ft-memberships {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--eno-radius);
	padding: 18px 20px 6px;
	margin-top: 18px;
}

.ft-memberships img {
	background: #fff;
	border-radius: var(--eno-radius-sm);
	padding: 8px 12px;
	max-width: 100%;
	height: auto;
}

.ft-memberships p {
	color: #b9c7d8;
	font-size: 13px;
}

.social a {
	background-image: url('/img/site/interface/social.png');
	background-repeat: no-repeat;
	background-color: #fff;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: inline-block;
	vertical-align: top;
	margin-left: 4px;
	transition: transform .15s ease;
}

.social a:hover {
	transform: translateY(-2px);
}

.facebook { background-position: 0 0; }
.twitter { background-position: -32px 0; }
.youtube { background-position: -64px 0; }
.google { background-position: -96px 0; }
.linkedin { background-position: 0 -32px; }
.pinterest { background-position: -32px -32px; }
.instagram { background-position: -64px -32px; }
.reverb { background-position: -96px -32px; }

/* ============================================================
   MODALS
   ============================================================ */
.modal-content {
	border-radius: var(--eno-radius);
	border: none;
	box-shadow: var(--eno-shadow-lg);
}

.modal-header {
	background: var(--eno-navy);
	color: #fff;
	border-radius: var(--eno-radius) var(--eno-radius) 0 0;
}

.modal-header .close { color: #fff; opacity: .8; }
.modal-title { color: #fff; }

/* ============================================================
   HOMEPAGE CONTENT BLOCKS (used by pasted homepage HTML)
   ============================================================ */
.eno-home {
	margin: 6px 0 10px;
}

.eno-hero {
	background: linear-gradient(135deg, var(--eno-navy) 0%, #2a4d7d 60%, var(--eno-blue-dark) 130%);
	color: #fff;
	border-radius: var(--eno-radius);
	padding: 44px 36px;
	margin-bottom: 28px;
	box-shadow: var(--eno-shadow-lg);
}

.eno-hero h1 {
	color: #fff;
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 12px;
	line-height: 1.25;
}

.eno-hero p {
	color: #dbe7f5;
	font-size: 17px;
	max-width: 760px;
	margin-bottom: 20px;
}

.eno-hero .eno-btn,
.eno-btn {
	display: inline-block;
	padding: 12px 30px;
	margin: 4px 8px 4px 0;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	transition: all .18s ease;
}

.eno-btn-primary {
	background: var(--eno-blue);
	color: #fff !important;
	border: 2px solid var(--eno-blue);
}

.eno-btn-primary:hover {
	background: var(--eno-blue-dark);
	border-color: var(--eno-blue-dark);
	box-shadow: 0 6px 18px rgba(29, 155, 240, .4);
	color: #fff;
}

.eno-btn-ghost {
	background: transparent;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, .6);
}

.eno-btn-ghost:hover {
	background: #fff;
	color: var(--eno-navy) !important;
	border-color: #fff;
}

.eno-section-title {
	text-align: center;
	color: var(--eno-navy);
	font-size: 26px;
	font-weight: 800;
	margin: 34px 0 6px;
}

.eno-section-sub {
	text-align: center;
	color: var(--eno-gray-500);
	max-width: 720px;
	margin: 0 auto 24px;
}

.eno-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin: 20px 0 28px;
}

.eno-card {
	background: #fff;
	border: 1px solid var(--eno-gray-200);
	border-top: 3px solid var(--eno-blue);
	border-radius: var(--eno-radius);
	padding: 22px 20px;
	box-shadow: var(--eno-shadow);
	transition: transform .2s ease, box-shadow .2s ease;
}

.eno-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--eno-shadow-lg);
}

.eno-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--eno-navy);
	margin: 0 0 8px;
}

.eno-card p {
	color: var(--eno-gray-500);
	font-size: 14px;
	margin: 0;
}

.eno-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(29, 155, 240, .12);
	color: var(--eno-blue-dark);
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 12px;
}

/* Category grid: image cards, 2 rows of 6 on desktop & landscape tablets */
.eno-cat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 18px 0 30px;
}

@media (min-width: 768px) {
	.eno-cat-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 992px) {
	.eno-cat-grid { grid-template-columns: repeat(6, 1fr); }
}

a.eno-cat-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--eno-gray-200);
	border-radius: var(--eno-radius);
	overflow: hidden;
	box-shadow: var(--eno-shadow);
	color: var(--eno-navy);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

a.eno-cat-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--eno-shadow-lg);
	border-color: var(--eno-blue);
	color: var(--eno-navy);
}

.eno-cat-media {
	display: block;
	height: 130px;
	background: #fff;
	border-bottom: 1px solid var(--eno-gray-100);
	overflow: hidden;
}

.eno-cat-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
	transition: transform .25s ease;
}

a.eno-cat-card:hover .eno-cat-media img {
	transform: scale(1.06);
}

.eno-cat-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 12px 14px 14px;
}

.eno-cat-title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--eno-navy);
}

.eno-cat-sub {
	display: block;
	font-size: 12px;
	color: var(--eno-gray-500);
	margin-top: 3px;
}

.eno-cat-arrow {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--eno-blue-dark);
	margin-top: auto;
	padding-top: 10px;
}

a.eno-cat-card:hover .eno-cat-arrow {
	color: var(--eno-blue);
}

.eno-faq {
	max-width: 900px;
	margin: 0 auto 30px;
}

.eno-faq-item {
	background: #fff;
	border: 1px solid var(--eno-gray-200);
	border-radius: var(--eno-radius);
	padding: 18px 22px;
	margin-bottom: 12px;
}

.eno-faq-item h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--eno-navy);
	margin: 0 0 8px;
}

.eno-faq-item p {
	color: #47566b;
	margin: 0;
}

.eno-cta {
	background: linear-gradient(135deg, var(--eno-navy) 0%, var(--eno-navy-dark) 100%);
	color: #fff;
	border-radius: var(--eno-radius);
	text-align: center;
	padding: 40px 30px;
	margin: 30px 0 10px;
}

.eno-cta h2 {
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 10px;
}

.eno-cta p {
	color: #c9d7e8;
	max-width: 640px;
	margin: 0 auto 18px;
}

/* CTA variant for use inside the dark navy footer */
footer .eno-cta {
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .15);
	margin: 26px 0;
}

footer .eno-cta p {
	color: #c9d7e8;
}

.eno-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 14px;
	margin: 24px 0 30px;
}

.eno-stat {
	text-align: center;
	background: #fff;
	border: 1px solid var(--eno-gray-200);
	border-radius: var(--eno-radius);
	padding: 20px 12px;
	box-shadow: var(--eno-shadow);
}

.eno-stat .eno-stat-num {
	display: block;
	font-size: 34px;
	font-weight: 800;
	color: var(--eno-blue-dark);
	line-height: 1.1;
}

.eno-stat .eno-stat-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--eno-gray-500);
	text-transform: uppercase;
	letter-spacing: .08em;
}

@media (max-width: 600px) {
	.eno-hero { padding: 30px 22px; }
	.eno-hero h1 { font-size: 24px; }
	.eno-section-title { font-size: 21px; }
}

/* =========================================================================
   ENOPOLY DISTRIBUTION - ABOUT US PAGE STYLES
   Scoped under .enopoly-about so rules will not affect the rest of the site.
   Base typography (h1, h2, h3, p, body font & size) is intentionally
   inherited from the site's main stylesheet.
   ========================================================================= */

.enopoly-about {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 15px 40px;
}

/* ---- Headings: only color / spacing / borders, no font-size or family ---- */
.enopoly-about h1 {
  color: #1a3a5c;
  margin: 0 0 10px;
}
.enopoly-about h2 {
  color: #1a3a5c;
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c9d6e2;
}
.enopoly-about h3 {
  color: #1a3a5c;
  margin: 22px 0 8px;
}
.enopoly-about p {
  margin: 0 0 16px;
}

/* ---- Hero / intro ---- */
.enopoly-about .about-hero {
  text-align: center;
  padding: 20px 0 10px;
  border-bottom: 1px solid #e2e8ef;
  margin-bottom: 20px;
}
.enopoly-about .about-tagline {
  font-size: 1.5rem;
  color: #6a7785;
  font-style: italic;
  margin-top: 8px;
}

/* ---- Lede paragraph: inherits paragraph styles, only gets box treatment ---- */
.enopoly-about .about-lede {
  color: #445566;
  margin-bottom: 30px;
  padding: 18px 22px;
  background: #f4f7fa;
  border-left: 4px solid #1a3a5c;
  border-radius: 4px;
}

/* ---- Stats row ---- */
.enopoly-about .stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 28px 0;
  justify-content: space-between;
}
.enopoly-about .stat-box {
  flex: 1 1 160px;
  background: #fff;
  border: 1px solid #d8e1ea;
  border-top: 3px solid #1a3a5c;
  padding: 18px 14px;
  text-align: center;
  border-radius: 4px;
}
.enopoly-about .stat-number {
  display: block;
  font-size: 4.5rem;
  font-weight: 700;
  color: #1a3a5c;
  line-height: 1;
  margin-bottom: 6px;
}
.enopoly-about .stat-label {
  font-size: 0.85rem;
  color: #556677;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- Two-column layout ---- */
.enopoly-about .two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 20px 0;
}
.enopoly-about .two-col > div {
  flex: 1 1 300px;
}

/* ---- Checkmark feature list ---- */
.enopoly-about ul.feature-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.enopoly-about ul.feature-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px dotted #d8e1ea;
}
.enopoly-about ul.feature-list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 8px;
  color: #1a3a5c;
  font-weight: 700;
}
.enopoly-about ul.feature-list li:last-child {
  border-bottom: none;
}

/* ---- Category grid ---- */
.enopoly-about .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.enopoly-about .category-card {
  background: #f4f7fa;
  padding: 14px 16px;
  border-radius: 4px;
  border-left: 3px solid #1a3a5c;
}
.enopoly-about .category-card strong {
  display: block;
  color: #1a3a5c;
  margin-bottom: 3px;
}

/* ---- Trust / industry memberships block ---- */
.enopoly-about .trust-section {
  background: #f4f7fa;
  padding: 25px;
  border-radius: 6px;
  margin: 30px 0;
}
.enopoly-about .trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.enopoly-about .trust-logos img {
  max-height: 60px;
  width: auto;
}

/* ---- CTA box ---- */
.enopoly-about .cta-box {
  background: linear-gradient(135deg, #1a3a5c 0%, #213a60 100%);
  color: #fff;
  padding: 32px 28px;
  border-radius: 6px;
  text-align: center;
  margin: 35px 0 10px;
}
.enopoly-about .cta-box h2 {
  color: #fff;
  border: none;
  margin-top: 0;
}
.enopoly-about .cta-box p {
  color: #dde6f0;
}
.enopoly-about .cta-box a.btn-apply,
.enopoly-about .cta-box a.btn-contact {
  display: inline-block;
  padding: 12px 28px;
  margin: 8px 6px 0;
  background: #fff;
  color: #1a3a5c;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  border: 2px solid #fff;
}
.enopoly-about .cta-box a.btn-apply:hover {
  background: transparent;
  color: #fff;
}
.enopoly-about .cta-box a.btn-contact {
  background: transparent;
  color: #fff;
}
.enopoly-about .cta-box a.btn-contact:hover {
  background: #fff;
  color: #1a3a5c;
}
.enopoly-about a {
  color: #1a3a5c;
}

/* ---- Mobile adjustments (only for page-specific custom sizes) ---- */
@media (max-width: 600px) {
  .enopoly-about .stat-number { font-size: 3rem; }
  .enopoly-about .about-tagline { font-size: 1.2rem; }
}

/* =========================================================================
   ENOPOLY DISTRIBUTION - PRIVACY POLICY STYLES
   Scoped under .enopoly-privacy so rules will not affect the rest of the site.
   Base typography (h1, h2, h3, p, body font & size) is intentionally
   inherited from the site's main stylesheet.
   Visually matches enopoly-about.css for a consistent brand feel.
   ========================================================================= */

.enopoly-privacy {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 15px 40px;
}

/* ---- Headings: only color / spacing / borders, no font-size or family ---- */
.enopoly-privacy h1 {
  color: #1a3a5c;
  margin: 0 0 10px;
}
.enopoly-privacy h2 {
  color: #1a3a5c;
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c9d6e2;
  scroll-margin-top: 20px; /* smooth-scroll offset for TOC jump links */
}
.enopoly-privacy h3 {
  color: #1a3a5c;
  margin: 22px 0 8px;
}
.enopoly-privacy p {
  margin: 0 0 16px;
}
.enopoly-privacy a {
  color: #1a3a5c;
}

/* ---- Hero / intro ---- */
.enopoly-privacy .privacy-hero {
  text-align: center;
  padding: 20px 0 10px;
  border-bottom: 1px solid #e2e8ef;
  margin-bottom: 20px;
}
.enopoly-privacy .privacy-tagline {
  font-size: 1.5rem;
  color: #6a7785;
  font-style: italic;
  margin-top: 8px;
}

/* ---- Effective date / meta row ---- */
.enopoly-privacy .privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0 28px;
  justify-content: space-between;
}
.enopoly-privacy .privacy-meta > div {
  flex: 1 1 200px;
  background: #fff;
  border: 1px solid #d8e1ea;
  border-top: 3px solid #1a3a5c;
  padding: 14px 16px;
  border-radius: 4px;
  text-align: center;
}
.enopoly-privacy .privacy-meta-label {
  display: block;
  font-size: 0.8rem;
  color: #556677;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.enopoly-privacy .privacy-meta-value {
  display: block;
  color: #1a3a5c;
  font-weight: 600;
}

/* ---- Lede paragraph: inherits paragraph text sizing, gets box treatment ---- */
.enopoly-privacy .privacy-lede {
  color: #445566;
  margin-bottom: 30px;
  padding: 18px 22px;
  background: #f4f7fa;
  border-left: 4px solid #1a3a5c;
  border-radius: 4px;
}

/* ---- Table of contents ---- */
.enopoly-privacy .privacy-toc {
  background: #f4f7fa;
  padding: 22px 28px;
  border-radius: 6px;
  margin: 30px 0;
  border: 1px solid #e2e8ef;
}
.enopoly-privacy .privacy-toc h2 {
  margin: 0 0 12px;
  padding: 0;
  border: none;
}
.enopoly-privacy .privacy-toc ol {
  margin: 0;
  padding-left: 22px;
  columns: 2;
  column-gap: 30px;
}
.enopoly-privacy .privacy-toc li {
  padding: 4px 0;
  break-inside: avoid;
}
.enopoly-privacy .privacy-toc a {
  text-decoration: none;
}
.enopoly-privacy .privacy-toc a:hover {
  text-decoration: underline;
}

/* ---- Content lists ---- */
.enopoly-privacy ul.privacy-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
}
.enopoly-privacy ul.privacy-list li {
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px dotted #d8e1ea;
}
.enopoly-privacy ul.privacy-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: #1a3a5c;
  border-radius: 2px;
}
.enopoly-privacy ul.privacy-list li:last-child {
  border-bottom: none;
}

/* ---- Callout / highlight box ---- */
.enopoly-privacy .privacy-callout {
  background: #fdf6e3;
  border-left: 4px solid #c9a227;
  padding: 16px 20px;
  margin: 18px 0 22px;
  border-radius: 4px;
  color: #4a3c10;
}
.enopoly-privacy .privacy-callout strong {
  color: #3d3008;
}

/* ---- Mailing address block ---- */
.enopoly-privacy .privacy-address {
  background: #f4f7fa;
  padding: 18px 22px;
  border-radius: 4px;
  border-left: 4px solid #1a3a5c;
  margin: 18px 0 24px;
  display: inline-block;
  min-width: 280px;
}
.enopoly-privacy .privacy-address h3 {
  margin-top: 0;
  margin-bottom: 8px;
}
.enopoly-privacy .privacy-address p {
  margin-bottom: 0;
}

/* ---- Contact card grid ---- */
.enopoly-privacy .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 20px 0 30px;
}
.enopoly-privacy .contact-card {
  background: #fff;
  padding: 20px 22px;
  border-radius: 6px;
  border: 1px solid #d8e1ea;
  border-left: 4px solid #1a3a5c;
  box-shadow: 0 1px 2px rgba(26, 58, 92, 0.04);
}
.enopoly-privacy .contact-card h3 {
  margin: 6px 0 4px;
}
.enopoly-privacy .contact-card .contact-role {
  display: inline-block;
  background: #1a3a5c;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 6px;
  font-weight: 600;
}
.enopoly-privacy .contact-card .contact-title {
  color: #6a7785;
  font-style: italic;
  margin: 0 0 12px;
}
.enopoly-privacy .contact-card .contact-detail {
  margin: 4px 0;
}

/* ---- Addition for privacy page: regular-sized text inside .stat-box ---- */
/* (.stat-number is 4.5rem which is too large for dates; .stat-text is the
   equivalent size for dates, short strings, or non-numeric stat values) */
.enopoly-about .stat-text {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3a5c;
  line-height: 1.3;
  margin-bottom: 4px;
}

/* ---- Footer note ---- */
.enopoly-privacy .privacy-footer-note {
  text-align: center;
  color: #6a7785;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e2e8ef;
}

/* ---- Mobile adjustments ---- */
@media (max-width: 700px) {
  .enopoly-privacy .privacy-toc ol {
    columns: 1;
  }
  .enopoly-privacy .privacy-tagline {
    font-size: 1.2rem;
  }
  .enopoly-privacy .privacy-address {
    display: block;
  }
}
/* ---- Comparison Table (Enopoly vs. typical distributor) ---- */
.enopoly-about .comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 22px 0 30px;
  background: #fff;
  border: 1px solid #d8e1ea;
  border-radius: 6px;
  overflow: hidden;
}

.enopoly-about .comparison-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  background: #f4f7fa;
  border-bottom: 2px solid #1a3a5c;
  color: #1a3a5c;
}

.enopoly-about .comparison-table thead th:first-child {
  background: #f7e9e9;
  border-bottom-color: #b85a5a;
  color: #6e2727;
}

.enopoly-about .comparison-table thead th:last-child {
  background: #1a3a5c;
  color: #fff;
  border-bottom-color: #1a3a5c;
}

.enopoly-about .comparison-table tbody td {
  padding: 14px 18px;
  vertical-align: top;
  border-bottom: 1px dotted #d8e1ea;
  width: 50%;
}

.enopoly-about .comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.enopoly-about .comparison-table tbody td:first-child {
  background: #fbf6f6;
  color: #555;
  position: relative;
  padding-left: 36px;
}

.enopoly-about .comparison-table tbody td:first-child:before {
  content: "\2715"; /* an x mark */
  position: absolute;
  left: 14px;
  top: 14px;
  color: #b85a5a;
  font-weight: 700;
}

.enopoly-about .comparison-table tbody td:last-child {
  position: relative;
  padding-left: 36px;
}

.enopoly-about .comparison-table tbody td:last-child:before {
  content: "\2713"; /* a checkmark */
  position: absolute;
  left: 14px;
  top: 14px;
  color: #1a3a5c;
  font-weight: 700;
}

/* ---- Pull-quote / testimonial block ---- */
.enopoly-about .enopoly-quote {
  background: linear-gradient(135deg, #1a3a5c 0%, #2c5680 100%);
  color: #fff;
  padding: 30px 35px;
  border-radius: 6px;
  margin: 28px 0;
  position: relative;
}

.enopoly-about .enopoly-quote p {
  color: #fff;
  font-style: italic;
  margin: 0 0 12px;
  padding-left: 28px;
  position: relative;
}

.enopoly-about .enopoly-quote p:before {
  content: "\201C"; /* left double-quote */
  position: absolute;
  left: -4px;
  top: -14px;
  font-size: 4rem;
  line-height: 1;
  color: #ffffff;
  opacity: 0.4;
  font-family: Georgia, "Times New Roman", serif;
}

.enopoly-about .enopoly-quote-source {
  display: block;
  text-align: right;
  color: #dde6f0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---- Mobile: stack comparison table ---- */
@media (max-width: 700px) {
  .enopoly-about .comparison-table thead {
    display: none;
  }

  .enopoly-about .comparison-table,
  .enopoly-about .comparison-table tbody,
  .enopoly-about .comparison-table tr,
  .enopoly-about .comparison-table td {
    display: block;
    width: 100%;
  }

  .enopoly-about .comparison-table tbody tr {
    margin-bottom: 14px;
    border: 1px solid #d8e1ea;
    border-radius: 6px;
    overflow: hidden;
  }

  .enopoly-about .comparison-table tbody td {
    border-bottom: 1px solid #d8e1ea;
  }

  .enopoly-about .comparison-table tbody td:before {
    margin-right: 6px;
  }

  .enopoly-about .comparison-table tbody td:first-child:before,
  .enopoly-about .comparison-table tbody td:last-child:before {
    top: 14px;
  }
}

/* ---- Supplier benefit grid: icon-led cards in 2 or 3 columns ---- */
.enopoly-about .supplier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 22px 0 32px;
}

.enopoly-about .supplier-card {
  background: #fff;
  border: 1px solid #d8e1ea;
  border-top: 3px solid #1a3a5c;
  padding: 24px 22px 20px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(26, 58, 92, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enopoly-about .supplier-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.1);
}

.enopoly-about .supplier-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #1a3a5c 0%, #2c5680 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.enopoly-about .supplier-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.05rem;
}

.enopoly-about .supplier-card p {
  margin-bottom: 0;
  color: #445566;
}
