.sas-shop,
.sas-shop * {
	box-sizing: border-box;
}

.sas-shop {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow-x: clip;
	padding: 24px 0 70px;
	color: #05070d;
	font-family: "Inter", Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.45;
}

.sas-shop h1,
.sas-shop h2,
.sas-shop h3,
.sas-shop h4,
.sas-shop h5,
.sas-shop h6,
.sas-shop button,
.sas-shop input,
.sas-shop select,
.sas-shop a {
	font-family: "Inter", Arial, Helvetica, sans-serif !important;
}

.sas-container {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 60px;
}

.sas-layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	align-items: start;
	gap: 48px;
}

.sas-sidebar {
	position: sticky;
	top: 24px;
	align-self: start;
	background: #fff;
}

.sas-sidebar-header {
	display: none;
}

.sas-filter-group {
	padding: 0 0 34px;
}

.sas-filter-group h3 {
	margin: 0 0 18px;
	color: #05070d;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
}

.sas-filter-options {
	display: grid;
	gap: 10px;
}

.sas-check-row {
	position: relative;
	display: flex;
	min-height: 22px;
	align-items: center;
	gap: 10px;
	margin: 0;
	color: #05070d;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
}

.sas-check-row input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.sas-check-box {
	position: relative;
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	border: 1px solid #a8b0bd;
	background: #fff;
}

.sas-check-row input:checked + .sas-check-box {
	border-color: #05070d;
	background: #05070d;
}

.sas-check-row input:checked + .sas-check-box::after {
	position: absolute;
	top: 2px;
	left: 5px;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	content: "";
	transform: rotate(45deg);
}

.sas-check-label {
	min-width: 0;
	flex: 1 1 auto;
}

.sas-check-count {
	margin-left: auto;
	color: #5c6675;
	font-size: 13px;
}

.sas-empty-filter {
	margin: 0;
	color: #697386;
	font-size: 13px;
}

.sas-price-inputs {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 12px minmax(0, 1fr);
	align-items: end;
	gap: 10px;
}

.sas-price-inputs label {
	display: grid;
	gap: 8px;
	margin: 0;
	color: #687286;
	font-size: 12px;
	font-weight: 500;
}

.sas-price-inputs input {
	width: 100%;
	height: 38px;
	border: 1px solid #aab2bf;
	border-radius: 0;
	background: #fff;
	color: #05070d;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	outline: none;
	padding: 0 13px;
}

.sas-price-inputs input:focus {
	border-color: #05070d;
}

.sas-price-separator {
	display: flex;
	height: 38px;
	align-items: center;
	justify-content: center;
	color: #111827;
}

.sas-range-slider {
	position: relative;
	height: 26px;
	margin: 14px 6px 8px;
}

.sas-range-track {
	position: absolute;
	top: 11px;
	left: 0;
	right: 0;
	height: 3px;
	background: #d8dde6;
}

.sas-range-track span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #0b1220;
}

.sas-range-slider input[type="range"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 26px;
	margin: 0;
	padding: 0;
	background: transparent;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
}

.sas-range-slider input[type="range"]::-webkit-slider-runnable-track {
	height: 3px;
	background: transparent;
	border: 0;
}

.sas-range-slider input[type="range"]::-webkit-slider-thumb {
	width: 14px;
	height: 14px;
	margin-top: -6px;
	border: 0;
	border-radius: 50%;
	background: #0b1220;
	cursor: pointer;
	pointer-events: auto;
	-webkit-appearance: none;
	appearance: none;
}

.sas-range-slider input[type="range"]::-moz-range-track {
	height: 3px;
	background: transparent;
	border: 0;
}

.sas-range-slider input[type="range"]::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border: 0;
	border-radius: 50%;
	background: #0b1220;
	cursor: pointer;
	pointer-events: auto;
}

.sas-range-slider input[data-sas-min-range] {
	z-index: 3;
}

.sas-range-slider input[data-sas-max-range] {
	z-index: 4;
}

.sas-price-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.sas-price-footer p {
	margin: 0;
	color: #05070d;
	font-size: 14px;
	font-weight: 600;
}

.sas-secondary-button,
.sas-primary-button,
.sas-text-button,
.sas-filter-toggle,
.sas-page-button {
	border: 0;
	border-radius: 0;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.sas-secondary-button {
	min-width: 70px;
	height: 38px;
	background: #e9edf3;
	color: #05070d;
}

.sas-filter-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sas-primary-button {
	display: none;
	height: 44px;
	padding: 0 18px;
	background: #05070d;
	color: #fff;
}

.sas-text-button {
	height: 38px;
	padding: 0;
	background: transparent;
	color: #5c6675;
	font-weight: 700;
}

.sas-main {
	min-width: 0;
}

.sas-toolbar {
	display: flex;
	min-height: 58px;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
	background: #f6f7f9;
	padding: 12px 14px;
}

.sas-toolbar-left,
.sas-toolbar-controls {
	display: flex;
	align-items: center;
	gap: 14px;
}

.sas-result-count {
	margin: 0;
	color: #647084;
	font-size: 13px;
	font-weight: 500;
}

.sas-filter-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	height: 34px;
	background: transparent;
	color: #05070d;
	font-weight: 700;
	padding: 0;
}

