/**
 * Mobile Archive — Accordion filters, price slider, brand grid, drawer, active tags.
 *
 * @package NewTechPrice
 */

/*
 * Discovery (archive): flex row — fixed 18rem filter rail (matches bike listing) + fluid catalog.
 * Below md: stacked column; filters use drawer + FAB.
 */

.ntp-mobile-listing__layout--discovery {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: var(--ntp-section-gap);
}

@media (min-width: 768px) {
	.ntp-mobile-listing__layout--discovery {
		flex-direction: row;
		align-items: flex-start;
		gap: 2rem;
	}

	.ntp-mobile-listing__layout--discovery .ntp-mobile-listing__filter-column {
		flex: 0 0 18rem;
		width: 18rem;
		max-width: 18rem;
		min-width: 0;
	}

	.ntp-mobile-listing__layout--discovery .ntp-mobile-listing__content {
		flex: 1 1 0%;
		min-width: 0;
		width: auto;
	}
}

/* Brand / non-discovery: no split; main column only */
.ntp-mobile-listing__layout--showroom {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.ntp-mobile-listing__layout--showroom .ntp-mobile-listing__content {
	width: 100%;
	max-width: 100%;
}

/* Column 1: sidebar + mobile FAB/drawer portals (single grid/flex item) */
.ntp-mobile-listing__filter-column {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	/* Isolate sidebar reflows (spotlight/widgets/fonts) from shifting the 85% column’s grid track. */
	contain: layout;
}

@media (min-width: 768px) {
	.ntp-mobile-listing__sidebar {
		position: sticky;
		top: 6rem;
		align-self: start;
		max-height: none;
		overflow: visible;
		z-index: 10;
	}
}

.ntp-mobile-listing__content {
	position: relative;
	min-width: 0;
}

/* Light reserve during AJAX swaps; keep desktop short so the grid wins above-the-fold. */
.ntp-mobile-listing__main-ui-shell {
	min-height: 8rem;
}

@media (min-width: 768px) {
	.ntp-mobile-listing__main-ui-shell {
		min-height: 10rem;
	}
}

@media (min-width: 1024px) {
	.ntp-mobile-listing--phones-first .ntp-mobile-listing__main-ui-shell {
		min-height: 0;
	}

	.ntp-mobile-listing--phones-first .ntp-mobile-listing__grid--products[data-ntp-listing-grid] {
		min-height: 0;
	}
}

/* Utility bar: align plugin breadcrumbs with portal rhythm */
.ntp-listing-utility-bar__yoast,
.ntp-listing-utility-bar__rankmath {
	font-size: inherit;
	line-height: inherit;
}

.ntp-listing-utility-bar__yoast a,
.ntp-listing-utility-bar__rankmath a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}

