/* Native Hotsale search shortcode — full-width pill bar + integrated blue submit (reference-aligned). */
.aero-hs-search-form {
	--aero-hs-search-submit-bg: #255dc4;
	--aero-hs-search-submit-hover: #1f53b3;
	--aero-hs-search-border: #e3e9f4;
	--aero-hs-search-bg: #ffffff;
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	background: var(--aero-hs-search-bg);
	border: 1px solid var(--aero-hs-search-border);
	border-radius: 999px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgb(37 93 196 / 8%);
}

.aero-hs-search-form__input {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	padding: 0.7rem 0.75rem 0.7rem 1.15rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	font: inherit;
	font-size: 1rem;
	line-height: 1.25;
	color: #1a1a2e;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
}

.aero-hs-search-form__input::-webkit-search-decoration,
.aero-hs-search-form__input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
}

.aero-hs-search-form__input::placeholder {
	color: rgb(26 26 46 / 45%);
}

.aero-hs-search-form__input:focus {
	outline: none;
}

.aero-hs-search-form:focus-within {
	box-shadow:
		0 1px 2px rgb(37 93 196 / 10%),
		0 0 0 2px rgb(45 91 209 / 32%);
}

.aero-hs-search-form__submit {
	flex: 0 0 auto;
	margin: 0;
	padding: 0.65rem 1.35rem;
	border: 0;
	border-radius: 0;
	background: var(--aero-hs-search-submit-bg);
	color: #fff;
	font: inherit;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.055em;
	text-transform: uppercase;
	line-height: 1.2;
	cursor: pointer;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
	transition: background-color 140ms ease;
}

.aero-hs-search-form__submit:hover {
	background: var(--aero-hs-search-submit-hover);
}

.aero-hs-search-form__submit:focus {
	outline: none;
}

.aero-hs-search-form__submit:focus-visible {
	box-shadow: inset 0 0 0 2px rgb(255 255 255 / 45%);
}

@media (max-width: 36rem) {
	.aero-hs-search-form__submit {
		padding: 0.65rem 1rem;
		font-size: 0.75rem;
	}
}

/* Native Hotsale destination chip bar — rail + chips aligned to Elementor taxonomy filter reference. */
.aero-hs-destino-filter-shell {
	--aero-hs-chip-active-bg: #255dc4;
	--aero-hs-chip-border: #d6deef;
	--aero-hs-chip-text: #2d5bd1;
	--aero-hs-rail-bg: #ffffff;
	--aero-hs-rail-border: #e3e9f4;
	--aero-hs-inactive-chip-bg: #eaf0ff;
	--aero-hs-arrow-bg: #eaf0ff;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	max-width: 100%;
	padding: 0.4rem 0.55rem;
	background: var(--aero-hs-rail-bg);
	border: 1px solid var(--aero-hs-rail-border);
	border-radius: 999px;
	box-shadow: 0 1px 2px rgb(37 93 196 / 6%);
	box-sizing: border-box;
}

.aero-hs-destino-filter__viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgb(45 91 209 / 35%) transparent;
	padding: 0.1rem 0;
	mask-image: linear-gradient(
		to right,
		transparent 0,
		#000 12px,
		#000 calc(100% - 12px),
		transparent 100%
	);
}

.aero-hs-destino-filter__viewport::-webkit-scrollbar {
	height: 5px;
}

.aero-hs-destino-filter__viewport::-webkit-scrollbar-thumb {
	background-color: rgb(45 91 209 / 35%);
	border-radius: 999px;
}

.aero-hs-destino-filter {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.4rem;
	margin: 0;
	padding: 0 0.15rem;
}

.aero-hs-destino-filter__chip {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-height: 2.125rem;
	padding: 0.4rem 1rem;
	border: 1px solid var(--aero-hs-chip-border);
	border-radius: 999px;
	background: var(--aero-hs-inactive-chip-bg);
	color: var(--aero-hs-chip-text);
	font: inherit;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.1;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background-color 160ms ease,
		color 160ms ease,
		border-color 160ms ease,
		box-shadow 160ms ease;
}

.aero-hs-destino-filter__chip:hover,
.aero-hs-destino-filter__chip:focus {
	text-decoration: none;
	background: rgb(234 240 255 / 92%);
	border-color: rgb(214 222 239 / 95%);
}

.aero-hs-destino-filter__chip:focus-visible {
	outline: 2px solid var(--aero-hs-chip-text);
	outline-offset: 2px;
}