.sas-filter-icon {
	position: relative;
	width: 14px;
	height: 14px;
}

.sas-filter-icon::before,
.sas-filter-icon::after {
	position: absolute;
	left: 1px;
	width: 12px;
	height: 1px;
	background: #05070d;
	content: "";
}

.sas-filter-icon::before {
	top: 4px;
	transform: rotate(20deg);
}

.sas-filter-icon::after {
	top: 9px;
	transform: rotate(-20deg);
}

.sas-select-label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: #8a94a6;
	font-size: 13px;
	font-weight: 500;
}

.sas-select-label select {
	min-width: 132px;
	height: 34px;
	border: 0;
	background: transparent;
	color: #05070d;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	outline: none;
}

.sas-select-label [data-sas-per-page] {
	min-width: 92px;
}

.sas-view-buttons {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sas-view-button {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
}

.sas-view-button.is-active {
	background: #e7ebf1;
}

.sas-view-button:not(.is-list) {
	grid-template-columns: repeat(2, 5px);
	grid-template-rows: repeat(2, 5px);
	gap: 3px;
	align-content: center;
	justify-content: center;
	place-content: center;
}

.sas-view-button:not(.is-list) i {
	display: block;
	width: 5px;
	height: 5px;
	background: #05070d;
}

.sas-view-button.is-list {
	gap: 3px;
	align-content: center;
	justify-content: center;
	place-content: center;
}

.sas-view-button.is-list i {
	display: block;
	width: 13px;
	height: 2px;
	background: #8791a3;
}

.sas-products-wrap {
	position: relative;
	min-height: 260px;
}

.sas-products-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: 46px 30px;
}

.sas-product-card {
	display: flex;
	min-width: 0;
	height: 100%;
	flex-direction: column;
}

.sas-product-thumb {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #f1f1f1;
	color: inherit;
	text-decoration: none;
}

.sas-product-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}

.sas-product-card:hover .sas-product-thumb img {
	transform: scale(1.025);
}

.sas-sale-badge {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	min-width: 38px;
	height: 24px;
	background: #05070d;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 24px;
	text-align: center;
}

.sas-product-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding-top: 15px;
}

.sas-product-title {
	min-height: 42px;
	margin: 0 0 8px;
	color: #05070d;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0;
}

