:root {
	--alsae-brand: #0f4c8a;
	--alsae-brand-deep: #0a3765;
	--alsae-accent: #a7d500;
	--alsae-bg: #eef7ff;
	--alsae-surface: #ffffff;
	--alsae-text: #16263a;
	--alsae-muted: #6b7d90;
	--alsae-border: #dbe8f3;
	--alsae-shadow: 0 18px 45px rgba(15, 76, 138, 0.08);
}

.alspe-archive-layout,
.alspe-archive-layout * {
	box-sizing: border-box;
}

.alspe-archive-layout {
	background: var(--alsae-bg);
}

.alsae-page {
	direction: rtl;
	color: var(--alsae-text);
	background:
		radial-gradient(circle at 8% 4%, rgba(167, 213, 0, 0.08), transparent 20%),
		linear-gradient(180deg, #eef7ff 0%, #f8fbfe 68%, #ffffff 100%);
	padding: 24px 0 56px;
	min-height: 70vh;
}

.alsae-page a {
	text-decoration: none;
}

.alsae-shell {
	width: min(1380px, calc(100% - 32px));
	margin-inline: auto;
}

.alsae-preview-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding: 11px 14px;
	margin-bottom: 16px;
	border: 1px solid #f1d28a;
	border-radius: 14px;
	background: #fff8e7;
	font-size: 13px;
}

.alsae-preview-pill strong { color: #7a4b00; }
.alsae-preview-pill span { color: #806b45; }
.alsae-preview-pill a { margin-right: auto; color: var(--alsae-brand); font-weight: 800; }

.alsae-breadcrumb {
	font-size: 12px;
	color: var(--alsae-muted);
	margin: 2px 0 14px;
}

.alsae-breadcrumb .woocommerce-breadcrumb {
	margin: 0;
	color: inherit;
}

.alsae-breadcrumb a { color: var(--alsae-brand); }

.alsae-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 26px 30px;
	border: 1px solid var(--alsae-border);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--alsae-shadow);
	overflow: hidden;
	position: relative;
}

.alsae-hero::after {
	content: "";
	position: absolute;
	inset: auto -55px -75px auto;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	background: rgba(167, 213, 0, 0.12);
}

.alsae-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .02em;
	color: var(--alsae-brand);
	margin-bottom: 7px;
}

.alsae-hero h1,
.alsae-section-heading h2,
.alsae-toolbar h2 {
	margin: 0;
	color: var(--alsae-brand-deep);
	font-weight: 900;
	line-height: 1.45;
}

.alsae-hero h1 { font-size: clamp(25px, 3vw, 38px); }
.alsae-hero p { margin: 10px 0 0; color: var(--alsae-muted); font-size: 14px; line-height: 2; }

.alsae-hero-badge {
	position: relative;
	z-index: 1;
	min-width: 245px;
	padding: 16px 18px;
	border-radius: 16px;
	background: #f4fae6;
	border: 1px solid #dceba7;
}

.alsae-hero-badge strong,
.alsae-hero-badge span { display: block; }
.alsae-hero-badge strong { color: var(--alsae-brand-deep); font-size: 14px; }
.alsae-hero-badge span { color: var(--alsae-muted); font-size: 11px; margin-top: 5px; }

.alsae-finder {
	margin-top: 24px;
	padding: 24px;
	border: 1px solid var(--alsae-border);
	border-radius: 22px;
	background: var(--alsae-surface);
	box-shadow: var(--alsae-shadow);
}

.alsae-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 18px;
}

.alsae-section-heading h2 { font-size: 20px; }

.alsae-category-strip {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 18px;
}

.alsae-category-strip a {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 14px;
	border: 1px solid var(--alsae-border);
	border-radius: 13px;
	background: #fbfdff;
	transition: .25s ease;
}

.alsae-category-strip a:hover {
	transform: translateY(-2px);
	border-color: var(--alsae-accent);
	box-shadow: 0 8px 22px rgba(15, 76, 138, 0.09);
}

.alsae-category-strip span { color: var(--alsae-brand-deep); font-size: 12px; font-weight: 900; }
.alsae-category-strip small { color: var(--alsae-muted); font-size: 9px; }

.alsae-brand-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 10px;
	padding: 16px 0 20px;
	border-bottom: 1px dashed var(--alsae-border);
}

.alsae-brand-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 8px 7px 10px;
	border: 1px solid var(--alsae-border);
	border-radius: 14px;
	background: linear-gradient(180deg, #fff, #f7fbff);
	transition: .25s ease;
}

.alsae-brand-card:hover {
	transform: translateY(-3px);
	border-color: var(--alsae-accent);
	box-shadow: 0 10px 24px rgba(15, 76, 138, 0.11);
}

.alsae-brand-media {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	overflow: hidden;
}

.alsae-brand-media img {
	width: 90%;
	height: 90%;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform .3s ease;
}

.alsae-brand-card:hover img { transform: scale(1.08); }
.alsae-brand-card strong { color: var(--alsae-brand-deep); font-size: 10px; font-weight: 900; }

.alsae-brand-fallback {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #eaf3fb;
	color: var(--alsae-brand);
	font-weight: 900;
	font-size: 15px;
}

.alsae-finder-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	padding-top: 20px;
}

.alsae-finder-group h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 0 11px;
	color: var(--alsae-brand-deep);
	font-size: 13px;
	font-weight: 900;
}

.alsae-finder-group h3::before,
.alsae-finder-group h3::after {
	content: "";
	width: 24px;
	height: 1px;
	background: var(--alsae-border);
}

.alsae-option-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px;
}

.alsae-finder-group:nth-child(2) .alsae-option-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.alsae-option-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 118px;
	padding: 10px 5px;
	border: 1px solid var(--alsae-border);
	border-radius: 12px;
	background: #fff;
	transition: .25s ease;
}

.alsae-option-card:hover {
	transform: translateY(-2px);
	border-color: var(--alsae-accent);
	box-shadow: 0 8px 20px rgba(15, 76, 138, 0.08);
}

.alsae-option-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 8px;
	border-radius: 13px;
	background: #eff6fc;
	color: var(--alsae-brand);
}

.alsae-option-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linejoin: round; stroke-linecap: round; }
.alsae-option-icon img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.alsae-option-card strong { color: var(--alsae-text); font-size: 10px; font-weight: 900; }
.alsae-option-card small { color: var(--alsae-muted); font-size: 8px; margin-top: 2px; }

.alsae-level-bars {
	display: flex;
	align-items: end;
	gap: 4px;
	height: 30px;
}

.alsae-level-bars i { display: block; width: 5px; border-radius: 5px; background: #dce7ef; }
.alsae-level-bars i:nth-child(1) { height: 12px; }
.alsae-level-bars i:nth-child(2) { height: 21px; }
.alsae-level-bars i:nth-child(3) { height: 30px; }
.alsae-level-bars i.is-on { background: var(--alsae-accent); }

.alsae-catalog {
	display: grid;
	grid-template-columns: 285px minmax(0, 1fr);
	gap: 22px;
	align-items: start;
	margin-top: 26px;
}

.alsae-catalog-main,
.alsae-sidebar {
	border: 1px solid var(--alsae-border);
	border-radius: 20px;
	background: var(--alsae-surface);
	box-shadow: var(--alsae-shadow);
}

.alsae-catalog-main { min-width: 0; padding: 20px; }
.alsae-sidebar { order: -1; padding: 18px; position: sticky; top: 22px; max-height: calc(100vh - 44px); overflow-y: auto; scrollbar-width: thin; }

.admin-bar .alsae-sidebar { top: 54px; }

.alsae-sidebar-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid var(--alsae-border);
	color: var(--alsae-brand-deep);
}

.alsae-sidebar-head button {
	display: none;
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.alsae-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 15px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--alsae-border);
}

.alsae-toolbar-title h2 { font-size: 17px; }
.alsae-toolbar-title .woocommerce-result-count { margin: 4px 0 0; color: var(--alsae-muted); font-size: 10px; }

.alsae-toolbar-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.alsae-per-page {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	color: var(--alsae-muted);
}

.alsae-per-page a {
	display: grid;
	place-items: center;
	min-width: 31px;
	height: 31px;
	border: 1px solid var(--alsae-border);
	border-radius: 8px;
	color: var(--alsae-brand-deep);
	font-weight: 800;
}

.alsae-per-page a.is-active { background: var(--alsae-brand); border-color: var(--alsae-brand); color: #fff; }

.alsae-toolbar .woocommerce-ordering { margin: 0; }
.alsae-toolbar .woocommerce-ordering select {
	min-height: 38px;
	padding: 0 11px;
	border: 1px solid var(--alsae-border);
	border-radius: 10px;
	background: #fff;
	color: var(--alsae-text);
	font-size: 11px;
}

.alsae-filter-toggle {
	display: none;
	min-height: 38px;
	padding: 0 14px;
	border: 0;
	border-radius: 10px;
	background: var(--alsae-brand);
	color: #fff;
	font: inherit;
	font-size: 11px;
	font-weight: 900;
	cursor: pointer;
}

.alsae-products ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px;
	margin: 0 !important;
}

.alsae-products ul.products::before,
.alsae-products ul.products::after { display: none !important; }

.alsae-products ul.products li.product {
	display: flex !important;
	flex-direction: column;
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 14px 14px 15px !important;
	border: 1px solid var(--alsae-border);
	border-radius: 18px;
	background: #fff;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	overflow: hidden;
}

.alsae-products ul.products li.product:hover {
	transform: translateY(-4px);
	border-color: #c8ddeb;
	box-shadow: 0 14px 30px rgba(15, 76, 138, 0.1);
}

.alsae-products ul.products li.product a.woocommerce-LoopProduct-link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
}

.alsae-products ul.products li.product a img {
	width: 100%;
	height: clamp(225px, 18vw, 285px);
	aspect-ratio: auto;
	object-fit: contain;
	margin: 0 0 12px !important;
	border-radius: 13px;
	background: #fbfdff;
}