.aero-hs-destino-filter__chip.is-active,
.aero-hs-destino-filter__chip[aria-current="page"] {
	background: var(--aero-hs-chip-active-bg);
	border-color: var(--aero-hs-chip-active-bg);
	box-shadow:
		0 1px 3px rgb(37 93 196 / 25%),
		inset 0 0 0 1px rgb(255 255 255 / 12%);
	color: #fff;
	font-weight: 600;
}

.aero-hs-destino-filter__chip.is-active:hover,
.aero-hs-destino-filter__chip[aria-current="page"]:hover,
.aero-hs-destino-filter__chip.is-active:focus,
.aero-hs-destino-filter__chip[aria-current="page"]:focus {
	background: #1f53b3;
	border-color: #1f53b3;
	color: #fff;
}

/* Arrow controls — reference: border #D6DEEF, bg #EAF0FF, icon #2D5BD1 */
.aero-hs-destino-filter__arrow {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	margin: 0;
	padding: 0;
	border: 1px solid var(--aero-hs-chip-border);
	border-radius: 999px;
	background: var(--aero-hs-arrow-bg);
	color: var(--aero-hs-chip-text);
	cursor: pointer;
	transition:
		background-color 140ms ease,
		border-color 140ms ease,
		opacity 140ms ease,
		box-shadow 140ms ease;
	-webkit-tap-highlight-color: transparent;
}

.aero-hs-destino-filter__arrow:hover:not(:disabled) {
	background: #dde6fb;
	border-color: rgb(109 139 220 / 45%);
}

.aero-hs-destino-filter__arrow:focus-visible {
	outline: 2px solid var(--aero-hs-chip-text);
	outline-offset: 2px;
}

.aero-hs-destino-filter__arrow:disabled {
	opacity: 0.38;
	cursor: default;
}

.aero-hs-destino-filter__arrow-icon {
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(135deg);
	margin-left: 0.12rem;
}

.aero-hs-destino-filter__arrow--next .aero-hs-destino-filter__arrow-icon {
	transform: rotate(-45deg);
	margin-left: -0.12rem;
}

@media (max-width: 36rem) {
	.aero-hs-destino-filter-shell {
		padding: 0.35rem 0.45rem;
		gap: 0.28rem;
	}

	.aero-hs-destino-filter__arrow {
		width: 2rem;
		height: 2rem;
	}
}

/* Active filters — compact removable chips (shortcode aero_hotsale_active_filters). */
.aero-hs-active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	max-width: 100%;
	margin: 0.35rem 0 0.5rem;
}

.aero-hs-active-filters__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aero-hs-active-filters__item {
	margin: 0;
	padding: 0;
}

.aero-hs-active-filters__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	max-width: min(100%, 22rem);
	padding: 0.3rem 0.55rem 0.3rem 0.65rem;
	border: 1px solid var(--aero-hs-rail-border, #e3e9f4);
	border-radius: 999px;
	background: var(--aero-hs-inactive-chip-bg, #eaf0ff);
	color: var(--aero-hs-chip-text, #2d5bd1);
	font: inherit;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 140ms ease, border-color 140ms ease;
	box-sizing: border-box;
}

.aero-hs-active-filters__chip:hover,
.aero-hs-active-filters__chip:focus {
	text-decoration: none;
	background: rgb(234 240 255 / 88%);
	border-color: rgb(214 222 239 / 90%);
}

.aero-hs-active-filters__chip:focus-visible {
	outline: 2px solid var(--aero-hs-chip-text, #2d5bd1);
	outline-offset: 2px;
}

.aero-hs-active-filters__chip-prefix {
	flex-shrink: 0;
	opacity: 0.92;
}

.aero-hs-active-filters__chip-value {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.aero-hs-active-filters__chip-remove {
	flex-shrink: 0;
	margin-left: 0.1rem;
	font-size: 1.1rem;
	line-height: 1;
	opacity: 0.85;
}

.aero-hs-active-filters__clear {
	flex-shrink: 0;
	font: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--aero-hs-chip-text, #2d5bd1);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.aero-hs-active-filters__clear:hover,
.aero-hs-active-filters__clear:focus {
	text-decoration: underline;
}

.aero-hs-active-filters__clear:focus-visible {
	outline: 2px solid var(--aero-hs-chip-text, #2d5bd1);
	outline-offset: 2px;
	border-radius: 2px;
}