.sas-product-title a {
	display: -webkit-box;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.sas-rating {
	display: flex;
	min-height: 18px;
	align-items: center;
	gap: 8px;
	margin-bottom: 9px;
	color: #0b1220;
	font-size: 13px;
	line-height: 1;
}

.sas-rating.is-empty {
	visibility: hidden;
}

.sas-stars {
	color: #05070d;
	letter-spacing: 0;
	white-space: nowrap;
}

.sas-rating-number {
	color: #526078;
	font-size: 12px;
	font-weight: 500;
}

.sas-price {
	min-height: 25px;
	margin-bottom: 14px;
	color: #e41f2a;
	font-size: 16px;
	font-weight: 700;
}

.sas-price del {
	margin-left: 6px;
	color: #91a0b4;
	font-size: 12px;
	font-weight: 600;
}

.sas-price ins {
	color: #e41f2a;
	text-decoration: none;
}

.sas-price .woocommerce-Price-amount {
	color: inherit;
}

.sas-add-to-cart {
	display: inline-flex !important;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: auto;
	border: 0 !important;
	border-radius: 0 !important;
	background: #05070d !important;
	color: #fff !important;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	padding: 0 12px !important;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.sas-shop .sas-add-to-cart.button,
.sas-shop a.sas-add-to-cart {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: #05070d !important;
	color: #fff !important;
	text-align: center !important;
}

.sas-add-to-cart:hover,
.sas-add-to-cart:focus {
	background: #05070d !important;
	color: #fff !important;
}

.sas-no-products {
	grid-column: 1 / -1;
	display: grid;
	min-height: 260px;
	place-items: center;
	background: #f6f7f9;
	color: #5c6675;
	font-weight: 700;
}

.sas-loader {
	position: absolute;
	z-index: 4;
	top: 110px;
	left: 50%;
	display: none;
	width: 42px;
	height: 42px;
	margin-left: -21px;
	border: 3px solid #d8dde6;
	border-top-color: #05070d;
	border-radius: 50%;
	animation: sas-spin 800ms linear infinite;
}

.sas-shop.is-loading .sas-loader {
	display: block;
}

.sas-shop.is-loading .sas-products-grid {
	opacity: 0.35;
	pointer-events: none;
}

@keyframes sas-spin {
	to {
		transform: rotate(360deg);
	}
}

.sas-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 42px;
}

.sas-page-button,
.sas-page-dots {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	background: #f0f2f5;
	color: #05070d;
}

.sas-page-button.is-current {
	background: #05070d;
	color: #fff;
}

.sas-shop.is-list-view .sas-products-grid {
	grid-template-columns: 1fr;
	gap: 18px;
}

.sas-shop.is-list-view .sas-product-card {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 22px;
	min-height: 240px;
	padding-bottom: 18px;
	border-bottom: 1px solid #e6e9ef;
}

.sas-shop.is-list-view .sas-product-thumb {
	height: 240px;
	aspect-ratio: auto;
}

.sas-shop.is-list-view .sas-product-body {
	padding-top: 6px;
}

.sas-shop.is-list-view .sas-product-title {
	min-height: 0;
	font-size: 18px;
}

.sas-shop.is-list-view .sas-add-to-cart {
	width: min(220px, 100%);
	margin-top: 14px;
}

.sas-overlay {
	display: none;
}

.sas-icon-button {
	position: relative;
	width: 36px;
	height: 36px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.sas-close-button span {
	position: absolute;
	top: 17px;
	left: 8px;
	width: 20px;
	height: 2px;
	background: #05070d;
}

.sas-close-button span:first-child {
	transform: rotate(45deg);
}

.sas-close-button span:last-child {
	transform: rotate(-45deg);
}

body.sas-filter-lock {
	overflow: hidden;
}

@media (max-width: 1399px) {
	.sas-layout {
		grid-template-columns: 280px minmax(0, 1fr);
		gap: 36px;
	}

	.sas-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 42px 24px;
	}
}

@media (max-width: 1199px) {
	.sas-container {
		padding: 0 20px;
	}

	.sas-layout {
		grid-template-columns: 260px minmax(0, 1fr);
		gap: 28px;
	}
}

@media (max-width: 991px) {
	.sas-shop {
		padding-top: 16px;
	}

	.sas-layout {
		display: block;
	}

	.sas-sidebar {
		position: fixed;
		z-index: 100001;
		top: 0;
		bottom: 0;
		left: 0;
		width: min(88vw, 370px);
		overflow-y: auto;
		padding: 28px 20px;
		box-shadow: 18px 0 40px rgba(5, 7, 13, 0.18);
		transform: translateX(-105%);
		transition: transform 220ms ease;
	}

	.sas-shop.is-filter-open .sas-sidebar {
		transform: translateX(0);
	}

	.sas-overlay {
		position: fixed;
		z-index: 100000;
		inset: 0;
		display: block;
		background: rgba(5, 7, 13, 0.62);
		opacity: 0;
		pointer-events: none;
		transition: opacity 220ms ease;
	}

	.sas-shop.is-filter-open .sas-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.sas-sidebar-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 20px;
		padding-bottom: 14px;
		border-bottom: 1px solid #e6e9ef;
	}

	.sas-sidebar-header h2 {
		margin: 0;
		font-size: 16px;
		font-weight: 800;
		line-height: 1.25;
		letter-spacing: 0;
	}

	.sas-filter-toggle {
		display: inline-flex;
	}

	.sas-primary-button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.sas-toolbar {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 18px;
	}

	.sas-toolbar-left,
	.sas-toolbar-controls {
		justify-content: space-between;
	}

	.sas-toolbar-controls {
		gap: 8px;
	}

	.sas-select-label {
		gap: 4px;
	}

	.sas-select-label span {
		display: none;
	}

	.sas-select-label select {
		min-width: 118px;
	}

	.sas-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 16px;
	}

	.sas-shop.is-list-view .sas-product-card {
		grid-template-columns: 150px minmax(0, 1fr);
		min-height: 200px;
		gap: 16px;
	}

	.sas-shop.is-list-view .sas-product-thumb {
		height: 200px;
	}
}

@media (max-width: 575px) {
	.sas-container {
		padding: 0 10px;
	}

	.sas-toolbar {
		padding: 10px;
	}

	.sas-result-count {
		font-size: 12px;
		text-align: right;
	}

	.sas-toolbar-controls {
		align-items: center;
	}

	.sas-select-label select {
		min-width: 112px;
		font-size: 12px;
	}

	.sas-view-buttons {
		gap: 4px;
	}

	.sas-products-grid {
		gap: 30px 12px;
	}

	.sas-product-body {
		padding-top: 12px;
	}

	.sas-product-title {
		min-height: 40px;
		font-size: 13px;
	}

	.sas-rating {
		gap: 5px;
		font-size: 11px;
	}

	.sas-rating-number {
		font-size: 11px;
	}

	.sas-price {
		font-size: 15px;
	}

	.sas-add-to-cart {
		min-height: 38px;
		font-size: 11px;
	}

	.sas-shop.is-list-view .sas-products-grid {
		gap: 20px;
	}

	.sas-shop.is-list-view .sas-product-card {
		grid-template-columns: 118px minmax(0, 1fr);
		min-height: 160px;
		gap: 12px;
	}

	.sas-shop.is-list-view .sas-product-thumb {
		height: 160px;
	}

	.sas-shop.is-list-view .sas-product-title {
		font-size: 14px;
	}

	.sas-shop.is-list-view .sas-add-to-cart {
		min-height: 34px;
		font-size: 10px;
	}
}

@media (max-width: 380px) {
	.sas-toolbar-controls {
		display: grid;
		grid-template-columns: 1fr 1fr auto;
		width: 100%;
	}

	.sas-select-label select {
		width: 100%;
		min-width: 0;
	}
}
