.seti-v2-body {
	--seti-v2-header-ink: #141414;
	--seti-v2-header-paper: #fdfcfa;
	--seti-v2-header-accent: #a38b5f;
	--seti-v2-ink: #141414;
	--seti-v2-paper: #fdfcfa;
	--seti-v2-accent: #a38b5f;
	height: auto !important;
	min-height: 100vh !important;
	padding-top: 0 !important;
	background: #141414;
}

.seti-v2-main-wrap {
	width: 100%;
	overflow: visible;
}

.seti-v2-announcement {
	box-sizing: border-box;
	width: 100%;
	padding: 10px 24px;
	background: var(--seti-v2-header-ink);
	color: #f5f1ea;
	font-family: "Assistant", "Helvetica Neue", Arial, sans-serif;
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.08em;
	line-height: 1.5;
	text-align: center;
}

.seti-v2-site-header,
.seti-v2-site-header * {
	box-sizing: border-box;
}

.seti-v2-site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 !important;
	border-bottom: 1px solid #e8e2d8;
	background: #fff;
	color: var(--seti-v2-header-ink);
	font-family: "Assistant", "Helvetica Neue", Arial, sans-serif;
}

.seti-v2-site-header__inner {
	display: grid;
	width: 100%;
	max-width: 1440px;
	min-height: 88px;
	align-items: center;
	grid-template-columns: minmax(150px, 190px) minmax(0, 1fr) minmax(150px, 190px);
	gap: 28px;
	margin-inline: auto;
	padding: 14px 48px;
}

.seti-v2-site-header__nav {
	display: block;
	width: 100%;
	min-width: 0;
	grid-column: 2;
	grid-row: 1;
	justify-self: center;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.seti-v2-menu,
.seti-v2-menu .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.seti-v2-menu--desktop {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2.1vw, 34px);
}

.seti-v2-menu--desktop > li {
	position: relative;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Keep the parent item hovered while the pointer crosses into its dropdown. */
.seti-v2-menu--desktop > .menu-item-has-children::before {
	position: absolute;
	z-index: 9;
	top: 100%;
	right: -14px;
	left: -14px;
	height: 16px;
	content: "";
}

/*
 * The original SETI theme gives every desktop menu item a large left margin.
 * Reset it only inside the V2 header so the menu stays compact and centered.
 */
.seti-v2-site-header .seti-v2-menu--desktop > li > a {
	padding: 0 !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	letter-spacing: 0.04em;
	line-height: 1.6;
}

.seti-v2-menu a {
	display: block;
	color: var(--seti-v2-header-ink);
	text-decoration: none;
	transition: color 180ms ease;
}

.seti-v2-menu a:hover,
.seti-v2-menu a:focus-visible {
	color: var(--seti-v2-header-accent);
}

/* The separate desktop SALE item uses the gold tone from the approved sketch. */
.seti-v2-menu--desktop > li > .seti-v2-menu-link--sale,
.seti-v2-menu--desktop > li > a[href*="/best-buy/"],
.seti-v2-menu--desktop > li > a[href*="/sale/"] {
	color: var(--seti-v2-header-accent) !important;
	font-weight: 500 !important;
}

.seti-v2-menu--desktop .menu-item-has-children > a::after {
	display: inline-block;
	margin-right: 7px;
	border: solid currentColor;
	border-width: 0 1px 1px 0;
	padding: 3px;
	content: "";
	transform: translateY(-2px) rotate(45deg);
}

.seti-v2-menu--desktop .sub-menu {
	position: absolute;
	z-index: 10;
	top: calc(100% + 14px);
	right: 50%;
	width: max-content;
	min-width: 280px;
	max-width: min(380px, calc(100vw - 32px));
	max-height: min(70vh, 680px);
	overflow: auto;
	padding: 20px 0;
	border: 1px solid #eee9e1;
	background: #fff;
	box-shadow: 0 16px 36px rgba(20, 20, 20, 0.14);
	opacity: 0;
	pointer-events: none;
	transform: translateX(50%) translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
	visibility: hidden;
}

.seti-v2-menu--desktop .sub-menu a {
	padding: 8px 28px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.5;
	white-space: normal;
}

/*
 * The shop contains many categories. Present it as a compact two-column
 * desktop menu so every item remains visible without an internal scrollbar.
 */
.seti-v2-menu--desktop > .seti-v2-menu-item--shop > .sub-menu,
.seti-v2-menu--desktop > li > a[href$="/shop/"] + .sub-menu {
	width: min(680px, calc(100vw - 64px));
	min-width: min(680px, calc(100vw - 64px));
	max-width: min(680px, calc(100vw - 64px));
	max-height: none;
	overflow: visible;
	padding: 24px 10px;
	column-count: 2;
	column-gap: 0;
}

.seti-v2-menu--desktop > .seti-v2-menu-item--shop > .sub-menu > li,
.seti-v2-menu--desktop > li > a[href$="/shop/"] + .sub-menu > li {
	break-inside: avoid;
}

.seti-v2-menu--desktop > .seti-v2-menu-item--shop > .sub-menu > li > a,
.seti-v2-menu--desktop > li > a[href$="/shop/"] + .sub-menu > li > a {
	padding: 8px 28px;
}

.seti-v2-menu--desktop li:hover > .sub-menu,
.seti-v2-menu--desktop li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(50%) translateY(0);
	visibility: visible;
	}