.alsae-products ul.products li.product .woocommerce-loop-product__title {
	display: -webkit-box;
	min-height: 70px;
	padding: 0 !important;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: var(--alsae-text);
	font-size: 13px !important;
	font-weight: 800;
	line-height: 1.8;
	overflow-wrap: anywhere;
}

.alsae-products ul.products li.product .price {
	min-height: 40px;
	margin: auto 0 12px !important;
	padding-top: 10px;
	color: var(--alsae-brand) !important;
	font-size: 13px !important;
	font-weight: 900;
}

.alsae-products ul.products li.product .button,
.alsae-products ul.products li.product .alsae-product-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 40px;
	margin-top: 0 !important;
	border-radius: 11px;
	background: var(--alsae-brand);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
}

.alsae-products ul.products li.product .button:hover,
.alsae-products ul.products li.product .alsae-product-cta:hover { background: var(--alsae-brand-deep); color: #fff; }

.alsae-products .woocommerce-pagination { margin-top: 24px; }
.alsae-products .woocommerce-pagination ul.page-numbers { border: 0; display: flex; gap: 6px; justify-content: center; }
.alsae-products .woocommerce-pagination ul.page-numbers li { border: 0; }
.alsae-products .woocommerce-pagination .page-numbers a,
.alsae-products .woocommerce-pagination .page-numbers span {
	display: grid;
	place-items: center;
	min-width: 36px;
	height: 36px;
	border: 1px solid var(--alsae-border);
	border-radius: 50%;
	background: #fff;
	color: var(--alsae-brand-deep);
}
.alsae-products .woocommerce-pagination .page-numbers .current { background: var(--alsae-brand); border-color: var(--alsae-brand); color: #fff; }



.alsae-seo-content {
	margin-top: 28px;
	padding: 28px 30px;
	border: 1px solid var(--alsae-border);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.9);
	color: #516a83;
	font-size: 13px;
	line-height: 2.25;
}

.alsae-seo-content:empty { display: none; }
.alsae-seo-content h2,
.alsae-seo-content h3,
.alsae-seo-content h4 { color: var(--alsae-brand-deep); line-height: 1.6; }
.alsae-seo-content h2 { font-size: 21px; }
.alsae-seo-content h3 { font-size: 17px; }
.alsae-seo-content a { color: var(--alsae-brand); text-decoration: underline; text-underline-offset: 3px; }

.alsae-sidebar-backdrop { display: none; }

@media (max-width: 1100px) {
	.alsae-brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.alsae-finder-columns { grid-template-columns: 1fr; }
	.alsae-category-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.alsae-products ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
	.alsae-catalog { grid-template-columns: 1fr; }
	.alsae-sidebar {
		position: fixed;
		z-index: 100002;
		top: 0 !important;
		right: 0;
		bottom: 0;
		width: min(360px, 88vw);
		border-radius: 0;
		transform: translateX(105%);
		transition: transform .28s ease;
		overflow-y: auto;
	}
	.alsae-sidebar.is-open { transform: translateX(0); }
	.alsae-sidebar-head button { display: block; }
	.alsae-filter-toggle { display: inline-flex; align-items: center; }
	.alsae-sidebar-backdrop {
		display: block;
		position: fixed;
		z-index: 100001;
		inset: 0;
		background: rgba(9, 25, 42, .48);
	}
	body.alsae-filter-open { overflow: hidden; }
}

@media (max-width: 767px) {
	.alsae-page { padding-top: 14px; }
	.alsae-shell { width: min(100% - 20px, 1380px); }
	.alsae-preview-pill { font-size: 11px; }
	.alsae-preview-pill a { width: 100%; margin: 3px 0 0; }
	.alsae-hero { align-items: flex-start; flex-direction: column; padding: 22px 20px; border-radius: 18px; }
	.alsae-hero-badge { min-width: 0; width: 100%; }
	.alsae-finder { padding: 16px 12px; border-radius: 18px; }
	.alsae-section-heading h2 { font-size: 16px; }
	.alsae-category-strip {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 5px;
	}
	.alsae-category-strip a { flex: 0 0 42%; scroll-snap-align: start; }
	.alsae-brand-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 8px;
	}
	.alsae-brand-card { flex: 0 0 24%; scroll-snap-align: start; }
	.alsae-brand-card strong { font-size: 8px; }
	.alsae-finder-columns { gap: 15px; }
	.alsae-option-card { min-height: 102px; }
	.alsae-option-card strong { font-size: 9px; }
	.alsae-catalog-main { padding: 12px; border-radius: 16px; }
	.alsae-toolbar { align-items: flex-start; flex-direction: column; }
	.alsae-toolbar-actions { width: 100%; }
	.alsae-per-page { flex: 1; }
	.alsae-toolbar .woocommerce-ordering { flex: 1; }
	.alsae-toolbar .woocommerce-ordering select { width: 100%; }
	.alsae-products ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
	.alsae-products ul.products li.product { padding: 9px 9px 11px !important; border-radius: 14px; }
	.alsae-products ul.products li.product .woocommerce-loop-product__title { min-height: 58px; font-size: 10.5px !important; -webkit-line-clamp: 3; }
	.alsae-products ul.products li.product .price { font-size: 10px !important; }
	.alsae-products ul.products li.product .button,
.alsae-products ul.products li.product .alsae-product-cta { min-height: 37px; font-size: 9px; }
	.alsae-seo-content { padding: 20px 17px; font-size: 12px; border-radius: 17px; }
}

@media (max-width: 420px) {
	.alsae-brand-card { flex-basis: 29%; }
	.alsae-option-icon { width: 42px; height: 42px; }
	.alsae-option-icon svg { width: 26px; height: 26px; }
	.alsae-option-icon img { width: 100%; height: 100%; }
	.alsae-per-page span { display: none; }
}

/* Phase 2: production-style filter panel and stronger product cards */
.alsae-hero-copy { min-width: 0; }
.alsae-hero-badge { display: block; transition: .25s ease; }
.alsae-hero-badge:hover { transform: translateY(-2px); border-color: var(--alsae-accent); }

.alsae-sidebar::-webkit-scrollbar { width: 5px; }
.alsae-sidebar::-webkit-scrollbar-thumb { background: #cbdbe8; border-radius: 99px; }
.alsae-sidebar-head > div { display: flex; flex-direction: column; gap: 3px; }
.alsae-sidebar-head strong { font-size: 14px; font-weight: 900; }
.alsae-sidebar-head small { color: var(--alsae-muted); font-size: 9px; }

.alsae-price-filter,
.alsae-filter-block {
	padding: 16px 0;
	border-bottom: 1px solid var(--alsae-border);
}

.alsae-price-filter { padding-top: 2px; }
.alsae-filter-section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 12px;
}
.alsae-filter-section-title strong { color: var(--alsae-brand-deep); font-size: 12px; font-weight: 900; }
.alsae-filter-section-title span { color: var(--alsae-muted); font-size: 9px; }

.alsae-price-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.alsae-price-fields label { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.alsae-price-fields label > span { color: var(--alsae-muted); font-size: 9px; }
.alsae-price-fields input {
	width: 100%;
	min-width: 0;
	height: 39px;
	padding: 0 9px;
	border: 1px solid var(--alsae-border);
	border-radius: 10px;
	background: #fbfdff;
	color: var(--alsae-text);
	font: inherit;
	font-size: 10px;
	font-weight: 700;
	outline: none;
}
.alsae-price-fields input:focus { border-color: var(--alsae-brand); box-shadow: 0 0 0 3px rgba(15, 76, 138, .08); }
.alsae-price-range-note { display: flex; align-items: center; gap: 7px; margin: 11px 0 12px; color: var(--alsae-muted); font-size: 8px; }
.alsae-price-range-note i { flex: 1; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--alsae-accent), var(--alsae-brand)); }
.alsae-price-filter button {
	width: 100%;
	min-height: 40px;
	border: 0;
	border-radius: 10px;
	background: var(--alsae-brand);
	color: #fff;
	font: inherit;
	font-size: 11px;
	font-weight: 900;
	cursor: pointer;
	transition: .2s ease;
}
.alsae-price-filter button:hover { background: var(--alsae-brand-deep); }

.alsae-filter-switch {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 8px 0;
	color: var(--alsae-text);
	font-size: 10.5px;
	font-weight: 700;
}
.alsae-filter-switch i {
	position: relative;
	width: 34px;
	height: 19px;
	border-radius: 99px;
	background: #dbe7f1;
	transition: .2s ease;
}
.alsae-filter-switch i::after {
	content: "";
	position: absolute;
	top: 3px;
	right: 3px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,.15);
	transition: .2s ease;
}
.alsae-filter-switch.is-active i { background: var(--alsae-accent); }
.alsae-filter-switch.is-active i::after { transform: translateX(-15px); }
.alsae-filter-switch.is-active span { color: var(--alsae-brand-deep); }

.alsae-filter-list { list-style: none; margin: 0; padding: 0; }
.alsae-filter-list li + li { border-top: 1px dashed #e8f0f6; }
.alsae-filter-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 0;
	color: var(--alsae-text);
	font-size: 10.5px;
	font-weight: 700;
	transition: .2s ease;
}
.alsae-filter-list a:hover { color: var(--alsae-brand); padding-right: 4px; }
.alsae-filter-list small {
	display: grid;
	place-items: center;
	min-width: 24px;
	height: 22px;
	padding: 0 5px;
	border-radius: 99px;
	background: #eff6fc;
	color: var(--alsae-muted);
	font-size: 8px;
}
.alsae-brand-filter-list span { direction: ltr; }
.alsae-filter-brand-label {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
}
.alsae-filter-brand-media {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: #f7fbff;
	border: 1px solid #edf4fa;
	overflow: hidden;
	flex: 0 0 32px;
}
.alsae-filter-brand-media img {
	width: 90%;
	height: 90%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.alsae-clear-filters {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	margin-top: 16px;
	border: 1px solid #f0b8b8;
	border-radius: 10px;
	background: #fff7f7;
	color: #a62b2b;
	font-size: 10px;
	font-weight: 900;
}

.alsae-active-filter-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: -4px 0 16px;
	padding: 10px 12px;
	border: 1px solid #dceba7;
	border-radius: 11px;
	background: #f7fbe9;
	color: #52633a;
	font-size: 10px;
}
.alsae-active-filter-bar a { color: var(--alsae-brand-deep); font-weight: 900; white-space: nowrap; }