.ntp-listing-utility-bar__yoast a:hover,
.ntp-listing-utility-bar__rankmath a:hover {
	color: var(--ntp-primary-color, #0a1931);
}

[data-theme='dark'] .ntp-listing-utility-bar__yoast a:hover,
[data-theme='dark'] .ntp-listing-utility-bar__rankmath a:hover {
	color: color-mix(in srgb, var(--ntp-accent-color, #00a8ff) 92%, white);
}

/*
 * Listing card shell — paired with template-parts/modules/mobile/listing-card-mobile.php.
 * This file is not processed by Tailwind; utilities are expressed as plain CSS (no @apply).
 */
.ntp-mobile-card {
	position: relative;
	display: flex;
	height: 100%;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	flex-direction: column;
}

.ntp-listing-card-premium {
	display: flex;
	height: 100%;
	min-height: 22rem;
	flex-direction: column;
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid rgb(226 232 240 / 0.9);
	background: #fff;
	box-shadow: 0 0 0 1px rgb(226 232 240 / 0.5);
	transition:
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.3s ease;
}

@media (min-width: 768px) {
	.ntp-listing-card-premium {
		min-height: 24rem;
	}
}

[data-theme='dark'] .ntp-listing-card-premium {
	border-color: rgb(51 65 85 / 0.9);
	background: rgb(15 23 42);
	box-shadow: 0 0 0 1px rgb(51 65 85 / 0.4);
}

.ntp-mobile-card:hover .ntp-listing-card-premium {
	transform: translateY(-2px);
	box-shadow:
		0 0 0 1px color-mix(in srgb, var(--ntp-accent-color, #00a8ff) 20%, transparent),
		0 4px 14px -4px rgb(15 23 42 / 0.08);
}

[data-theme='dark'] .ntp-mobile-card:hover .ntp-listing-card-premium {
	box-shadow:
		0 0 0 1px color-mix(in srgb, var(--ntp-accent-color, #00a8ff) 25%, transparent),
		0 4px 18px -4px rgb(0 0 0 / 0.35);
}

.ntp-listing-card-premium__media {
	position: relative;
	flex-shrink: 0;
	background: linear-gradient(to bottom, rgb(241 245 249), rgb(248 250 252), rgb(241 245 249 / 0.8));
}

[data-theme='dark'] .ntp-listing-card-premium__media {
	background: linear-gradient(to bottom, rgb(30 41 59), rgb(30 41 59 / 0.9), rgb(15 23 42 / 0.8));
}

.ntp-listing-card-premium__thumb-link {
	display: block;
	padding: 2.5rem 1rem 0.5rem;
	outline: none;
}

.ntp-listing-card-premium__thumb-link:focus-visible {
	box-shadow: 0 0 0 2px var(--ntp-primary-color, #0a1931);
	border-radius: 0.25rem;
}

[data-theme='dark'] .ntp-listing-card-premium__thumb-link:focus-visible {
	box-shadow: 0 0 0 2px var(--ntp-accent-color, #00a8ff);
}

.ntp-listing-card-premium__thumb-frame {
	display: flex;
	min-height: 188px;
	align-items: center;
	justify-content: center;
}

@media (min-width: 640px) {
	.ntp-listing-card-premium__thumb-frame {
		min-height: 204px;
	}
}

@media (min-width: 768px) {
	.ntp-listing-card-premium__thumb-frame {
		min-height: 216px;
	}
}

.ntp-listing-card-premium__cover-img {
	margin-left: auto;
	margin-right: auto;
	height: auto;
	width: auto;
	max-width: 100%;
	max-height: min(20rem, 58vw);
	object-fit: contain;
	object-position: center;
	transition: transform 0.5s ease-out;
}

.ntp-mobile-card:hover .ntp-listing-card-premium__cover-img {
	transform: scale(1.03);
}

.ntp-listing-card-premium .ntp-spec-score {
	top: auto !important;
	bottom: 0.5rem !important;
	right: 0.5rem !important;
	left: auto !important;
}

.ntp-listing-card-premium__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 0.75rem 1rem 1rem;
}

.ntp-listing-card-premium__compare {
	position: absolute;
	right: 0.75rem;
	top: 0.75rem;
	z-index: 20;
	cursor: pointer;
	border-radius: 9999px;
	border: 1px solid rgb(226 232 240 / 0.8);
	background: rgb(255 255 255 / 0.95);
	padding: 0.25rem;
	box-shadow: 0 1px 2px rgb(15 23 42 / 0.06);
	backdrop-filter: blur(4px);
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}

.ntp-listing-card-premium__compare:hover {
	border-color: color-mix(in srgb, var(--ntp-primary-color, #0a1931) 40%, transparent);
}

[data-theme='dark'] .ntp-listing-card-premium__compare {
	border-color: rgb(51 65 85 / 0.8);
	background: rgb(15 23 42 / 0.95);
}

.ntp-listing-card-premium__compare-inner {
	display: flex;
	height: 2.25rem;
	width: 2.25rem;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	color: rgb(100 116 139);
	transition:
		background-color 0.15s ease,
		color 0.15s ease,
		box-shadow 0.15s ease;
}

[data-theme='dark'] .ntp-listing-card-premium__compare-inner {
	color: rgb(148 163 184);
}

.ntp-listing-card-premium__compare:has(.ntp-compare-check:checked) .ntp-listing-card-premium__compare-inner {
	background: var(--ntp-primary-color, #0a1931);
	color: #fff;
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--ntp-primary-color, #0a1931) 30%, transparent);
}

/* Product card grid: 1 → 2 → 3 → 4 columns (smoother tablet/desktop rhythm) */
.ntp-mobile-listing__grid--products[data-ntp-listing-grid] {
	display: grid;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 640px) {
	.ntp-mobile-listing__grid--products[data-ntp-listing-grid] {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (min-width: 1024px) {
	.ntp-mobile-listing__grid--products[data-ntp-listing-grid] {
		grid-template-columns: repeat(3, 1fr);
		gap: min(1.15rem, var(--ntp-gutter));
	}
}

@media (min-width: 1280px) {
	.ntp-mobile-listing__grid--products[data-ntp-listing-grid] {
		grid-template-columns: repeat(4, 1fr);
		gap: min(1.25rem, var(--ntp-gutter));
	}
}

.ntp-mobile-listing__grid {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.ntp-mobile-listing__grid .ntp-mobile-card,
.ntp-mobile-listing__grid .ntp-mobile-skeleton {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

/* AJAX filter transition: subtle dim while new cards load */
.ntp-mobile-listing__grid[aria-busy="true"] {
	opacity: 0.52;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

/* Filter drawer: phone only — hidden when sidebar column is visible (tablet bridge + desktop). */
@media (min-width: 768px) {
	.ntp-filter-drawer {
		display: none !important;
	}
}

html.ntp-mobile-filter-drawer-open {
	overflow: hidden;
}

/* Dual-handle price range slider */
.ntp-price-slider {
	position: relative;
	height: 24px;
	margin: 0.5rem 0 1rem;
	touch-action: none;
}

/* Touch targets: dual-handle sliders (price + spec ranges). */
.ntp-price-slider--touch {
	height: 36px;
	margin: 0.65rem 0 1.1rem;
}

.ntp-price-slider--touch .ntp-price-slider__thumb {
	width: 28px;
	height: 28px;
	margin-top: -14px;
	margin-left: -14px;
}

.ntp-price-slider__track {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 6px;
	margin-top: -3px;
	background: rgb(226 232 240);
	border-radius: 3px;
}

[data-theme="dark"] .ntp-price-slider__track {
	background: rgb(51 65 85);
}

.ntp-price-slider__fill {
	position: absolute;
	top: 50%;
	height: 6px;
	margin-top: -3px;
	background: linear-gradient(
		90deg,
		color-mix(in srgb, var(--ntp-primary-color, #0a1931) 88%, white),
		var(--ntp-primary-color, #0a1931)
	);
	border-radius: 3px;
	pointer-events: none;
}

.ntp-price-slider__thumb {
	position: absolute;
	top: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
	background: white;
	border: 2px solid var(--ntp-primary-color, #0a1931);
	border-radius: 50%;
	cursor: grab;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
	z-index: 2;
	touch-action: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ntp-price-slider__thumb:active {
	cursor: grabbing;
}

.ntp-price-slider__thumb:hover {
	transform: scale(1.12);
	box-shadow: 0 2px 8px rgb(10 25 49 / 0.25), 0 0 0 3px color-mix(in srgb, var(--ntp-primary-color, #0a1931) 22%, transparent);
}

.ntp-price-slider__thumb:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--ntp-primary-color, #0a1931) 35%, transparent);
}

[data-theme="dark"] .ntp-price-slider__thumb {
	background: rgb(30 41 59);
	border-color: var(--ntp-primary-color);
}

/* Archive — shop-by-brand strip (main column) */
.ntp-archive-brand-discovery__logo {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.ntp-archive-brand-discovery__tile:focus-visible {
	outline: 2px solid var(--ntp-primary-color, #0a1931);
	outline-offset: 2px;
}

[data-theme="dark"] .ntp-archive-brand-discovery__tile:not(.ntp-archive-brand-discovery__tile--disabled) {
	box-shadow: 0 1px 3px rgb(0 0 0 / 0.25);
}

/* Brand logo grid */
.ntp-brand-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
	gap: 0.5rem;
}

.ntp-brand-chip--disabled,
.ntp-brand-chip:disabled {
	opacity: 0.42;
	cursor: not-allowed;
	pointer-events: none;
}

.ntp-filter-acc[open] > .ntp-filter-acc__summary {
	color: var(--ntp-primary-color, #0a1931);
}

.ntp-brand-chip {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	border: 1px solid rgb(226 232 240 / 0.55);
	border-radius: 0.5rem;
	cursor: pointer;
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease,
		background-color 0.15s ease;
	background: rgb(255 255 255 / 0.92);
	box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
	min-height: 64px;
}

.ntp-brand-chip:hover {
	border-color: var(--ntp-primary-color, #0a1931);
	background: rgb(241 245 249);
}

.ntp-brand-chip.ntp-brand-chip--active {
	border-color: var(--ntp-primary-color);
	background: rgba(10, 88, 202, 0.08);
}

[data-theme="dark"] .ntp-brand-chip {
	background: rgb(30 41 59 / 0.85);
	border-color: rgb(51 65 85 / 0.65);
	box-shadow: 0 1px 3px rgb(0 0 0 / 0.2);
}

[data-theme="dark"] .ntp-brand-chip:hover,
[data-theme="dark"] .ntp-brand-chip.ntp-brand-chip--active {
	border-color: var(--ntp-primary-color);
	background: rgba(59, 130, 246, 0.15);
}

.ntp-brand-chip__logo {
	width: 32px;
	height: 32px;
	object-fit: contain;
	flex-shrink: 0;
}

.ntp-brand-chip__logo svg {
	width: 100%;
	height: 100%;
}

.ntp-brand-chip__name {
	font-size: 0.65rem;
	line-height: 1.2;
	text-align: center;
	margin-top: 0.25rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}

/* Accordion groups (<details>) */
.ntp-filter-acc__summary {
	list-style: none;
}

.ntp-filter-acc__summary::-webkit-details-marker {
	display: none;
}

.ntp-filter-acc:not([open]) .ntp-filter-acc__chev {
	transform: rotate(-90deg);
}

.ntp-filter-acc[open] .ntp-filter-acc__chev {
	transform: rotate(0deg);
}

.ntp-filter-acc {
	transition: border-color 0.2s ease;
}

.ntp-filter-acc__summary {
	border-radius: 0.5rem;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.ntp-filter-acc__summary:hover {
	background-color: rgb(248 250 252);
}

[data-theme="dark"] .ntp-filter-acc__summary:hover {
	background-color: rgb(30 41 59);
}

.ntp-filter-acc__body {
	animation: ntp-filter-acc-open 0.22s ease-out;
}

@keyframes ntp-filter-acc-open {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Shimmer skeleton (listing AJAX) */
@keyframes ntp-skeleton-shimmer {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.ntp-skeleton-shimmer {
	background-size: 200% 100%;
	background-image: linear-gradient(
		90deg,
		rgb(226 232 240) 0%,
		rgb(241 245 249) 45%,
		rgb(226 232 240) 90%
	);
	animation: ntp-skeleton-shimmer 1.35s ease-in-out infinite;
}

[data-theme="dark"] .ntp-skeleton-shimmer {
	background-image: linear-gradient(
		90deg,
		rgb(51 65 85) 0%,
		rgb(71 85 105) 45%,
		rgb(51 65 85) 90%
	);
}

/* Connectivity / 5G row (reuses chip-style toggle) */
.ntp-spec-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	border: 1px solid rgb(226 232 240 / 0.35);
	background: rgb(255 255 255 / 0.9);
	box-shadow: 0 1px 2px rgb(15 23 42 / 0.05);
	cursor: pointer;
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease,
		background-color 0.15s ease;
	margin-bottom: 0.5rem;
}

.ntp-spec-toggle:hover {
	border-color: rgb(203 213 225);
}

.ntp-spec-toggle.ntp-spec-toggle--active {
	border-color: var(--ntp-primary-color);
	background: rgba(10, 88, 202, 0.06);
}

[data-theme="dark"] .ntp-spec-toggle {
	background: rgb(30 41 59 / 0.88);
	border-color: rgb(51 65 85 / 0.45);
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.15);
}

[data-theme="dark"] .ntp-spec-toggle.ntp-spec-toggle--active {
	border-color: var(--ntp-primary-color);
	background: rgba(59, 130, 246, 0.12);
}

/* Active filter badges (above grid) */
.ntp-active-filter-tag {
	flex-shrink: 0;
	max-width: min(85vw, 16rem);
	box-shadow: 0 2px 8px rgb(15 23 42 / 0.06);
}

.ntp-active-filter-tag span:first-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Mobile: single-row swipeable filter chips */
@media (max-width: 767px) {
	[data-ntp-active-filters-wrap].ntp-listing-active-filters--mobile-strip {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}

	[data-ntp-active-filters].ntp-listing-active-filters__host {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x proximity;
		gap: 0.5rem;
		padding-bottom: 0.125rem;
		scrollbar-width: none;
	}

	[data-ntp-active-filters].ntp-listing-active-filters__host::-webkit-scrollbar {
		display: none;
	}

	[data-ntp-active-filters].ntp-listing-active-filters__host .ntp-active-filter-tag {
		scroll-snap-align: start;
	}
}

/* Filter drawer footer */
.ntp-filter-drawer-footer {
	padding: 1rem;
	background: linear-gradient(to top, rgb(255 255 255 / 0.98), rgb(248 250 252 / 0.95));
	border-top: 1px solid rgb(226 232 240 / 0.55);
	box-shadow: 0 -8px 28px rgb(15 23 42 / 0.05);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

[data-theme="dark"] .ntp-filter-drawer-footer {
	background: linear-gradient(to top, rgb(15 23 42 / 0.98), rgb(30 41 59 / 0.95));
	border-top-color: rgb(51 65 85 / 0.55);
	box-shadow: 0 -8px 28px rgb(0 0 0 / 0.2);
}

/* Hide compare tray when filter drawer is open (prevents overlap with Show Results) */
.ntp-compare-tray.ntp-compare-tray--drawer-open {
	transform: translateY(100%);
	pointer-events: none;
}

/* Spec score ring — top-right under compare control (expert_rating, scale 0–5) */
.ntp-spec-score {
	position: absolute;
	top: 2.75rem;
	right: 0.5rem;
	bottom: auto;
	left: auto;
	z-index: 6;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.ntp-spec-score__svg {
	display: block;
}

.ntp-spec-score__track {
	stroke: rgb(226 232 240);
}

[data-theme="dark"] .ntp-spec-score__track {
	stroke: rgb(51 65 85);
}

.ntp-spec-score__arc {
	stroke: var(--ntp-primary-color, #0a1931);
	stroke-linecap: round;
	transition: stroke-dashoffset 0.35s ease;
}

.ntp-spec-score__value {
	position: absolute;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	color: rgb(15 23 42);
}

[data-theme="dark"] .ntp-spec-score__value {
	color: rgb(248 250 252);
}

/* Filter FAB — restrained; motion optional */
@media (max-width: 1023px) and (prefers-reduced-motion: no-preference) {
	.ntp-mobile-filter-fab {
		animation: ntp-filter-fab-pulse 6s ease-in-out infinite;
	}

	@keyframes ntp-filter-fab-pulse {
		0%,
		100% {
			box-shadow: 0 8px 22px -6px rgb(15 23 42 / 0.12);
		}
		50% {
			box-shadow: 0 10px 26px -6px rgb(15 23 42 / 0.16);
		}
	}
}

@media (prefers-reduced-motion: reduce) {
	.ntp-mobile-filter-fab {
		animation: none;
	}
}

.ntp-listing-card__verified {
	max-width: 100%;
}

/* ── Premium filter sidebar: soft fields, fluid type, no harsh chrome ── */
.ntp-filter-field-soft {
	border: 1px solid rgb(226 232 240 / 0.45);
	box-shadow: 0 1px 3px rgb(15 23 42 / 0.05);
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}

.ntp-filter-field-soft:focus {
	outline: none;
}

.ntp-filter-field-soft:focus-visible {
	border-color: rgb(10 25 49 / 0.35);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--ntp-primary-color, #0a1931) 12%, transparent);
}

[data-theme='dark'] .ntp-filter-field-soft {
	border-color: rgb(51 65 85 / 0.55);
	box-shadow: 0 1px 3px rgb(0 0 0 / 0.18);
}

[data-theme='dark'] .ntp-filter-field-soft:focus-visible {
	border-color: color-mix(in srgb, var(--ntp-primary-color, #38bdf8) 55%, transparent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--ntp-primary-color, #38bdf8) 18%, transparent);
}

.ntp-filter-form-premium,
#ntp-filter-drawer .ntp-filter-form-premium {
	font-size: clamp(0.8125rem, 0.76rem + 0.22vw, 0.9375rem);
	line-height: 1.5;
}

.ntp-filter-form-premium .ntp-filter-acc__summary {
	font-size: clamp(0.8125rem, 0.78rem + 0.2vw, 0.875rem);
	letter-spacing: normal;
}

.ntp-filter-form-premium label {
	font-size: clamp(0.6875rem, 0.62rem + 0.18vw, 0.78rem);
}

/* Desktop / tablet sidebar rail — single right edge, floating interior */
.ntp-mobile-listing__sidebar-inner {
	background: linear-gradient(180deg, rgb(248 250 252 / 0.65) 0%, rgb(241 245 249 / 0.35) 100%);
	box-shadow: 2px 0 24px -12px rgb(15 23 42 / 0.08);
}

[data-theme='dark'] .ntp-mobile-listing__sidebar-inner {
	background: linear-gradient(180deg, rgb(15 23 42 / 0.5) 0%, rgb(30 41 59 / 0.35) 100%);
	box-shadow: 2px 0 28px -14px rgb(0 0 0 / 0.35);
}

@media (min-width: 768px) {
	.ntp-mobile-listing__sidebar-inner {
		border-right: 1px solid rgb(226 232 240 / 0.65);
		border-radius: 0.75rem;
		box-shadow:
			2px 0 20px -10px rgb(15 23 42 / 0.06),
			inset 0 1px 0 rgb(255 255 255 / 0.45);
	}

	[data-theme='dark'] .ntp-mobile-listing__sidebar-inner {
		border-right-color: rgb(51 65 85 / 0.55);
		box-shadow:
			2px 0 24px -12px rgb(0 0 0 / 0.25),
			inset 0 1px 0 rgb(255 255 255 / 0.04);
	}
}

.ntp-filter-section-slab {
	border-radius: 0.75rem;
	background: linear-gradient(145deg, rgb(241 245 249 / 0.85) 0%, rgb(248 250 252 / 0.5) 100%);
	box-shadow: 0 2px 10px rgb(15 23 42 / 0.04);
}

[data-theme='dark'] .ntp-filter-section-slab {
	background: linear-gradient(145deg, rgb(30 41 59 / 0.55) 0%, rgb(15 23 42 / 0.4) 100%);
	box-shadow: 0 2px 12px rgb(0 0 0 / 0.2);
}

.ntp-filter-connectivity-slab {
	border-radius: 0.65rem;
	background: linear-gradient(180deg, rgb(248 250 252 / 0.75) 0%, rgb(241 245 249 / 0.45) 100%);
	box-shadow: 0 1px 6px rgb(15 23 42 / 0.04);
}

[data-theme='dark'] .ntp-filter-connectivity-slab {
	background: linear-gradient(180deg, rgb(30 41 59 / 0.5) 0%, rgb(15 23 42 / 0.35) 100%);
	box-shadow: 0 1px 8px rgb(0 0 0 / 0.18);
}
