/* ==========================================================================
   Header — matches live brand: #01163a top, #d93d3d nav, #0f75bc accents
   ========================================================================== */

/* Brand tokens */
/* --brand-navy: #01163a; --brand-red: #d93d3d; --brand-blue: #0f75bc; */

/* --- Top utility bar (desktop) --- */
.site-topbar {
	background: #01163a;
	color: #fff;
	font-size: 13px;
	line-height: 1.4;
}
.site-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 40px;
	padding-top: 6px;
	padding-bottom: 6px;
}
.site-topbar__promo {
	flex: 1;
	color: #e8f4fc;
}
.site-topbar__promo p {
	margin: 0;
}
.site-topbar__auth {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}
.site-topbar__auth a {
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}
.site-topbar__auth a:hover {
	color: #fff;
	opacity: 0.85;
}

/* --- Main header (desktop) — logo + contact strip --- */
.site-header {
	background: #fff;
	border-bottom: 1px solid #e8edf2;
	padding: 14px 0 12px;
}
.site-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}
.site-header #logo {
	margin: 0 !important;
	max-width: 360px;
	flex-shrink: 0;
}
.site-header #logo img {
	max-height: 88px;
	width: auto;
}
.site-header__contact {
	display: flex;
	align-items: center;
	gap: 28px;
	flex: 1;
	justify-content: flex-end;
	min-width: 0;
}
.site-contact-card {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	text-decoration: none;
	color: #0f75bc;
	flex-shrink: 0;
	max-width: none;
}
.site-contact-card:hover,
.site-contact-card:focus {
	text-decoration: none;
	color: #0a5a94;
}
.site-contact-card__icon {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 22px;
	flex-shrink: 0;
	padding-top: 2px;
	font-size: 22px;
	line-height: 1;
	color: #0f75bc;
}
.site-contact-card--phone .site-contact-card__icon {
	font-size: 28px;
	padding-top: 0;
}
.site-contact-card__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	line-height: 1.35;
}
.site-contact-card__body strong {
	font-size: 13px;
	font-weight: 700;
	color: #0f75bc;
	text-transform: none;
	letter-spacing: 0;
}
.site-contact-card__body span {
	font-size: 13px;
	font-weight: 400;
	color: #0f75bc;
	white-space: nowrap;
}
.site-contact-card--phone .site-contact-card__body strong {
	font-size: 14px;
}
.site-contact-stack {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	flex-shrink: 0;
}
.site-notice {
	margin-top: 12px;
	padding: 10px 16px;
	background: #fff8e6;
	border: 1px solid #fde68a;
	border-radius: 6px;
}
.site-notice__text {
	color: #92400e;
	font-size: 14px;
}

/* --- Navigation bar (desktop) — live red bar --- */
.site-navbar {
	background: #d93d3d;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	position: relative;
	z-index: 20;
	overflow: visible;
}
.site-navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 48px;
	flex-wrap: nowrap;
	overflow: visible;
}
.site-navbar__menu {
	flex: 1 1 auto;
	min-width: 0;
}
.site-navbar__actions {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	flex-wrap: nowrap;
	position: relative;
	z-index: 2;
	background: #d93d3d;
	padding-left: 4px;
}
.site-nav {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
.site-nav__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	float: none !important;
	margin: 0 !important;
	overflow: visible;
}
.site-nav__list > li {
	float: none !important;
	flex: 0 0 auto;
}
.site-nav__list > li > a {
	display: block;
	padding: 0 10px !important;
	height: 48px !important;
	line-height: 48px !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s;
}
.site-nav__list > li > a:hover,
.site-nav__list > li > a:focus {
	background: #0f75bc !important;
	color: #fff !important;
}
.site-nav__cta {
	background: transparent !important;
	border-radius: 0;
	margin: 0;
	height: 48px !important;
	line-height: 48px !important;
	padding: 0 10px !important;
}
.site-nav__cta:hover {
	background: #0f75bc !important;
}
.site-nav__dropdown {
	position: relative;
}
.site-nav__dropdown > .dropdown-toggle {
	cursor: pointer;
}
.site-nav__dropdown-menu {
	margin-top: 0;
	border: none;
	border-radius: 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	min-width: 220px;
	padding: 8px 0;
}
.site-nav__dropdown-menu > li > a {
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	white-space: nowrap;
}
.site-nav__dropdown-menu > li > a:hover,
.site-nav__dropdown-menu > li > a:focus {
	background: #f0f7fc;
	color: #0f75bc;
}
.site-nav__dropdown:hover .dropdown-menu,
.site-nav__dropdown.open .dropdown-menu {
	display: block;
}
.site-navbar__rx {
	display: inline-flex;
	align-items: center;
	height: 34px;
	padding: 0 12px;
	border: 2px solid #fff;
	border-radius: 4px;
	color: #fff !important;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s, color 0.15s;
}