.alsae-products ul.products li.product .onsale {
	top: 12px !important;
	right: 12px !important;
	left: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	padding: 6px 9px !important;
	border-radius: 8px !important;
	background: var(--alsae-accent) !important;
	color: var(--alsae-brand-deep) !important;
	font-size: 9px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
}
.alsae-products ul.products li.product .star-rating { margin: 3px 0 8px; color: #d62f6b; font-size: 12px; }
.alsae-products ul.products li.product .price del { color: #8a98a8; font-size: 10px; font-weight: 600; opacity: .9; }
.alsae-products ul.products li.product .price ins { color: var(--alsae-brand); text-decoration: none; }

@media (min-width: 1450px) {
	.alsae-products ul.products { gap: 18px; }
	.alsae-products ul.products li.product { padding: 16px 16px 17px !important; }
}

@media (max-width: 1100px) {
	.alsae-sidebar { max-height: none; }
}

@media (max-width: 900px) {
	.alsae-sidebar { max-height: none; }
}

@media (max-width: 767px) {
	.alsae-price-fields { grid-template-columns: 1fr 1fr; }
	.alsae-products ul.products li.product a img { height: clamp(150px, 43vw, 205px); }
	.alsae-products ul.products li.product .price { min-height: 34px; }
	.alsae-active-filter-bar { align-items: flex-start; flex-direction: column; }
}

/* Phase 3: compact finder, clean price UX, active chips and SEO-safe states */
.alsae-hero {
	padding: 22px 28px;
}

.alsae-finder {
	margin-top: 18px;
	padding: 20px;
}

.alsae-section-heading {
	margin-bottom: 14px;
}

.alsae-category-strip {
	margin-bottom: 14px;
}

.alsae-category-strip a {
	min-height: 62px;
	justify-content: center;
	padding: 10px 13px;
}

.alsae-category-strip a.is-current,
.alsae-brand-card.is-current {
	border-color: var(--alsae-accent);
	background: #f7fbe9;
	box-shadow: inset 0 0 0 1px rgba(167, 213, 0, .25);
}

.alsae-category-strip a.is-current span,
.alsae-brand-card.is-current strong {
	color: var(--alsae-brand-deep);
}

.alsae-brand-grid {
	padding: 12px 0 15px;
}

.alsae-brand-card {
	padding: 7px 6px 9px;
}

.alsae-brand-media {
	height: 112px;
	aspect-ratio: auto;
}

.alsae-brand-fallback {
	width: 58px;
	height: 72px;
	border-radius: 18px;
}

.alsae-brand-fallback svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.alsae-finder-columns {
	gap: 14px;
	padding-top: 15px;
}

.alsae-option-card {
	min-height: 96px;
	padding-block: 8px;
}

.alsae-option-icon {
	width: 43px;
	height: 43px;
	margin-bottom: 6px;
}

.alsae-catalog {
	margin-top: 20px;
}

.alsae-price-fields {
	direction: ltr;
}

.alsae-price-fields label {
	direction: rtl;
}

.alsae-price-fields input[type="text"] {
	direction: ltr;
	text-align: center;
	font-variant-numeric: tabular-nums;
}

.alsae-price-range-note {
	direction: ltr;
}

.alsae-price-range-note i {
	background: linear-gradient(90deg, var(--alsae-brand), var(--alsae-accent));
}

.alsae-price-error {
	margin: -4px 0 10px;
	padding: 8px 9px;
	border-radius: 8px;
	background: #fff2f2;
	color: #a62b2b;
	font-size: 9px;
	line-height: 1.7;
}

.alsae-active-filter-bar {
	align-items: center;
}

.alsae-active-filter-chips {
	display: flex;
	align-items: center;
	gap: 7px;
	flex-wrap: wrap;
}

.alsae-active-filter-chips a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 30px;
	padding: 4px 9px;
	border: 1px solid #dceba7;
	border-radius: 99px;
	background: #fff;
	color: var(--alsae-brand-deep);
	font-size: 9px;
	font-weight: 800;
}

.alsae-active-filter-chips b {
	display: grid;
	place-items: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #eef5d5;
	font-size: 12px;
	line-height: 1;
}

.alsae-clear-inline {
	color: #9a2f2f !important;
	font-weight: 900;
	white-space: nowrap;
}

.alsae-filter-list a.is-current {
	margin-inline: -8px;
	padding-inline: 8px;
	border-radius: 8px;
	background: #f3f8fc;
	color: var(--alsae-brand);
}

.alsae-filter-list a.is-current small {
	background: var(--alsae-brand);
	color: #fff;
}

.alsae-products ul.products li.product .woocommerce-loop-product__title {
	direction: rtl;
	unicode-bidi: plaintext;
	text-align: right;
}

.alsae-products ul.products li.product .price {
	direction: rtl;
	font-variant-numeric: tabular-nums;
}

.alsae-seo-content > :first-child {
	margin-top: 0;
}

.alsae-seo-content > :last-child {
	margin-bottom: 0;
}

.alsae-seo-content details {
	margin-top: 10px;
	border: 1px solid var(--alsae-border);
	border-radius: 10px;
	background: #fff;
}

.alsae-seo-content summary {
	padding: 12px 14px;
	cursor: pointer;
	color: var(--alsae-brand-deep);
	font-weight: 800;
}

.alsae-seo-content details > *:not(summary) {
	margin-inline: 14px;
}

@media (max-width: 1100px) {
	.alsae-brand-media {
		height: 104px;
	}
}

@media (max-width: 767px) {
	.alsae-hero {
		padding: 18px 16px;
	}

	.alsae-hero p {
		font-size: 12px;
		line-height: 1.85;
	}

	.alsae-finder {
		margin-top: 14px;
		padding: 14px 10px;
	}

	.alsae-brand-media {
		height: 74px;
	}

	.alsae-brand-fallback {
		width: 46px;
		height: 58px;
	}

	.alsae-brand-fallback svg {
		width: 30px;
		height: 30px;
	}

	.alsae-option-card {
		min-height: 88px;
	}

	.alsae-active-filter-bar {
		align-items: stretch;
	}

	.alsae-clear-inline {
		align-self: flex-start;
	}
}

@media (min-width: 1101px) {
	.alsae-brand-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}
}

.alsae-seo-missing {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 24px;
	padding: 16px 18px;
	border: 1px solid #f1d28a;
	border-radius: 14px;
	background: #fff8e7;
	color: #806b45;
}

.alsae-seo-missing > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.alsae-seo-missing strong {
	color: #7a4b00;
	font-size: 12px;
}

.alsae-seo-missing span {
	font-size: 10px;
	line-height: 1.8;
}

.alsae-seo-missing a {
	flex: 0 0 auto;
	padding: 9px 13px;
	border-radius: 9px;
	background: var(--alsae-brand);
	color: #fff;
	font-size: 10px;
	font-weight: 900;
}

@media (max-width: 767px) {
	.alsae-seo-missing {
		align-items: stretch;
		flex-direction: column;
	}

	.alsae-seo-missing a {
		text-align: center;
	}
}

/* ===========================
   Phase 4 — Visual consistency, smart finder CTA and SEO navigation
=========================== */
.alsae-racket-finder-cta {
	display: grid !important;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-width: min(470px, 44vw);
	padding: 12px 14px;
	color: var(--alsae-text);
	background: linear-gradient(135deg, #f8fce9, #ffffff 68%);
	border-color: #d5e88d;
	box-shadow: 0 10px 28px rgba(15, 76, 138, 0.08);
}

.alsae-racket-finder-cta:hover {
	transform: translateY(-3px);
	border-color: var(--alsae-accent);
	box-shadow: 0 16px 34px rgba(15, 76, 138, 0.14);
}

.alsae-racket-finder-icon {
	display: grid !important;
	place-items: center;
	width: 48px;
	height: 58px;
	margin: 0 !important;
	border-radius: 13px;
	background: #edf5fb;
	color: var(--alsae-brand);
}

.alsae-racket-finder-icon svg {
	width: 32px;
	height: 42px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.1;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.alsae-racket-finder-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	display: block;
}

.alsae-racket-finder-copy {
	display: flex !important;
	flex-direction: column;
	gap: 2px;
	margin: 0 !important;
}

.alsae-racket-finder-copy small {
	color: var(--alsae-brand);
	font-size: 9px;
	font-weight: 900;
}

.alsae-racket-finder-copy strong {
	font-size: 15px;
	line-height: 1.5;
}

.alsae-racket-finder-copy em {
	color: var(--alsae-muted);
	font-size: 9px;
	font-style: normal;
	line-height: 1.7;
}

.alsae-racket-finder-cta > b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 9px;
	background: var(--alsae-brand);
	color: #fff;
	font-size: 9px;
	font-weight: 900;
	white-space: nowrap;
}

.alsae-category-strip {
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.alsae-category-strip a {
	min-height: 82px;
	padding: 9px 10px;
	flex-direction: row;
	align-items: center;
	gap: 9px;
}

.alsae-category-media {
	display: grid !important;
	place-items: center;
	flex: 0 0 54px;
	width: 54px;
	height: 58px;
	margin: 0 !important;
	border-radius: 11px;
	background: #f3f8fc;
	overflow: hidden;
}

.alsae-category-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform .25s ease;
}

.alsae-category-strip a:hover .alsae-category-media img {
	transform: scale(1.08);
}

.alsae-category-copy {
	display: flex !important;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	margin: 0 !important;
}