.seti-v2-menu--desktop .sub-menu .sub-menu {
	top: -20px;
	right: calc(100% - 2px);
	transform: translateX(0) translateY(8px);
	}

.seti-v2-menu--desktop .sub-menu li:hover > .sub-menu,
.seti-v2-menu--desktop .sub-menu li:focus-within > .sub-menu {
	transform: translateX(0) translateY(0);
}

.seti-v2-site-header__logo {
	display: block;
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
}

.seti-v2-site-header__logo img {
	display: block;
	width: auto;
	height: 32px;
	filter: invert(1);
}

.seti-v2-site-header__actions {
	display: flex;
	align-items: center;
	grid-column: 3;
	grid-row: 1;
	justify-content: flex-end;
	justify-self: end;
	gap: 26px;
}

.seti-v2-site-header__action,
.seti-v2-header-search > summary {
	display: inline-flex;
	min-width: 24px;
	min-height: 32px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--seti-v2-header-ink);
	cursor: pointer;
	line-height: 1;
	text-decoration: none;
	transition: color 180ms ease;
}

.seti-v2-site-header__action:hover,
.seti-v2-site-header__action:focus-visible,
.seti-v2-header-search > summary:hover,
.seti-v2-header-search > summary:focus-visible {
	color: var(--seti-v2-header-accent);
}

.seti-v2-site-header__cart {
	gap: 7px;
	font-size: 14px;
	font-weight: 400;
	appearance: none;
}

.seti-v2-header-search {
	position: relative;
}

.seti-v2-header-search > summary,
.seti-v2-mobile-menu > summary {
	list-style: none;
}

.seti-v2-header-search > summary::-webkit-details-marker,
.seti-v2-mobile-menu > summary::-webkit-details-marker {
	display: none;
}

.seti-v2-header-search__form {
	position: absolute;
	top: calc(100% + 20px);
	left: 0;
	display: grid;
	width: min(360px, calc(100vw - 32px));
	grid-template-columns: 1fr auto;
	padding: 12px;
	border: 1px solid #e8e2d8;
	background: #fff;
	box-shadow: 0 14px 34px rgba(20, 20, 20, 0.12);
}

.seti-v2-header-search__form input,
.seti-v2-mobile-menu__search input {
	min-width: 0;
	padding: 11px 13px;
	border: 1px solid #d8d1c5;
	border-radius: 0;
	background: #fff;
	color: var(--seti-v2-header-ink);
	font: inherit;
}

.seti-v2-header-search__form button,
.seti-v2-mobile-menu__search button {
	padding: 10px 18px;
	border: 1px solid var(--seti-v2-header-ink);
	border-radius: 0;
	background: var(--seti-v2-header-ink);
	color: #fff;
	font: inherit;
	cursor: pointer;
}

.seti-v2-mobile-menu {
	display: none;
}