.site-navbar__rx:hover,
.site-navbar__rx:focus {
	background: #fff;
	color: #d93d3d !important;
	text-decoration: none;
}

.site-navbar__account > a {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 48px;
	padding: 0 10px;
	color: #fff !important;
	text-decoration: none;
	border: none;
	border-radius: 0;
	font-size: 14px;
	font-weight: 600;
}
.site-navbar__account > a:hover {
	background: #0f75bc;
}
.site-navbar__cart {
	position: relative;
	flex: 0 0 auto;
	align-self: stretch;
	display: flex;
	align-items: stretch;
}
.site-navbar__cart #cart,
.site-navbar__cart .btn-group {
	float: none !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	display: flex !important;
	align-items: stretch;
	position: relative !important;
}
.site-navbar__cart #cart .btn-inverse {
	height: 48px !important;
	line-height: 48px !important;
	padding: 0 14px !important;
	border-radius: 0 !important;
	background: #0f75bc !important;
	border: none !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	width: auto !important;
	float: none !important;
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
}
.site-navbar__cart #cart .btn-inverse:hover {
	background: #0d66a5 !important;
}
.site-navbar__cart #cart .dropdown-menu {
	left: auto !important;
	right: 0 !important;
	top: 100% !important;
	min-width: 300px !important;
	max-width: min(360px, 92vw);
	margin: 0 !important;
	padding: 12px 14px !important;
	background: #fff !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 0 0 6px 6px;
	box-shadow: 0 10px 28px rgba(1, 22, 58, 0.16);
	z-index: 1050;
}
.site-navbar__cart #cart .dropdown-menu li > div {
	min-width: 0 !important;
	padding: 0 !important;
}
.site-navbar__cart #cart .cart-empty__text {
	margin: 8px 0;
	font-size: 14px;
	color: #475569;
	line-height: 1.45;
}

/* --- Search bar — white row, red search button --- */
.site-searchbar#top {
	float: none !important;
	width: 100% !important;
	text-align: left !important;
	margin: 0 !important;
	padding: 10px 0 !important;
	background: #fff !important;
	border-bottom: 1px solid #e5e5e5 !important;
}
.site-searchbar {
	background: #fff;
	border-bottom: 1px solid #e5e5e5;
	padding: 10px 0;
}
.site-searchbar__inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
}
.site-searchbar__brand {
	flex: 0 0 auto;
	max-width: 290px;
}
.site-searchbar__logo {
	max-height: 40px;
	width: auto;
}
.site-searchbar__search {
	flex: 1;
	max-width: none;
	width: auto;
	min-width: 0;
	margin: 0;
}
.site-searchbar__payments {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}
.site-searchbar__payments .cc-accept-img {
	display: block;
	width: auto;
	max-width: 180px;
	height: auto;
	max-height: 32px;
}
.site-searchbar .search_sec {
	width: 100% !important;
	float: none !important;
	display: block !important;
	position: relative;
}
.site-searchbar #search {
	float: none !important;
	width: 100% !important;
	height: 42px;
	border: 1px solid #ddd;
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
}
.site-searchbar #search .btn-lg,
.site-searchbar #button-search-header {
	height: 42px;
	line-height: 42px;
	background: #d93d3d !important;
	border: none;
	border-radius: 0;
	padding: 0 16px;
}
.site-searchbar #search .btn-lg:hover,
.site-searchbar #button-search-header:hover {
	background: #c23535 !important;
}

.site-searchbar #search .input-lg,
.site-searchbar .form-control,
.site-searchbar .search-input-lg {
	height: 42px !important;
	line-height: 42px !important;
	font-size: 15px !important;
	padding-top: 0;
	padding-bottom: 0;
}

