/**
 * TV Sales Shop Mega Menu — scoped; trigger mimics nav text links.
 */

.tvsales-sm {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	z-index: 1;
	overflow: visible !important;
}

/* Hidden until opened (reliable across themes) */
.tvsales-sm__overlay[hidden],
.tvsales-sm__panel[hidden] {
	display: none !important;
	visibility: hidden;
	pointer-events: none;
}

.tvsales-sm__trigger {
	display: inline;
	align-items: center;
	gap: 0.25rem;
	padding: 0;
	margin: 0;
	border: 0;
	background: none transparent;
	color: inherit;
	font: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	text-decoration: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 0;
	vertical-align: baseline;
}

/* Porto icon attached to trigger button — appears before or after the label text. */
.tvsales-sm__trigger-porto-icon {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	margin: 0 0.3em;
	flex-shrink: 0;
}

/* When trigger renders as flex (icon=yes mode), keep alignment tidy. */
.tvsales-sm--with-icon .tvsales-sm__trigger-porto-icon {
	margin: 0;
}

.tvsales-sm__trigger:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
	opacity: 1;
}

.tvsales-sm__trigger:focus {
	outline: none;
}

.tvsales-sm__trigger:focus-visible {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Default: text-only like other top-nav links (no hamburger). Add .tvsales-sm--with-icon on wrapper to show. */
.tvsales-sm:not(.tvsales-sm--with-icon) .tvsales-sm__trigger-icon {
	display: none !important;
}

.tvsales-sm--with-icon .tvsales-sm__trigger {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.tvsales-sm--with-icon .tvsales-sm__trigger-icon {
	display: flex;
	opacity: 0.85;
}

.tvsales-sm__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 9999998;
	animation: tvsales-sm-fade 0.2s ease;
	opacity: 1;
	transition: opacity 0.28s ease;
}

.tvsales-sm__panel {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: min(var(--tvsales-sm-panel-w, 420px), 100vw);
	max-width: 100%;
	background: #fff;
	z-index: 9999999;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding-top: env(safe-area-inset-top, 0px);
	padding-bottom: env(safe-area-inset-bottom, 0px);
	box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
	animation: tvsales-sm-slide 0.28s ease;
	overflow: hidden;
}

/* Smooth slide-out (ABT-style) — transition only while closing so open keyframes stay crisp */
.tvsales-sm__panel.tvsales-sm__panel--closing {
	animation: none !important;
	transform: translateX(-100%);
	transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.tvsales-sm__panel--right.tvsales-sm__panel--closing {
	transform: translateX(100%);
}

.tvsales-sm__overlay.tvsales-sm__overlay--closing {
	animation: none !important;
	opacity: 0;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.tvsales-sm__panel.tvsales-sm__panel--closing {
		transition-duration: 0.12s;
	}

	.tvsales-sm__overlay.tvsales-sm__overlay--closing {
		transition-duration: 0.1s;
	}
}

.tvsales-sm__panel:not([hidden]) {
	pointer-events: auto;
	visibility: visible;
}

.tvsales-sm__panel--right {
	left: auto !important;
	right: 0 !important;
	box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
	--tvsales-sm-slide: 12px;
}

@keyframes tvsales-sm-fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes tvsales-sm-slide {
	from {
		transform: translateX(var(--tvsales-sm-slide, -12px));
	}
	to {
		transform: translateX(0);
	}
}

.tvsales-sm__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.1rem;
	border-bottom: 1px solid #e5e7eb;
	flex-shrink: 0;
	background: #fafafa;
}

.tvsales-sm__title {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: #111;
}

.tvsales-sm .tvsales-sm__close {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #fff;
	border: 1px solid #d1d5db;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	color: #111;
	padding: 0.4rem;
	min-width: 2.75rem;
	min-height: 2.75rem;
	border-radius: 8px;
	z-index: 5;
	opacity: 1 !important;
	visibility: visible !important;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.tvsales-sm .tvsales-sm__close-svg {
	display: block;
	pointer-events: none;
}

.tvsales-sm .tvsales-sm__close:hover,
.tvsales-sm .tvsales-sm__close:focus-visible {
	background: #f3f4f6;
	border-color: #9ca3af;
	color: #000;
}

.tvsales-sm__body {
	flex: 1;
	min-height: 0;
	overflow: auto;
	padding: 0 0 1rem;
	-webkit-overflow-scrolling: touch;
}

.tvsales-sm__body .tvsales-sm__cat-app {
	padding: 0;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
}

/* Featured block follows primary categories */
.tvsales-sm__body .tvsales-sm__cat-app + .tvsales-sm__featured {
	margin-top: 0;
	margin-bottom: 0;
	padding: 1.25rem 1.1rem 1rem;
	border-top: 1px solid #e5e7eb;
	border-bottom: 0;
}

.tvsales-sm__body .tvsales-sm__featured:first-child {
	padding: 1rem 1.1rem 0;
	border-top: 0;
}

.tvsales-sm__section-title {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #6b7280;
}

.tvsales-sm__featured {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.tvsales-sm__featured-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.tvsales-sm__featured-link {
	font-weight: 600;
	color: #111;
	text-decoration: none;
	font-size: 0.95rem;
}

.tvsales-sm__featured-link:hover,
.tvsales-sm__featured-link:focus-visible {
	text-decoration: underline;
}

/* Category drill-down — ABT / AJ Madison / department list */
.tvsales-sm__head--cat {
	flex-direction: column;
	align-items: stretch;
	padding: 0;
	gap: 0;
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
	flex: 0 0 auto !important;
	flex-shrink: 0 !important;
	min-height: 3.25rem;
	position: relative;
	z-index: 3;
}

/* Ribbon under title: parent stays transparent so no white “seam” between black bar and red strip */
.tvsales-sm__head--cat--ribbon {
	background: transparent;
}

.tvsales-sm__head--cat--ribbon > .tvsales-sm__ribbon {
	margin-top: -1px;
	position: relative;
	z-index: 1;
}

.tvsales-sm__head--cat--ribbon .tvsales-sm__head-sub {
	background: #fff;
}

.tvsales-sm__head-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	min-height: 3rem;
	background: #fff;
	flex-shrink: 0;
	border-bottom: 1px solid #e5e7eb;
}

/* Title bar only: light / dark / brand (red-black) */
.tvsales-sm__head-bar--light {
	background: #fff;
	border-bottom-color: #e5e7eb;
}

.tvsales-sm__head-bar--light .tvsales-sm__title {
	color: #000;
}

.tvsales-sm__head-bar--dark {
	background: #111111;
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

.tvsales-sm__head-bar--dark .tvsales-sm__title {
	color: #fff;
}

.tvsales-sm__head-bar--brand {
	background: linear-gradient(155deg, #1a0808 0%, #000000 42%, #120606 100%);
	border-bottom: 1px solid rgba(196, 30, 58, 0.45);
	box-shadow: inset 0 -1px 0 rgba(196, 30, 58, 0.2);
}

.tvsales-sm__head-bar--brand .tvsales-sm__title {
	color: #fff;
}

/* No seam between title row and ribbon (avoids light 1px gap) */
.tvsales-sm__head-bar:has(+ .tvsales-sm__ribbon) {
	border-bottom: 0;
	box-shadow: none;
}

.tvsales-sm__head--simple:has(+ .tvsales-sm__ribbon) {
	border-bottom: 0;
}

.tvsales-sm__head-bar--dark .tvsales-sm__close,
.tvsales-sm__head-bar--brand .tvsales-sm__close {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
	box-shadow: none;
}

.tvsales-sm__head-bar--dark .tvsales-sm__close:hover,
.tvsales-sm__head-bar--dark .tvsales-sm__close:focus-visible,
.tvsales-sm__head-bar--brand .tvsales-sm__close:hover,
.tvsales-sm__head-bar--brand .tvsales-sm__close:focus-visible {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff;
}

.tvsales-sm__head-bar--dark .tvsales-sm__back,
.tvsales-sm__head-bar--brand .tvsales-sm__back {
	color: #fff;
}

.tvsales-sm__head-bar--dark .tvsales-sm__back:hover,
.tvsales-sm__head-bar--dark .tvsales-sm__back:focus-visible,
.tvsales-sm__head-bar--brand .tvsales-sm__back:hover,
.tvsales-sm__head-bar--brand .tvsales-sm__back:focus-visible {
	background: rgba(255, 255, 255, 0.12);
}

.tvsales-sm__head-bar--dark .tvsales-sm__back-icon,
.tvsales-sm__head-bar--brand .tvsales-sm__back-icon {
	color: #fff;
}

/* Simple non-drill head (rare) */
.tvsales-sm__head--simple {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem 1rem;
	flex-shrink: 0;
	border-bottom: 1px solid #e5e7eb;
}

.tvsales-sm__head--simple.tvsales-sm__head-bar--light {
	background: #fff;
}

.tvsales-sm__head--simple.tvsales-sm__head-bar--dark {
	background: #111;
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

.tvsales-sm__head--simple.tvsales-sm__head-bar--dark .tvsales-sm__title {
	color: #fff;
}

.tvsales-sm__head--simple.tvsales-sm__head-bar--brand {
	background: linear-gradient(155deg, #1a0808 0%, #000000 42%, #120606 100%);
	border-bottom: 1px solid rgba(196, 30, 58, 0.45);
}

.tvsales-sm__head--simple.tvsales-sm__head-bar--brand .tvsales-sm__title {
	color: #fff;
}

.tvsales-sm__head--simple.tvsales-sm__head-bar--dark .tvsales-sm__close,
.tvsales-sm__head--simple.tvsales-sm__head-bar--brand .tvsales-sm__close {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
	box-shadow: none;
}

.tvsales-sm__head--simple--ribbon {
	border-bottom: 0;
	background: transparent;
}

.tvsales-sm__head--simple--ribbon + .tvsales-sm__ribbon {
	margin-top: -1px;
	position: relative;
	z-index: 1;
}

/* Narrow ribbon under title bar — fixed slot (full width) for color + background images */
.tvsales-sm__ribbon {
	--tvsales-sm-ribbon-h: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	min-height: var(--tvsales-sm-ribbon-h);
	height: var(--tvsales-sm-ribbon-h);
	padding: 0 1rem;
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	flex-shrink: 0;
	overflow: hidden;
	transition: opacity 0.15s ease, filter 0.15s ease;
}

.tvsales-sm__ribbon--media {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.tvsales-sm__ribbon--media .tvsales-sm__ribbon-text {
	position: relative;
	z-index: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

a.tvsales-sm__ribbon:hover,
a.tvsales-sm__ribbon:focus-visible {
	opacity: 0.92;
	filter: brightness(1.05);
}

.tvsales-sm__ribbon-text {
	display: block;
}

.tvsales-sm__head-primary {
	display: flex;
	align-items: center;
	min-width: 0;
	flex: 1;
	gap: 0.25rem;
}

.tvsales-sm__head--cat .tvsales-sm__title {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 800;
}

.tvsales-sm__title--with-icon {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	min-width: 0;
}

.tvsales-sm__title--with-icon .tvsales-sm__title-text {
	min-width: 0;
}

.tvsales-sm__title-icon {
	flex-shrink: 0;
	display: block;
	width: 1.25em;
	height: 1.25em;
	max-width: 28px;
	max-height: 28px;
	object-fit: contain;
}

/* Porto / theme font icon in panel title bar (same idea as trigger). */
.tvsales-sm__title-porto-icon {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	flex-shrink: 0;
	font-size: 1.1em;
}

.tvsales-sm__back {
	display: none;
	align-items: center;
	gap: 0.25rem;
	margin: 0;
	padding: 0.35rem 0.5rem 0.35rem 0;
	border: 0;
	background: transparent;
	border-radius: 6px;
	color: #111;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 400;
	cursor: pointer;
	text-align: left;
	text-decoration: none;
}

.tvsales-sm__head--drill .tvsales-sm__back:not([hidden]) {
	display: inline-flex !important;
	align-items: center;
}

.tvsales-sm__head--drill .tvsales-sm__title[hidden] {
	display: none !important;
}

.tvsales-sm__back:hover,
.tvsales-sm__back:focus-visible {
	background: #e5e7eb;
}

.tvsales-sm__back-icon {
	display: flex;
	color: #374151;
	flex-shrink: 0;
}

.tvsales-sm__head--drill .tvsales-sm__head-bar {
	border-bottom: 1px solid #e5e7eb;
}

.tvsales-sm__head--drill .tvsales-sm__head-bar--dark {
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

.tvsales-sm__head--drill .tvsales-sm__head-bar--brand {
	border-bottom: 1px solid rgba(196, 30, 58, 0.45);
	box-shadow: inset 0 -1px 0 rgba(196, 30, 58, 0.2);
}

.tvsales-sm__head-sub {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.65rem 1rem;
	border-top: 1px solid #e5e7eb;
	background: #fff;
}

.tvsales-sm__head-sub[hidden] {
	display: none !important;
}

.tvsales-sm__parent-title {
	margin: 0;
	padding: 0;
	font-size: 1.125rem;
	font-weight: 700;
	color: #000;
	line-height: 1.25;
	flex: 1;
	min-width: 0;
}

.tvsales-sm__shop-all {
	flex-shrink: 0;
	display: inline-block;
	padding: 0.4rem 0.95rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.tvsales-sm__shop-all--red {
	background: #c41e3a;
	color: #fff !important;
}

.tvsales-sm__shop-all--red:hover,
.tvsales-sm__shop-all--red:focus-visible {
	background: #a91830;
	color: #fff !important;
}

.tvsales-sm__shop-all--black {
	background: #111;
	color: #fff !important;
}

.tvsales-sm__shop-all--black:hover,
.tvsales-sm__shop-all--black:focus-visible {
	background: #000;
	color: #fff !important;
}

.tvsales-sm__shop-all--outline {
	background: transparent;
	color: #111 !important;
	border-color: #d1d5db;
}

.tvsales-sm__shop-all--outline:hover,
.tvsales-sm__shop-all--outline:focus-visible {
	border-color: #c41e3a;
	color: #c41e3a !important;
	background: rgba(196, 30, 58, 0.06);
}

.tvsales-sm__cat-app-inner {
	display: flex;
	flex-direction: column;
	min-height: 0;
	flex: 1;
}

.tvsales-sm__drill-banner-slot {
	flex-shrink: 0;
	overflow: hidden;
}

.tvsales-sm__drill-banner-link,
.tvsales-sm__drill-banner-static {
	display: block;
	position: relative;
	width: 100%;
	text-decoration: none;
	color: inherit;
}

.tvsales-sm__drill-banner-inner {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	background: #f1f5f9;
}

.tvsales-sm__drill-banner-img {
	display: block;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

.tvsales-sm__drill-banner-close {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
}

.tvsales-sm__drill-banner-close:hover,
.tvsales-sm__drill-banner-close:focus-visible {
	background: rgba(0, 0, 0, 0.65);
}

.tvsales-sm__cat-list-shell {
	min-height: 0;
	flex: 1;
	transition: opacity 0.22s ease, transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.tvsales-sm__cat-list-shell--forward {
	animation: tvsales-sm-drill-swap 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.tvsales-sm__cat-list-shell--back {
	animation: tvsales-sm-drill-swap-back 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tvsales-sm-drill-swap {
	from {
		opacity: 0.55;
		transform: translateX(12px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes tvsales-sm-drill-swap-back {
	from {
		opacity: 0.55;
		transform: translateX(-12px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.tvsales-sm__cat-list-shell--forward,
	.tvsales-sm__cat-list-shell--back {
		animation-duration: 0.01ms;
	}
}

.tvsales-sm__cat-count {
	display: inline-block;
	margin-left: 0.35rem;
	padding: 0.1rem 0.4rem;
	font-size: 0.7rem;
	font-weight: 600;
	color: #64748b;
	background: #f1f5f9;
	border-radius: 999px;
	vertical-align: middle;
	line-height: 1.2;
}

.tvsales-sm__cat-row--current {
	background: rgba(196, 30, 58, 0.06);
	box-shadow: inset 3px 0 0 #c41e3a;
}

.tvsales-sm__cat-nav {
	margin: 0;
	padding: 0;
	background: #fff;
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
}

.tvsales-sm__cat-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tvsales-sm__cat-list--root .tvsales-sm__cat-row {
	font-weight: 400;
	font-size: 1rem;
}

.tvsales-sm__cat-list--drill .tvsales-sm__cat-row {
	font-weight: 400;
	font-size: 1rem;
}

.tvsales-sm__cat-item {
	margin: 0;
	border-bottom: 1px solid #ececec;
}

.tvsales-sm__cat-item:last-child {
	border-bottom: 0;
}

.tvsales-sm__cat-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0.95rem 1.1rem;
	color: #111;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	font-family: inherit;
	text-align: left;
	background: #fff;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

button.tvsales-sm__cat-row {
	-webkit-appearance: none;
	appearance: none;
}

.tvsales-sm__cat-row:hover,
.tvsales-sm__cat-row:focus-visible {
	background: rgba(196, 30, 58, 0.08);
	color: #c41e3a;
}

.tvsales-sm__cat-row:hover .tvsales-sm__row-chev,
.tvsales-sm__cat-row:focus-visible .tvsales-sm__row-chev {
	color: #c41e3a;
}

.tvsales-sm__cat-row:active {
	background: rgba(196, 30, 58, 0.12);
	color: #a91830;
}

.tvsales-sm__ico {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #374151;
}

.tvsales-sm__ico--img img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 4px;
}

.tvsales-sm__ico--line .tvsales-sm__ico-svg {
	width: 28px;
	height: 28px;
	color: #000;
	opacity: 0.85;
}

.tvsales-sm__ico--ph .tvsales-sm__ico-svg {
	width: 28px;
	height: 28px;
	opacity: 0.55;
}

/* Porto / FontAwesome icon in a category row */
.tvsales-sm__ico--porto {
	color: #374151;
}

.tvsales-sm__ico-porto {
	font-size: 1.25rem;
	line-height: 1;
	display: block;
}

/* Suppress the default underline on cat rows (overridable via admin setting) */
.tvsales-sm__cat-row:hover,
.tvsales-sm__cat-row:focus-visible {
	text-decoration: none;
}

.tvsales-sm__cat-label {
	flex: 1;
	min-width: 0;
	line-height: 1.35;
}

.tvsales-sm__row-chev {
	display: flex;
	align-items: center;
	color: #6b7280;
	flex-shrink: 0;
}

.tvsales-sm__chev {
	display: block;
}

.tvsales-sm__promo {
	flex-shrink: 0;
	padding: 1rem 1.1rem;
	text-align: center;
	border-top: 1px solid #e5e7eb;
}

.tvsales-sm__promo-title {
	margin: 0 0 0.35rem;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
}

.tvsales-sm__promo-sub {
	font-size: 0.85rem;
	opacity: 0.9;
}

.tvsales-sm__promo-link {
	display: inline-block;
	margin: 0;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
	color: inherit;
	opacity: 0.95;
}

.tvsales-sm__promo-link:hover,
.tvsales-sm__promo-link:focus-visible {
	opacity: 1;
}

.tvsales-sm__empty {
	margin: 0;
	color: #6b7280;
	font-size: 0.9rem;
}

/* WordPress menu output */
.tvsales-sm__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tvsales-sm__menu > li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #f3f4f6;
	padding-bottom: 0.75rem;
}

.tvsales-sm__menu > li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.tvsales-sm__menu > li > a {
	font-weight: 700;
	font-size: 0.95rem;
	color: #111;
	text-decoration: none;
}

.tvsales-sm__menu .sub-menu {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.tvsales-sm__menu .sub-menu a {
	font-size: 0.875rem;
	font-weight: 400;
	color: #4b5563;
	text-decoration: none;
}

.tvsales-sm__menu .sub-menu .sub-menu {
	margin-left: 0.75rem;
	font-size: 0.85rem;
}

html.tvsales-sm-open,
html.tvsales-sm-open body {
	overflow: hidden;
}

/* Panel appended to body (see JS): keep fixed to viewport, not theme wrappers */
.tvsales-sm__panel[data-tvsales-sm-portaled] {
	position: fixed !important;
	margin: 0 !important;
}