.seti-v2-mobile-menu__toggle {
	display: flex;
	width: 32px;
	height: 32px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
}

.seti-v2-mobile-menu__toggle span {
	display: block;
	width: 24px;
	height: 1px;
	background: var(--seti-v2-header-ink);
	transition: transform 180ms ease, opacity 180ms ease;
}

.seti-v2-mobile-menu[open] .seti-v2-mobile-menu__toggle span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.seti-v2-mobile-menu[open] .seti-v2-mobile-menu__toggle span:nth-child(2) {
	opacity: 0;
}

.seti-v2-mobile-menu[open] .seti-v2-mobile-menu__toggle span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.seti-v2-mobile-menu__panel {
	position: absolute;
	z-index: 2;
	top: 100%;
	right: 0;
	left: 0;
	max-height: calc(100vh - 68px);
	overflow-y: auto;
	padding: 28px 24px 32px;
	border-top: 1px solid #e8e2d8;
	background: #fff;
	box-shadow: 0 20px 36px rgba(20, 20, 20, 0.1);
	overscroll-behavior: contain;
}

.seti-v2-mobile-menu__nav {
	font-size: 18px;
	font-weight: 400;
	text-align: right;
}

.seti-v2-menu--mobile {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.seti-v2-menu--mobile li {
	position: relative;
	margin: 0 !important;
	padding: 0 !important;
}

.seti-v2-menu--mobile .menu-item-has-children > a {
	padding-left: 46px;
}

.seti-v2-mobile-submenu-toggle {
	position: absolute;
	top: -4px;
	left: 0;
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--seti-v2-header-ink);
	cursor: pointer;
	appearance: none;
}

.seti-v2-mobile-submenu-toggle::before {
	display: block;
	width: 8px;
	height: 8px;
	border: solid currentColor;
	border-width: 0 1px 1px 0;
	content: "";
	transform: translateY(-2px) rotate(45deg);
	transition: transform 180ms ease;
}

.seti-v2-menu--mobile .is-submenu-open > .seti-v2-mobile-submenu-toggle::before {
	transform: translateY(2px) rotate(225deg);
}

.seti-v2-menu--mobile .sub-menu {
	display: none;
	gap: 10px;
	margin-top: 12px;
	padding-right: 18px;
}

.seti-v2-menu--mobile .is-submenu-open > .sub-menu {
	display: grid;
}

.seti-v2-menu--mobile .sub-menu a {
	color: #5f5a52;
	font-size: 15px;
	font-weight: 300;
}

.seti-v2-mobile-menu__search {
	display: grid;
	grid-template-columns: 1fr auto;
	margin-top: 28px;
}

.seti-v2-newsletter,
.seti-v2-newsletter *,
.seti-v2-footer,
.seti-v2-footer * {
	box-sizing: border-box;
}
.seti-v2-newsletter,
.seti-v2-footer {
	--seti-v2-ink: #141414;
	--seti-v2-paper: #fdfcfa;
	--seti-v2-accent: #a38b5f;
	font-family: "Assistant", "Helvetica Neue", Arial, sans-serif;
}

.seti-v2-newsletter {
	margin-top: 0;
	background: #f5f1ea;
	color: var(--seti-v2-ink);
}

.seti-v2-newsletter__inner {
	display: flex;
	width: 100%;
	max-width: 760px;
	margin-inline: auto;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	padding: clamp(64px, 7vw, 110px) 48px;
	text-align: center;
}

.seti-v2-newsletter .seti-v2-newsletter__eyebrow {
	margin: 0;
	color: var(--seti-v2-accent);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.28em;
}

.seti-v2-newsletter .seti-v2-newsletter__title {
	margin: 0;
	color: var(--seti-v2-ink);
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 200;
	line-height: 1.25;
}

.seti-v2-newsletter__description {
	max-width: 52ch;
	color: #55504a;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.7;
}

.seti-v2-newsletter__description p,
.seti-v2-newsletter__description h3 {
	margin: 0;
	color: inherit;
	font: inherit;
}

.seti-v2-newsletter__form {
	width: 100%;
	margin-top: 16px;
	text-align: right;
}