/* --- Mobile compact header --- */
.site-mhead {
	display: none;
	background: #fff;
	border-bottom: 3px solid #d93d3d;
	box-shadow: none;
	position: sticky;
	top: 0;
	z-index: 1030;
}
.site-mhead__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 60px;
}
.site-mhead__logo {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
}
.site-mhead__logo img {
	max-height: 52px;
	width: auto;
	max-width: 100%;
}
.site-mhead__actions {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.site-mhead__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid #ddd;
	border-radius: 0;
	background: #fff;
	color: #0f75bc !important;
	font-size: 18px;
	text-decoration: none;
	padding: 0;
	line-height: 1;
}
.site-mhead__btn .fa-phone {
	color: #0f75bc;
}
.site-mhead__btn:hover,
.site-mhead__btn:focus {
	background: #f5f5f5;
	border-color: #0f75bc;
	color: #0f75bc !important;
	outline: none;
}
.site-mhead__menu {
	cursor: pointer;
	color: #d93d3d !important;
	border-color: #d93d3d;
}
.site-mhead__menu .fa {
	color: #d93d3d;
}
.site-mhead__menu:hover {
	background: #d93d3d;
	color: #fff !important;
}
.site-mhead__menu:hover .fa {
	color: #fff;
}
.site-mhead__cart #cart-mobile .btn-inverse {
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	padding: 0 !important;
	line-height: 1 !important;
	border-radius: 0 !important;
	background: #0f75bc !important;
	border: none !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
}
.site-mhead__cart #cart-mobile .btn-inverse #cart-total-mobile {
	display: none;
}
.site-mhead__cart #cart-mobile .btn-inverse .fa-shopping-cart,
.site-mhead__cart #cart-mobile .btn-inverse .sl-icon {
	font-size: 18px;
	margin: 0;
}
.site-mhead__cart #cart-mobile {
	float: none !important;
	width: auto !important;
	position: relative !important;
}
.site-mhead__cart #cart-mobile .dropdown-menu {
	right: 0 !important;
	left: auto !important;
	min-width: 280px !important;
}

/* --- Mobile slide-out drawer --- */
.site-drawer {
	display: none;
}
.site-drawer__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	transition: opacity 0.25s ease;
	z-index: 1040;
}
.site-drawer__panel {
	position: fixed;
	top: 0;
	right: 0;
	width: min(300px, 88vw);
	height: 100%;
	background: #fff;
	z-index: 1050;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.28s ease;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}
