/**
 * Theme Overrides & Animations
 *
 * @package NDO_Theme
 */

@keyframes shake {
	0%, 100% {
		transform: translate3d(0, 0, 0);
	}
	10%, 30%, 50%, 70%, 90% {
		transform: translate3d(-4px, 0, 0);
	}
	20%, 40%, 60%, 80% {
		transform: translate3d(4px, 0, 0);
	}
}

.search-bar__search.is-invalid,
.search-bar__search.is-invalid input,
.search-bar__search input.is-invalid,
.shake,
.is-invalid {
	animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.newsletter-form .newsletter-success {
	display: inline-block;
	color: #19431e;
	font-size: 36px;
	line-height: 1;
	padding: 8px 0;
}

/* Product Popup Modal Shell */
.popup-product[hidden],
.popup-product.is-hidden {
	display: none !important;
}

.popup-product {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup-product .bg-cover {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.65);
	cursor: pointer;
	z-index: 1;
}

.popup-product .popup-container {
	position: relative;
	z-index: 2;
	background: #ffffff;
	border-radius: 8px;
	padding: 32px 24px;
	max-width: 480px;
	width: calc(100% - 40px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	text-align: center;
	margin: auto;
}

.popup-product .close-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	background: none;
	border: none;
	font-size: 18px;
	color: #666;
	cursor: pointer;
	padding: 6px;
	line-height: 1;
}

.popup-product .close-btn:hover {
	color: #000;
}

.popup-product .popup-text {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--v2-primary, #191d3a);
	margin-bottom: 20px;
	padding: 0 10px;
}

.popup-product .button-ctr {
	margin-top: 15px;
}

.popup-product .ndo-popup__cta {
	display: inline-block;
	padding: 10px 28px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
}

/* Reference parity: no body scroll lock while the promo overlay is open — the
   reference keeps `.popup-product` a fixed overlay over a scrollable page. */

/* Fixed-header clearance for the listing disclosure strip. The vendored values
   (121/171/161px, main.css) assume the reference's own header heights; ours are
   122/172/161px, so 600–767px showed a 49px blank strip and 990–1023px tucked
   the strip under the header. main.js publishes the measured height; the
   per-breakpoint fallbacks keep the strip correct even before/without JS. */
.page-content__page-deals.deals.ad-container {
	margin-top: var(--ndo-header-h, 122px);
}

@media (min-width: 601px) {
	.page-content__page-deals.deals.ad-container {
		margin-top: var(--ndo-header-h, 172px);
	}
}

@media (min-width: 1024px) {
	.page-content__page-deals.deals.ad-container {
		margin-top: var(--ndo-header-h, 161px);
	}
}

/* ==========================================================================
   T14 — Homepage motion
   ========================================================================== */

/* Disclosure tooltip: keep hover behaviour from vendor CSS, extend to
   focus and JS toggle, and reset button chrome. */
.tooltip-ctr-3 .learn-more {
	border: 0;
	background: none;
	padding: 0;
	font: inherit;
	color: #2b2b2b;
	text-decoration: underline;
	text-underline-offset: 4px;
	margin-left: 4px;
	cursor: pointer;
}

.tooltip-ctr-3 .learn-more:hover + .tooltip-msg-3,
.tooltip-ctr-3 .learn-more:focus + .tooltip-msg-3,
.tooltip-ctr-3 .learn-more[aria-expanded='true'] + .tooltip-msg-3,
.tooltip-ctr-3 .tooltip-msg-3.is-active {
	display: flex;
}

/* Promo banner slider. */
.page-content__page-home--banner {
	position: relative;
	background: #ffffff;
}

.page-content__page-home--banner .banner-ctr {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: 0;
}

.page-content__page-home--banner .ndo-slider__slide {
	position: absolute;
	top: 0;
	left: 100%;
	bottom: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.page-content__page-home--banner .ndo-slider__slide.is-active {
	position: relative;
	left: 0;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.page-content__page-home--banner .ndo-slider__slide.is-slide {
	-webkit-animation: slide 0.2s forwards;
	animation: slide 0.2s forwards;
}

.page-content__page-home--banner .ndo-slider__slide.is-slide-back {
	-webkit-animation: slide-back 0.2s forwards;
	animation: slide-back 0.2s forwards;
}

.page-content__page-home--banner .ndo-slider__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 180px;
	padding: 40px 20px;
	background-color: #f2f4f7;
	background-position: center;
	background-size: cover;
	text-align: center;
}

.page-content__page-home--banner .ndo-slider__title {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--v2-primary, #191d3a);
}

.page-content__page-home--banner .ndo-slider__subtitle {
	font-size: 14px;
	color: #5e5e5e;
}

.page-content__page-home--banner .ndo-slider__nav {
	position: absolute;
	right: 14px;
	bottom: 14px;
	left: 14px;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
}

.page-content__page-home--banner .ndo-slider__arrow {
	pointer-events: auto;
	border: 1px solid #e2e2e2;
	background: #ffffff;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	font-size: 13px;
	line-height: 1;
	color: var(--v2-primary, #191d3a);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.page-content__page-home--banner .ndo-slider__arrow:hover {
	color: #ffffff;
	border-color: var(--v2-primary, #191d3a);
	background: var(--v2-primary, #191d3a);
}

.page-content__page-home--banner .ndo-slider__dots {
	display: flex;
	gap: 6px;
	pointer-events: auto;
}

.page-content__page-home--banner .ndo-slider__dot {
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid #8c8c8c;
	background: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	-webkit-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;
}

.page-content__page-home--banner .ndo-slider__dot.is-active {
	background: var(--v2-primary, #191d3a);
	border-color: var(--v2-primary, #191d3a);
}

/* Deal flip-clock countdown ("Today's deals end in"). */
.page-content__page-home--banner .count-down-new-bf {
	position: absolute;
	top: 15%;
	left: 0;
	right: 0;
	z-index: 99;
	width: 100%;
	height: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.page-content__page-home--banner .count-down-new-bf.is-hidden {
	display: none !important;
}

.page-content__page-home--banner .today-deals-end span {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: var(--v2-primary, #191d3a);
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.page-content__page-home--banner .flip-clock {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	padding: 4px 10px;
	width: fit-content;
}

/* Respect users who prefer reduced motion. */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		-webkit-animation-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		-webkit-transition-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ==========================================================================
   T18 — Static pages (About / Contact / Privacy / Terms)
   ========================================================================== */

/* Shared "Advertising Disclosure" tooltip (tooltip-ctr-2). */
.tooltip-ctr-2 {
	z-index: 100;
	position: relative;
	max-width: 1024px;
	display: flex;
	align-items: center;
	margin-bottom: 14px;
	padding: 14px 0;
}

.tooltip-btn-2 {
	font-size: 14px;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-color: #9da7b2;
	cursor: pointer;
	color: #9da7b2;
	white-space: nowrap;
	border: 0;
	background: none;
	padding: 0;
	font-family: inherit;
}

.tooltip-msg-2 {
	z-index: 100;
	background-color: #ffffff;
	display: none;
	position: absolute;
	width: 290px;
	left: 0;
	top: 24px;
	padding: 20px;
	border-radius: 8px;
	box-shadow: -2px -2px 19px rgba(0, 0, 0, 0.04), 4px 4px 19px -2px rgba(0, 0, 0, 0.06);
}

@media (min-width: 640px) {
	.tooltip-msg-2 {
		left: auto;
		right: -70px;
		width: 380px;
	}
}

.tooltip-btn-2:hover + .tooltip-msg-2,
.tooltip-btn-2:focus + .tooltip-msg-2,
.tooltip-btn-2[aria-expanded='true'] + .tooltip-msg-2,
.tooltip-msg-2.is-active {
	display: block;
}

.tooltip-inner-txt-2 {
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}

.close-btn-2 {
	position: absolute;
	top: 8px;
	right: 10px;
	border: 0;
	background: none;
	color: #9da7b2;
	font-size: 14px;
	cursor: pointer;
	padding: 4px;
	line-height: 1;
}

/* About page. */
body.v2 .page-content__page-about {
	padding-top: 161px !important;
}

@media (max-width: 990px) {
	body.v2 .page-content__page-about {
		padding-top: 167px !important;
	}
}

@media (max-width: 600px) {
	body.v2 .page-content__page-about {
		padding-top: 121px !important;
	}
}

.page-content__page-about .page-content__inner {
	width: 100%;
	max-width: 1024px;
	margin: auto;
	padding: 50px 0;
}

@media (max-width: 990px) {
	.page-content__page-about .page-content__inner {
		padding: 50px 25px;
	}
}

.page-content__page-about .page-content__inner h2 {
	margin: 0;
	font-size: 30px;
	font-weight: 500;
	line-height: 42px;
	color: var(--v2-primary, #191d3a);
	text-transform: uppercase;
	text-align: center;
}

.page-content__page-about--intro {
	position: relative;
	padding: 66px 32px 82px;
	background-color: var(--v2-primary, #191d3a);
}

@media (max-width: 990px) {
	.page-content__page-about--intro {
		padding: 20px 22px;
	}
}

.page-content__page-about--intro .page-content__inner {
	position: relative;
	padding: 0;
	z-index: 2;
}

.page-content__page-about--intro-top {
	width: 100%;
	padding: 38px 32px;
	border-radius: 5px;
	text-align: center;
	background-color: #ffffff;
}

@media (max-width: 990px) {
	.page-content__page-about--intro-top {
		padding: 20px 22px;
	}
}

.page-content__page-about--intro-top h1 {
	display: block;
	margin: 0 0 16px;
	font-size: 30px;
	font-weight: 500;
	line-height: 42px;
	color: var(--v2-primary, #191d3a);
	text-transform: uppercase;
}

@media (max-width: 600px) {
	.page-content__page-about--intro-top h1 {
		font-size: 20px;
	}
}

.page-content__page-about--intro-stats {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

@media (max-width: 990px) {
	.page-content__page-about--intro-stats {
		padding: 30px 0 15px;
		flex-direction: column;
		align-items: center;
	}
}

.page-content__page-about--intro-stat {
	padding: 80px 0 0;
	text-align: center;
}

@media (max-width: 990px) {
	.page-content__page-about--intro-stat {
		padding: 35px 0;
	}
}

.page-content__page-about--intro-stat strong,
.page-content__page-about--intro-stat span {
	display: block;
	text-align: center;
}

.page-content__page-about--intro-stat strong {
	margin-bottom: 20px;
	font-size: 30px;
	font-weight: 500;
	line-height: 32px;
	color: #ffffff;
	text-transform: uppercase;
}

.page-content__page-about--intro-stat span {
	font-size: 16px;
	line-height: 23px;
	color: #ffffff;
}

.page-content__page-about--banner {
	padding: 0;
	text-align: center;
	background: transparent;
}

.page-content__page-about--banner .page-content__inner {
	position: relative;
}

.page-content__page-about--banner .page-content__inner:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: var(--light-border-gray, #e2e2e2);
}

@media (max-width: 990px) {
	.page-content__page-about--banner .page-content__inner:after {
		width: calc(100% - 40px);
		left: 20px;
	}
}

.page-content__page-about--banner h2 {
	margin: 0;
	font-size: 30px;
	font-weight: 500;
	line-height: 42px;
	color: var(--v2-primary, #191d3a);
	text-transform: uppercase;
}

.page-content__page-about--hiw h2,
.page-content__page-about--hiw .page-content__inner h2 {
	margin: 0 0 80px;
}

.page-content__page-about--hiw-items {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

@media (max-width: 990px) {
	.page-content__page-about--hiw-items {
		flex-direction: column;
		align-items: center;
	}
}

.page-content__page-about--hiw-item {
	max-width: 300px;
}

@media (max-width: 990px) {
	.page-content__page-about--hiw-item:not(:last-child) {
		margin-bottom: 50px;
	}
}

.page-content__page-about--hiw-item figure {
	width: 100px;
	height: 100px;
	margin: 0 auto 30px;
}

@media (max-width: 990px) {
	.page-content__page-about--hiw-item figure {
		margin: 0 auto 20px;
	}
}

.page-content__page-about--hiw-item figure img {
	max-width: 100%;
	max-height: 100%;
}

.page-content__page-about--hiw-item h3 {
	margin: 0;
	font-size: 30px;
	font-weight: 500;
	line-height: 32px;
	color: var(--v2-primary, #191d3a);
	text-align: center;
}

.page-content__page-about--who .page-content__inner,
.page-content__page-about--commitment .page-content__inner {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media (max-width: 990px) {
	.page-content__page-about--who .page-content__inner,
	.page-content__page-about--commitment .page-content__inner {
		flex-direction: column;
	}
}

.page-content__page-about--who .page-content__inner h2,
.page-content__page-about--commitment .page-content__inner h2 {
	width: 100%;
	margin: 0 0 60px;
}

.page-content__page-about--who-item,
.page-content__page-about--commitment-item {
	width: 47%;
	padding-left: 14px;
	border-left: 4px solid #d8d8d8;
}

@media (max-width: 990px) {
	.page-content__page-about--who-item,
	.page-content__page-about--commitment-item {
		width: 100%;
	}

	.page-content__page-about--who-item:first-of-type,
	.page-content__page-about--commitment-item:first-of-type {
		margin-bottom: 50px;
	}
}

.page-content__page-about--who-item h3,
.page-content__page-about--commitment-item h3 {
	margin: 0 0 32px;
	font-size: 30px;
	font-weight: 500;
	line-height: 32px;
	color: var(--v2-primary, #191d3a);
}

@media (max-width: 990px) {
	.page-content__page-about--who-item h3,
	.page-content__page-about--commitment-item h3 {
		margin-bottom: 18px;
	}
}

.page-content__page-about--who-item p,
.page-content__page-about--commitment-item p {
	margin: 0;
	font-size: 18px;
	line-height: 25px;
	color: var(--text, #2b2b2b);
}

/* Contact page. */
.page-content__page-contact .page-content__inner {
	width: 100%;
	max-width: 1024px;
	margin: auto;
	padding: 10px 25px;
}

.page-content__page-contact .page-content__inner h2 {
	font-size: 30px;
	font-weight: 500;
	line-height: 42px;
	color: var(--v2-primary, #191d3a);
}

.page-content__page-contact {
	padding-top: 161px;
}

@media (max-width: 990px) {
	.page-content__page-contact {
		padding-top: 130px;
	}
}

@media (max-width: 600px) {
	.page-content__page-contact {
		padding-top: 121px;
	}
}

.page-content__page-contact--form-wrap {
	padding: 40px 0 70px;
}

.page-content__page-contact--form-wrap h1 {
	margin: 0 0 26px;
	font-size: 34px;
	font-weight: 500;
	line-height: 42px;
	color: var(--v2-primary, #191d3a);
	text-align: center;
	text-transform: uppercase;
}

.page-content__page-contact--form {
	max-width: 580px;
	margin: auto;
	text-align: center;
}

.page-content__page-contact--form label {
	display: block;
	margin-bottom: 14px;
}

.page-content__page-contact--form input[type='text'],
.page-content__page-contact--form input[type='email'],
.page-content__page-contact--form textarea {
	width: 100%;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
	padding: 12px 16px;
	font-size: 14px;
	font-family: inherit;
	background: #ffffff;
	color: #1e1e1e;
}

.page-content__page-contact--form .form-btn-send {
	border: 0;
	border-radius: 5px;
	padding: 12px 34px;
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	background: var(--v2-primary, #191d3a);
	cursor: pointer;
}

.page-content__page-contact--form .form-btn-send:hover {
	background: #002868;
}

.page-content__page-contact--form .ndo-hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
}

.contact-form-success {
	max-width: 580px;
	margin: 0 auto 20px;
	padding: 12px 16px;
	border: 1px solid #b7dbb7;
	border-radius: 5px;
	background: #f0f9f0;
	color: #19431e;
	text-align: center;
}

.page-content__page-contact--commitment,
.page-content__page-contact--map {
	padding: 30px 0 70px;
	background: #ffffff;
}

.page-content__page-contact--commitment-items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.page-content__page-contact--commitment-item {
	width: calc(50% - 20px);
	padding: 22px;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
	background: #fbfbfb;
}

.page-content__page-contact--commitment-item h3 {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 600;
	color: var(--v2-primary, #191d3a);
}

.page-content__page-contact--commitment-item p {
	margin: 0;
	font-size: 14px;
	line-height: 22px;
	color: #4b5563;
}

.contact-address p {
	font-size: 15px;
	color: #4b5563;
}

/* Privacy / Terms custom-* layout. */
.custom-main .custom-max-w-1024,
.custom-main .custom-lg-max-w-1024 {
	max-width: 1024px;
}

.custom-main .custom-pt-180 {
	padding-top: 180px;
}

@media (max-width: 990px) {
	.custom-main .custom-pt-180 {
		padding-top: 130px;
	}
}

.custom-main .custom-m-auto {
	margin: auto;
}

.custom-main .custom-my-24 {
	margin-top: 24px;
	margin-bottom: 24px;
}

.custom-main .custom-my-32 {
	margin-top: 32px;
	margin-bottom: 32px;
}

.custom-main .custom-padding-x {
	padding-left: 24px;
	padding-right: 24px;
}

.custom-main .custom-text-gray-1100 {
	color: #1e1e1e;
}

.custom-main .custom-body2 {
	font-size: 15px;
	line-height: 24px;
}

.custom-main .custom-body2 p {
	margin: 0 0 14px;
}

.custom-main .custom-section h1 {
	font-size: 34px;
	font-weight: 600;
	line-height: 44px;
	margin: 0 0 18px;
}

.custom-main h2,
.custom-main h3,
.custom-main h4 {
	color: #1e1e1e;
}

.custom-main .custom-mb-8 {
	margin-bottom: 8px;
}

.custom-main .custom-mt-4 {
	margin-top: 4px;
}

.custom-main .custom-mt-2 {
	margin-top: 2px;
}

.custom-main .custom-mt-12 {
	margin-top: 12px;
}

.custom-main .custom-mt-14 {
	margin-top: 14px;
}

.custom-main .custom-mt-16 {
	margin-top: 16px;
}

.custom-main .custom-mt-24 {
	margin-top: 24px;
}

.custom-main .custom-underline {
	text-decoration: underline;
}

.custom-main .custom-font-700 {
	font-weight: 700;
}

.contact-form-error {
	max-width: 580px;
	margin: 0 auto 20px;
	padding: 12px 16px;
	border: 1px solid #e8b4b4;
	border-radius: 5px;
	background: #fdf0f0;
	color: #7a1f1f;
	text-align: center;
}

/* Show-more loader: navy 12-dot spinner (reference parity). */
.loader {
	background-image: url(../img/vendor/loader-show-more.svg);
}

/* ==========================================================================
   T22 — Categories directory
   ========================================================================== */

.page-content__page-home.deals.categories {
	padding-top: 161px;
}

@media (max-width: 990px) {
	.page-content__page-home.deals.categories {
		padding-top: 130px;
	}
}

@media (max-width: 600px) {
	.page-content__page-home.deals.categories {
		padding-top: 121px;
	}
}

.categories-dropdown__inner.container {
	padding-top: 40px;
	padding-bottom: 60px;
}

.categories-dropdown .category-items__item a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.categories-dropdown .category-items__item a figure {
	width: 100%;
	height: 116px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
}

.categories-dropdown .category-items__item a figure img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

.categories-dropdown .category-items__item a strong {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 18px 10px;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--text, #1e1e1e);
	line-height: 22px;
}

/* ==========================================================================
   T23 — Blog index + single post
   ========================================================================== */

.page-content__page-blog {
	padding-top: 161px;
}

@media (max-width: 990px) {
	.page-content__page-blog {
		padding-top: 130px;
	}
}

@media (max-width: 600px) {
	.page-content__page-blog {
		padding-top: 121px;
	}
}

.page-content__page-blog .page-content__inner {
	max-width: 1320px;
	margin: auto;
	padding: 0 20px;
}

.blog__page_container {
	text-align: center;
}

.blog__page_box {
	background-color: #002868;
	margin: 0 auto 40px;
	text-align: center;
	display: inline-block;
	border: 1px solid #ffffff;
	padding: 10px 0;
	font-size: 1.3em;
}

.blog__page_box a {
	color: #ffffff;
	padding: 8px 12px;
	display: inline-block;
	text-decoration: none;
}

.blog__page_box .current {
	color: #ff0000;
}

/* Single blog post. */
.blog-ctr {
	margin: 165px auto 0;
	max-width: 1100px;
	padding: 0 25px 60px;
}

@media (max-width: 990px) {
	.blog-ctr {
		margin-top: 130px;
	}
}

@media (max-width: 600px) {
	.blog-ctr {
		margin-top: 121px;
	}
}

#blog-content h1 {
	font-size: 34px;
	font-weight: 600;
	line-height: 44px;
	color: var(--v2-primary, #191d3a);
	margin: 0 0 16px;
}

#blog-content .author {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 22px;
}

#blog-content .author img {
	display: inline-block;
	max-height: 50px;
	width: 50px;
	border-radius: 50%;
}

#blog-content .author .author-name {
	font-size: 14px;
	color: #5e5e5e;
}

.blog-post-content {
	font-size: 16px;
	line-height: 26px;
	color: #1e1e1e;
}

.blog-post-content p {
	margin: 0 0 18px;
}

.blog-post-content img {
	max-width: 100%;
	height: auto;
}

/* Popup: use the real (local) panel background instead of the broken .webp stub. */
.popup-product main .content-ctr {
	background-image: url(../img/vendor/popup-bg.png);
}

/* Deals summary: match reference text color + natural line height. */
.intro-2-text {
	color: #2b2b2b;
	line-height: normal;
}

/* Categories directory: Departments heading (reference parity). */
.categories-dropdown__inner h2 {
	font-size: 24px;
	line-height: 29px;
	color: #2b2b2b;
	font-weight: normal;
	margin: 0 0 20px;
}

/* Archive results title: reference text color (not gray). */
.results-bar__inner h1,
.results-bar__inner h1 .deals-found {
	color: #2b2b2b;
}

/* ==========================================================================
   Blog cards (vendored from reference homepage inline <style>)
   ========================================================================== */

.blog__homepage {
	padding: 0 20px;
}

@media (max-width: 990px) {
	.blog__homepage {
		padding: 0 16px;
	}
}

.blog__ctr {
	max-width: 1320px;
	margin: 0 auto;
	display: grid;
	grid-gap: 35px;
	grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
}

@media (max-width: 990px) {
	.blog__ctr {
		grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
	}
}

@media (max-width: 680px) {
	.blog__ctr {
		grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
	}
}

.blog__box {
	border: 1px solid #eaeaea;
	position: relative;
	font-family: sans-serif;
	background: #ffffff;
}

.blog__box a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}

.blog__box a .header {
	height: 220px;
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.blog__box a .header img {
	max-width: 100%;
	max-height: 100%;
}

.blog__box a .main .blog--author {
	position: absolute;
	bottom: 75px;
	left: 10px;
}

.blog__box a .main .blog--author img {
	max-width: 50px;
	max-height: 50px;
	width: auto;
	height: auto;
	border-radius: 50%;
}

.blog__box a .main .blog--title {
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	word-wrap: normal;
	white-space: pre-line;
	padding: 0 10px;
	line-height: 21px;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

.blog__box a .footer {
	border-top: 1px solid #eaeaea;
	padding: 10px 0;
}

.blog__box a .footer .author-name,
.blog__box a .footer .post-date {
	font-size: 12px;
	color: #5C5C5C;
	margin: 0 10px;
}

.blog__box a .footer .post-date {
	margin-left: 0;
}

.blog__page_container {
	text-align: center;
}

.blog__page_box {
	background-color: #002868;
	margin: 0 auto;
	text-align: center;
	display: inline-block;
	border: 1px solid #ffffff;
	padding: 10px 0;
	font-size: 1.3em;
}

.blog__page_box a {
	color: white;
}

.blog__page_box .current {
	color: red;
}

/* ==========================================================================
   Product card seller row (.itlst__itmsrc) & price (.itlst__itmprc) parity
   (vendored verbatim from reference rebuild-v2 homepage inline <style>)
   ========================================================================== */

@media (max-width:990px) {
	body.v2 .items-grid .itlst__itmprc .price__discount {
		font-weight: 700;
	}
}

body.v2 .items-grid .itlst__itmprc .price__discount small {
	position: relative;
	top: -9px;
	font-size: 12px;
	font-weight: 400;
}

@media (max-width:990px) {
	body.v2 .items-grid .itlst__itmprc .price__discount small {
		top: -2px;
	}
}

@media (max-width:990px) {
	body.v2 .items-grid .itlst__itmprc--top-rated .price__discount strong {
		width: auto;
		font-size: 0;
		margin: 0 0 0 8px;
	}
}

@media (max-width:680px) {
	body.v2 .items-grid .itlst__itmprc--top-rated .price__discount strong {
		display: none;
	}
	body.v2 .page-content__page-deals--main .items-grid .itlst__itmsrc {
		padding-bottom: 7px;
	}
	body.v2 .items-grid .itlst__itmprc .price__discount {
		font-size: 15px;
		justify-content: center;
		margin-bottom: 4px;
		margin-top: 4px;
	}
	body.v2 .page-content__page-deals--main .items-grid .itlst__item footer .itlst__itmprc {
		text-align: center !important;
	}
	body.v2 .items-grid .itlst__itmprc .price__original span {
		color: var(--text) !important;
	}
}

body.v2 .items-grid .itlst__itmprc .price__original {
	color: var(--v2-secondary);
	min-height: 15px;
}

body.v2 .items-grid .itlst__itmprc .price__original span {
	color: var(--text);
}

@media (max-width:768px) {
	body.v2 .page-content__page-home--daily-deals-grid .items-grid .itlst__itmsrc {
		top: auto;
		width: 40%;
		padding-right: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	body.v2 .page-content__page-home--daily-deals-grid .items-grid .itlst__itmsrc img {
		min-height: 21px;
	}
	.items-grid .itlst__itmsrc {
		position: relative;
		text-align: center;
	}
}

body.v2 .page-content__page-home--daily-deals .items-grid .itlst__itmsrc {
	padding: 10px 0 0;
}

body.v2 .page-content__page-home--daily-deals .items-grid .itlst__item:first-of-type .itlst__itmsrc {
	position: relative;
	top: 15px;
	bottom: auto;
	left: auto;
	right: -5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-ordinal-group: 7;
	-ms-flex-order: 6;
	order: 6;
	justify-content: flex-end;
}

@media (max-width:990px) {
	body.v2 .page-content__page-home--daily-deals .items-grid .itlst__item:first-of-type .itlst__itmsrc {
		top: auto;
		right: auto;
	}
}

@media (max-width:768px) {
	body.v2 .page-content__page-home--daily-deals .items-grid .itlst__item:first-of-type .itlst__itmsrc {
		padding: 5px 0 0;
		position: absolute;
		right: 20px;
		bottom: 16px;
	}
}

body.v2 .page-content__page-home--daily-deals .items-grid .itlst__item:first-of-type .itlst__itmprc {
	margin: auto 0;
}

body.v2 .page-content__page-department .page-content__page-deals--main .items-grid .itlst__itmsrc {
	bottom: 5px;
	right: 10px;
}

@media (max-width:768px) {
	body.v2 .page-content__page-department .page-content__page-deals--main .items-grid .itlst__item a .itlst__itmsrc {
		padding: 0;
		margin-left: 16px;
	}
}

body.v2 .page-content__page-deals--main .items-grid .itlst__item footer .itlst__itmprc {
	margin-top: 0;
	text-align: left;
	margin-bottom: 4px;
}

@media (max-width:768px) {
	body.v2 .page-content__page-deals--main .items-grid .itlst__itmsrc {
		position: relative;
		top: 0;
		right: 0;
		margin-bottom: 5px;
		flex-grow: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 30px;
		margin-top: 5px;
	}
}

@media (max-width:1200px) {
	body.v2 .page-content__page-deals--main.layout--list .items-grid:not(.items-grid--additional) .itlst__itmsrc {
		margin-bottom: 15px;
	}
}

body.v2 .page-content__page-deals--main.layout--list .items-grid:not(.items-grid--additional) .itlst__itmprc .price__discount {
	font-size: 22px;
}

body.v2 .page-content__page-deals--main.layout--list .items-grid:not(.items-grid--additional) .itlst__itmprc .price__original {
	font-size: 14px;
}

@media (max-width:990px) {
	body.v2 .page-content__page-deals--main.layout--list .items-grid--additional .itlst__itmsrc {
		margin-bottom: 15px;
	}
}

@media (max-width:680px) {
	body.v2 .page-content__page-deals--main.layout--list .items-grid--additional .itlst__itmsrc {
		position: relative;
		top: auto;
		left: auto;
		bottom: auto !important;
		right: auto;
		padding: 10px 0 0;
		margin-top: auto;
		width: 100%;
		text-align: left;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
	}
}

body.v2 .page-content__page-compare--main.layout--list .items-grid:not(.items-grid--additional) .itlst__itmprc .price__original {
	font-size: 14px;
}

@media (max-width:680px) {
	body.v2 .page-content__page-compare--main.layout--list .items-grid:not(.items-grid--additional) .itlst__itmsrc {
		padding: 0;
	}
}

body.v2 .page-content__page-compare--main.layout--list .items-grid:not(.items-grid--additional) .itlst__itmsrc img {
	max-height: 28px;
}

@media (max-width:990px) {
	body.v2 .page-content__page-compare--main.layout--list .items-grid:not(.items-grid--additional) .itlst__itmsrc img {
		max-height: 25px;
	}
}

@media (max-width:680px) {
	body.v2 .page-content__page-compare--main.layout--list .items-grid:not(.items-grid--additional) .itlst__itmsrc img {
		margin: 10px 0 0;
		max-height: 25px;
	}
}

body.v2 .page-content__page-deals--main .items-grid .itlst__itmsrc .itlst__item-prime-logo img {
	max-height: 15px;
}

@media (max-width:768px) {
	body.v2 .page-content__page-deals--main .items-grid .itlst__itmsrc .itlst__item-prime-logo img {
		max-height: 10px;
	}
	body.v2 .page-content__page-deals--main .items-grid .itlst__itmsrc .itlst__item-prime-logo {
		margin-left: 5px;
		margin-top: 5px;
	}
}

.items-grid .itlst__itmprc {
	margin-top: auto;
}

.items-grid .itlst__itmprc .price__discount {
	display: -webkit-box;
	display: -ms-flexbox;
	display: inline-block;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 24.5px;
	font-weight: 700;
	line-height: 22px;
	color: var(--text);
}

body.v2 .page-content__page-deals--main .items-grid .itlst__itmprc .price__discount,
.page-content__page-deals--main .items-grid .itlst__itmprc .price__discount {
	color: #B12703 !important;
	font-size: 20px !important;
}

body.v2 .page-content__page-deals--main .items-grid .itlst__itmprc .price__original,
.page-content__page-deals--main .items-grid .itlst__itmprc .price__original {
	font-size: 15px !important;
}

.items-grid .itlst__itmprc .price__original {
	display: inline-block;
	font-size: 12px;
	margin-top: 5px;
	margin-bottom: 5px;
	letter-spacing: 0.3px;
	color: var(--gray);
}
.items-grid .itlst__itmprc .price__original span:first-child {
	text-decoration: line-through;
}

.items-grid .itlst__itmprc--top-rated strong {
	margin-left: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	font-size: 13px;
	font-weight: 500;
	line-height: 18px;
	color: var(--gray);
}

@media (max-width:990px) {
	.items-grid .itlst__itmprc--top-rated strong {
		width: 100%;
		margin-left: 0;
		margin-top: 6px;
		font-size: 12px;
	}
}

.items-grid .itlst__itmprc--top-rated strong:before {
	content: "";
	display: inline-block;
	margin-right: 6px;
	width: 14px;
	height: 19px;
	background: url(../img/vendor/top-rated.png) center center no-repeat;
	background-size: contain;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

@media (max-width:990px) {
	.items-grid .itlst__itmprc--top-rated strong:before {
		margin-right: 3px;
	}
}

.items-grid .itlst__itmsrc {
	text-align: right;
	position: absolute;
	top: 10px;
	right: 10px;
}

.items-grid .itlst__itmsrc span {
	color: #2b2b2b;
	font-size: 12px;
}

.items-grid .itlst__itmsrc img {
	max-height: 30px;
	max-width: 150px;
}

@media (max-width:990px) {
	.items-grid .itlst__itmsrc img {
		max-width: 100%;
	}
}

@media (max-width:600px) {
	body.v2 .items-grid .itlst__itmprc .price__discount {
		margin-bottom: -2px !important;
	}
	body.v2 .items-grid .itlst__itmprc .price__original {
		margin-top: 0 !important;
	}
}

.page-content__page-home--daily-deals .items-grid .itlst__item:not(:first-of-type) .itlst__itmsrc {
	position: relative;
	top: auto;
	right: auto;
	left: auto;
	bottom: auto;
	margin-top: 5px;
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3;
}

.page-content__page-home--daily-deals .items-grid .itlst__item:nth-of-type(3) a .itlst__itmsrc {
	margin-top: 0;
	text-align: center;
}

.page-content__page-home--daily-deals .items-grid .itlst__item:nth-of-type(3) a .itlst__itmsrc img {
	max-height: 24px;
}

.page-content__page-home--daily-deals-grid_inner .items-grid .itlst__itmsrc,
.page-content__page-home--ending_inner .items-grid .itlst__itmsrc {
	margin: 10px;
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
	text-align: left;
}

@media (max-width:990px) {
	.page-content__page-home--daily-deals-grid_inner .items-grid .itlst__itmsrc,
	.page-content__page-home--ending_inner .items-grid .itlst__itmsrc {
		position: absolute;
		left: 0;
		bottom: 12px;
		width: 40%;
		padding: 20px 0 0 20px;
		text-align: center;
		height: auto;
	}
}

/* The homepage loads main.css (listing stylesheet), which the reference homepage does not;
   it zeroes the thumb's top/bottom margins. Restore the homepage cascade values
   (26px, and 15px below 990px) from reference/rebuild-v2/homepage. */
body.v2.home .items-grid .itlst__itmthmb,
body.v2 .page-content__page-home .items-grid .itlst__itmthmb {
	margin-top: 0 !important;
	margin-bottom: 26px !important;
}

@media (max-width:990px) {
	body.v2.home .items-grid .itlst__itmthmb,
	body.v2 .page-content__page-home .items-grid .itlst__itmthmb {
		margin-bottom: 15px !important;
	}
}

@media (max-width:768px) {
	.page-content__page-home--daily-deals-grid_inner .items-grid .itlst__itmsrc,
	.page-content__page-home--ending_inner .items-grid .itlst__itmsrc {
		padding: 0 0 0 20px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.page-content__page-home--daily-deals-grid_inner .items-grid .itlst__itmsrc img,
	.page-content__page-home--ending_inner .items-grid .itlst__itmsrc img {
		min-height: 21px;
	}
}

@media (max-width:990px) {
	.page-content__page-home--daily-deals-grid_inner .items-grid .itlst__itmprc--top-rated .price__discount strong,
	.page-content__page-home--ending_inner .items-grid .itlst__itmprc--top-rated .price__discount strong {
		display: -ms-inline-flexbox;
		display: inline-flex;
		width: auto;
		margin-left: 6px;
	}
}



/* Breadcrumbs: make last-of-type bold (matches reference body.v2 .breadcrumbs ul li:last-of-type) */
body.v2 .breadcrumbs ul li:last-of-type a,
body.v2 .breadcrumbs ul li:last-of-type span,
.breadcrumbs ul li:last-of-type a,
.breadcrumbs ul li:last-of-type span {
	font-weight: 700;
}