.seti-v2-newsletter .wpcf7-form {
	width: 100%;
}

.seti-v2-newsletter .wpcf7-form p {
	margin: 0 0 18px;
}

.seti-v2-newsletter .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.seti-v2-newsletter input[type="text"],
.seti-v2-newsletter input[type="email"],
.seti-v2-newsletter input[type="tel"] {
	display: block;
	width: 100%;
	min-height: 48px;
	padding: 10px 4px;
	border: 0;
	border-bottom: 1px solid var(--seti-v2-ink);
	border-radius: 0;
	outline: 0;
	background: transparent;
	color: var(--seti-v2-ink) !important;
	-webkit-text-fill-color: var(--seti-v2-ink);
	font-family: inherit;
	font-size: 16px;
	font-weight: 300;
	text-align: right;
}

.seti-v2-newsletter input[type="text"]::placeholder,
.seti-v2-newsletter input[type="email"]::placeholder,
.seti-v2-newsletter input[type="tel"]::placeholder {
	color: var(--seti-v2-ink) !important;
	opacity: 0.72;
}

.seti-v2-newsletter input[type="text"]:focus,
.seti-v2-newsletter input[type="email"]:focus,
.seti-v2-newsletter input[type="tel"]:focus {
	border-bottom-color: var(--seti-v2-accent);
	box-shadow: 0 1px 0 var(--seti-v2-accent);
}

.seti-v2-newsletter input[type="checkbox"] {
	accent-color: var(--seti-v2-ink);
}

.seti-v2-newsletter .wpcf7-list-item {
	margin: 0;
}

.seti-v2-newsletter .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #8a8478;
	font-size: 13px;
	font-weight: 300;
}

.seti-v2-newsletter input[type="submit"] {
	display: block;
	width: fit-content;
	min-height: 50px;
	margin-inline: auto;
	padding: 13px 44px;
	border: 1px solid var(--seti-v2-ink);
	border-radius: 0;
	background: var(--seti-v2-ink);
	color: var(--seti-v2-paper);
	font-family: inherit;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease;
}

.seti-v2-newsletter input[type="submit"]:hover,
.seti-v2-newsletter input[type="submit"]:focus-visible {
	background: transparent;
	color: var(--seti-v2-ink);
}

.seti-v2-newsletter .wpcf7-not-valid-tip {
	margin-top: 5px;
	color: #8a2f2f;
	font-size: 13px;
}

.seti-v2-newsletter .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 10px 14px;
	font-size: 14px;
	text-align: center;
}

.seti-v2-footer {
	display: block;
	margin: 0;
	padding: 0;
	background: var(--seti-v2-ink);
	color: #b8b2a8;
}

.seti-v2-body footer:not(.seti-v2-footer) {
	display: none !important;
}

.seti-v2-body .contect_section {
	display: none !important;
}

.seti-v2-footer__grid {
	display: grid;
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 48px;
	padding: clamp(56px, 6vw, 90px) 48px 0;
}

.seti-v2-footer__brand,
.seti-v2-footer__column {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
}

.seti-v2-footer__brand {
	gap: 20px;
}

.seti-v2-footer__logo {
	display: inline-flex;
	max-width: 190px;
}

.seti-v2-footer__logo img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 34px;
	object-fit: contain;
}

.seti-v2-footer .seti-v2-footer__summary {
	max-width: 30ch;
	margin: 0;
	color: #b8b2a8;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.7;
}

.seti-v2-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.seti-v2-footer__column {
	gap: 10px;
}

.seti-v2-footer .seti-v2-footer__heading,
.seti-v2-footer .seti-v2-footer__subheading {
	margin: 0;
	color: #f5f1ea;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.5;
}

.seti-v2-footer .seti-v2-footer__heading {
	margin-bottom: 8px;
}

.seti-v2-footer .seti-v2-footer__subheading {
	color: #d6d0c5;
	letter-spacing: 0.12em;
}

.seti-v2-footer .seti-v2-footer__subheading--spaced {
	margin-top: 12px;
}

.seti-v2-footer .seti-v2-footer__column p {
	margin: 0;
	color: #b8b2a8;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.65;
}