.site-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	background: #d93d3d;
	color: #fff;
	flex-shrink: 0;
}
.site-drawer__title {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.3px;
}
.site-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 20px;
	padding: 0;
	cursor: pointer;
	line-height: 1;
}
.site-drawer__close:hover {
	background: rgba(255, 255, 255, 0.25);
}
.site-drawer__nav {
	flex: 1;
	overflow-y: auto;
	padding: 8px 0;
	-webkit-overflow-scrolling: touch;
}
.site-drawer__link {
	display: block;
	padding: 14px 20px;
	color: #1e293b !important;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid #f1f5f9;
}
.site-drawer__link:hover,
.site-drawer__link:focus {
	background: #f5f5f5;
	color: #d93d3d !important;
	text-decoration: none;
}
.site-drawer__link--cta {
	margin: 12px 16px;
	padding: 12px 16px;
	background: #d93d3d !important;
	color: #fff !important;
	border-radius: 0;
	text-align: center;
	border-bottom: none;
}
.site-drawer__link--cta:hover {
	background: #c23535 !important;
	color: #fff !important;
}
.site-drawer__link--label {
	font-weight: 700;
	color: #0f75bc !important;
	cursor: default;
}
.site-drawer__link--label:hover,
.site-drawer__link--label:focus {
	background: transparent;
	color: #0f75bc !important;
}
.site-drawer__sublink {
	display: block;
	padding: 10px 20px 10px 32px;
	font-size: 14px;
	font-weight: 600;
	color: #444 !important;
	text-decoration: none;
	border-bottom: 1px solid #f1f5f9;
}
.site-drawer__sublink--hub {
	color: #0f75bc !important;
}
.site-drawer__sublink:hover,
.site-drawer__sublink:focus {
	background: #f5f9fc;
	color: #0f75bc !important;
}
.site-drawer__contact {
	flex-shrink: 0;
	padding: 12px 16px;
	border-top: 1px solid #e5e5e5;
	background: #fafafa;
}
.site-drawer__contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	margin-bottom: 8px;
	background: #fff;
	border: 1px solid #e5e5e5;
	text-decoration: none;
	color: #333 !important;
}
.site-drawer__contact-item:last-child {
	margin-bottom: 0;
}
.site-drawer__contact-item:hover,
.site-drawer__contact-item:focus {
	border-color: #0f75bc;
	background: #f5f9fc;
	text-decoration: none;
	color: #333 !important;
}
.site-drawer__contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	background: #0f75bc;
	color: #fff;
	font-size: 16px;
}
.site-drawer__contact-body {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.3;
}
.site-drawer__contact-body strong {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: #666;
	font-weight: 600;
}
.site-drawer__contact-body span {
	font-size: 13px;
	font-weight: 600;
	color: #222;
	word-break: break-word;
}
.site-drawer__auth a {
	color: #0f75bc !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}
.site-drawer__auth a:hover {
	color: #d93d3d !important;
}
.site-drawer__footer {
	flex-shrink: 0;
	padding: 16px 20px 24px;
	border-top: 1px solid #e5e5e5;
	background: #fafafa;
}
.site-drawer__auth {
	display: flex;
	gap: 16px;
	margin-bottom: 14px;
}

.site-drawer.is-open .site-drawer__backdrop {
	opacity: 1;
}
.site-drawer.is-open .site-drawer__panel {
	transform: translateX(0);
}
body.site-drawer-open {
	overflow: hidden;
}

/* --- Shared --- */
.blog-page .container,
#information-information .container,
#blog-hub .container,
#blog-article .container {
	max-width: 1140px;
}
.breadcrumb {
	background: transparent;
	padding: 12px 0;
	margin-bottom: 16px !important;
	font-size: 13px;
}
.breadcrumb > li + li:before {
	color: #94a3b8;
}
.menu_main,
.top_header.header_bar {
	display: none !important;
}

/* --- Mobile breakpoint --- */
@media (max-width: 991px) {
	.site-topbar,
	.site-header,
	.site-navbar {
		display: none !important;
	}
	.site-mhead {
		display: block;
	}
	.site-drawer {
		display: block;
		pointer-events: none;
	}
	.site-drawer.is-open {
		pointer-events: auto;
	}
	.site-drawer:not(.is-open) .site-drawer__backdrop,
	.site-drawer:not(.is-open) .site-drawer__panel {
		visibility: hidden;
	}
	.site-drawer.is-open .site-drawer__backdrop,
	.site-drawer.is-open .site-drawer__panel {
		visibility: visible;
	}
	.site-searchbar,
	.site-searchbar#top {
		padding: 6px 0 !important;
	}
	.site-searchbar__inner {
		flex-direction: column;
		gap: 0;
	}
	.site-searchbar__search {
		max-width: none;
	}
	.site-searchbar #search {
		height: 36px;
	}
	.site-searchbar #search .input-lg {
		height: 36px;
		line-height: 36px;
		font-size: 13px;
	}
	.site-searchbar #search .btn-lg,
	.site-searchbar #button-search-header {
		height: 36px;
		line-height: 36px;
		padding: 0 12px;
	}
}

@media (max-width: 767px) {
	.site-mhead__logo img {
		max-height: 48px;
	}
	.site-mhead__inner {
		min-height: 56px;
	}
}

/* Tighten nav on mid-width desktops so Contact / Upload don't collide */
@media (min-width: 992px) and (max-width: 1199px) {
	.site-nav__list > li > a {
		font-size: 14px !important;
		padding: 0 7px !important;
	}
	.site-navbar__rx {
		padding: 0 10px;
		font-size: 13px;
	}
	.site-navbar__account > a {
		padding: 0 8px;
		font-size: 13px;
	}
	.site-navbar__cart #cart .btn-inverse {
		padding: 0 12px !important;
		font-size: 13px !important;
	}
}