.alsae-category-copy strong {
	color: var(--alsae-brand-deep);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.6;
}

.alsae-category-copy small {
	font-size: 8px;
}

.alsae-brand-grid {
	grid-template-columns: repeat(8, minmax(0, 1fr));
}

.alsae-brand-media {
	height: 112px;
	aspect-ratio: auto;
	background: linear-gradient(180deg, #fbfdff, #f3f8fc);
}

.alsae-brand-media img {
	width: 94%;
	height: 94%;
	object-fit: contain;
	object-position: center;
	mix-blend-mode: multiply;
}

.alsae-brand-card {
	min-height: 144px;
}

.alsae-brand-card strong {
	margin-top: 6px;
}

.alsae-seo-navigation {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: 24px;
	align-items: center;
	margin-top: 20px;
	padding: 22px;
	border: 1px solid var(--alsae-border);
	border-radius: 20px;
	background: linear-gradient(135deg, #fff, #f6fbff);
	box-shadow: var(--alsae-shadow);
}

.alsae-seo-navigation h2 {
	margin: 0 0 8px;
	color: var(--alsae-brand-deep);
	font-size: 19px;
	line-height: 1.6;
}

.alsae-seo-navigation p {
	margin: 0;
	color: var(--alsae-muted);
	font-size: 11px;
	line-height: 2;
}

.alsae-seo-navigation-links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.alsae-seo-navigation-links a {
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	padding: 8px;
	border: 1px solid var(--alsae-border);
	border-radius: 11px;
	background: #fff;
	color: var(--alsae-brand-deep);
	font-size: 9px;
	font-weight: 900;
	transition: .2s ease;
}

.alsae-seo-navigation-links a:hover {
	transform: translateY(-2px);
	border-color: var(--alsae-accent);
}

.alsae-seo-navigation-links img {
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	object-fit: contain;
	border-radius: 8px;
	background: #f3f8fc;
	mix-blend-mode: multiply;
}

.alsae-seo-content table {
	width: 100%;
	margin: 16px 0;
	border-collapse: collapse;
	font-size: 11px;
}

.alsae-seo-content th,
.alsae-seo-content td {
	padding: 10px 12px;
	border: 1px solid var(--alsae-border);
	text-align: right;
	line-height: 1.8;
}

.alsae-seo-content th {
	background: #f3f8fc;
	color: var(--alsae-brand-deep);
}

.alsae-seo-content ul,
.alsae-seo-content ol {
	padding-right: 20px;
	line-height: 2;
}

@media (max-width: 1250px) {
	.alsae-category-strip {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.alsae-brand-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.alsae-racket-finder-cta {
		min-width: min(430px, 48vw);
	}
}

@media (max-width: 900px) {
	.alsae-racket-finder-cta {
		min-width: 0;
		width: 100%;
	}

	.alsae-seo-navigation {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.alsae-racket-finder-cta {
		grid-template-columns: 44px minmax(0, 1fr);
		padding: 10px;
	}

	.alsae-racket-finder-icon {
		width: 44px;
		height: 52px;
	}

	.alsae-racket-finder-cta > b {
		grid-column: 1 / -1;
		width: 100%;
	}

	.alsae-category-strip {
		display: flex;
		grid-template-columns: none;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 8px;
	}

	.alsae-category-strip a {
		flex: 0 0 58%;
		min-height: 74px;
		scroll-snap-align: start;
	}

	.alsae-category-media {
		flex-basis: 48px;
		width: 48px;
		height: 52px;
	}

	.alsae-brand-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 8px;
	}

	.alsae-brand-card {
		flex: 0 0 31%;
		min-height: 122px;
		scroll-snap-align: start;
	}

	.alsae-brand-media {
		height: 84px;
	}

	.alsae-seo-navigation {
		padding: 16px;
	}

	.alsae-seo-navigation-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alsae-seo-content {
		overflow-x: hidden;
	}

	.alsae-seo-content table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
}

/* ===========================
   Phase 5 — Mobile stability, contextual SEO and release-candidate polish
=========================== */
.alsae-mobile-scroll-hint {
	display: none;
	margin: -2px 2px 12px;
	color: var(--alsae-muted);
	font-size: 9px;
	text-align: center;
}

.alsae-sidebar-backdrop[hidden] {
	display: none !important;
}

.alsae-contextual-seo {
	margin-top: 22px;
	padding-top: 4px;
	border-top: 1px dashed var(--alsae-border);
}

.alsae-contextual-seo:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.alsae-contextual-seo h2,
.alsae-contextual-seo h3 {
	text-wrap: balance;
}

.alsae-seo-content {
	content-visibility: auto;
	contain-intrinsic-size: 700px;
}

@media (max-width: 900px) {
	.alsae-sidebar {
		right: 0;
		left: auto;
		box-shadow: -22px 0 52px rgba(8, 28, 48, .22);
		visibility: hidden;
		pointer-events: none;
	}

	.alsae-sidebar.is-open {
		visibility: visible;
		pointer-events: auto;
	}

	body:not(.alsae-filter-open) .alsae-sidebar-backdrop {
		display: none !important;
	}

	body.alsae-filter-open .alsae-sidebar-backdrop:not([hidden]) {
		display: block;
	}
}

@media (max-width: 767px) {
	.alsae-mobile-scroll-hint {
		display: block;
	}

	.alsae-category-strip {
		scrollbar-width: thin;
		overscroll-behavior-inline: contain;
	}

	.alsae-category-strip a {
		flex-basis: 48%;
	}

	.alsae-brand-grid {
		scrollbar-width: thin;
		overscroll-behavior-inline: contain;
		padding-bottom: 8px;
	}

	.alsae-products ul.products li.product:only-child {
		grid-column: 1 / -1;
		width: 100%;
		max-width: 100%;
		justify-self: stretch;
	}

	.alsae-products ul.products li.product:last-child:nth-child(odd):not(:only-child) {
		grid-column: 1 / -1;
		width: calc(50% - 5px);
		justify-self: center;
	}

	.alsae-products ul.products li.product .woocommerce-loop-product__title {
		word-break: normal;
		overflow-wrap: anywhere;
	}

	.alsae-sidebar {
		width: min(360px, 92vw);
		padding-bottom: max(18px, env(safe-area-inset-bottom));
	}

	.alsae-sidebar-head {
		position: sticky;
		top: 0;
		z-index: 3;
		padding-top: max(14px, env(safe-area-inset-top));
		background: rgba(255,255,255,.97);
		backdrop-filter: blur(10px);
	}

	.alsae-seo-content {
		line-height: 2.15;
	}

	.alsae-seo-content h2 {
		font-size: 20px;
	}

	.alsae-seo-content h3 {
		font-size: 16px;
	}
}


/* ===== Phase 6: readability, classic brand cards, and mobile polish ===== */
.alsae-page {
	font-size: 16px;
}
.alsae-page p,
.alsae-page li,
.alsae-page label,
.alsae-page input,
.alsae-page select,
.alsae-page textarea,
.alsae-page button,
.alsae-page .button {
	font-size: 16px;
}
.alsae-breadcrumb,
.alsae-preview-pill span,
.alsae-preview-pill a,
.alsae-eyebrow,
.alsae-hero-copy p,
.alsae-racket-finder-copy small,
.alsae-racket-finder-copy em,
.alsae-racket-finder-cta b,
.alsae-hero-badge span,
.alsae-category-copy small,
.alsae-brand-card strong,
.alsae-mobile-scroll-hint,
.alsae-option-card span,
.alsae-option-card small,
.alsae-archive-tools label,
.alsae-archive-count,
.alsae-sidebar-title small,
.alsae-filter-switch span,
.alsae-sidebar-section li a,
.alsae-sidebar-section li button,
.alsae-sidebar-section li span,
.alsae-filter-chip,
.alsae-product-card .price,
.alsae-product-card .price del,
.alsae-product-card .price ins,
.alsae-product-card .price .amount,
.alsae-pagination .page-numbers,
.alsae-contextual-seo p,
.alsae-contextual-seo li,
.alsae-faq-item summary,
.alsae-faq-item p,
.alsae-faq-item li,
.alsae-seo-nav a,
.alsae-quick-links a,
.alsae-empty-state p,
.alsae-hero-badge small,
.alsae-category-copy strong,
.alsae-archive-toolbar .woocommerce-ordering select,
.alsae-archive-toolbar .alsae-product-count a,
.alsae-archive-toolbar .alsae-product-count span,
.alsae-archive-toolbar .alsae-mobile-filter-toggle,
.alsae-product-card .button,
.alsae-sidebar .price_slider_amount .button,
.alsae-result-count {
	font-size: 14px;
}
.alsae-brand-card strong,
.alsae-category-copy strong,
.alsae-option-card strong,
.alsae-sidebar-section-title,
.alsae-section-heading p,
.alsae-product-card .woocommerce-loop-product__title,
.alsae-product-card .product-title,
.alsae-contextual-seo strong,
.alsae-faq-item strong {
	font-size: 16px;
}
.alsae-product-card .woocommerce-loop-product__title,
.alsae-product-card .product-title {
	line-height: 1.9;
}
.alsae-hero-copy p,
.alsae-racket-finder-copy em,
.alsae-contextual-seo p,
.alsae-faq-item p {
	line-height: 2;
}
.alsae-brand-card {
	gap: 10px;
}
.alsae-brand-media img {
	object-fit: contain;
	padding: 8px;
}
@media (max-width: 767px) {
	.alsae-page,
	.alsae-page p,
	.alsae-page li,
	.alsae-page label,
	.alsae-page input,
	.alsae-page select,
	.alsae-page textarea,
	.alsae-page button,
	.alsae-page .button {
		font-size: 15px;
	}
	.alsae-breadcrumb,
	.alsae-preview-pill span,
	.alsae-preview-pill a,
	.alsae-eyebrow,
	.alsae-hero-copy p,
	.alsae-racket-finder-copy small,
	.alsae-racket-finder-copy em,
	.alsae-racket-finder-cta b,
	.alsae-hero-badge span,
	.alsae-category-copy small,
	.alsae-brand-card strong,
	.alsae-mobile-scroll-hint,
	.alsae-option-card span,
	.alsae-option-card small,
	.alsae-archive-tools label,
	.alsae-archive-count,
	.alsae-sidebar-title small,
	.alsae-filter-switch span,
	.alsae-sidebar-section li a,
	.alsae-sidebar-section li button,
	.alsae-sidebar-section li span,
	.alsae-filter-chip,
	.alsae-product-card .price,
	.alsae-product-card .price del,
	.alsae-product-card .price ins,
	.alsae-product-card .price .amount,
	.alsae-pagination .page-numbers,
	.alsae-contextual-seo p,
	.alsae-contextual-seo li,
	.alsae-faq-item summary,
	.alsae-faq-item p,
	.alsae-faq-item li,
	.alsae-seo-nav a,
	.alsae-quick-links a,
	.alsae-empty-state p,
	.alsae-hero-badge small,
	.alsae-category-copy strong,
	.alsae-archive-toolbar .woocommerce-ordering select,
	.alsae-archive-toolbar .alsae-product-count a,
	.alsae-archive-toolbar .alsae-product-count span,
	.alsae-archive-toolbar .alsae-mobile-filter-toggle,
	.alsae-product-card .button,
	.alsae-sidebar .price_slider_amount .button,
	.alsae-result-count {
		font-size: 14px;
	}
	.alsae-brand-card strong,
	.alsae-category-copy strong,
	.alsae-option-card strong,
	.alsae-sidebar-section-title,
	.alsae-section-heading p,
	.alsae-product-card .woocommerce-loop-product__title,
	.alsae-product-card .product-title,
	.alsae-contextual-seo strong,
	.alsae-faq-item strong {
		font-size: 15px;
	}
}


/* ===========================
   Phase 7 — final spacing, mobile UX and archive conversion polish
=========================== */
.alsae-hero-copy {
	flex: 1 1 auto;
	max-width: 760px;
}
.alsae-hero {
	align-items: center;
	min-height: 176px;
}
.alsae-hero-copy p {
	font-size: 16px;
	line-height: 2.05;
}
.alsae-eyebrow {
	font-size: 13px;
}
.alsae-racket-finder-copy small {
	font-size: 11px;
}
.alsae-racket-finder-copy em {
	font-size: 11px;
	line-height: 1.85;
}
.alsae-racket-finder-cta > b {
	font-size: 11px;
}
.alsae-trust-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px;
}
.alsae-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid var(--alsae-border);
	border-radius: 14px;
	background: rgba(255,255,255,.82);
}
.alsae-trust-icon {
	display: grid;
	place-items: center;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: 11px;
	background: #eef6d2;
	color: #648100;
	font-size: 18px;
	font-weight: 900;
}
.alsae-trust-item > span:last-child {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.alsae-trust-item strong {
	color: var(--alsae-brand-deep);
	font-size: 13px;
}
.alsae-trust-item small {
	color: var(--alsae-muted);
	font-size: 11px;
	line-height: 1.7;
}
.alsae-finder {
	padding: 22px;
}
.alsae-section-heading {
	align-items: center;
}
.alsae-category-strip a {
	height: 84px;
}
.alsae-category-copy strong {
	font-size: 13px;
}
.alsae-category-copy small {
	font-size: 10px;
}
.alsae-brand-card {
	min-height: 150px;
}
.alsae-brand-card strong {
	font-size: 12px;
	letter-spacing: .01em;
}
.alsae-option-card strong {
	font-size: 12px;
}
.alsae-option-card small {
	font-size: 10px;
}
.alsae-toolbar-title .woocommerce-result-count {
	font-size: 12px;
	line-height: 1.7;
}
.alsae-per-page {
	font-size: 12px;
}
.alsae-toolbar .woocommerce-ordering select {
	font-size: 13px;
}
.alsae-filter-toggle {
	gap: 7px;
	font-size: 13px;
}
.alsae-filter-toggle b {
	display: grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	padding: 0 5px;
	border-radius: 99px;
	background: var(--alsae-accent);
	color: var(--alsae-brand-deep);
	font-size: 11px;
}
.alsae-products ul.products li.product {
	height: 100%;
}
.alsae-products ul.products li.product .woocommerce-loop-product__title {
	min-height: 78px;
	font-size: 15px !important;
	line-height: 1.85;
}
.alsae-products ul.products li.product .price {
	font-size: 15px !important;
	line-height: 1.8;
}
.alsae-products ul.products li.product .button,
.alsae-products ul.products li.product .alsae-product-cta {
	min-height: 44px;
	font-size: 13px;
}
.alsae-sidebar-head strong {
	font-size: 16px;
}
.alsae-sidebar-head small {
	font-size: 11px;
}
.alsae-filter-section-title strong {
	font-size: 14px;
}
.alsae-filter-section-title span,
.alsae-price-fields label > span {
	font-size: 11px;
}
.alsae-price-fields input {
	font-size: 12px;
}
.alsae-price-range-note {
	font-size: 10px;
}
.alsae-price-filter button,
.alsae-filter-switch,
.alsae-filter-list a {
	font-size: 12.5px;
}
.alsae-filter-list small {
	font-size: 10px;
}
.alsae-sidebar-done {
	display: none;
	width: 100%;
	min-height: 46px;
	margin-top: 14px;
	border: 0;
	border-radius: 11px;
	background: var(--alsae-brand);
	color: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
}
.alsae-seo-content,
.alsae-contextual-seo {
	font-size: 15px;
	line-height: 2.2;
}
.alsae-contextual-faq {
	margin: 20px 0;
}
.alsae-contextual-faq details {
	margin-top: 8px;
	border: 1px solid var(--alsae-border);
	border-radius: 11px;
	background: #fff;
}
.alsae-contextual-faq summary {
	padding: 12px 14px;
	cursor: pointer;
	color: var(--alsae-brand-deep);
	font-size: 14px;
	font-weight: 900;
}
.alsae-contextual-faq p {
	margin: 0;
	padding: 0 14px 14px;
	font-size: 14px;
	line-height: 2;
}

@media (max-width: 1100px) {
	.alsae-trust-strip {
		grid-template-columns: 1fr;
	}
	.alsae-trust-item {
		padding-block: 10px;
	}
}

@media (max-width: 900px) {
	.alsae-sidebar-done {
		display: block;
		position: sticky;
		bottom: max(8px, env(safe-area-inset-bottom));
		z-index: 4;
		box-shadow: 0 10px 28px rgba(15,76,138,.22);
	}
}

@media (max-width: 767px) {
	.alsae-page {
		padding-bottom: 34px;
	}
	.alsae-hero {
		min-height: 0;
		gap: 16px;
	}
	.alsae-hero-copy p {
		font-size: 14px;
		line-height: 1.95;
	}
	.alsae-racket-finder-copy strong {
		font-size: 16px;
	}
	.alsae-racket-finder-copy small,
	.alsae-racket-finder-copy em,
	.alsae-racket-finder-cta > b {
		font-size: 11px;
	}
	.alsae-trust-strip {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: thin;
	}
	.alsae-trust-item {
		flex: 0 0 84%;
		scroll-snap-align: start;
	}
	.alsae-finder {
		padding: 16px 12px;
	}
	.alsae-section-heading {
		margin-bottom: 16px;
	}
	.alsae-category-copy strong {
		font-size: 13px;
	}
	.alsae-category-copy small {
		font-size: 10px;
	}
	.alsae-brand-card strong {
		font-size: 10px;
	}
	.alsae-option-card strong {
		font-size: 11px;
	}
	.alsae-option-card small {
		font-size: 10px;
	}
	.alsae-toolbar {
		position: sticky;
		top: 8px;
		z-index: 30;
		margin-inline: -4px;
		padding: 11px 8px;
		border: 1px solid var(--alsae-border);
		border-radius: 13px;
		background: rgba(255,255,255,.96);
		box-shadow: 0 10px 26px rgba(15,76,138,.11);
		backdrop-filter: blur(12px);
	}
	.admin-bar .alsae-toolbar {
		top: 54px;
	}
	.alsae-toolbar-title {
		width: 100%;
	}
	.alsae-toolbar-title .woocommerce-result-count {
		font-size: 11px;
	}
	.alsae-toolbar-actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 8px;
	}
	.alsae-per-page {
		grid-column: 1 / -1;
		font-size: 11px;
	}
	.alsae-toolbar .woocommerce-ordering select,
	.alsae-filter-toggle {
		font-size: 12px;
	}
	.alsae-filter-toggle {
		display: inline-flex;
		justify-content: center;
	}
	.alsae-products ul.products li.product .woocommerce-loop-product__title {
		min-height: 68px;
		font-size: 12.5px !important;
		line-height: 1.8;
	}
	.alsae-products ul.products li.product .price {
		font-size: 12px !important;
	}
	.alsae-products ul.products li.product .button,
	.alsae-products ul.products li.product .alsae-product-cta {
		min-height: 40px;
		padding-inline: 6px;
		font-size: 11px;
		line-height: 1.5;
		text-align: center;
	}
	.alsae-products ul.products li.product:last-child:nth-child(odd):not(:only-child) {
		grid-column: 1 / -1;
		width: 100%;
		max-width: none;
	}
	.alsae-sidebar-head strong {
		font-size: 16px;
	}
	.alsae-filter-section-title strong {
		font-size: 14px;
	}
	.alsae-filter-switch,
	.alsae-filter-list a {
		font-size: 13px;
	}
	.alsae-seo-content,
	.alsae-contextual-seo {
		font-size: 14px;
		line-height: 2.1;
	}
}

/* =========================================================
   ALS Product Engine 0.18.7 — consistent golden archive stars
   ========================================================= */
body.alspe-archive-layout .alsae-products ul.products li.product .star-rating,
body.alspe-archive-layout .woocommerce ul.products li.product .star-rating {
	position: relative !important;
	display: block !important;
	float: none !important;
	width: 6.15em !important;
	height: 1.22em !important;
	max-width: 100% !important;
	margin: 4px auto 9px !important;
	overflow: hidden !important;
	color: #d9dee5 !important;
	font-family: Arial, Tahoma, sans-serif !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.22 !important;
	letter-spacing: .08em !important;
	direction: ltr !important;
	text-align: left !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product .star-rating::before,
body.alspe-archive-layout .woocommerce ul.products li.product .star-rating::before {
	content: "★★★★★" !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	color: #d9dee5 !important;
	font: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product .star-rating span,
body.alspe-archive-layout .woocommerce ul.products li.product .star-rating span {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	height: 100% !important;
	overflow: hidden !important;
	padding-top: 1.35em !important;
	color: #f4b400 !important;
	white-space: nowrap !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product .star-rating span::before,
body.alspe-archive-layout .woocommerce ul.products li.product .star-rating span::before {
	content: "★★★★★" !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	color: #f4b400 !important;
	font: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
	text-indent: 0 !important;
}


/* =========================================================
   ALS Product Engine 0.18.8 — archive price and rating polish
   ========================================================= */
body.alspe-archive-layout .alsae-products ul.products li.product .price,
body.alspe-archive-layout .woocommerce ul.products li.product .price {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: baseline !important;
	justify-content: center !important;
	gap: 4px 7px !important;
	width: 100% !important;
	margin: auto 0 12px !important;
	padding-inline: 0 !important;
	text-align: center !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product .price del,
body.alspe-archive-layout .alsae-products ul.products li.product .price ins,
body.alspe-archive-layout .alsae-products ul.products li.product .price .amount,
body.alspe-archive-layout .woocommerce ul.products li.product .price del,
body.alspe-archive-layout .woocommerce ul.products li.product .price ins,
body.alspe-archive-layout .woocommerce ul.products li.product .price .amount {
	float: none !important;
	margin-inline: 0 !important;
	text-align: center !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product .star-rating,
body.alspe-archive-layout .woocommerce ul.products li.product .star-rating {
	position: relative !important;
	display: block !important;
	float: none !important;
	width: 82px !important;
	height: 17px !important;
	min-width: 82px !important;
	max-width: 82px !important;
	margin: 5px auto 10px !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	filter: none !important;
	transform: none !important;
	opacity: 1 !important;
	color: transparent !important;
	font-family: Arial, "Segoe UI Symbol", Tahoma, sans-serif !important;
	font-size: 15px !important;
	font-style: normal !important;
	font-weight: 700 !important;
	line-height: 17px !important;
	letter-spacing: 1px !important;
	direction: ltr !important;
	text-align: left !important;
	text-indent: 0 !important;
	text-shadow: none !important;
	-webkit-text-stroke: 0 transparent !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product .star-rating::before,
body.alspe-archive-layout .woocommerce ul.products li.product .star-rating::before {
	content: "★★★★★" !important;
	position: absolute !important;
	inset: 0 auto auto 0 !important;
	display: block !important;
	width: 82px !important;
	height: 17px !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	filter: none !important;
	transform: none !important;
	opacity: 1 !important;
	color: #d7dde5 !important;
	font: inherit !important;
	line-height: 17px !important;
	letter-spacing: 1px !important;
	text-indent: 0 !important;
	text-shadow: none !important;
	-webkit-text-stroke: 0 transparent !important;
	white-space: nowrap !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product .star-rating::after,
body.alspe-archive-layout .alsae-products ul.products li.product .star-rating span::after,
body.alspe-archive-layout .woocommerce ul.products li.product .star-rating::after,
body.alspe-archive-layout .woocommerce ul.products li.product .star-rating span::after {
	display: none !important;
	content: none !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product .star-rating span,
body.alspe-archive-layout .woocommerce ul.products li.product .star-rating span {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	display: block !important;
	height: 17px !important;
	max-width: 82px !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	background: transparent !important;
	box-shadow: none !important;
	filter: none !important;
	transform: none !important;
	opacity: 1 !important;
	color: transparent !important;
	font-size: 0 !important;
	line-height: 0 !important;
	text-indent: -9999px !important;
	text-shadow: none !important;
	white-space: nowrap !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product .star-rating span::before,
body.alspe-archive-layout .woocommerce ul.products li.product .star-rating span::before {
	content: "★★★★★" !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	display: block !important;
	width: 82px !important;
	height: 17px !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	filter: none !important;
	transform: none !important;
	opacity: 1 !important;
	color: #f5b400 !important;
	font-family: Arial, "Segoe UI Symbol", Tahoma, sans-serif !important;
	font-size: 15px !important;
	font-style: normal !important;
	font-weight: 700 !important;
	line-height: 17px !important;
	letter-spacing: 1px !important;
	text-indent: 0 !important;
	text-shadow: none !important;
	-webkit-text-stroke: 0 transparent !important;
	white-space: nowrap !important;
}

/* =========================================================
   ALS Product Engine 0.19.0 — Operational Phase 1
   Compact discovery, human paths and decision-ready cards
========================================================= */
.alsae-hero {
	padding: 20px 24px;
	gap: 22px;
}

.alsae-hero-copy {
	flex: 1 1 auto;
	min-width: 0;
}

.alsae-hero-search {
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 650px;
	margin-top: 14px;
}

.alsae-hero-search input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	height: 44px;
	padding: 0 15px;
	border: 1px solid var(--alsae-border);
	border-radius: 12px;
	background: #fff;
	color: var(--alsae-text);
	font: inherit;
	font-size: 13px;
	outline: none;
}

.alsae-hero-search input[type="search"]:focus {
	border-color: var(--alsae-brand);
	box-shadow: 0 0 0 3px rgba(15, 76, 138, .08);
}

.alsae-hero-search button {
	flex: 0 0 auto;
	height: 44px;
	padding: 0 20px;
	border: 0;
	border-radius: 12px;
	background: var(--alsae-brand);
	color: #fff;
	font: inherit;
	font-size: 12px;
	font-weight: 900;
	cursor: pointer;
}

.alsae-finder {
	margin-top: 16px;
	padding: 18px;
}

.alsae-finder > .alsae-section-heading {
	margin-bottom: 12px;
}

.alsae-category-strip {
	margin-bottom: 12px;
}

.alsae-human-paths {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0 4px;
	border-top: 1px dashed var(--alsae-border);
}

.alsae-human-paths > span {
	flex: 0 0 auto;
	color: var(--alsae-brand-deep);
	font-size: 11px;
	font-weight: 900;
}

.alsae-human-paths > div {
	display: flex;
	align-items: center;
	gap: 7px;
	overflow-x: auto;
	padding-bottom: 5px;
	scrollbar-width: thin;
}

.alsae-human-paths a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
	padding: 8px 11px;
	border: 1px solid var(--alsae-border);
	border-radius: 999px;
	background: #fbfdff;
	color: var(--alsae-brand-deep);
	transition: .2s ease;
}

.alsae-human-paths a:hover,
.alsae-human-paths a.is-current {
	border-color: var(--alsae-accent);
	background: #f5fbe6;
}

.alsae-human-paths a strong {
	font-size: 10px;
	font-weight: 900;
}

.alsae-human-paths a small {
	display: grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	padding-inline: 5px;
	border-radius: 999px;
	background: #eaf3fb;
	font-size: 8px;
	font-weight: 900;
}

.alsae-expert-picker {
	margin-top: 10px;
	border: 1px solid var(--alsae-border);
	border-radius: 14px;
	background: #fbfdff;
	overflow: hidden;
}

.alsae-expert-picker > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 13px 15px;
	cursor: pointer;
	list-style: none;
	color: var(--alsae-brand-deep);
}

.alsae-expert-picker > summary::-webkit-details-marker { display: none; }
.alsae-expert-picker > summary span { display: flex; align-items: baseline; gap: 8px; }
.alsae-expert-picker > summary strong { font-size: 12px; font-weight: 900; }
.alsae-expert-picker > summary small { color: var(--alsae-muted); font-size: 9px; }
.alsae-expert-picker > summary b { font-size: 18px; transition: transform .2s ease; }
.alsae-expert-picker[open] > summary b { transform: rotate(180deg); }

.alsae-expert-picker-body {
	padding: 0 14px 14px;
	border-top: 1px solid var(--alsae-border);
}

.alsae-expert-picker-body .alsae-brand-grid {
	padding-top: 14px;
}

.alsae-card-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 5px;
	width: 100%;
	margin: 2px 0 9px;
}

.alsae-card-specs span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	min-width: 0;
	padding: 6px 7px;
	border: 1px solid #e7f0f7;
	border-radius: 8px;
	background: #f8fbfe;
}

.alsae-card-specs small {
	flex: 0 0 auto;
	color: var(--alsae-muted);
	font-size: 7.5px;
}

.alsae-card-specs b {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--alsae-brand-deep);
	font-size: 8px;
	font-weight: 900;
}

.alsae-products ul.products li.product .alsae-product-cta {
	min-height: 42px;
}

@media (max-width: 900px) {
	.alsae-hero {
		padding: 16px;
	}

	.alsae-hero-search {
		width: 100%;
		max-width: none;
	}

	.alsae-hero-search input[type="search"] {
		height: 42px;
		font-size: 12px;
	}

	.alsae-hero-search button {
		height: 42px;
		padding-inline: 14px;
	}

	.alsae-finder {
		margin-top: 12px;
		padding: 14px 10px;
	}

	.alsae-human-paths {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.alsae-human-paths > div {
		width: 100%;
	}

	.alsae-expert-picker > summary span {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}

	.alsae-card-specs {
		gap: 4px;
		margin-bottom: 7px;
	}

	.alsae-card-specs span {
		padding: 5px;
	}

	.alsae-card-specs small {
		display: none;
	}

	.alsae-card-specs b {
		width: 100%;
		text-align: center;
		font-size: 7.8px;
	}
}

/* =========================================================
   ALS Product Engine 0.19.1 — uniform decision-ready cards
   ========================================================= */
body.alspe-archive-layout .alsae-products ul.products {
	align-items: stretch !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product {
	height: 100% !important;
	min-height: 0 !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product a.woocommerce-LoopProduct-link {
	display: flex !important;
	flex: 1 1 auto !important;
	flex-direction: column !important;
	height: 100% !important;
	min-height: 0 !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product a img {
	flex: 0 0 auto !important;
	height: clamp(245px, 19vw, 300px) !important;
	min-height: clamp(245px, 19vw, 300px) !important;
	max-height: clamp(245px, 19vw, 300px) !important;
	object-fit: contain !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product .woocommerce-loop-product__title {
	flex: 0 0 auto !important;
	min-height: 84px !important;
	margin: 0 !important;
}

/* When WooCommerce has no rating, the specification grid follows the title
   directly. This adjacent rule reserves the same rating slot without relying
   on browser-specific :has() support. */
body.alspe-racket-archive .alsae-products ul.products li.product .woocommerce-loop-product__title + .alsae-card-specs {
	margin-top: 34px !important;
}

body.alspe-racket-archive .alsae-products ul.products li.product .alsae-card-specs {
	flex: 0 0 auto !important;
	min-height: 82px !important;
	align-content: start !important;
}

body.alspe-racket-archive .alsae-products ul.products li.product .alsae-card-specs.is-empty {
	visibility: hidden !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product .price {
	margin-top: auto !important;
	min-height: 44px !important;
	align-content: center !important;
}

body.alspe-archive-layout .alsae-products ul.products li.product .alsae-product-cta {
	flex: 0 0 auto !important;
	min-height: 44px !important;
}

@media (max-width: 900px) {
	body.alspe-archive-layout .alsae-products ul.products li.product a img {
		height: clamp(175px, 46vw, 225px) !important;
		min-height: clamp(175px, 46vw, 225px) !important;
		max-height: clamp(175px, 46vw, 225px) !important;
	}

	body.alspe-archive-layout .alsae-products ul.products li.product .woocommerce-loop-product__title {
		min-height: 68px !important;
	}

	body.alspe-racket-archive .alsae-products ul.products li.product .woocommerce-loop-product__title + .alsae-card-specs {
		margin-top: 29px !important;
	}

	body.alspe-racket-archive .alsae-products ul.products li.product .alsae-card-specs {
		min-height: 62px !important;
	}

	body.alspe-archive-layout .alsae-products ul.products li.product .price {
		min-height: 40px !important;
	}
}

@media (max-width: 579px) {
	body.alspe-archive-layout .alsae-products ul.products li.product a img {
		height: clamp(145px, 43vw, 190px) !important;
		min-height: clamp(145px, 43vw, 190px) !important;
		max-height: clamp(145px, 43vw, 190px) !important;
	}

	body.alspe-archive-layout .alsae-products ul.products li.product .woocommerce-loop-product__title {
		min-height: 62px !important;
	}

	body.alspe-racket-archive .alsae-products ul.products li.product .alsae-card-specs {
		min-height: 58px !important;
	}
}

/* ALS Product Engine 0.21.0 — keep HEAD visible without exposing a zero-result filter. */
.alsae-brand-card.is-coming-soon {
	position: relative;
	cursor: default;
	opacity: .82;
	background: linear-gradient(180deg, #fff, #f6f9fc);
}

.alsae-brand-card.is-coming-soon:hover {
	transform: none;
	border-color: #d7e3ed;
	box-shadow: none;
}

.alsae-coming-soon-label {
	position: absolute;
	top: 7px;
	left: 7px;
	display: inline-flex;
	align-items: center;
	min-height: 21px;
	padding: 2px 7px;
	border-radius: 999px;
	background: #eef4f9;
	color: #587089;
	font-size: 8px;
	font-weight: 900;
}


/* =========================================================
   ALS Product Engine 0.22.0 — archive toolbar + live search
   ========================================================= */
.alsae-hero-search {
	position: relative;
	z-index: 45;
}

.alsae-live-search-results {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	left: 0;
	z-index: 120;
	max-height: min(480px, 62vh);
	overflow-y: auto;
	padding: 7px;
	border: 1px solid #d8e6f1;
	border-radius: 14px;
	background: rgba(255,255,255,.99);
	box-shadow: 0 18px 48px rgba(7,49,93,.18);
	overscroll-behavior: contain;
}

.alsae-live-search-results[hidden] {
	display: none !important;
}

.alsae-live-search-item {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-height: 70px;
	padding: 6px 8px;
	border: 1px solid transparent;
	border-radius: 10px;
	color: var(--alsae-text);
	text-decoration: none;
	transition: background .16s ease, border-color .16s ease;
}

.alsae-live-search-item + .alsae-live-search-item {
	margin-top: 3px;
}

.alsae-live-search-item:hover,
.alsae-live-search-item:focus-visible,
.alsae-live-search-item.is-active {
	border-color: #c9dceb;
	background: #f2f8fc;
	outline: none;
}

.alsae-live-search-media {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 9px;
	background: #f8fbfe;
	overflow: hidden;
}

.alsae-live-search-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.alsae-live-search-no-image {
	width: 28px;
	height: 28px;
	border: 2px dashed #c8d8e5;
	border-radius: 50%;
}

.alsae-live-search-copy {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.alsae-live-search-copy > strong {
	overflow: hidden;
	color: var(--alsae-brand-deep);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.7;
	text-overflow: ellipsis;
	white-space: nowrap;
	unicode-bidi: plaintext;
}

.alsae-live-search-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.alsae-live-search-price,
.alsae-live-search-price .price,
.alsae-live-search-price .amount {
	color: var(--alsae-brand);
	font-size: 11px;
	font-weight: 900;
}

.alsae-live-search-price del {
	margin-inline-end: 5px;
	color: #8fa0af;
	font-size: 9px;
	font-weight: 500;
}

.alsae-live-search-price ins {
	text-decoration: none;
}

.alsae-live-search-meta small {
	flex: 0 0 auto;
	padding: 3px 7px;
	border-radius: 999px;
	font-size: 9px;
	font-weight: 900;
}

.alsae-live-search-meta small.is-in-stock {
	background: #eaf8ee;
	color: #16733b;
}

.alsae-live-search-meta small.is-out-of-stock {
	background: #fff0f0;
	color: #af2d2d;
}

.alsae-live-search-message {
	display: grid;
	place-items: center;
	min-height: 68px;
	padding: 12px;
	color: var(--alsae-muted);
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.alsae-live-search-message.is-error {
	color: #a12c2c;
}

body.alspe-archive-layout .alsae-products ul.products li.product .woocommerce-loop-product__title,
body.alspe-archive-layout .alsae-products ul.products li.product .product-title {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	text-align: center !important;
	unicode-bidi: plaintext;
}

@media (min-width: 901px) {
	.alsae-toolbar {
		flex-flow: row nowrap;
		align-items: center;
		gap: 14px;
	}

	.alsae-toolbar-title {
		display: flex;
		align-items: center;
		gap: 10px;
		min-width: 0;
		white-space: nowrap;
	}

	.alsae-toolbar-title h2,
	.alsae-toolbar-title .woocommerce-result-count {
		flex: 0 0 auto;
		margin: 0;
	}

	.alsae-toolbar-actions {
		flex: 0 1 auto;
		flex-flow: row nowrap;
		justify-content: flex-end;
		margin-inline-start: auto;
		white-space: nowrap;
	}

	.alsae-per-page,
	.alsae-toolbar .woocommerce-ordering,
	.alsae-filter-toggle {
		flex: 0 0 auto;
	}
}

@media (max-width: 900px) {
	.alsae-toolbar {
		align-items: stretch;
		gap: 9px;
	}

	.alsae-toolbar-title {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		width: 100%;
	}

	.alsae-toolbar-title h2,
	.alsae-toolbar-title .woocommerce-result-count {
		margin: 0;
	}

	.alsae-toolbar-actions {
		width: 100%;
	}

	.alsae-live-search-results {
		top: calc(100% + 6px);
		max-height: 54vh;
		padding: 5px;
		border-radius: 12px;
	}

	.alsae-live-search-item {
		grid-template-columns: 50px minmax(0, 1fr);
		min-height: 62px;
		padding: 5px 6px;
	}

	.alsae-live-search-media {
		width: 50px;
		height: 50px;
	}

	.alsae-live-search-copy > strong {
		font-size: 11px;
	}

	.alsae-live-search-price,
	.alsae-live-search-price .price,
	.alsae-live-search-price .amount {
		font-size: 10px;
	}

	/* Keep the floating support trigger away from cards and mobile controls. */
	body.alspe-archive-layout .chaty-widget,
	body.alspe-archive-layout [id^="chaty-widget-"],
	body.alspe-archive-layout [class*="chaty-widget-container"] {
		bottom: 86px !important;
	}

	body.alspe-archive-layout .chaty-tooltip,
	body.alspe-archive-layout .chaty-tooltip-text,
	body.alspe-archive-layout .chaty-widget-i-title,
	body.alspe-archive-layout .on-hover-text {
		display: none !important;
	}
}


/* 0.22.0 follow-up: keep the result count and all catalogue controls in one row. */
.alsae-hero {
	overflow: visible;
}

.alsae-hero::after {
	inset: auto 0 0 auto;
	width: 150px;
	height: 150px;
	border-radius: 150px 0 24px 0;
}

.alsae-hero-copy,
.alsae-hero-badge {
	position: relative;
	z-index: 2;
}

.alsae-toolbar-actions > .woocommerce-result-count {
	flex: 0 0 auto;
	margin: 0;
	color: var(--alsae-muted);
	font-size: 12px;
	line-height: 1.7;
	white-space: nowrap;
}

@media (min-width: 901px) {
	.alsae-toolbar-title {
		flex: 0 0 auto;
	}

	.alsae-toolbar-actions {
		min-width: 0;
	}
}

@media (max-width: 900px) {
	.alsae-toolbar {
		flex-direction: column;
	}

	.alsae-toolbar-title {
		display: block;
	}

	.alsae-toolbar-actions {
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		gap: 7px;
		overflow-x: auto;
		padding-bottom: 2px;
		scrollbar-width: none;
		overscroll-behavior-inline: contain;
	}

	.alsae-toolbar-actions::-webkit-scrollbar {
		display: none;
	}

	.alsae-toolbar-actions > .woocommerce-result-count,
	.alsae-per-page,
	.alsae-toolbar .woocommerce-ordering,
	.alsae-filter-toggle {
		flex: 0 0 auto;
	}

	.alsae-toolbar-actions > .woocommerce-result-count {
		font-size: 10px;
	}

	.alsae-per-page {
		display: inline-flex;
		width: auto;
	}

	.alsae-per-page > span {
		display: none;
	}

	.alsae-toolbar .woocommerce-ordering {
		min-width: 138px;
	}

	.alsae-toolbar .woocommerce-ordering select {
		width: 138px;
	}
}

/* Prevent very long mixed-language titles from stretching a product card. */
body.alspe-archive-layout .alsae-products ul.products li.product .woocommerce-loop-product__title,
body.alspe-archive-layout .alsae-products ul.products li.product .product-title {
	max-height: 84px !important;
	overflow: hidden !important;
	text-wrap: balance;
}

@media (max-width: 900px) {
	body.alspe-archive-layout .alsae-products ul.products li.product .woocommerce-loop-product__title,
	body.alspe-archive-layout .alsae-products ul.products li.product .product-title {
		max-height: 68px !important;
	}
}

@media (max-width: 579px) {
	body.alspe-archive-layout .alsae-products ul.products li.product .woocommerce-loop-product__title,
	body.alspe-archive-layout .alsae-products ul.products li.product .product-title {
		max-height: 62px !important;
	}
}


/* =========================================================
   ALS Product Engine 0.23.0 — mobile filter restoration
   ========================================================= */
.alsae-result-count-mobile {
	display: none;
	align-items: center;
	gap: 3px;
	min-height: 31px;
	padding: 0 7px;
	border: 1px solid var(--alsae-border);
	border-radius: 8px;
	background: #f8fbfe;
	color: var(--alsae-muted);
	font-size: 9px;
	font-weight: 800;
	white-space: nowrap;
}
.alsae-result-count-mobile b {
	color: var(--alsae-brand-deep);
	font-size: 11px;
}
.alsae-result-count-desktop > .woocommerce-result-count {
	margin: 0 !important;
}
.alsae-filter-toggle svg {
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 900px) {
	body.alspe-archive-layout .alsae-toolbar {
		gap: 7px !important;
	}
	body.alspe-archive-layout .alsae-toolbar-actions {
		display: grid !important;
		grid-template-columns: auto auto minmax(92px, 1fr) auto;
		grid-template-areas: "result perpage ordering filter";
		align-items: center;
		gap: 5px !important;
		width: 100%;
		overflow: visible !important;
		padding: 0 !important;
		direction: rtl;
	}
	body.alspe-archive-layout .alsae-result-count-desktop {
		display: none !important;
	}
	body.alspe-archive-layout .alsae-result-count-mobile {
		grid-area: result;
		display: inline-flex;
	}
	body.alspe-archive-layout .alsae-per-page {
		grid-area: perpage;
		display: inline-flex !important;
		gap: 3px !important;
		width: auto !important;
		min-width: 0;
	}
	body.alspe-archive-layout .alsae-per-page > span {
		display: none !important;
	}
	body.alspe-archive-layout .alsae-per-page a {
		min-width: 27px;
		width: 27px;
		height: 31px;
		padding: 0;
		font-size: 10px;
	}
	body.alspe-archive-layout .alsae-toolbar .woocommerce-ordering {
		grid-area: ordering;
		display: block !important;
		width: 100% !important;
		min-width: 0 !important;
	}
	body.alspe-archive-layout .alsae-toolbar .woocommerce-ordering select {
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		min-height: 34px;
		padding-inline: 7px 22px;
		font-size: 10px !important;
		text-overflow: ellipsis;
	}
	body.alspe-archive-layout .alsae-filter-toggle {
		grid-area: filter;
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		gap: 4px;
		min-width: 48px;
		min-height: 34px;
		padding: 0 8px !important;
		font-size: 10px !important;
		white-space: nowrap;
	}
	body.alspe-archive-layout .alsae-filter-toggle b {
		min-width: 18px;
		height: 18px;
		padding: 0 4px;
		font-size: 9px;
	}
	body.alspe-archive-layout .alsae-sidebar {
		visibility: hidden;
		pointer-events: none;
	}
	body.alspe-archive-layout .alsae-sidebar.is-open {
		visibility: visible;
		pointer-events: auto;
	}
}

@media (max-width: 380px) {
	body.alspe-archive-layout .alsae-toolbar-actions {
		grid-template-columns: auto auto minmax(82px, 1fr) 38px;
		gap: 4px !important;
	}
	body.alspe-archive-layout .alsae-result-count-mobile {
		padding-inline: 6px;
	}
	body.alspe-archive-layout .alsae-result-count-mobile > span {
		display: none;
	}
	body.alspe-archive-layout .alsae-filter-toggle {
		min-width: 38px;
		width: 38px;
		padding: 0 !important;
	}
	body.alspe-archive-layout .alsae-filter-toggle-label {
		display: none;
	}
	body.alspe-archive-layout .alsae-per-page a {
		min-width: 25px;
		width: 25px;
	}
}


/* =========================================================
   ALS Product Engine 0.24.0 — need-path counter containment
   ========================================================= */
body.alspe-archive-layout .alsae-human-paths > div {
	min-width: 0;
}

body.alspe-archive-layout .alsae-human-paths a {
	box-sizing: border-box;
	flex: 0 0 auto;
	min-height: 40px;
	overflow: visible;
}

body.alspe-archive-layout .alsae-human-paths a strong {
	min-width: 0;
	line-height: 1.45;
}

body.alspe-archive-layout .alsae-human-paths a small,
body.alspe-archive-layout .alsae-human-paths .alsae-human-path-count {
	position: static !important;
	display: inline-flex !important;
	flex: 0 0 auto !important;
	align-items: center !important;
	justify-content: center !important;
	box-sizing: border-box !important;
	inline-size: auto !important;
	min-inline-size: 24px !important;
	max-inline-size: none !important;
	block-size: 24px !important;
	min-block-size: 24px !important;
	padding: 0 6px !important;
	margin: 0 !important;
	overflow: hidden !important;
	border-radius: 999px !important;
	font-size: 8px !important;
	font-weight: 900 !important;
	font-variant-numeric: tabular-nums;
	line-height: 1 !important;
	white-space: nowrap !important;
	vertical-align: middle !important;
	transform: none !important;
}

@media (max-width: 900px) {
	body.alspe-archive-layout .alsae-human-paths a {
		gap: 6px;
		min-height: 38px;
		padding: 7px 9px;
	}

	body.alspe-archive-layout .alsae-human-paths a small,
	body.alspe-archive-layout .alsae-human-paths .alsae-human-path-count {
		min-inline-size: 22px !important;
		block-size: 22px !important;
		min-block-size: 22px !important;
		padding-inline: 5px !important;
	}
}


/* ALS Product Engine 0.25.1 — unavailable cards never show a stale price. */
body.alspe-archive-layout ul.products li.product.outofstock .price,
body.alspe-archive-layout ul.products li.product.is-out-of-stock .price,
body.alspe-archive-layout .alsae-products ul.products li.product.outofstock .price,
body.alspe-archive-layout .alsae-products ul.products li.product.is-out-of-stock .price {
	display: none !important;
}


/* ALS Product Engine 0.40.6 — true image swap, never a stacked second image. */
body.alspe-archive-layout .alsae-products ul.products li.product .woocommerce-LoopProduct-link{
	position:relative;
	display:flex!important;
}
body.alspe-archive-layout .alsae-products ul.products li.product .woocommerce-LoopProduct-link>img:first-of-type{
	position:relative;
	z-index:1;
	transition:opacity .24s ease,transform .28s ease;
}
body.alspe-archive-layout .alsae-products ul.products li.product img.alsae-product-hover-image{
	position:absolute!important;
	z-index:2;
	inset-inline:0;
	top:0;
	width:100%!important;
	height:clamp(225px,18vw,285px)!important;
	margin:0!important;
	padding:0!important;
	border-radius:13px!important;
	object-fit:contain!important;
	object-position:center!important;
	background:#fbfdff!important;
	opacity:0;
	pointer-events:none;
	transition:opacity .24s ease,transform .28s ease;
	transform:scale(.985);
}
@media(hover:hover) and (pointer:fine) and (min-width:901px){
	body.alspe-archive-layout .alsae-products ul.products li.product:hover .woocommerce-LoopProduct-link>img:first-of-type,
	body.alspe-archive-layout .alsae-products ul.products li.product .woocommerce-LoopProduct-link:focus-visible>img:first-of-type{opacity:0;transform:scale(.985)}
	body.alspe-archive-layout .alsae-products ul.products li.product:hover img.alsae-product-hover-image,
	body.alspe-archive-layout .alsae-products ul.products li.product .woocommerce-LoopProduct-link:focus-visible img.alsae-product-hover-image{opacity:1;transform:scale(1)}
}
@media(max-width:900px){
	body.alspe-archive-layout .alsae-products ul.products li.product img.alsae-product-hover-image{display:none!important}
}


/* ALS Product Engine 0.40.6 — removable filter chips are explicit and tappable. */
.alsae-active-filter-chips a{cursor:pointer}
.alsae-active-filter-chips a:hover{border-color:#efb1a8;background:#fff7f5;color:#9a2f2f}
.alsae-active-filter-chips a:hover b{background:#ffe0da}