.seti-v2-footer a {
	color: #b8b2a8;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6;
	text-decoration: none;
}

.seti-v2-footer__social a,
.seti-v2-footer .seti-v2-footer__emphasis-link {
	color: #f5f1ea;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.1em;
}

.seti-v2-footer .seti-v2-footer__emphasis-link {
	margin-top: 8px;
}

.seti-v2-footer a:hover,
.seti-v2-footer a:focus-visible {
	color: var(--seti-v2-accent);
}

.seti-v2-footer a:focus-visible {
	outline: 1px solid var(--seti-v2-accent);
	outline-offset: 4px;
}

.seti-v2-footer__bottom {
	display: flex;
	width: calc(100% - 96px);
	max-width: 1344px;
	margin: 48px auto 0;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 32px 0 40px;
	border-top: 1px solid #2a2a2a;
	color: #8f8a82;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.6;
}

.seti-v2-footer__shipping {
	letter-spacing: 0.08em;
}

@media (max-width: 900px) {
	.seti-v2-announcement {
		padding: 8px 16px;
		font-size: 12px;
	}

	.seti-v2-site-header__inner {
		min-height: 68px;
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 16px;
		padding: 10px 20px;
	}

	.seti-v2-site-header__nav {
		display: none;
	}

	.seti-v2-mobile-menu {
		display: block;
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
	}

	.seti-v2-site-header__logo {
		grid-column: 2;
		grid-row: 1;
		justify-self: center;
	}

	.seti-v2-site-header__logo img {
		height: 30px;
	}

	.seti-v2-site-header__actions {
		grid-column: 3;
		grid-row: 1;
		gap: 16px;
	}

	.seti-v2-header-search {
		display: none;
	}

	.seti-v2-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.seti-v2-site-header__inner {
		padding-inline: 16px;
	}

	.seti-v2-site-header__actions {
		gap: 12px;
	}

	.seti-v2-site-header__logo img {
		height: 28px;
	}

	.seti-v2-mobile-menu__panel {
		padding-inline: 20px;
	}

	.seti-v2-newsletter__inner {
		padding: 64px 24px;
	}

	.seti-v2-newsletter input[type="submit"] {
		width: 100%;
	}

	.seti-v2-footer__grid {
		grid-template-columns: 1fr;
		gap: 42px;
		padding: 56px 24px 0;
	}

	.seti-v2-footer__bottom {
		width: calc(100% - 48px);
		margin-top: 42px;
		flex-direction: column;
		align-items: flex-start;
		padding: 28px 0 34px;
	}
}

/* ==========================================================
   SETI V2 — MOBILE FOOTER POLISH ONLY
   This block is intentionally isolated from the header/hero.
   ========================================================== */
