[x-cloak] {
	display: none !important;
}
body {
	background-color: #F1F4FA;
	color: #1F2532;
	background-image: none;
}
body:has(#cart-modal) {
    overflow-y: hidden;
}
.typical h1 {
	font-size: 32px;
	font-weight: 600;
}
.my-container {
	max-width: 1280px;
}
.input {
	background-color: #5d889614;
	border: 1px solid transparent;
	font-size: 0.875rem;
	line-height: 1.25rem;
	padding-left: 1rem;
	padding-right: 1rem;
	border-radius: 0.5rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	width: 100%;
}
input:focus {
	outline: none;
	border-color: #8BE3F5;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number] {
	-moz-appearance:textfield; /* Firefox */
}
.input:focus {
	background-color: #fff;
	border-color: #f1f1f1;
}

.range-filter__title {
	font-size: 0.95rem;
	font-weight: 600;
	color: #1f2937;
}
.range-display {
	display: flex;
	justify-content: space-between;
	font-weight: 600;
	font-size: 0.95rem;
	color: #1f2937;
	margin-top: 0 !important;
}
.range-display__value {
	display: flex;
	gap: 0.35rem;
	align-items: baseline;
}
.range-filter {
	user-select: none;
}
.range-slider {
	position: relative;
	width: 100%;
	height: 2.2rem;
	touch-action: none;
}
.range-slider__track {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 0.4rem;
	border-radius: 9999px;
	background-color: #d1d5e5;
}
.range-slider__selection {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 0.4rem;
	border-radius: 9999px;
	background-color: rgb(139, 227, 245);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
	pointer-events: none;
}
.range-slider__handle {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 1.25rem;
	width: 1.25rem;
	border-radius: 9999px;
	border: 3px solid #4b5563;
	background-color: #fff;
	box-shadow: 0 6px 12px rgba(15, 23, 42, 0.25);
	cursor: grab;
	pointer-events: auto;
}
.range-slider__handle:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35), 0 6px 12px rgba(15, 23, 42, 0.35);
}
.range-slider__handle:active {
	cursor: grabbing;
}

.autocomplete {
	position: relative;
}
.autocomplete__panel {
	position: absolute;
	z-index: 20;
	top: calc(100% + 0.25rem);
	left: 0;
	right: 0;
	background-color: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	box-shadow: 0 16px 30px rgba(15, 23, 42, 0.15);
	overflow: hidden;
}
.autocomplete__item {
	display: flex;
	width: 100%;
	gap: 0.5rem;
	align-items: center;
	padding: 0.5rem 0.85rem;
	font-size: 0.9rem;
	text-align: left;
	color: #1f2937;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: background-color 0.15s ease;
}
.autocomplete__item:hover,
.autocomplete__item--active {
	background-color: #eef2ff;
}

.favorite-toggle svg {
	transition: color 0.2s ease, fill 0.2s ease;
}

.favorite-toggle.favorite-active {
	border-color: #F26D9F;
	color: #F26D9F;
	background-color: rgba(242, 109, 159, 0.08);
}

.favorite-toggle.favorite-active svg {
	color: #F26D9F;
	fill: rgba(242, 109, 159, 0.12);
}