@media (max-width: 767px) {
	.seti-v2-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 46px 18px;
		padding: 56px 20px 0;
	}

	.seti-v2-footer__brand {
		grid-column: 1 / -1;
		align-items: center;
		gap: 18px;
		text-align: center;
	}

	.seti-v2-footer__logo {
		justify-content: center;
		max-width: none;
		margin-inline: auto;
	}

	.seti-v2-footer__logo img {
		height: 46px;
	}

	.seti-v2-footer .seti-v2-footer__summary {
		margin-inline: auto;
		text-align: center;
	}

	.seti-v2-footer__social {
		width: 100%;
		justify-content: center;
		gap: 22px;
	}

	/* The stores column spans the full width; its two stores sit side by side. */
	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(2) {
		display: grid;
		grid-column: 1 / -1;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto auto auto auto;
		column-gap: 18px;
		row-gap: 8px;
		width: 100%;
		align-items: start;
		text-align: center;
	}

	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(2) > .seti-v2-footer__heading {
		grid-column: 1 / -1;
		grid-row: 1;
		justify-self: center;
		margin-bottom: 12px;
		font-size: 16px;
	}

	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(2) > .seti-v2-footer__subheading:first-of-type {
		grid-column: 1;
		grid-row: 2;
	}

	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(2) > p:first-of-type {
		grid-column: 1;
		grid-row: 3;
	}

	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(2) > a:first-of-type {
		grid-column: 1;
		grid-row: 4;
	}

	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(2) > .seti-v2-footer__subheading:last-of-type {
		grid-column: 2;
		grid-row: 2;
		margin-top: 0;
	}

	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(2) > p:last-of-type {
		grid-column: 2;
		grid-row: 3;
	}

	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(2) > a:last-of-type {
		grid-column: 2;
		grid-row: 4;
	}

	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(2) > p,
	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(2) > a {
		font-size: 13px;
		overflow-wrap: anywhere;
	}

	/* Customer service and additional information share one centered row. */
	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(3),
	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(4) {
		align-items: center;
		text-align: center;
	}

	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(3) > .seti-v2-footer__heading,
	.seti-v2-footer__grid > .seti-v2-footer__column:nth-child(4) > .seti-v2-footer__heading {
		font-size: 14px;
	}

	.seti-v2-footer__bottom {
		align-items: center;
		justify-content: center;
		gap: 8px;
		text-align: center;
	}

	.seti-v2-footer__bottom > span {
		width: 100%;
		text-align: center;
	}

	/* Current footer markup: center the stores area and split it evenly. */
	.seti-v2-footer__column--stores {
		display: flex;
		grid-column: 1 / -1;
		width: 100%;
		align-items: center;
		text-align: center;
	}

	.seti-v2-footer__column--stores > .seti-v2-footer__heading {
		margin-bottom: 12px;
		font-size: 16px;
	}

	.seti-v2-footer__stores {
		display: grid;
		width: 100%;
		max-width: 680px;
		margin-inline: auto;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.seti-v2-footer__store {
		display: flex;
		min-width: 0;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		text-align: center;
	}

	.seti-v2-footer__store p,
	.seti-v2-footer__store a {
		font-size: 13px;
		overflow-wrap: anywhere;
		text-align: center;
	}
}

/* SETI V2 — final mobile centering for the two store branches. */
@media (max-width: 767px) {
	.seti-v2-footer__grid > .seti-v2-footer__column.seti-v2-footer__column--stores:nth-child(2) {
		display: flex;
		grid-column: 1 / -1;
		width: 100%;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.seti-v2-footer__column--stores > .seti-v2-footer__heading,
	.seti-v2-footer__column--stores > .seti-v2-footer__stores {
		width: 100%;
		margin-inline: auto;
		grid-column: 1 / -1;
		justify-self: center;
		text-align: center;
	}

	.seti-v2-footer__column--stores > .seti-v2-footer__stores {
		display: grid;
		max-width: 640px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
	}

	.seti-v2-footer__column--stores .seti-v2-footer__store {
		align-items: center;
		justify-content: flex-start;
		text-align: center;
	}

	.seti-v2-footer__column--stores .seti-v2-footer__subheading,
	.seti-v2-footer__column--stores .seti-v2-footer__store a {
		overflow-wrap: normal;
		white-space: nowrap;
	}
}

/*
 * Keep the mobile logo centered against the viewport itself.
 * The action group is wider than the hamburger, so normal grid centering
 * makes the logo appear slightly off-center even when the grid is valid.
 */
@media (max-width: 900px) {
	.seti-v2-site-header__inner {
		position: relative;
	}

	.seti-v2-site-header__logo {
		position: absolute;
		z-index: 2;
		top: 50%;
		left: 50%;
		grid-column: auto;
		grid-row: auto;
		justify-self: auto;
		transform: translate(-50%, -50%);
	}
}

/*
 * The legacy theme may print an additional, classless cart counter.
 * Keep only the V2 counter visible; this is the counter refreshed by
 * WooCommerce after add, remove and quantity changes.
 */
.seti-v2-site-header__cart > span:not(.seti-v2-cart-count) {
	display: none !important;
}
/* SETI — native black logo and exact mobile centering */
.seti-v2-site-header__logo img {
    filter: none !important;
}

@media (max-width: 900px) {
    .seti-v2-site-header__inner {
        position: relative;
    }

    .seti-v2-site-header__logo {
        position: absolute;
        top: 50%;
        left: 50%;
        right: auto;
        margin: 0;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
}