@font-face {
	font-family: "SmartPlus Sans";
	font-style: normal;
	font-display: swap;
	font-weight: 300 700;
	src: url("../fonts/noto-sans-georgian.woff2") format("woff2-variations");
	unicode-range: U+10A0-10FF, U+1C90-1CBF, U+2D00-2D2F, U+20A0-20CF;
}

@font-face {
	font-family: "SmartPlus Sans";
	font-style: normal;
	font-display: swap;
	font-weight: 300 700;
	src: url("../fonts/noto-sans-georgian-latin.woff2") format("woff2-variations");
	unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF, U+2122;
}

:root {
	--sp-primary: #1773ea;
	--sp-primary-dark: #0f5ec8;
	--sp-primary-soft: #eef6ff;
	--sp-header-bg: #ffffff;
	--sp-page-bg: #f7fbff;
	--sp-ink: #111827;
	--sp-text: #263241;
	--sp-muted: #7b8794;
	--sp-border: #eceff3;
	--sp-soft: #f6f6f6;
	--sp-card: #ffffff;
	--sp-radius: 8px;
	--sp-container: 1170px;
	--sp-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
	--sp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--sp-page-bg);
	color: var(--sp-ink);
	font-family: "FiraGO", "Noto Sans Georgian", "Segoe UI", system-ui, -apple-system, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
	letter-spacing: 0;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sp-container {
	width: min(var(--sp-container), calc(100vw - 72px));
	margin-inline: auto;
}

.sp-site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--sp-header-bg);
	border-bottom: 1px solid #e8e8e8;
}

.sp-topbar {
	background: var(--sp-primary);
	color: #fff;
}

.sp-topbar__inner {
	min-height: 56px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}

.sp-topbar__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	white-space: nowrap;
}

.sp-topbar__phone .sp-icon {
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.2);
}

.sp-topbar__note {
	display: none;
}

.sp-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sp-menu--top a {
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	white-space: nowrap;
	transition: opacity 180ms var(--sp-ease);
}

.sp-menu--top a:hover {
	opacity: 0.75;
}

.sp-header-main {
	background: var(--sp-header-bg);
}

.sp-header-main__inner {
	min-height: 78px;
	display: grid;
	grid-template-columns: 210px 132px minmax(360px, 1fr) auto;
	align-items: center;
	gap: 18px;
}

.sp-logo,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--sp-primary);
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.custom-logo {
	max-height: 48px;
	width: auto;
}

.sp-logo--image img {
	width: auto;
	max-width: 64px;
	max-height: 48px;
	object-fit: contain;
}

.sp-logo-mark {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background:
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.38) 0 3px, transparent 3px 7px),
		var(--sp-primary);
	color: #fff;
	font-size: 18px;
	font-weight: 900;
}

.sp-catalog-toggle,
.sp-button,
.button,
.added_to_cart,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	padding: 0 18px;
	border: 0;
	border-radius: 10px;
	background: var(--sp-primary);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
	transition: background-color 180ms var(--sp-ease), transform 180ms var(--sp-ease);
}

.sp-catalog-toggle:hover,
.sp-button:hover,
.button:hover,
.added_to_cart:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--sp-primary-dark);
	color: #fff;
}

.sp-button:active,
.button:active,
.sp-catalog-toggle:active {
	transform: translateY(1px);
}

.sp-button--ghost {
	background: #efefef;
	color: var(--sp-ink);
}

.sp-catalog-toggle {
	min-height: 48px;
	border-radius: 13px;
	font-size: 14px;
}

.sp-catalog-toggle__icon {
	width: 19px;
	height: 19px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3px;
}

.sp-catalog-toggle__icon::before,
.sp-catalog-toggle__icon::after,
.sp-catalog-toggle__icon {
	background:
		linear-gradient(#fff, #fff) 0 0 / 5px 5px no-repeat,
		linear-gradient(#fff, #fff) 7px 0 / 5px 5px no-repeat,
		linear-gradient(#fff, #fff) 14px 0 / 5px 5px no-repeat,
		linear-gradient(#fff, #fff) 0 7px / 5px 5px no-repeat,
		linear-gradient(#fff, #fff) 7px 7px / 5px 5px no-repeat,
		linear-gradient(#fff, #fff) 14px 7px / 5px 5px no-repeat,
		linear-gradient(#fff, #fff) 0 14px / 5px 5px no-repeat,
		linear-gradient(#fff, #fff) 7px 14px / 5px 5px no-repeat,
		linear-gradient(#fff, #fff) 14px 14px / 5px 5px no-repeat;
}

.sp-search {
	display: grid;
	grid-template-columns: 1fr 48px;
	min-height: 48px;
	background: #fff;
	border: 1px solid rgba(23, 115, 234, 0.28);
	border-radius: 9px;
	overflow: hidden;
}

.sp-search input {
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
	border: 0;
	outline: 0;
	padding: 0 14px;
	background: transparent;
	color: var(--sp-ink);
}

.sp-search input::placeholder {
	color: #9aa2ad;
}

.sp-search button {
	grid-column: 2;
	grid-row: 1;
	display: grid;
	place-items: center;
	border: 0;
	background: var(--sp-primary);
	color: #fff;
	cursor: pointer;
}

.sp-search .sp-icon-search::before {
	border-color: currentColor;
}

.sp-icon {
	position: relative;
	width: 20px;
	height: 20px;
	display: inline-block;
	color: currentColor;
}

.sp-icon-search::before {
	content: "";
	position: absolute;
	top: 1px;
	left: 1px;
	width: 13px;
	height: 13px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.sp-icon-search::after {
	content: "";
	position: absolute;
	right: 1px;
	bottom: 2px;
	width: 8px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transform: rotate(45deg);
}

.sp-icon-phone {
	width: 14px;
	height: 18px;
	border: 2px solid currentColor;
	border-radius: 5px;
}

.sp-icon-phone::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 2px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: currentColor;
	transform: translateX(-50%);
}

.sp-icon-cart {
	width: 24px;
	height: 18px;
	border: 2px solid currentColor;
	border-top: 0;
	border-radius: 0 0 4px 4px;
}

.sp-icon-cart::before {
	content: "";
	position: absolute;
	left: -4px;
	top: -7px;
	width: 10px;
	height: 8px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-12deg);
}

.sp-icon-cart::after {
	content: "";
	position: absolute;
	left: 2px;
	bottom: -7px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 13px 0 0 currentColor;
}

.sp-header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.sp-icon-link {
	position: relative;
	min-width: 128px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 10px;
	background: #fff;
	color: var(--sp-ink);
	font-weight: 800;
	box-shadow: 0 7px 20px rgba(15, 23, 42, 0.06);
}

.sp-sale-link {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: var(--sp-primary);
	color: #fff;
	font-size: 22px;
	font-weight: 900;
	box-shadow: 0 7px 20px rgba(23, 115, 234, 0.2);
	transition: background-color 180ms var(--sp-ease), transform 180ms var(--sp-ease);
}

.sp-icon-link__text {
	font-size: 13px;
}

.sp-sale-link:hover {
	background: var(--sp-primary-dark);
	color: #fff;
}

.sp-sale-link:active {
	transform: translateY(1px);
}

.sp-cart-count {
	position: absolute;
	top: -9px;
	right: 18px;
	min-width: 20px;
	height: 20px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: #fff;
	color: var(--sp-primary);
	border: 1px solid var(--sp-border);
	font-size: 12px;
	font-weight: 900;
}

.sp-mobile-cart {
	display: none;
}

.sp-catalog-panel {
	display: none;
	position: absolute;
	inset-inline: 0;
	top: 100%;
	padding: 12px 0 22px;
	background: rgba(245, 245, 245, 0.96);
	box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}

.sp-catalog-panel.is-open {
	display: block;
}

.sp-catalog-panel__inner {
	display: grid;
	grid-template-columns: 228px minmax(0, 1fr);
	justify-content: stretch;
}

.sp-mega {
	position: relative;
	grid-column: 2;
	width: min(940px, 100%);
	min-height: 430px;
	display: grid;
	grid-template-columns: 286px 1fr;
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
	overflow: hidden;
}

.sp-mega__list {
	list-style: none;
	margin: 0;
	padding: 10px;
	border-right: 1px solid var(--sp-border);
}

.sp-mega__item {
	position: static;
}

.sp-mega__link {
	display: grid;
	grid-template-columns: 32px 1fr auto;
	align-items: center;
	gap: 12px;
	min-height: 43px;
	padding: 8px 12px;
	border-radius: 6px;
	color: #1f2937;
	font-size: 13px;
	font-weight: 700;
}

.sp-mega__item:hover > .sp-mega__link,
.sp-mega__item.is-active > .sp-mega__link {
	background: var(--sp-primary-soft);
	color: var(--sp-primary);
}

.sp-mega__thumb {
	width: 24px;
	height: 24px;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.sp-mega__thumb img,
.sp-home-category__icon img {
	display: none;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sp-mega__link.has-icon .sp-mega__thumb img,
.sp-home-category.has-icon .sp-home-category__icon img {
	display: block;
}

.sp-mega__link:not(.has-icon) .sp-mega__thumb::before,
.sp-home-category:not(.has-icon) .sp-home-category__icon::before {
	content: "";
	width: 18px;
	height: 22px;
	display: block;
	border: 1.6px solid #62666c;
	border-radius: 4px;
	background:
		radial-gradient(circle, #62666c 0 2px, transparent 2.5px) center 16px / 100% 100% no-repeat,
		linear-gradient(#62666c, #62666c) center 4px / 7px 1.5px no-repeat;
	box-shadow: none;
}

.sp-mega__item:nth-child(3n + 2) .sp-mega__link:not(.has-icon) .sp-mega__thumb::before,
.sp-home-category:nth-child(3n + 2):not(.has-icon) .sp-home-category__icon::before {
	width: 20px;
	height: 18px;
	border-radius: 3px;
	background:
		linear-gradient(#62666c, #62666c) center bottom 3px / 8px 1.5px no-repeat,
		linear-gradient(#62666c, #62666c) center bottom / 14px 1.5px no-repeat;
}

.sp-mega__item:nth-child(3n + 3) .sp-mega__link:not(.has-icon) .sp-mega__thumb::before,
.sp-home-category:nth-child(3n + 3):not(.has-icon) .sp-home-category__icon::before {
	width: 21px;
	height: 15px;
	border-radius: 7px;
	background:
		radial-gradient(circle, #62666c 0 2px, transparent 2.5px) 4px center / 8px 8px no-repeat,
		radial-gradient(circle, #62666c 0 2px, transparent 2.5px) 12px center / 8px 8px no-repeat;
}

.sp-mega__chevron {
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.sp-mega__flyout {
	position: absolute;
	inset-block: 0;
	left: 286px;
	right: 0;
	display: none;
	padding: 24px 28px;
	background: #fff;
}

.sp-mega__item:hover > .sp-mega__flyout,
.sp-mega__item.is-active > .sp-mega__flyout {
	display: block;
}

.sp-mega__flyout-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.sp-mega__flyout-head h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
}

.sp-mega__children {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 28px;
	row-gap: 4px;
}

.sp-mega__children a {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 0;
	border-bottom: 1px solid var(--sp-border);
	color: #344054;
	font-size: 13px;
	font-weight: 700;
}

.sp-main {
	min-height: 60vh;
	background: var(--sp-page-bg);
}

.sp-home-stage {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 24px;
	padding-top: 26px;
	align-items: start;
}

.sp-home-categories {
	position: relative;
	background: #fff;
	border-radius: 10px;
	box-shadow: var(--sp-shadow);
	overflow: hidden;
}

.sp-home-category {
	display: grid;
	grid-template-columns: 28px 1fr;
	align-items: center;
	gap: 13px;
	min-height: 43px;
	padding: 0 17px;
	border-bottom: 1px solid var(--sp-border);
	color: #2a2f36;
	font-size: 13px;
	font-weight: 800;
}

.sp-home-category:hover {
	color: var(--sp-primary);
}

.sp-home-category.is-priority,
.sp-mega__item.is-priority > .sp-mega__link {
	background: linear-gradient(135deg, #eef7ff, #ffffff);
	color: var(--sp-primary);
}

.sp-home-category__icon {
	width: 20px;
	height: 20px;
	display: grid;
	place-items: center;
}

.sp-home-slider {
	position: relative;
	min-width: 0;
}

.sp-home-slider__track {
	position: relative;
	height: 342px;
}

.sp-home-slide {
	position: absolute;
	inset: 0;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 220ms var(--sp-ease), transform 220ms var(--sp-ease);
}

.sp-home-slide.is-active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.sp-home-category--more {
	position: absolute;
	left: 50%;
	bottom: -38px;
	width: 28px;
	height: 28px;
	min-height: 0;
	display: block;
	padding: 0;
	border: 0;
	background: transparent;
	transform: translateX(-50%);
}

.sp-home-category--more::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 7px;
	width: 11px;
	height: 11px;
	border-right: 2px solid #49637a;
	border-bottom: 2px solid #49637a;
	transform: rotate(45deg);
}

.sp-hero-zoom {
	position: relative;
	min-height: 342px;
	height: 100%;
	display: grid;
	grid-template-columns: 58% minmax(0, 1fr);
	align-items: center;
	overflow: hidden;
	border-radius: 10px;
	background:
		radial-gradient(circle at 22% 14%, rgba(23, 115, 234, 0.26), transparent 26%),
		radial-gradient(circle at 74% 42%, rgba(23, 115, 234, 0.14), transparent 24%),
		#f7fbff;
	color: #fff;
}

.sp-hero-zoom--image {
	background-color: #050505;
	background-image: var(--sp-hero-desktop);
	background-size: cover;
	background-position: center;
}

.sp-hero-zoom--image .sp-hero-zoom__copy,
.sp-hero-zoom--image .sp-hero-zoom__media {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.sp-hero-zoom--image::before {
	display: none;
}

.sp-hero-zoom::before {
	content: "";
	position: absolute;
	left: 90px;
	top: -80px;
	width: 360px;
	height: 360px;
	border: 10px solid rgba(23, 115, 234, 0.22);
	border-radius: 50%;
	box-shadow: inset 0 0 0 18px rgba(23, 115, 234, 0.08), 0 0 0 22px rgba(23, 115, 234, 0.08);
}

.sp-hero-zoom__copy {
	position: relative;
	z-index: 2;
	grid-column: 2;
	grid-row: 1;
	padding-right: 70px;
	display: grid;
	gap: 12px;
	justify-items: start;
}

.sp-hero-zoom__eyebrow {
	width: fit-content;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--sp-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}

.sp-hero-zoom__copy strong {
	max-width: 360px;
	font-size: 30px;
	line-height: 1.08;
}

.sp-hero-zoom__price {
	width: fit-content;
	padding: 6px 14px;
	border-radius: 14px;
	background: #fff;
	color: var(--sp-primary);
	font-size: 42px;
	font-weight: 900;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

.sp-hero-zoom__media {
	position: relative;
	z-index: 2;
	grid-column: 1;
	grid-row: 1;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px 0 82px;
}

.sp-hero-zoom__media span {
	width: 166px;
	margin-left: -38px;
	filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.35));
}

.sp-hero-zoom__media span:first-child {
	margin-left: 0;
}

.sp-hero-zoom__media img {
	width: 100%;
	height: 258px;
	object-fit: contain;
}

.sp-hero-zoom__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	transform: translateY(-50%);
}

.sp-hero-zoom__arrow::before {
	content: "";
	position: absolute;
	top: 17px;
	width: 14px;
	height: 14px;
	border-top: 2px solid #223143;
	border-right: 2px solid #223143;
}

.sp-hero-zoom__arrow--left {
	left: 10px;
}

.sp-hero-zoom__arrow--left::before {
	left: 20px;
	transform: rotate(-135deg);
}

.sp-hero-zoom__arrow--right {
	right: 10px;
}

.sp-hero-zoom__arrow--right::before {
	right: 20px;
	transform: rotate(45deg);
}

.sp-home-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 50px;
	height: 50px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.13);
	transform: translateY(-50%);
	cursor: pointer;
}

.sp-home-slider__arrow::before {
	content: "";
	position: absolute;
	top: 17px;
	width: 14px;
	height: 14px;
	border-top: 2px solid #223143;
	border-right: 2px solid #223143;
}

.sp-home-slider__arrow--prev {
	left: 10px;
}

.sp-home-slider__arrow--prev::before {
	left: 20px;
	transform: rotate(-135deg);
}

.sp-home-slider__arrow--next {
	right: 10px;
}

.sp-home-slider__arrow--next::before {
	right: 20px;
	transform: rotate(45deg);
}

.sp-home-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 20px;
	z-index: 5;
	display: flex;
	gap: 8px;
	padding: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(8px);
	transform: translateX(-50%);
}

.sp-home-slider__dots button {
	width: 36px;
	height: 5px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.48);
	cursor: pointer;
}

.sp-home-slider__dots button.is-active {
	background: #fff;
}

.sp-brand-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
	gap: 18px;
	padding-top: 34px;
}

.sp-brand-strip__item {
	display: grid;
	place-items: center;
	min-height: 86px;
	padding: 20px;
	border-radius: 10px;
	background: #f7f7f7;
	transition: transform 160ms var(--sp-ease), background-color 160ms var(--sp-ease);
}

.sp-brand-strip__item:hover {
	background: #fff;
	transform: translateY(-2px);
}

.sp-brand-strip__item img {
	max-width: 118px;
	max-height: 38px;
	object-fit: contain;
}

.sp-home-promo {
	min-height: 156px;
	margin-top: 28px;
	display: grid;
	align-items: center;
	padding: 30px 44px;
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(23, 115, 234, 0.96), rgba(82, 163, 255, 0.86)),
		linear-gradient(135deg, transparent 0 44%, rgba(255, 255, 255, 0.16) 44% 56%, transparent 56% 100%);
	color: #fff;
	overflow: hidden;
}

.sp-home-promo--image {
	background-color: var(--sp-primary);
	background-image: var(--sp-promo-desktop);
	background-size: cover;
	background-position: center;
}

.sp-home-promo span {
	max-width: 520px;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.08;
}

.sp-home-promo--image span:empty,
.sp-home-promo--image span {
	display: none;
}

.sp-product-section {
	padding: 54px 0 0;
}

.sp-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 26px;
}

.sp-section-head h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 900;
}

.sp-section-head a {
	color: var(--sp-primary);
	font-weight: 800;
}

.sp-product-rail {
	position: relative;
	min-width: 0;
}

.sp-products-grid,
.products {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sp-product-section--rail .sp-products-grid {
	overflow-x: auto;
	grid-auto-flow: column;
	grid-auto-columns: 176px;
	grid-template-columns: none;
	padding: 4px 0 18px;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
}

.sp-product-section--rail .sp-products-grid::-webkit-scrollbar {
	display: none;
}

.sp-rail-arrow {
	position: absolute;
	top: 104px;
	z-index: 5;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
	cursor: pointer;
	transition: opacity 160ms var(--sp-ease), transform 160ms var(--sp-ease);
}

.sp-rail-arrow::before {
	content: "";
	position: absolute;
	top: 16px;
	width: 14px;
	height: 14px;
	border-top: 2px solid #344256;
	border-right: 2px solid #344256;
}

.sp-rail-arrow--prev {
	left: 0;
	transform: translate(-50%, -50%);
}

.sp-rail-arrow--prev::before {
	left: 19px;
	transform: rotate(-135deg);
}

.sp-rail-arrow--next {
	right: 0;
	transform: translate(50%, -50%);
}

.sp-rail-arrow--next::before {
	right: 19px;
	transform: rotate(45deg);
}

.sp-rail-arrow:hover {
	transform: translate(var(--sp-arrow-offset, 0), -50%) scale(1.04);
}

.sp-rail-arrow--prev:hover {
	--sp-arrow-offset: -50%;
}

.sp-rail-arrow--next:hover {
	--sp-arrow-offset: 50%;
}

.sp-rail-arrow:disabled {
	opacity: 0.22;
	pointer-events: none;
}

.sp-product-card,
.products .product {
	position: relative;
	min-width: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	scroll-snap-align: start;
}

.sp-product-card__tag {
	position: absolute;
	top: 118px;
	left: 0;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 9px;
	border-radius: 999px;
	background: var(--sp-primary);
	color: #fff;
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
	white-space: nowrap;
}

.sp-product-card__image {
	display: grid;
	place-items: end center;
	height: 150px;
	padding: 0 4px 10px;
}

.sp-product-card__image img {
	width: 100%;
	height: 132px;
	object-fit: contain;
	transition: transform 180ms var(--sp-ease);
}

.sp-product-card:hover .sp-product-card__image img {
	transform: translateY(-2px);
}

.sp-product-card__body {
	display: grid;
	gap: 4px;
}

.sp-product-card__price,
.price,
.sp-product-summary__price {
	color: #0f172a;
	font-size: 18.5px;
	font-weight: 900;
	line-height: 1.1;
}

.price del {
	color: #777;
	font-size: 12px;
	font-weight: 600;
	margin-left: 7px;
}

.price ins {
	text-decoration: none;
	color: var(--sp-primary);
}

.sp-product-card__monthly {
	color: #222;
	font-size: 10.5px;
	font-weight: 600;
}

.sp-product-card__monthly::first-letter {
	color: var(--sp-primary);
}

.sp-product-card h3 {
	min-height: 44px;
	margin: 0;
	color: #20242b;
	font-size: 12.5px;
	font-weight: 800;
	line-height: 1.35;
}

.sp-product-card h3 a:hover {
	color: var(--sp-primary);
}

.sp-product-card__meta {
	display: none;
}

.sp-product-card__actions {
	display: grid;
	grid-template-columns: 40px 112px;
	gap: 8px;
	margin-top: 13px;
	justify-content: start;
}

.sp-product-card__actions .sp-button,
.sp-product-card__actions .button,
.sp-product-card__actions .added_to_cart {
	width: 112px;
	min-height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding-inline: 10px;
	border-radius: 4px;
	background: var(--sp-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
	box-shadow: none;
	transition: background-color 160ms var(--sp-ease), transform 160ms var(--sp-ease);
}

.sp-product-card__actions .sp-button:hover,
.sp-product-card__actions .button:hover,
.sp-product-card__actions .added_to_cart:hover {
	background: var(--sp-primary-dark);
	color: #fff;
}

.sp-product-card__actions .added_to_cart {
	display: none;
}

.sp-button-cart-icon {
	position: relative;
	width: 15px;
	height: 12px;
	border: 1.8px solid currentColor;
	border-top: 0;
	border-radius: 0 0 3px 3px;
}

.sp-button-cart-icon::before {
	content: "";
	position: absolute;
	left: -4px;
	top: -6px;
	width: 8px;
	height: 7px;
	border-left: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: rotate(-12deg);
}

.sp-button-cart-icon::after {
	content: "";
	position: absolute;
	left: 2px;
	bottom: -6px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 8px 0 0 currentColor;
}

.sp-shop-hero {
	padding: 42px 0 34px;
	background: #fff;
	border-bottom: 1px solid var(--sp-border);
}

.sp-shop-hero__inner {
	display: grid;
	grid-template-columns: 1fr 460px;
	align-items: end;
	gap: 32px;
}

.sp-eyebrow {
	width: fit-content;
	margin: 0 0 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: #eef1f4;
	color: #516070;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sp-shop-hero h1,
.sp-page__header h1,
.sp-empty h1 {
	margin: 0;
	font-size: clamp(30px, 3.4vw, 44px);
	font-weight: 900;
	line-height: 1.12;
	overflow-wrap: anywhere;
}

.sp-shop-hero p {
	color: #415066;
	font-weight: 500;
}

.sp-search--shop {
	grid-template-columns: 1fr 48px;
	border-color: rgba(23, 115, 234, 0.28);
}

.sp-search--shop button {
	grid-column: 2;
	background: var(--sp-primary);
	color: #fff;
	margin: 5px;
	border-radius: 8px;
}

.sp-shop-layout {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 28px;
	padding: 34px 0 70px;
	background: #f7f8fa;
}

.sp-filter-card,
.sp-filter-widget {
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	padding: 18px;
	margin-bottom: 14px;
}

.sp-filter-card h2,
.sp-filter-title {
	margin: 0 0 16px;
	font-size: 17px;
	font-weight: 900;
}

.sp-filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sp-filter-list a,
.sp-filter-widget a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 42px;
	border-bottom: 1px solid var(--sp-border);
	color: #2f3b4d;
	font-size: 13px;
	font-weight: 700;
}

.sp-filter-list a:hover,
.sp-filter-widget a:hover {
	color: var(--sp-primary);
}

.sp-price-filter {
	display: grid;
	gap: 12px;
}

.sp-price-filter__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.sp-price-filter label {
	display: grid;
	gap: 5px;
	color: var(--sp-muted);
	font-size: 12px;
	font-weight: 800;
}

.sp-price-filter input,
.woocommerce-ordering select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.input-text {
	width: 100%;
	min-height: 42px;
	border: 1px solid var(--sp-border);
	border-radius: 6px;
	padding: 0 12px;
	background: #fff;
	color: var(--sp-ink);
}

.sp-shop-content .sp-products-grid,
.sp-shop-content .products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px 24px;
	background: transparent;
	padding: 12px 0 0;
	border-radius: 0;
}

.sp-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.woocommerce-result-count {
	margin: 0;
	color: #667085;
	font-size: 15px;
	font-weight: 700;
}

.sp-product-page {
	padding: 34px 0 70px;
	background: #f7f8fa;
}

.sp-breadcrumbs {
	display: flex;
	gap: 8px;
	margin-bottom: 18px;
	color: #667085;
	font-size: 13px;
	font-weight: 700;
}

.sp-product-main {
	display: grid;
	grid-template-columns: 1fr 430px;
	gap: 24px;
	align-items: start;
}

.sp-product-gallery,
.sp-product-summary,
.sp-product-tabs > section,
.sp-related-products,
.sp-page__content,
.woocommerce-cart-form,
.cart-collaterals,
.checkout,
.woocommerce-order {
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	box-shadow: none;
}

.sp-product-gallery {
	padding: 24px;
}

.sp-product-gallery__main {
	display: grid;
	place-items: center;
	aspect-ratio: 1 / 0.78;
	background: #fff;
}

.sp-product-gallery__main img {
	max-height: 100%;
	object-fit: contain;
}

.sp-product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin-top: 14px;
}

.sp-product-gallery__thumbs img {
	aspect-ratio: 1;
	object-fit: contain;
	padding: 8px;
	border: 1px solid var(--sp-border);
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
}

.sp-product-summary {
	padding: 28px;
	display: grid;
	gap: 15px;
	align-content: start;
}

.sp-product-summary h1 {
	margin: 0;
	font-size: clamp(24px, 2.3vw, 30px);
	font-weight: 900;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.sp-badge,
.onsale {
	width: fit-content;
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 0 9px;
	border-radius: 999px;
	background: var(--sp-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
}

.sp-product-assurance {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.sp-product-assurance li {
	padding: 10px;
	border-radius: 6px;
	background: var(--sp-primary-soft);
	color: #90330f;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.sp-product-tabs {
	display: grid;
	grid-template-columns: 1fr 0.7fr;
	gap: 18px;
	margin-top: 22px;
}

.sp-product-tabs > section,
.sp-related-products {
	padding: 24px;
}

.sp-product-summary .variations {
	width: 100%;
	border: 0;
	margin: 0 0 12px;
}

.sp-product-summary .variations th,
.sp-product-summary .variations td {
	display: block;
	padding: 0 0 8px;
	text-align: left;
	border: 0;
}

.sp-product-summary .variations label,
.sp-product-summary .quantity label,
.sp-product-summary .quantity .screen-reader-text {
	color: #263241;
	font-size: 12px;
	font-weight: 800;
}

.sp-product-summary .variations select {
	min-height: 42px;
	border-radius: 6px;
}

.sp-product-summary .quantity {
	display: grid;
	gap: 6px;
	margin: 0 0 10px;
}

.sp-product-summary .quantity .qty {
	max-width: 100%;
}

.sp-product-summary .single_add_to_cart_button {
	width: fit-content;
	min-width: 170px;
	min-height: 44px;
	border-radius: 8px;
	background: var(--sp-primary);
	color: #fff;
}

.sp-product-summary .product_meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	color: #4b5563;
	font-size: 12px;
}

.sp-related-products {
	margin-top: 22px;
}

.sp-page,
.sp-empty {
	padding: 52px 0 70px;
	background: #f7f8fa;
}

.sp-page__header {
	max-width: 900px;
	margin-bottom: 20px;
}

.sp-page--narrow .sp-page__header,
.sp-page--narrow .sp-page__content {
	max-width: 840px;
	margin-right: auto;
	margin-left: auto;
}

.sp-page--wide .sp-page__header,
.sp-page--wide .sp-page__content {
	max-width: none;
}

.sp-page-layout {
	display: block;
}

.sp-page-layout.has-sidebar {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.sp-page-sidebar {
	position: sticky;
	top: 152px;
	padding: 18px;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: #fff;
}

.sp-page-sidebar h2 {
	margin: 0 0 12px;
	font-size: 16px;
}

.sp-page-sidebar nav {
	display: grid;
	gap: 4px;
}

.sp-page-sidebar a {
	padding: 12px;
	border-radius: 6px;
	color: #516070;
	font-weight: 700;
}

.sp-page-sidebar a:hover,
.sp-page-sidebar a.is-active {
	background: var(--sp-primary-soft);
	color: var(--sp-primary);
}

.sp-page__content {
	padding: 34px;
}

.sp-empty-state {
	display: grid;
	align-content: center;
	min-height: 88px;
	color: #4b5563;
}

.sp-empty-state p {
	margin: 0;
}

.woocommerce-cart-form,
.cart-collaterals,
.checkout,
.woocommerce-order {
	padding: 24px;
	margin: 24px 0;
}

.woocommerce table.shop_table {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 14px;
	border-bottom: 1px solid var(--sp-border);
	text-align: left;
}

.sp-footer {
	margin-top: 70px;
	background: #f7f8fa;
	border-top: 1px solid var(--sp-border);
}

.sp-footer__inner {
	display: grid;
	grid-template-columns: 1.3fr repeat(3, 1fr);
	gap: 36px;
	padding: 44px 0;
}

.sp-footer h2 {
	margin: 0 0 14px;
	font-size: 17px;
	font-weight: 900;
}

.sp-footer__brand p,
.sp-footer-menu a {
	color: #4b5563;
}

.sp-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 9px;
	font-weight: 800;
}

.sp-footer-menu a:hover {
	color: var(--sp-primary);
}

.sp-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
	border-top: 1px solid var(--sp-border);
	color: #667085;
}

.sp-back-to-top {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 7px 7px 7px 16px;
	border: 1px solid rgba(23, 115, 234, 0.18);
	border-radius: 999px;
	background: #fff;
	color: #22324a;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 14px 32px rgba(23, 115, 234, 0.12);
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		color 0.2s ease;
}

.sp-back-to-top__icon {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(180deg, #2f86f6 0%, var(--sp-primary) 100%);
	color: #fff;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}

.sp-back-to-top__icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.sp-back-to-top:hover,
.sp-back-to-top:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(23, 115, 234, 0.34);
	color: var(--sp-primary);
	box-shadow: 0 18px 42px rgba(23, 115, 234, 0.18);
}

.sp-back-to-top:focus-visible {
	outline: 3px solid rgba(23, 115, 234, 0.2);
	outline-offset: 3px;
}

@media (max-width: 1180px) {
	.sp-container {
		width: calc(100vw - 32px);
	}

	.sp-header-main__inner {
		grid-template-columns: auto auto 1fr auto;
	}

	.sp-icon-link {
		min-width: 50px;
	}

	.sp-icon-link::after {
		content: "";
		display: none;
	}

	.sp-icon-link__text {
		display: none;
	}

	.sp-home-stage,
	.sp-shop-layout,
	.sp-product-main,
	.sp-product-tabs,
	.sp-shop-hero__inner {
		grid-template-columns: 1fr;
	}

	.sp-home-categories {
		display: none;
	}

	.sp-products-grid,
	.products,
	.sp-shop-content .sp-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.sp-container {
		width: calc(100vw - 40px);
	}

	.sp-topbar {
		display: none;
	}

	.sp-header-main__inner {
		width: min(350px, calc(100vw - 40px));
		margin-right: auto;
		margin-left: 20px;
		min-height: 50px;
		grid-template-columns: 34px minmax(0, 1fr) 38px 38px;
		gap: 8px;
		padding: 6px 0;
	}

	.sp-logo,
	.custom-logo-link {
		order: 2;
		min-width: 0;
		max-width: 150px;
		overflow: hidden;
		font-size: 17px;
	}

	.custom-logo {
		max-height: 34px;
		max-width: 150px;
		object-fit: contain;
	}

	.sp-logo-mark {
		width: 32px;
		height: 32px;
		font-size: 13px;
	}

	.sp-catalog-toggle {
		order: 1;
		grid-column: auto;
		width: 34px;
		min-height: 34px;
		padding: 0;
		border-radius: 0;
		background: transparent;
		color: var(--sp-ink);
		box-shadow: none;
	}

	.sp-catalog-toggle:hover {
		background: transparent;
		color: var(--sp-ink);
	}

	.sp-catalog-toggle__label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
	}

	.sp-catalog-toggle__icon {
		width: 22px;
		height: 16px;
		background:
			linear-gradient(currentColor, currentColor) 0 0 / 21px 2px no-repeat,
			linear-gradient(currentColor, currentColor) 0 7px / 21px 2px no-repeat,
			linear-gradient(currentColor, currentColor) 0 14px / 21px 2px no-repeat;
	}

	.sp-header-search {
		order: 3;
		position: static;
		grid-column: auto;
		grid-template-columns: 38px;
		width: 38px;
		min-height: 38px;
		border: 1px solid rgba(15, 23, 42, 0.08);
		border-radius: 999px;
		background: #fff;
		overflow: visible;
	}

	.sp-header-search input,
	.sp-header-search input[type="hidden"] {
		display: none;
	}

	.sp-header-search button {
		grid-column: 1;
		width: 38px;
		height: 38px;
		background: transparent;
		color: var(--sp-ink);
	}

	.sp-header-actions {
		display: none;
	}

	.sp-mobile-cart {
		order: 4;
		position: relative;
		display: grid;
		place-items: center;
		width: 38px;
		height: 38px;
		border: 1px solid rgba(15, 23, 42, 0.08);
		border-radius: 999px;
		background: #fff;
		box-shadow: none;
	}

	.sp-mobile-cart .sp-cart-count {
		display: none;
	}

	.sp-catalog-panel {
		position: fixed;
		inset: 50px 0 0;
		z-index: 70;
		padding: 12px 20px 28px;
		background: #fff;
		overflow-y: auto;
	}

	.sp-catalog-panel__inner {
		width: 100%;
		margin: 0;
		display: block;
	}

	.sp-mega {
		width: 100%;
		min-height: 0;
		display: block;
		border-radius: 10px;
		box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
	}

	.sp-mega__list {
		padding: 8px;
		border-right: 0;
	}

	.sp-mega__link {
		min-height: 46px;
	}

	.sp-mega__flyout {
		position: static;
		display: none;
		padding: 0 12px 14px 44px;
	}

	.sp-mega__item:hover > .sp-mega__flyout,
	.sp-mega__item.is-active > .sp-mega__flyout {
		display: block;
	}

	.sp-mega__flyout-head {
		display: none;
	}

	.sp-mega__children {
		grid-template-columns: 1fr;
	}

	.sp-mega__children a {
		min-height: 38px;
		padding: 8px 0;
		font-size: 12px;
	}

	.sp-home-stage {
		display: block;
		padding-top: 13px;
	}

	.sp-home-slider__track {
		height: 135px;
	}

	.sp-hero-zoom {
		min-height: 135px;
		height: 135px;
		display: block;
		border-radius: 8px;
	}

	.sp-hero-zoom--image {
		background-image: var(--sp-hero-mobile, var(--sp-hero-desktop));
	}

	.sp-hero-zoom__copy {
		display: none;
	}

	.sp-hero-zoom__media {
		min-height: 135px;
		padding: 0 20px;
		justify-content: flex-start;
	}

	.sp-hero-zoom__media span {
		width: 92px;
		margin-left: -22px;
	}

	.sp-hero-zoom__media img {
		height: 118px;
	}

	.sp-hero-zoom__arrow {
		display: none;
	}

	.sp-home-slider__arrow {
		display: none;
	}

	.sp-home-slider__dots {
		bottom: 10px;
		padding: 5px;
	}

	.sp-home-slider__dots button {
		width: 22px;
	}

	.sp-brand-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding-top: 22px;
	}

	.sp-brand-strip__item {
		min-height: 68px;
	}

	.sp-home-promo {
		min-height: 118px;
		margin-top: 18px;
		padding: 22px;
		border-radius: 8px;
	}

	.sp-home-promo--image {
		background-image: var(--sp-promo-mobile, var(--sp-promo-desktop));
	}

	.sp-home-promo span {
		font-size: 20px;
	}

	.sp-product-section {
		padding-top: 42px;
	}

	.sp-section-head h2 {
		font-size: 16px;
	}

	.sp-section-head a {
		display: none;
	}

	.sp-product-section--rail .sp-products-grid {
		grid-auto-columns: 142px;
		gap: 18px;
	}

	.sp-rail-arrow {
		display: none;
	}

	.sp-product-card__image {
		height: 132px;
	}

	.sp-product-card__tag {
		top: 102px;
		left: 0;
	}

	.sp-product-card__actions {
		grid-template-columns: 38px 96px;
	}

	.sp-product-card__actions .sp-button,
	.sp-product-card__actions .button,
	.sp-product-card__actions .added_to_cart {
		width: 96px;
		padding-inline: 8px;
		font-size: 11.5px;
	}

	.sp-products-grid,
	.products,
	.sp-shop-content .sp-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sp-shop-content .sp-products-grid {
		grid-template-columns: repeat(2, 136px);
		justify-content: start;
		gap: 34px;
		padding-inline: 0;
		background: transparent;
	}

	.sp-shop-content .sp-product-card__actions {
		grid-template-columns: 38px 96px;
		gap: 8px;
	}

	.sp-shop-layout {
		display: flex;
		flex-direction: column;
		padding-top: 20px;
	}

	.sp-shop-hero {
		padding: 36px 0 32px;
	}

	.sp-shop-hero__inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
	}

	.sp-shop-hero h1 {
		font-size: 38px;
	}

	.sp-shop-hero p,
	.sp-shop-hero__desc {
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.sp-search--shop {
		width: 100%;
	}

	.sp-shop-content {
		order: 1;
	}

	.sp-shop-sidebar {
		order: 2;
	}

	.sp-shop-toolbar {
		align-items: flex-start;
		gap: 12px;
		flex-direction: column;
	}

	.sp-footer__inner,
	.sp-footer__bottom,
	.sp-product-assurance,
	.sp-page-layout.has-sidebar {
		grid-template-columns: 1fr;
		flex-direction: column;
	}

	.sp-page-sidebar {
		position: static;
	}

	.sp-page__content {
		padding: 22px;
	}
}

/* SmartPlus blue refresh: stable slider, lighter cards, cleaner ecommerce spacing. */
:root {
	--sp-primary-soft: #eef6ff;
	--sp-primary-faint: #f7fbff;
	--sp-blue-50: #f4f9ff;
	--sp-blue-100: #e7f1ff;
	--sp-blue-200: #cfe3ff;
	--sp-ink: #101827;
	--sp-text: #28364a;
	--sp-muted: #718096;
	--sp-border: #dfeaf7;
	--sp-soft: #f7fbff;
	--sp-card: #ffffff;
	--sp-shadow: 0 14px 34px rgba(23, 115, 234, 0.08);
}

body {
	background:
		linear-gradient(180deg, #fff 0, var(--sp-page-bg) 360px),
		var(--sp-page-bg);
	color: var(--sp-text);
}

.sp-site-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(223, 234, 247, 0.9);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
	backdrop-filter: blur(14px);
}

.sp-topbar {
	background: linear-gradient(90deg, var(--sp-primary-dark), var(--sp-primary));
}

.sp-topbar__inner {
	min-height: 46px;
}

.sp-menu--top a {
	font-weight: 700;
	opacity: 0.96;
}

.sp-header-main {
	background: #fff;
}

.sp-header-main__inner {
	min-height: 86px;
	grid-template-columns: 210px 156px minmax(420px, 1fr) auto;
	gap: 22px;
}

.sp-logo,
.custom-logo-link {
	color: var(--sp-ink);
}

.sp-logo-text {
	color: var(--sp-ink);
}

.sp-logo-mark {
	border-radius: 14px;
	background:
		radial-gradient(circle at 72% 18%, #75c4ff 0 4px, transparent 5px),
		linear-gradient(145deg, var(--sp-primary), #4aa3ff);
	box-shadow: 0 10px 24px rgba(23, 115, 234, 0.2);
}

.sp-catalog-toggle {
	border-radius: 12px;
	background: var(--sp-primary);
	box-shadow: 0 14px 26px rgba(23, 115, 234, 0.18);
}

.sp-catalog-toggle:hover {
	background: var(--sp-primary-dark);
}

.sp-search {
	border-color: var(--sp-border);
	box-shadow: inset 0 0 0 1px rgba(23, 115, 234, 0.03);
}

.sp-search:focus-within {
	border-color: var(--sp-primary);
	box-shadow: 0 0 0 4px rgba(23, 115, 234, 0.1);
}

.sp-search button,
.sp-sale-link {
	background: var(--sp-primary);
}

.sp-sale-link {
	border-radius: 12px;
	box-shadow: 0 14px 28px rgba(23, 115, 234, 0.2);
}

.sp-icon-link {
	border: 1px solid var(--sp-border);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.sp-icon-link:hover {
	border-color: var(--sp-blue-200);
	color: var(--sp-primary);
}

.sp-cart-count {
	color: var(--sp-primary);
	border-color: var(--sp-blue-200);
}

.sp-catalog-panel {
	background: rgba(247, 251, 255, 0.96);
}

.sp-mega,
.sp-home-categories,
.sp-brand-strip__item,
.sp-product-card,
.products .product,
.sp-filter-card,
.sp-filter-widget,
.sp-product-gallery,
.sp-product-summary,
.sp-product-tabs > section,
.sp-related-products,
.sp-page__content,
.woocommerce-cart-form,
.cart-collaterals,
.checkout,
.woocommerce-order {
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.sp-mega__item:hover > .sp-mega__link,
.sp-mega__item.is-active > .sp-mega__link,
.sp-page-sidebar a:hover,
.sp-page-sidebar a.is-active {
	background: var(--sp-primary-soft);
	color: var(--sp-primary);
}

.sp-home-stage {
	grid-template-columns: 264px minmax(0, 1fr);
	gap: 28px;
	padding-top: 32px;
}

.sp-home-categories {
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.sp-home-category {
	min-height: 52px;
	padding: 0 18px;
	font-size: 13px;
	font-weight: 700;
	color: #243246;
}

.sp-home-category:hover {
	background: var(--sp-primary-soft);
	color: var(--sp-primary);
}

.sp-home-slider {
	isolation: isolate;
}

.sp-home-slider__track {
	height: clamp(330px, 31vw, 420px);
	min-height: 330px;
	overflow: hidden;
	border-radius: 8px;
	background:
		linear-gradient(135deg, #eaf4ff 0%, #ffffff 56%, #dcecff 100%);
	box-shadow: 0 20px 42px rgba(23, 115, 234, 0.1);
}

.sp-home-slide,
.sp-home-slide.is-active {
	position: absolute;
	inset: 0;
	height: 100%;
}

.sp-home-slide {
	transform: translateX(18px);
	transition: opacity 260ms var(--sp-ease), transform 260ms var(--sp-ease);
}

.sp-home-slide.is-active {
	transform: translateX(0);
}

.sp-hero-zoom {
	min-height: 100%;
	height: 100%;
	grid-template-columns: minmax(320px, 0.84fr) minmax(360px, 1fr);
	gap: 18px;
	padding: 34px 54px;
	background:
		radial-gradient(circle at 88% 12%, rgba(23, 115, 234, 0.17), transparent 30%),
		radial-gradient(circle at 42% 105%, rgba(92, 172, 255, 0.2), transparent 34%),
		linear-gradient(135deg, #f9fcff 0%, #edf6ff 54%, #ffffff 100%);
	color: var(--sp-ink);
}

.sp-hero-zoom--image {
	background-color: #f4f9ff;
	background-image:
		linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.62) 46%, rgba(255, 255, 255, 0.2) 100%),
		var(--sp-hero-desktop);
	background-size: cover;
	background-position: center;
}

.sp-hero-zoom--image .sp-hero-zoom__copy,
.sp-hero-zoom--image .sp-hero-zoom__media {
	position: relative;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
}

.sp-hero-zoom::before {
	left: auto;
	right: 9%;
	top: -80px;
	width: 330px;
	height: 330px;
	border: 1px solid rgba(23, 115, 234, 0.14);
	background: rgba(255, 255, 255, 0.22);
	box-shadow: inset 0 0 0 22px rgba(23, 115, 234, 0.04);
}

.sp-hero-zoom__copy {
	grid-column: 1;
	padding: 0;
	gap: 16px;
}

.sp-hero-zoom__eyebrow,
.sp-badge,
.onsale,
.sp-product-card__tag {
	background: var(--sp-primary);
	color: #fff;
}

.sp-hero-zoom__copy strong {
	max-width: 520px;
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.04;
}

.sp-hero-zoom__price {
	padding: 8px 16px;
	border-radius: 12px;
	background: #fff;
	color: var(--sp-primary);
	font-size: clamp(24px, 3vw, 40px);
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
	text-shadow: none;
}

.sp-hero-zoom__media {
	grid-column: 2;
	min-height: 0;
	padding: 0;
	justify-content: center;
}

.sp-hero-zoom__media span {
	width: min(190px, 28%);
	margin-left: -28px;
	filter: drop-shadow(0 22px 28px rgba(23, 41, 70, 0.16));
}

.sp-hero-zoom__media img {
	height: min(300px, 23vw);
	object-fit: contain;
}

.sp-home-slider__arrow,
.sp-rail-arrow {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--sp-border);
	box-shadow: 0 14px 30px rgba(23, 115, 234, 0.12);
}

.sp-home-slider__dots {
	bottom: 18px;
	background: rgba(16, 24, 39, 0.08);
	backdrop-filter: blur(10px);
}

.sp-home-slider__dots button {
	background: rgba(23, 115, 234, 0.22);
}

.sp-home-slider__dots button.is-active {
	background: var(--sp-primary);
}

.sp-brand-strip {
	padding-top: 36px;
}

.sp-brand-strip__item {
	min-height: 82px;
	background: rgba(255, 255, 255, 0.82);
}

.sp-brand-strip__item:hover {
	border-color: var(--sp-blue-200);
	box-shadow: 0 18px 38px rgba(23, 115, 234, 0.09);
}

.sp-product-section {
	padding-top: 48px;
}

.sp-section-head {
	margin-bottom: 20px;
}

.sp-section-head h2 {
	color: var(--sp-ink);
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 850;
}

.sp-section-head a {
	color: var(--sp-primary);
	font-weight: 750;
}

.sp-product-section--rail .sp-products-grid {
	grid-auto-columns: 192px;
	gap: 18px;
	padding: 4px 4px 22px;
}

.sp-product-card,
.products .product {
	padding: 12px;
	transition: transform 180ms var(--sp-ease), border-color 180ms var(--sp-ease), box-shadow 180ms var(--sp-ease);
}

.sp-product-card:hover,
.products .product:hover {
	border-color: var(--sp-blue-200);
	box-shadow: 0 18px 38px rgba(23, 115, 234, 0.1);
	transform: translateY(-2px);
}

.sp-product-card__tag {
	top: 118px;
	left: 12px;
	min-height: 22px;
	font-size: 9.5px;
}

.sp-product-card__image {
	height: 152px;
	padding: 8px 0 12px;
	background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
	border-radius: 8px;
}

.sp-product-card__image img {
	height: 126px;
}

.sp-product-card h3 {
	color: #1c2b3f;
	font-size: 12.8px;
	font-weight: 760;
}

.sp-product-card__price,
.price,
.sp-product-summary__price {
	color: #081526;
	font-size: 18px;
}

.price ins,
.sp-product-card h3 a:hover,
.sp-filter-list a:hover,
.sp-filter-widget a:hover,
.sp-footer-menu a:hover {
	color: var(--sp-primary);
}

.sp-product-card__monthly::first-letter {
	color: var(--sp-primary);
}

.sp-product-card__actions {
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 8px;
}

.sp-product-card__actions .sp-button,
.sp-product-card__actions .button,
.sp-product-card__actions .added_to_cart {
	width: 100%;
	min-width: 0;
	border-radius: 8px;
	background: var(--sp-primary);
	color: #fff;
	font-weight: 800;
}

.sp-product-card__actions .sp-button:hover,
.sp-product-card__actions .button:hover,
.sp-product-card__actions .added_to_cart:hover {
	background: var(--sp-primary-dark);
	color: #fff;
}

.sp-home-promo {
	position: relative;
	z-index: 1;
	min-height: 176px;
	margin-top: 36px;
	background:
		radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.26), transparent 22%),
		linear-gradient(105deg, var(--sp-primary-dark), var(--sp-primary));
	box-shadow: 0 20px 42px rgba(23, 115, 234, 0.16);
}

.sp-home-promo--image {
	background-color: var(--sp-primary);
	background-image:
		linear-gradient(90deg, rgba(13, 52, 110, 0.48), rgba(13, 52, 110, 0.08)),
		var(--sp-promo-desktop);
}

.sp-shop-hero {
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.sp-search--shop {
	border-color: var(--sp-border);
}

.sp-shop-layout,
.sp-product-page,
.sp-page,
.sp-empty {
	background: var(--sp-page-bg);
}

.sp-product-assurance li {
	background: var(--sp-primary-soft);
	color: #1558b0;
}

.sp-footer {
	background: #f4f8fd;
}

@media (max-width: 1180px) {
	.sp-header-main__inner {
		grid-template-columns: auto auto minmax(220px, 1fr) auto;
	}

	.sp-home-stage {
		grid-template-columns: 1fr;
	}

	.sp-home-categories {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.sp-home-category--more {
		display: none;
	}
}

@media (max-width: 760px) {
	.sp-header-main__inner {
		width: min(360px, calc(100vw - 48px));
		margin-left: auto;
		margin-right: auto;
		grid-template-columns: 40px 44px 40px 40px;
		justify-content: space-between;
		gap: 0;
	}

	.sp-logo,
	.custom-logo-link {
		max-width: 44px;
		justify-content: center;
	}

	.sp-logo-text {
		display: none;
	}

	.sp-header-search,
	.sp-mobile-cart {
		width: 40px;
		height: 40px;
		min-height: 40px;
		border-color: var(--sp-border);
		box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
	}

	.sp-header-search {
		grid-template-columns: 40px;
	}

	.sp-header-search button {
		width: 40px;
		height: 40px;
		border-radius: 999px;
		background: var(--sp-primary);
		color: #fff;
	}

	.sp-home-stage {
		padding-top: 18px;
	}

	.sp-home-categories {
		display: none;
	}

	.sp-home-slider__track {
		height: 246px;
		min-height: 246px;
		border-radius: 8px;
	}

	.sp-hero-zoom {
		height: 246px;
		min-height: 246px;
		display: grid;
		grid-template-columns: 1fr;
		padding: 24px 22px;
	}

	.sp-hero-zoom--image {
		background-image:
			linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
			var(--sp-hero-mobile, var(--sp-hero-desktop));
	}

	.sp-hero-zoom__copy,
	.sp-hero-zoom--image .sp-hero-zoom__copy {
		display: grid;
		gap: 10px;
	}

	.sp-hero-zoom__copy strong {
		max-width: 290px;
		font-size: 27px;
		line-height: 1.08;
	}

	.sp-hero-zoom__price {
		font-size: 22px;
	}

	.sp-hero-zoom__media {
		position: absolute;
		right: 10px;
		bottom: 12px;
		width: 42%;
		min-height: 0;
		opacity: 0.28;
		pointer-events: none;
	}

	.sp-hero-zoom__media span {
		display: none;
		width: 120px;
		margin-left: 0;
	}

	.sp-hero-zoom__media span:first-child {
		display: block;
	}

	.sp-hero-zoom__media img {
		height: 150px;
	}

	.sp-home-slider__dots {
		left: 22px;
		bottom: 16px;
		transform: none;
	}

	.sp-product-section {
		padding-top: 34px;
	}

	.sp-product-section--rail .sp-products-grid {
		grid-auto-columns: 164px;
		gap: 14px;
		padding-bottom: 18px;
	}

	.sp-product-card,
	.products .product {
		padding: 10px;
	}

	.sp-product-card__image {
		height: 138px;
	}

	.sp-product-card__image img {
		height: 116px;
	}

	.sp-product-card__tag {
		top: 108px;
		left: 10px;
	}

	.sp-product-card__actions {
		grid-template-columns: 36px minmax(0, 1fr);
	}

	.sp-product-card__actions .sp-button,
	.sp-product-card__actions .button,
	.sp-product-card__actions .added_to_cart {
		width: 100%;
		font-size: 11px;
	}

	.sp-home-promo {
		min-height: 132px;
		margin-top: 22px;
		padding: 20px;
	}
}

/* Air mode: lighter typography and calmer rendering. */
:root {
	--sp-shadow: 0 8px 22px rgba(23, 54, 88, 0.045);
	--sp-border: #e4edf8;
	--sp-page-bg: #f8fbff;
}

body {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
	background: var(--sp-page-bg);
}

.sp-site-header {
	position: relative;
	box-shadow: none;
	backdrop-filter: none;
}

.sp-topbar__inner {
	min-height: 42px;
}

.sp-topbar__phone,
.sp-menu--top a,
.sp-catalog-toggle,
.sp-icon-link,
.sp-product-card h3,
.sp-section-head a,
.sp-filter-list a,
.sp-filter-widget a,
.sp-footer-menu,
.sp-page-sidebar a,
.woocommerce-result-count {
	font-weight: 500;
}

.sp-logo,
.custom-logo-link {
	font-size: 23px;
	font-weight: 650;
}

.sp-header-main__inner {
	min-height: 76px;
}

.sp-catalog-toggle,
.sp-sale-link,
.sp-search button,
.sp-product-card__actions .sp-button,
.sp-product-card__actions .button,
.sp-product-summary .single_add_to_cart_button {
	box-shadow: none;
	font-weight: 600;
}

.sp-icon-link,
.sp-mega,
.sp-home-categories,
.sp-brand-strip__item,
.sp-product-card,
.products .product,
.sp-filter-card,
.sp-filter-widget,
.sp-product-gallery,
.sp-product-summary,
.sp-product-tabs > section,
.sp-related-products,
.sp-page__content,
.woocommerce-cart-form,
.cart-collaterals,
.checkout,
.woocommerce-order {
	box-shadow: none;
}

.sp-home-stage {
	padding-top: 26px;
}

.sp-home-category {
	min-height: 48px;
	font-weight: 500;
}

.sp-home-category:hover,
.sp-mega__item:hover > .sp-mega__link,
.sp-mega__item.is-active > .sp-mega__link {
	background: #f5f9ff;
}

.sp-home-slider__track {
	height: clamp(300px, 28vw, 380px);
	min-height: 300px;
	border: 1px solid var(--sp-border);
	background: #fff;
	box-shadow: none;
}

.sp-hero-zoom,
.sp-hero-zoom--image {
	padding: 32px 48px;
	background:
		linear-gradient(105deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.72)),
		var(--sp-hero-desktop, linear-gradient(135deg, #fff, #eef6ff));
	background-size: cover;
	background-position: center;
	color: var(--sp-ink);
}

.sp-hero-zoom::before {
	display: none;
}

.sp-hero-zoom__eyebrow,
.sp-product-card__tag,
.sp-badge,
.onsale {
	min-height: 22px;
	padding: 0 9px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0;
}

.sp-hero-zoom__copy strong {
	max-width: 500px;
	font-size: clamp(28px, 3.2vw, 42px);
	font-weight: 650;
	line-height: 1.12;
}

.sp-hero-zoom__price {
	padding: 7px 14px;
	font-size: clamp(22px, 2.4vw, 32px);
	font-weight: 650;
	box-shadow: none;
}

.sp-hero-zoom__media span {
	filter: none;
}

.sp-home-slider__arrow,
.sp-rail-arrow {
	box-shadow: none;
	border-color: var(--sp-border);
}

.sp-home-slider__dots {
	background: rgba(23, 115, 234, 0.08);
	backdrop-filter: none;
}

.sp-section-head h2,
.sp-shop-hero h1,
.sp-page__header h1,
.sp-empty h1,
.sp-product-summary h1,
.sp-footer h2,
.sp-filter-card h2,
.sp-filter-title {
	font-weight: 650;
	letter-spacing: 0;
}

.sp-section-head h2 {
	font-size: clamp(19px, 1.8vw, 24px);
}

.sp-product-section {
	padding-top: 42px;
}

.sp-product-section--rail .sp-products-grid {
	grid-auto-columns: 184px;
	gap: 16px;
	padding-bottom: 18px;
}

.sp-product-card,
.products .product {
	padding: 10px;
	border-color: var(--sp-border);
	background: #fff;
	transform: none;
}

.sp-product-card:hover,
.products .product:hover {
	border-color: #cfe2fb;
	box-shadow: none;
	transform: none;
}

.sp-product-card__image {
	height: 142px;
	background: #fff;
}

.sp-product-card__image img {
	height: 118px;
	transition: none;
}

.sp-product-card:hover .sp-product-card__image img {
	transform: none;
}

.sp-product-card__tag {
	top: 108px;
	left: 10px;
}

.sp-product-card__price,
.price,
.sp-product-summary__price {
	font-size: 17px;
	font-weight: 650;
}

.sp-product-card h3 {
	min-height: 40px;
	font-size: 12.5px;
	line-height: 1.35;
}

.sp-product-card__monthly {
	font-weight: 400;
}

.sp-product-card__actions .sp-button,
.sp-product-card__actions .button,
.sp-product-card__actions .added_to_cart {
	min-height: 36px;
	border-radius: 7px;
}

.sp-home-promo {
	box-shadow: none;
	background: linear-gradient(105deg, var(--sp-primary-dark), var(--sp-primary));
}

.sp-footer {
	margin-top: 54px;
}

@media (max-width: 760px) {
	body {
		font-size: 14px;
	}

	.sp-home-slider__track {
		height: 224px;
		min-height: 224px;
	}

	.sp-hero-zoom,
	.sp-hero-zoom--image {
		height: 224px;
		min-height: 224px;
		padding: 22px;
	}

	.sp-hero-zoom__copy strong {
		max-width: 280px;
		font-size: 24px;
	}

	.sp-hero-zoom__price {
		font-size: 20px;
	}

	.sp-product-section--rail .sp-products-grid {
		grid-auto-columns: 158px;
		gap: 14px;
	}

	.sp-product-card__image {
		height: 128px;
	}

	.sp-product-card__image img {
		height: 106px;
	}

	.sp-product-card__tag {
		top: 98px;
	}
}

/* Typography diet: keep Georgian text calm, readable, and light. */
body,
button,
input,
select,
textarea {
	font-family: "Noto Sans Georgian", "FiraGO", "Segoe UI", system-ui, -apple-system, sans-serif;
	font-weight: 400;
}

.sp-topbar__phone,
.sp-menu--top a,
.sp-catalog-toggle,
.sp-icon-link,
.sp-icon-link__text,
.sp-sale-link,
.sp-mega__link,
.sp-home-category,
.sp-section-head a,
.sp-filter-list a,
.sp-filter-widget a,
.sp-footer-menu,
.sp-product-card h3,
.sp-product-card__monthly,
.woocommerce-result-count {
	font-weight: 500 !important;
}

.sp-logo,
.custom-logo-link,
.sp-section-head h2,
.sp-shop-hero h1,
.sp-page__header h1,
.sp-empty h1,
.sp-product-summary h1,
.sp-footer h2,
.sp-filter-card h2,
.sp-filter-title,
.sp-hero-zoom__copy strong {
	font-weight: 400 !important;
}

.sp-product-card__price,
.price,
.sp-product-summary__price,
.sp-hero-zoom__price {
	font-weight: 550 !important;
}

.sp-product-card__tag,
.sp-hero-zoom__eyebrow,
.sp-badge,
.onsale,
.sp-button,
.button,
.added_to_cart,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	font-weight: 500 !important;
}

.sp-section-head h2 {
	font-size: clamp(18px, 1.6vw, 22px);
	line-height: 1.25;
}

.sp-hero-zoom__copy strong {
	font-size: clamp(26px, 2.8vw, 38px);
}

.sp-shop-hero h1,
.sp-page__header h1,
.sp-empty h1 {
	font-size: clamp(28px, 3vw, 38px);
}

@media (max-width: 760px) {
	.sp-section-head h2 {
		font-size: 18px;
	}

	.sp-hero-zoom__copy strong {
		font-size: 22px;
	}
}

/* Favorites and Georgian font refinement. */
body,
button,
input,
select,
textarea {
	font-family: "SmartPlus Sans", "Noto Sans Georgian", "FiraGO", "BPG Arial", "Segoe UI", system-ui, -apple-system, sans-serif;
}

.sp-icon-link--favorites,
.sp-mobile-favorites {
	position: relative;
	border: 1px solid var(--sp-border);
	background: #fff;
	color: var(--sp-ink);
	cursor: pointer;
}

.sp-mobile-favorites {
	display: none;
}

.sp-icon-link--favorites:hover,
.sp-mobile-favorites:hover,
.sp-card-favorite:hover,
.sp-card-favorite.is-active {
	color: var(--sp-primary);
	background: var(--sp-primary-soft);
}

.sp-favorites-count {
	position: absolute;
	top: -9px;
	right: 14px;
	min-width: 19px;
	height: 19px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: #fff;
	color: var(--sp-primary);
	border: 1px solid var(--sp-border);
	font-size: 11px;
	font-weight: 500;
}

.sp-favorites-count[hidden] {
	display: none;
}

.sp-card-favorite {
	width: 36px;
	min-height: 36px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 7px;
	background: #f5f9ff;
	color: #687789;
	cursor: pointer;
	transition: color 140ms var(--sp-ease), background-color 140ms var(--sp-ease);
}

.sp-product-card__actions {
	grid-template-columns: 36px minmax(0, 1fr);
}

.sp-favorites-panel {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	justify-content: flex-end;
	background: rgba(12, 24, 38, 0.24);
}

.sp-favorites-panel.is-open {
	display: flex;
}

.sp-favorites-panel__dialog {
	width: min(420px, calc(100vw - 28px));
	height: 100%;
	padding: 22px;
	background: #fff;
	overflow-y: auto;
	border-left: 1px solid var(--sp-border);
}

.sp-favorites-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.sp-favorites-panel__head h2 {
	margin: 0;
	font-size: 22px;
	font-weight: 500;
}

[data-sp-favorites-close] {
	position: relative;
	width: 38px;
	height: 38px;
	border: 1px solid var(--sp-border);
	border-radius: 999px;
	background: #fff;
	cursor: pointer;
}

[data-sp-favorites-close]::before,
[data-sp-favorites-close]::after {
	content: "";
	position: absolute;
	top: 18px;
	left: 11px;
	width: 15px;
	height: 2px;
	border-radius: 2px;
	background: #4b5a6f;
}

[data-sp-favorites-close]::before {
	transform: rotate(45deg);
}

[data-sp-favorites-close]::after {
	transform: rotate(-45deg);
}

.sp-favorites-list {
	display: grid;
	gap: 10px;
}

.sp-favorite-item {
	display: grid;
	grid-template-columns: 68px 1fr 34px;
	align-items: center;
	gap: 12px;
	padding: 10px;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
}

.sp-favorite-item__image {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border-radius: 7px;
	background: #f8fbff;
}

.sp-favorite-item__image img {
	width: 54px;
	height: 54px;
	object-fit: contain;
}

.sp-favorite-item__body {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.sp-favorite-item__body a {
	color: var(--sp-ink);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
}

.sp-favorite-item__body span {
	color: var(--sp-primary);
	font-size: 13px;
	font-weight: 550;
}

[data-sp-favorite-remove] {
	position: relative;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 999px;
	background: #f5f9ff;
	cursor: pointer;
}

[data-sp-favorite-remove]::before,
[data-sp-favorite-remove]::after {
	content: "";
	position: absolute;
	top: 16px;
	left: 10px;
	width: 14px;
	height: 2px;
	border-radius: 2px;
	background: #687789;
}

[data-sp-favorite-remove]::before {
	transform: rotate(45deg);
}

[data-sp-favorite-remove]::after {
	transform: rotate(-45deg);
}

.sp-favorites-empty {
	margin: 14px 0 0;
	color: var(--sp-muted);
}

@media (max-width: 760px) {
	.sp-header-main__inner {
		grid-template-columns: 40px 40px 40px 40px 40px;
		width: min(390px, calc(100vw - 28px));
	}

	.sp-logo,
	.custom-logo-link {
		order: 2;
	}

	.sp-header-search {
		order: 3;
	}

	.sp-mobile-favorites {
		order: 4;
		display: grid;
		place-items: center;
		width: 40px;
		height: 40px;
		border-radius: 999px;
	}

	.sp-mobile-cart {
		order: 5;
	}

	.sp-favorites-count {
		right: -4px;
	}

	.sp-favorites-panel__dialog {
		width: 100%;
	}
}

/* SmartPlus clean control layer: softer font, standard favorites icon, stable nav and filters. */
body,
button,
input,
select,
textarea {
	font-family: var(--sp-font-main, "SmartPlus Sans", "Noto Sans Georgian", "FiraGO", "BPG Arial", "Segoe UI", Arial, sans-serif) !important;
	font-weight: 400;
}

.sp-logo,
.custom-logo-link,
.sp-menu--top a,
.sp-icon-link,
.sp-catalog-toggle,
.sp-filter-list a,
.woocommerce-result-count,
.sp-product-card h3,
.sp-product-card__monthly,
.sp-product-card__actions .sp-button,
.sp-product-card__actions .button,
.sp-product-card__actions .added_to_cart {
	font-family: var(--sp-font-main, "SmartPlus Sans", "Noto Sans Georgian", "FiraGO", "BPG Arial", "Segoe UI", Arial, sans-serif) !important;
	letter-spacing: 0;
}

.sp-logo,
.custom-logo-link {
	font-weight: 600;
	text-decoration: none !important;
	border: 0 !important;
	box-shadow: none !important;
}

.sp-logo-text,
.custom-logo-link img {
	text-decoration: none !important;
	border: 0 !important;
}

.sp-menu--top a,
.sp-icon-link,
.sp-catalog-toggle,
.sp-filter-list a,
.sp-section-head a {
	font-weight: 500 !important;
	transition: color 160ms var(--sp-ease), background-color 160ms var(--sp-ease), opacity 160ms var(--sp-ease);
}

.sp-menu--top a:hover {
	opacity: 0.82;
	text-decoration: none;
}

.sp-heart-svg {
	width: 20px;
	height: 20px;
	display: block;
	overflow: visible;
	color: currentColor;
}

.sp-heart-svg path {
	fill: transparent;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: fill 150ms var(--sp-ease), stroke 150ms var(--sp-ease), transform 150ms var(--sp-ease);
	transform-origin: center;
}

.sp-icon-link--favorites,
.sp-mobile-favorites,
.sp-card-favorite {
	color: #64748b;
}

.sp-icon-link--favorites:hover,
.sp-mobile-favorites:hover,
.sp-card-favorite:hover {
	color: var(--sp-primary);
	background: #f2f8ff;
}

.sp-card-favorite.is-active,
.sp-icon-link--favorites.has-items,
.sp-mobile-favorites.has-items {
	color: var(--sp-primary);
}

.sp-card-favorite.is-active .sp-heart-svg path,
.sp-icon-link--favorites.has-items .sp-heart-svg path,
.sp-mobile-favorites.has-items .sp-heart-svg path {
	fill: currentColor;
	stroke: currentColor;
}

.sp-card-favorite:hover .sp-heart-svg path {
	transform: scale(1.05);
}

.sp-card-favorite {
	border: 1px solid #e2edf8;
	border-radius: 8px;
	background: #f8fbff;
}

.sp-product-card__actions {
	grid-template-columns: 38px minmax(110px, 1fr);
	align-items: center;
}

.sp-product-card__actions .sp-button,
.sp-product-card__actions .button,
.sp-product-card__actions .added_to_cart {
	width: 100%;
	max-width: 132px;
}

.sp-product-card__price,
.price,
.sp-product-summary__price {
	font-weight: 600 !important;
}

.sp-product-card h3 {
	font-weight: 450 !important;
}

.sp-product-card__monthly {
	color: #64748b;
	font-size: 11px;
}

.sp-filter-list a.is-active,
.sp-filter-list a:hover {
	color: var(--sp-primary);
	background: #f4f9ff;
}

.sp-filter-list a {
	margin-inline: -8px;
	padding-inline: 8px;
	border-radius: 8px;
}

.sp-filter-list small {
	color: #64748b;
	font-size: 12px;
	font-weight: 500;
}

.sp-price-filter input:focus,
.woocommerce-ordering select:focus,
.sp-search:focus-within {
	border-color: rgba(23, 115, 234, 0.5);
	box-shadow: 0 0 0 3px rgba(23, 115, 234, 0.09);
	outline: 0;
}

.sp-sale-link.is-active {
	background: var(--sp-primary-dark);
	box-shadow: 0 0 0 4px rgba(23, 115, 234, 0.13);
}

.woocommerce-pagination {
	margin-top: 28px;
	display: flex;
	justify-content: center;
}

.woocommerce-pagination ul.page-numbers,
.woocommerce-pagination .page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-pagination ul.page-numbers {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.woocommerce-pagination ul.page-numbers li {
	margin: 0;
	padding: 0;
}

.woocommerce-pagination a.page-numbers,
.woocommerce-pagination span.page-numbers {
	min-width: 38px;
	height: 38px;
	display: inline-grid;
	place-items: center;
	border: 1px solid #dbe7f4;
	border-radius: 10px;
	background: #fff;
	color: #304055;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: background-color 160ms var(--sp-ease), border-color 160ms var(--sp-ease), color 160ms var(--sp-ease);
}

.woocommerce-pagination span.page-numbers.current,
.woocommerce-pagination a.page-numbers:hover {
	border-color: var(--sp-primary);
	background: var(--sp-primary);
	color: #fff;
}

.woocommerce-pagination .next,
.woocommerce-pagination .prev {
	padding-inline: 12px;
}

.sp-shop-hero--sale .sp-eyebrow {
	background: #eaf4ff;
	color: var(--sp-primary);
}

.sp-shop-hero--sale h1 {
	color: #10233f;
}

@media (max-width: 760px) {
	.sp-mobile-favorites {
		display: grid;
		place-items: center;
	}

	.sp-heart-svg {
		width: 19px;
		height: 19px;
	}

	.sp-shop-hero__inner {
		grid-template-columns: minmax(0, 1fr) !important;
		width: calc(100vw - 44px) !important;
		margin-inline: auto !important;
	}

	.sp-search--shop {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 44px !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0;
		overflow: hidden !important;
	}

	.sp-search--shop input {
		display: block !important;
		min-width: 0 !important;
	}

	.sp-search--shop button {
		grid-column: 2 !important;
		width: auto !important;
		min-width: 0 !important;
		margin: 4px !important;
	}

	.sp-container.sp-shop-layout {
		width: calc(100vw - 44px) !important;
		margin-inline: auto !important;
	}

	.sp-shop-content .sp-products-grid,
	.sp-shop-content .products {
		grid-template-columns: 1fr !important;
		gap: 18px 12px !important;
		justify-content: stretch !important;
	}

	.sp-product-card__actions,
	.sp-shop-content .sp-product-card__actions {
		grid-template-columns: 34px minmax(0, 1fr) !important;
		gap: 6px !important;
	}

	.sp-card-favorite {
		width: 34px !important;
		min-height: 34px !important;
	}

	.sp-product-card__actions .sp-button,
	.sp-product-card__actions .button,
	.sp-product-card__actions .added_to_cart {
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
		min-height: 34px !important;
		padding-inline: 6px !important;
		font-size: 11px !important;
	}

	.woocommerce-pagination ul.page-numbers {
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* SmartPlus airy blue rebrand: lighter typography, editable widgets, calmer commerce UI. */
:root {
	--sp-blue-wash: #f4f9ff;
	--sp-blue-soft: #eaf4ff;
	--sp-blue-line: #dce9f7;
	--sp-shadow-air: 0 16px 36px rgba(24, 86, 151, 0.07);
	--sp-shadow-hover: 0 18px 42px rgba(24, 86, 151, 0.11);
}

body {
	background: linear-gradient(180deg, #ffffff 0, var(--sp-page-bg) 320px);
	color: var(--sp-text);
	font-family: var(--sp-font-main, "SmartPlus Sans", "Noto Sans Georgian", "FiraGO", "BPG Arial", "Segoe UI", Arial, sans-serif) !important;
	font-weight: 400;
	line-height: 1.58;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sp-logo-text,
.sp-section-head h2,
.sp-shop-hero h1,
.sp-product-summary h1,
.sp-product-tabs h2,
.sp-filter-card h2 {
	font-family: var(--sp-font-main, "SmartPlus Sans", "Noto Sans Georgian", "FiraGO", "BPG Arial", "Segoe UI", Arial, sans-serif) !important;
	color: var(--sp-ink);
	font-weight: 560 !important;
	letter-spacing: 0;
}

strong,
b {
	font-weight: 560;
}

.sp-main {
	background: transparent;
}

.sp-container {
	width: min(calc(100% - 48px), var(--sp-container));
}

.sp-topbar {
	background: linear-gradient(90deg, var(--sp-primary-dark), var(--sp-primary));
	box-shadow: none;
}

.sp-topbar__inner {
	min-height: 42px;
}

.sp-topbar__phone,
.sp-topbar__note,
.sp-menu--top a {
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	font-weight: 500 !important;
}

.sp-menu--top a:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	opacity: 1;
}

.sp-header-main {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--sp-border);
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
	backdrop-filter: blur(10px);
}

.sp-header-main__inner {
	min-height: 88px;
	gap: 18px;
}

.sp-logo,
.custom-logo-link {
	color: var(--sp-ink);
	font-weight: 560 !important;
}

.sp-logo-mark {
	background: linear-gradient(145deg, var(--sp-primary), #58adff);
	box-shadow: 0 12px 28px rgba(23, 115, 234, 0.22);
}

.sp-catalog-toggle,
.sp-sale-link,
.sp-search button,
.sp-button,
.sp-product-card__actions .button,
.sp-product-card__actions .added_to_cart {
	border-radius: 8px;
	font-weight: 560 !important;
	box-shadow: none;
}

.sp-catalog-toggle:hover,
.sp-sale-link:hover,
.sp-search button:hover,
.sp-button:hover,
.sp-product-card__actions .button:hover,
.sp-product-card__actions .added_to_cart:hover {
	background: var(--sp-primary-dark);
	transform: translateY(-1px);
}

.sp-search {
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(24, 86, 151, 0.045);
	overflow: hidden;
}

.sp-search input {
	color: var(--sp-text);
	font-size: 14px;
	font-weight: 400;
}

.sp-search input::placeholder {
	color: #9aa9bb;
}

.sp-icon-link {
	border-color: var(--sp-border);
	background: #fff;
	color: var(--sp-ink);
	font-weight: 500 !important;
	box-shadow: 0 10px 24px rgba(24, 86, 151, 0.05);
}

.sp-icon-link:hover {
	border-color: rgba(23, 115, 234, 0.24);
	background: var(--sp-blue-wash);
	color: var(--sp-primary);
}

.sp-cart-count,
.sp-favorites-count {
	border: 1px solid rgba(23, 115, 234, 0.16);
	background: #fff;
	color: var(--sp-primary);
	font-weight: 560;
}

.sp-home-stage {
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 28px;
	padding-top: 30px;
	align-items: start;
}

.sp-home-categories,
.sp-filter-card,
.sp-mega,
.sp-product-card,
.sp-product-main,
.sp-product-tabs section,
.sp-favorites-panel__dialog {
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: var(--sp-card);
	box-shadow: var(--sp-shadow-air);
}

.sp-home-categories {
	max-height: 360px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(23, 115, 234, 0.32) transparent;
}

.sp-home-categories::-webkit-scrollbar {
	width: 5px;
}

.sp-home-categories::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(23, 115, 234, 0.28);
}

.sp-home-category {
	min-height: 50px;
	border-bottom-color: var(--sp-border);
	color: var(--sp-text);
	font-size: 13.5px;
	font-weight: 500;
	transition: background-color 160ms var(--sp-ease), color 160ms var(--sp-ease), padding 160ms var(--sp-ease);
}

.sp-home-category:hover {
	background: var(--sp-blue-wash);
	color: var(--sp-primary);
	padding-left: 20px;
}

.sp-home-category__icon {
	border-radius: 7px;
	background: #f7fbff;
}

.sp-home-slider__track {
	height: 360px;
}

.sp-hero-zoom {
	min-height: 360px;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(237, 246, 255, 0.74)),
		radial-gradient(circle at 22% 22%, rgba(23, 115, 234, 0.13), transparent 30%),
		#f8fbff;
	box-shadow: var(--sp-shadow-air);
	color: var(--sp-ink);
}

.sp-hero-zoom__copy strong {
	max-width: 560px;
	color: var(--sp-ink);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 560;
	line-height: 1.16;
}

.sp-hero-zoom__copy {
	padding-left: 54px;
}

.sp-hero-zoom__eyebrow,
.sp-product-card__tag,
.sp-badge {
	background: var(--sp-blue-soft);
	color: var(--sp-primary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0;
}

.sp-hero-zoom__price {
	color: var(--sp-primary);
	font-weight: 560;
}

.sp-feature-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 22px;
}

.sp-feature-card {
	min-height: 108px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 20px;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: linear-gradient(180deg, #fff, #fbfdff);
	box-shadow: 0 12px 28px rgba(24, 86, 151, 0.055);
	color: var(--sp-text);
	transition: border-color 160ms var(--sp-ease), transform 160ms var(--sp-ease), box-shadow 160ms var(--sp-ease);
	content-visibility: auto;
	contain-intrinsic-size: 108px;
}

.sp-feature-card:hover {
	border-color: rgba(23, 115, 234, 0.28);
	box-shadow: var(--sp-shadow-hover);
	transform: translateY(-2px);
}

.sp-feature-card__icon {
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: var(--sp-blue-soft);
	color: var(--sp-primary);
}

.sp-feature-card__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sp-feature-card__body {
	display: grid;
	gap: 5px;
}

.sp-feature-card strong {
	color: var(--sp-ink);
	font-size: 14px;
	font-weight: 560;
	line-height: 1.35;
}

.sp-feature-card small {
	color: var(--sp-muted);
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.45;
}

.sp-brand-strip,
.sp-product-section,
.sp-related-products,
.sp-home-promo {
	content-visibility: auto;
	contain-intrinsic-size: 360px;
}

.sp-section-head {
	margin-bottom: 18px;
}

.sp-section-head h2 {
	font-size: clamp(20px, 2.2vw, 28px);
	line-height: 1.25;
}

.sp-section-head a {
	color: var(--sp-primary);
	font-size: 13.5px;
	font-weight: 500 !important;
}

.sp-product-card {
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(24, 86, 151, 0.055) !important;
	transition: border-color 160ms var(--sp-ease), box-shadow 160ms var(--sp-ease), transform 160ms var(--sp-ease);
}

.sp-product-card:hover {
	border-color: rgba(23, 115, 234, 0.26);
	box-shadow: var(--sp-shadow-hover) !important;
	transform: translateY(-2px);
}

.sp-product-card__tag {
	width: fit-content;
	min-height: 26px;
	display: inline-flex;
	align-items: center;
	margin: 12px 12px 0;
	padding: 0 10px;
	border-radius: 999px;
	text-transform: none;
}

.sp-product-card__image {
	min-height: 178px;
	padding: 18px 18px 8px;
	background: linear-gradient(180deg, #fff, #fbfdff);
}

.sp-product-card__image img {
	max-height: 150px;
	object-fit: contain;
}

.sp-product-card__body {
	padding: 14px 14px 16px;
}

.sp-product-card__price,
.price,
.sp-product-summary__price {
	color: var(--sp-primary);
	font-size: 19px;
	font-weight: 580 !important;
	line-height: 1.2;
}

.sp-product-card__monthly {
	color: var(--sp-muted);
	font-size: 11.5px;
	font-weight: 400;
}

.sp-product-card h3 {
	min-height: 40px;
	color: var(--sp-ink);
	font-size: 13.5px;
	font-weight: 500 !important;
	line-height: 1.45;
}

.sp-product-card__meta {
	color: var(--sp-muted);
	font-size: 11.5px;
	font-weight: 400;
}

.sp-product-card__actions {
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 9px;
	margin-top: 14px;
}

.sp-product-card__actions .sp-button,
.sp-product-card__actions .button,
.sp-product-card__actions .added_to_cart {
	width: 100%;
	max-width: none;
	min-height: 40px;
	font-size: 13px;
}

.sp-card-favorite,
.sp-product-favorite {
	color: #607086;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: #f8fbff;
	box-shadow: none;
	transition: background-color 160ms var(--sp-ease), border-color 160ms var(--sp-ease), color 160ms var(--sp-ease), transform 160ms var(--sp-ease);
}

.sp-card-favorite:hover,
.sp-product-favorite:hover,
.sp-card-favorite.is-active,
.sp-product-favorite.is-active {
	border-color: rgba(23, 115, 234, 0.26);
	background: var(--sp-blue-soft);
	color: var(--sp-primary);
	transform: translateY(-1px);
}

.sp-product-favorite {
	width: fit-content;
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 0 14px;
	font-size: 13px;
	font-weight: 500;
}

.sp-product-favorite.is-active .sp-heart-svg path {
	fill: currentColor;
	stroke: currentColor;
}

.sp-shop-hero {
	border-bottom: 1px solid var(--sp-border);
	background:
		linear-gradient(180deg, #fff 0, #f8fbff 100%),
		radial-gradient(circle at 80% 20%, rgba(23, 115, 234, 0.08), transparent 28%);
}

.sp-shop-hero__inner {
	align-items: center;
	gap: 30px;
	padding-block: 44px;
}

.sp-shop-hero h1 {
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 520 !important;
	line-height: 1.18;
}

.sp-shop-hero p,
.sp-shop-hero__desc {
	color: var(--sp-muted);
	font-size: 15px;
	font-weight: 400;
}

.sp-eyebrow {
	background: var(--sp-blue-soft);
	color: var(--sp-primary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0;
}

.sp-shop-layout {
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 24px;
	padding-top: 34px;
}

.sp-filter-card {
	padding: 22px;
	box-shadow: 0 12px 28px rgba(24, 86, 151, 0.055);
}

.sp-filter-card h2 {
	margin-bottom: 14px;
	font-size: 17px;
	font-weight: 520 !important;
}

.sp-filter-list a {
	color: var(--sp-text);
	font-size: 13px;
	font-weight: 430 !important;
}

.sp-filter-list a:hover,
.sp-filter-list a.is-active {
	background: var(--sp-blue-wash);
	color: var(--sp-primary);
}

.sp-shop-quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.sp-shop-quick-links a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid var(--sp-border);
	border-radius: 999px;
	background: #fff;
	color: var(--sp-text);
	font-size: 13px;
	font-weight: 500;
	box-shadow: 0 8px 18px rgba(24, 86, 151, 0.04);
	transition: background-color 160ms var(--sp-ease), border-color 160ms var(--sp-ease), color 160ms var(--sp-ease), transform 160ms var(--sp-ease);
}

.sp-shop-quick-links a:hover,
.sp-shop-quick-links a.is-active {
	border-color: rgba(23, 115, 234, 0.26);
	background: var(--sp-primary);
	color: #fff;
	transform: translateY(-1px);
}

.sp-shop-toolbar {
	color: var(--sp-muted);
	font-size: 13.5px;
}

.woocommerce-ordering select,
.sp-price-filter input {
	border-color: var(--sp-border);
	border-radius: 8px;
	color: var(--sp-text);
	font-weight: 400;
}

.sp-price-filter button {
	width: 100%;
}

.woocommerce-pagination a.page-numbers,
.woocommerce-pagination span.page-numbers {
	border-color: var(--sp-border);
	border-radius: 8px;
	color: var(--sp-text);
	font-weight: 500;
}

.woocommerce-pagination span.page-numbers.current,
.woocommerce-pagination a.page-numbers:hover {
	border-color: var(--sp-primary);
	background: var(--sp-primary);
}

.sp-product-page {
	padding-top: 34px;
}

.sp-breadcrumbs {
	color: var(--sp-muted);
	font-size: 13px;
}

.sp-product-main {
	gap: 34px;
	padding: 28px;
}

.sp-product-gallery__main,
.sp-product-gallery__thumbs img {
	border-color: var(--sp-border);
	border-radius: 8px;
	background: #fff;
}

.sp-product-summary h1 {
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 520 !important;
	line-height: 1.16;
}

.sp-product-summary__excerpt,
.sp-product-assurance,
.sp-product-tabs {
	color: var(--sp-muted);
	font-weight: 400;
}

.sp-product-assurance li {
	border-color: var(--sp-border);
	background: var(--sp-blue-wash);
	color: var(--sp-text);
	font-weight: 450;
}

.sp-product-tabs section {
	padding: 28px;
	box-shadow: 0 12px 28px rgba(24, 86, 151, 0.05);
}

.sp-favorites-panel__dialog {
	box-shadow: 0 24px 64px rgba(24, 86, 151, 0.18);
}

.sp-favorites-panel__head h2,
.sp-favorite-item__body a {
	font-weight: 560 !important;
}

@media (max-width: 1100px) {
	.sp-feature-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sp-shop-layout {
		grid-template-columns: 250px minmax(0, 1fr);
	}
}

@media (max-width: 860px) {
	.sp-container {
		width: min(calc(100% - 32px), var(--sp-container));
	}

	.sp-header-main__inner {
		min-height: auto;
		padding-block: 14px;
	}

	.sp-home-stage,
	.sp-shop-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.sp-home-categories {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sp-home-category {
		min-height: 46px;
	}

	.sp-home-category--more {
		display: none;
	}

	.sp-shop-sidebar {
		order: 2;
	}

	.sp-shop-content {
		order: 1;
	}
}

@media (max-width: 760px) {
	.sp-feature-strip {
		grid-template-columns: 1fr;
	}

	.sp-feature-card {
		min-height: 96px;
	}

	.sp-home-slider__track,
	.sp-hero-zoom {
		min-height: 300px;
		height: 300px;
	}

	.sp-hero-zoom {
		grid-template-columns: 1fr;
		padding: 22px;
	}

	.sp-hero-zoom__copy {
		grid-column: 1;
		padding-left: 0;
		padding-right: 0;
	}

	.sp-hero-zoom__copy strong {
		font-size: 27px;
	}

	.sp-product-card__image {
		min-height: 168px;
	}

	.sp-product-main {
		padding: 18px;
	}

	.sp-shop-quick-links {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 4px;
		scrollbar-width: none;
	}

	.sp-shop-quick-links::-webkit-scrollbar {
		display: none;
	}

	.sp-shop-quick-links a {
		white-space: nowrap;
	}
}

/* Final polish pass: visible carousel arrows, lifted badges, lighter SmartPlus card rhythm. */
:root {
	--sp-air-card: rgba(255, 255, 255, 0.94);
	--sp-air-border: #d8e8f9;
	--sp-air-shadow: 0 18px 44px rgba(21, 99, 188, 0.075);
	--sp-air-shadow-hover: 0 22px 52px rgba(21, 99, 188, 0.12);
}

.sp-product-section {
	padding-top: 58px !important;
}

.sp-section-head {
	margin-bottom: 24px !important;
}

.sp-section-head h2 {
	color: #203451 !important;
	font-size: clamp(22px, 2.1vw, 30px) !important;
	font-weight: 520 !important;
	line-height: 1.22;
}

.sp-section-head a {
	min-height: 34px;
	display: inline-flex;
	align-items: center;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(23, 115, 234, 0.07);
	color: var(--sp-primary) !important;
	font-size: 13px;
	font-weight: 520 !important;
	transition: background-color 160ms var(--sp-ease), color 160ms var(--sp-ease);
}

.sp-section-head a:hover {
	background: var(--sp-primary);
	color: #fff !important;
}

.sp-product-rail {
	isolation: isolate;
	padding-inline: 2px;
}

.sp-product-section--rail .sp-products-grid {
	grid-auto-columns: 205px !important;
	gap: 20px !important;
	padding: 6px 4px 26px !important;
}

.sp-product-card,
.products .product {
	position: relative;
	min-height: 370px;
	padding: 0 !important;
	border: 1px solid var(--sp-air-border) !important;
	border-radius: 10px !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96)) !important;
	box-shadow: 0 10px 28px rgba(21, 99, 188, 0.045) !important;
	overflow: hidden;
	transform: translateZ(0);
	transition: border-color 180ms var(--sp-ease), box-shadow 180ms var(--sp-ease), transform 180ms var(--sp-ease);
}

.sp-product-card:hover,
.products .product:hover {
	border-color: rgba(23, 115, 234, 0.32) !important;
	box-shadow: var(--sp-air-shadow-hover) !important;
	transform: translateY(-3px);
}

.sp-product-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 106px;
	background:
		radial-gradient(circle at 82% 8%, rgba(23, 115, 234, 0.12), transparent 34%),
		linear-gradient(180deg, #ffffff, #f7fbff);
	pointer-events: none;
}

.sp-product-card__tag {
	position: absolute !important;
	top: 14px !important;
	left: 14px !important;
	z-index: 4;
	min-height: 27px !important;
	margin: 0 !important;
	padding: 0 11px !important;
	border: 1px solid rgba(23, 115, 234, 0.15);
	border-radius: 999px !important;
	background: #eaf4ff !important;
	color: var(--sp-primary) !important;
	box-shadow: 0 8px 18px rgba(23, 115, 234, 0.12);
	font-size: 10.5px !important;
	font-weight: 560 !important;
	line-height: 1;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

.sp-product-card__image {
	position: relative;
	z-index: 1;
	height: 178px !important;
	min-height: 178px !important;
	display: grid;
	place-items: center !important;
	padding: 50px 18px 18px !important;
	background: transparent !important;
}

.sp-product-card__image img {
	width: 100%;
	height: 124px !important;
	max-height: 124px !important;
	object-fit: contain;
	filter: drop-shadow(0 12px 18px rgba(32, 52, 81, 0.08));
	transition: transform 180ms var(--sp-ease), filter 180ms var(--sp-ease);
}

.sp-product-card:hover .sp-product-card__image img {
	transform: translateY(-3px) scale(1.018) !important;
	filter: drop-shadow(0 16px 24px rgba(32, 52, 81, 0.12));
}

.sp-product-card__body {
	position: relative;
	z-index: 1;
	padding: 2px 18px 18px !important;
	gap: 5px !important;
}

.sp-product-card__price,
.price,
.sp-product-summary__price {
	color: var(--sp-primary) !important;
	font-size: 20px !important;
	font-weight: 560 !important;
	letter-spacing: 0;
}

.price del {
	color: #8a99ab !important;
	font-size: 13px !important;
	font-weight: 430 !important;
	text-decoration-thickness: 1.5px;
}

.price ins {
	color: var(--sp-primary) !important;
	font-weight: 560 !important;
}

.sp-product-card__monthly {
	color: #66809d !important;
	font-size: 11.5px !important;
	font-weight: 420 !important;
}

.sp-product-card h3 {
	min-height: 44px !important;
	margin-top: 2px !important;
	color: #243550 !important;
	font-size: 13.5px !important;
	font-weight: 470 !important;
	line-height: 1.45 !important;
}

.sp-product-card__actions {
	grid-template-columns: 40px minmax(0, 1fr) !important;
	gap: 9px !important;
	margin-top: 16px !important;
}

.sp-card-favorite {
	width: 40px !important;
	min-height: 40px !important;
	border-radius: 10px !important;
	background: #f5faff !important;
}

.sp-product-card__actions .sp-button,
.sp-product-card__actions .button,
.sp-product-card__actions .added_to_cart {
	min-height: 40px !important;
	border-radius: 10px !important;
	background: linear-gradient(135deg, var(--sp-primary), #2588ff) !important;
	font-size: 12.8px !important;
	font-weight: 540 !important;
	box-shadow: 0 10px 20px rgba(23, 115, 234, 0.18);
}

.sp-product-card__actions .sp-button:hover,
.sp-product-card__actions .button:hover,
.sp-product-card__actions .added_to_cart:hover {
	background: linear-gradient(135deg, var(--sp-primary-dark), var(--sp-primary)) !important;
	box-shadow: 0 12px 24px rgba(23, 115, 234, 0.24);
}

.sp-home-slider__arrow,
.sp-rail-arrow {
	width: 48px !important;
	height: 48px !important;
	display: grid;
	place-items: center;
	border: 3px solid rgba(255, 255, 255, 0.95) !important;
	border-radius: 50% !important;
	background:
		linear-gradient(145deg, #ffffff, #eef6ff) !important;
	box-shadow: 0 18px 38px rgba(26, 94, 176, 0.2) !important;
	opacity: 1 !important;
}

.sp-home-slider__arrow::before,
.sp-rail-arrow::before {
	top: 50% !important;
	width: 13px !important;
	height: 13px !important;
	border-top: 2.5px solid var(--sp-primary) !important;
	border-right: 2.5px solid var(--sp-primary) !important;
}

.sp-rail-arrow {
	top: 43% !important;
	z-index: 30 !important;
}

.sp-rail-arrow--prev {
	left: 14px !important;
	transform: translateY(-50%) !important;
}

.sp-rail-arrow--next {
	right: 14px !important;
	transform: translateY(-50%) !important;
}

.sp-rail-arrow--prev::before {
	left: 17px !important;
	transform: translateY(-50%) rotate(-135deg) !important;
}

.sp-rail-arrow--next::before {
	right: 17px !important;
	transform: translateY(-50%) rotate(45deg) !important;
}

.sp-home-slider__arrow:hover,
.sp-rail-arrow:hover {
	background: linear-gradient(145deg, var(--sp-primary), #2c91ff) !important;
	box-shadow: 0 20px 44px rgba(23, 115, 234, 0.28) !important;
}

.sp-home-slider__arrow:hover::before,
.sp-rail-arrow:hover::before {
	border-color: #fff !important;
}

.sp-rail-arrow--prev:hover,
.sp-rail-arrow--next:hover {
	transform: translateY(-50%) scale(1.05) !important;
}

.sp-home-slider__arrow--prev {
	left: 18px !important;
}

.sp-home-slider__arrow--next {
	right: 18px !important;
}

.sp-home-slider__arrow--prev::before {
	left: 17px !important;
	transform: translateY(-50%) rotate(-135deg) !important;
}

.sp-home-slider__arrow--next::before {
	right: 17px !important;
	transform: translateY(-50%) rotate(45deg) !important;
}

.sp-home-slider__dots {
	padding: 5px 7px !important;
	background: rgba(23, 115, 234, 0.1) !important;
	border: 1px solid rgba(23, 115, 234, 0.08);
}

.sp-home-slider__dots button {
	width: 28px;
	height: 5px;
	border-radius: 999px;
	background: rgba(23, 115, 234, 0.2) !important;
}

.sp-home-slider__dots button.is-active {
	width: 38px;
	background: var(--sp-primary) !important;
}

.sp-header-main,
.sp-shop-hero,
.sp-main {
	background-image:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 255, 0.8)),
		radial-gradient(circle at 12% 0%, rgba(23, 115, 234, 0.055), transparent 32%);
}

@media (max-width: 760px) {
	.sp-product-section--rail .sp-products-grid {
		grid-auto-columns: minmax(190px, 72vw) !important;
	}

	.sp-rail-arrow {
		top: 40% !important;
		width: 42px !important;
		height: 42px !important;
	}

	.sp-rail-arrow--prev {
		left: 8px !important;
	}

	.sp-rail-arrow--next {
		right: 8px !important;
	}

	.sp-product-card__image {
		height: 170px !important;
		min-height: 170px !important;
	}
}

/* Navigation and icon refresh: left-aligned mega menu, lighter type, coherent SmartPlus iconography. */
.sp-catalog-panel {
	position: absolute !important;
	inset-inline: 0 !important;
	top: 100% !important;
	padding: 16px 0 28px !important;
	background:
		linear-gradient(90deg, rgba(244, 250, 255, 0.96) 0, rgba(244, 250, 255, 0.9) 24%, rgba(244, 250, 255, 0.68) 100%) !important;
	backdrop-filter: blur(12px);
	box-shadow: 0 24px 54px rgba(28, 75, 130, 0.11) !important;
}

.sp-catalog-panel__inner {
	width: min(calc(100% - 48px), var(--sp-container)) !important;
	max-width: var(--sp-container) !important;
	display: block !important;
	margin-inline: auto !important;
}

.sp-mega {
	grid-column: auto !important;
	width: min(100%, 1060px) !important;
	min-height: 432px !important;
	grid-template-columns: 296px minmax(0, 1fr) !important;
	border: 1px solid rgba(166, 203, 243, 0.65) !important;
	border-radius: 12px !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.98)) !important;
	box-shadow: 0 24px 58px rgba(28, 75, 130, 0.13) !important;
	overflow: hidden;
}

.sp-mega__list {
	padding: 12px !important;
	border-right: 1px solid rgba(210, 228, 248, 0.95) !important;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.96));
}

.sp-mega__link {
	grid-template-columns: 38px minmax(0, 1fr) 14px !important;
	min-height: 48px !important;
	gap: 12px !important;
	padding: 7px 10px !important;
	border-radius: 10px !important;
	color: #40536f !important;
	font-size: 13.5px !important;
	font-weight: 460 !important;
	line-height: 1.35 !important;
	transition: background-color 150ms var(--sp-ease), color 150ms var(--sp-ease), transform 150ms var(--sp-ease);
}

.sp-mega__item:hover > .sp-mega__link,
.sp-mega__item.is-active > .sp-mega__link {
	background: linear-gradient(135deg, #eef7ff, #f8fbff) !important;
	color: var(--sp-primary) !important;
	transform: translateX(2px);
}

.sp-mega__thumb,
.sp-home-category__icon {
	width: 32px !important;
	height: 32px !important;
	display: grid !important;
	place-items: center !important;
	border: 1px solid rgba(23, 115, 234, 0.1);
	border-radius: 10px !important;
	background: linear-gradient(145deg, #ffffff, #eef6ff) !important;
	color: #607896;
	overflow: visible !important;
}

.sp-mega__link:hover .sp-mega__thumb,
.sp-mega__item.is-active .sp-mega__thumb,
.sp-home-category:hover .sp-home-category__icon {
	border-color: rgba(23, 115, 234, 0.22);
	background: linear-gradient(145deg, #e8f4ff, #ffffff) !important;
	color: var(--sp-primary);
}

.sp-mega__thumb img,
.sp-home-category__icon img {
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	object-fit: contain;
}

.sp-category-svg {
	width: 21px;
	height: 21px;
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sp-mega__link:not(.has-icon) .sp-mega__thumb::before,
.sp-home-category:not(.has-icon) .sp-home-category__icon::before {
	display: none !important;
}

.sp-mega__chevron {
	width: 8px !important;
	height: 8px !important;
	border-top-width: 1.8px !important;
	border-right-width: 1.8px !important;
	opacity: 0.68;
}

.sp-mega__flyout {
	left: 296px !important;
	padding: 30px 34px !important;
	background:
		radial-gradient(circle at 86% 14%, rgba(23, 115, 234, 0.06), transparent 30%),
		linear-gradient(180deg, #fff, #fbfdff) !important;
}

.sp-mega__flyout-head {
	margin-bottom: 18px !important;
}

.sp-mega__flyout-head h3 {
	color: #203451 !important;
	font-size: 21px !important;
	font-weight: 520 !important;
	line-height: 1.25;
}

.sp-mega__flyout-head a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: #edf6ff;
	color: var(--sp-primary);
	font-size: 13px;
	font-weight: 500;
}

.sp-mega__children {
	column-gap: 34px !important;
	row-gap: 8px !important;
}

.sp-mega__children a {
	min-height: 44px;
	align-items: center;
	padding: 10px 0 !important;
	border-bottom-color: rgba(215, 231, 248, 0.86) !important;
	color: #40536f !important;
	font-size: 13.5px !important;
	font-weight: 450 !important;
	line-height: 1.35;
}

.sp-mega__children a:hover {
	color: var(--sp-primary) !important;
}

.sp-mega__children a span {
	color: #8ca0b8;
	font-size: 12px;
	font-weight: 450;
}

.sp-home-category {
	grid-template-columns: 36px 1fr !important;
	min-height: 52px !important;
	color: #40536f !important;
	font-weight: 460 !important;
}

.sp-home-category:hover {
	color: var(--sp-primary) !important;
}

.sp-cart-svg,
.sp-heart-svg {
	width: 23px !important;
	height: 23px !important;
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
	overflow: visible;
}

.sp-heart-svg path {
	fill: transparent !important;
	stroke: currentColor !important;
	stroke-width: 1.75 !important;
}

.sp-cart-svg path {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sp-icon-link {
	min-width: 128px;
	min-height: 50px;
	gap: 10px !important;
	border: 1px solid rgba(192, 218, 247, 0.95) !important;
	border-radius: 12px !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96)) !important;
	color: #203451 !important;
	box-shadow: 0 12px 28px rgba(21, 99, 188, 0.07) !important;
}

.sp-icon-link__text {
	font-size: 13.2px !important;
	font-weight: 480 !important;
	color: inherit;
}

.sp-icon-link:hover {
	border-color: rgba(23, 115, 234, 0.28) !important;
	background: linear-gradient(180deg, #eef7ff, #ffffff) !important;
	color: var(--sp-primary) !important;
	box-shadow: 0 15px 34px rgba(21, 99, 188, 0.11) !important;
	transform: translateY(-1px);
}

.sp-icon-link--favorites.has-items .sp-heart-svg path,
.sp-mobile-favorites.has-items .sp-heart-svg path,
.sp-card-favorite.is-active .sp-heart-svg path,
.sp-product-favorite.is-active .sp-heart-svg path {
	fill: currentColor !important;
}

.sp-icon-link--favorites.has-items,
.sp-mobile-favorites.has-items,
.sp-card-favorite.is-active,
.sp-product-favorite.is-active {
	color: var(--sp-primary) !important;
}

.sp-cart-count,
.sp-favorites-count {
	top: -9px;
	right: 12px;
	min-width: 20px;
	height: 20px;
	border: 1px solid rgba(23, 115, 234, 0.2) !important;
	background: #fff !important;
	color: var(--sp-primary) !important;
	font-size: 11px !important;
	font-weight: 560 !important;
	box-shadow: 0 8px 16px rgba(23, 115, 234, 0.14);
}

.sp-sale-link {
	min-width: 50px;
	min-height: 50px;
	border-radius: 12px !important;
	background: linear-gradient(135deg, var(--sp-primary), #2d93ff) !important;
	box-shadow: 0 14px 30px rgba(23, 115, 234, 0.2);
}

.sp-catalog-toggle {
	min-height: 54px;
	border-radius: 12px !important;
	font-weight: 540 !important;
	box-shadow: 0 14px 30px rgba(23, 115, 234, 0.18);
}

.sp-catalog-toggle__icon {
	opacity: 0.94;
}

.sp-card-favorite {
	display: grid !important;
	place-items: center;
	color: #7890aa !important;
}

.sp-card-favorite:hover {
	color: var(--sp-primary) !important;
}

.sp-cart-svg--button {
	width: 21px !important;
	height: 21px !important;
	margin-right: 1px;
}

@media (max-width: 980px) {
	.sp-catalog-panel__inner {
		width: min(calc(100% - 28px), var(--sp-container)) !important;
	}

	.sp-mega {
		width: 100% !important;
		grid-template-columns: 280px minmax(0, 1fr) !important;
	}

	.sp-mega__flyout {
		left: 280px !important;
	}
}

@media (max-width: 760px) {
	.sp-catalog-panel {
		position: fixed !important;
		inset: 0 !important;
		top: 0 !important;
		padding: 92px 14px 20px !important;
		overflow-y: auto;
	}

	.sp-catalog-panel__inner {
		width: 100% !important;
	}

	.sp-mega {
		display: block !important;
		min-height: auto !important;
	}

	.sp-mega__flyout {
		position: static !important;
		display: none !important;
		padding: 14px 12px 18px !important;
	}

	.sp-mega__item.is-active > .sp-mega__flyout {
		display: block !important;
	}

	.sp-mega__children {
		grid-template-columns: 1fr !important;
	}

	.sp-icon-link {
		min-width: 48px;
	}
}

/* SmartPlus final UX pass: full container mega menu, softer pages, calm motion. */
:root {
	--sp-ink: #182b45;
	--sp-text: #42536b;
	--sp-muted: #8091a8;
	--sp-border: #dce9f7;
	--sp-page-bg: #f5faff;
	--sp-card: #ffffff;
	--sp-primary-soft: #eef7ff;
	--sp-surface-glow: 0 22px 60px rgba(23, 115, 234, 0.09);
	--sp-surface-hover: 0 28px 70px rgba(23, 115, 234, 0.13);
}

body {
	color: var(--sp-text) !important;
	background:
		linear-gradient(180deg, #ffffff 0, #f8fcff 280px, var(--sp-page-bg) 100%) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sp-logo,
.custom-logo-link,
.sp-section-head h2,
.sp-shop-hero h1,
.sp-page__header h1,
.sp-product-summary h1,
.sp-product-tabs h2 {
	color: var(--sp-ink) !important;
	font-weight: 520 !important;
}

.sp-menu--top a,
.sp-catalog-toggle,
.sp-icon-link,
.sp-icon-link__text,
.sp-sale-link,
.sp-mega__link,
.sp-mega__children a,
.sp-home-category,
.sp-filter-list a,
.sp-product-card h3,
.sp-product-card__monthly,
.woocommerce-result-count,
.woocommerce-ordering select {
	font-weight: 450 !important;
}

.sp-catalog-panel {
	padding: 12px 0 34px !important;
	background:
		linear-gradient(180deg, rgba(248, 252, 255, 0.96), rgba(242, 249, 255, 0.86)) !important;
	border-top: 1px solid rgba(220, 233, 247, 0.88);
	box-shadow: 0 32px 80px rgba(23, 72, 128, 0.13) !important;
}

.sp-catalog-panel__inner {
	width: min(calc(100% - 48px), var(--sp-container)) !important;
	max-width: var(--sp-container) !important;
	display: block !important;
	margin-inline: auto !important;
}

.sp-catalog-panel.is-open .sp-mega {
	animation: spMegaReveal 190ms var(--sp-ease) both;
}

.sp-mega {
	grid-column: 1 / -1 !important;
	width: 100% !important;
	max-width: none !important;
	min-height: 476px !important;
	grid-template-columns: minmax(300px, 328px) minmax(0, 1fr) !important;
	border: 1px solid rgba(178, 210, 244, 0.9) !important;
	border-radius: 14px !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 253, 255, 0.98)) !important;
	box-shadow: var(--sp-surface-glow) !important;
}

.sp-mega__list {
	padding: 14px !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.98)) !important;
	border-right-color: rgba(214, 229, 246, 0.95) !important;
}

.sp-mega__link {
	grid-template-columns: 40px minmax(0, 1fr) 16px !important;
	min-height: 52px !important;
	padding: 8px 10px !important;
	border-radius: 12px !important;
	color: #50627c !important;
	font-size: 13.8px !important;
	line-height: 1.36 !important;
}

.sp-mega__item:hover > .sp-mega__link,
.sp-mega__item.is-active > .sp-mega__link {
	background:
		linear-gradient(135deg, rgba(232, 244, 255, 0.98), rgba(248, 252, 255, 0.98)) !important;
	color: var(--sp-primary) !important;
	transform: translateX(3px);
}

.sp-mega__thumb {
	width: 34px !important;
	height: 34px !important;
	border-radius: 11px !important;
	border-color: rgba(23, 115, 234, 0.13) !important;
	background:
		linear-gradient(145deg, #ffffff, #eef7ff) !important;
	color: #69819f !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
	transition: color 160ms var(--sp-ease), border-color 160ms var(--sp-ease), background 160ms var(--sp-ease), transform 160ms var(--sp-ease);
}

.sp-mega__item:hover .sp-mega__thumb,
.sp-mega__item.is-active .sp-mega__thumb {
	border-color: rgba(23, 115, 234, 0.28) !important;
	background: linear-gradient(145deg, #e8f4ff, #ffffff) !important;
	color: var(--sp-primary) !important;
	transform: scale(1.04);
}

.sp-mega__flyout {
	left: clamp(300px, 28%, 328px) !important;
	right: 0 !important;
	padding: 36px 42px !important;
	background:
		radial-gradient(circle at 84% 14%, rgba(23, 115, 234, 0.075), transparent 28%),
		linear-gradient(180deg, #ffffff 0, #fbfdff 100%) !important;
}

.sp-mega__flyout-head {
	margin-bottom: 24px !important;
}

.sp-mega__flyout-head h3 {
	font-size: clamp(22px, 2vw, 28px) !important;
	font-weight: 520 !important;
	line-height: 1.18 !important;
}

.sp-mega__flyout-head a,
.sp-section-head a {
	background: rgba(23, 115, 234, 0.075) !important;
	color: var(--sp-primary) !important;
	font-weight: 480 !important;
	box-shadow: inset 0 0 0 1px rgba(23, 115, 234, 0.06);
	transition: background-color 160ms var(--sp-ease), color 160ms var(--sp-ease), transform 160ms var(--sp-ease);
}

.sp-mega__flyout-head a:hover,
.sp-section-head a:hover {
	background: var(--sp-primary) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.sp-mega__children {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	column-gap: 38px !important;
	row-gap: 6px !important;
}

.sp-mega__children a {
	position: relative;
	min-height: 48px;
	padding: 11px 0 12px 14px !important;
	border-bottom-color: rgba(214, 229, 246, 0.86) !important;
	color: #4b5f7a !important;
	font-size: 13.6px !important;
	line-height: 1.34 !important;
	transition: color 150ms var(--sp-ease), transform 150ms var(--sp-ease), border-color 150ms var(--sp-ease);
}

.sp-mega__children a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border-radius: 999px;
	background: rgba(23, 115, 234, 0.28);
	transform: translateY(-50%) scale(0.72);
	transition: background-color 150ms var(--sp-ease), transform 150ms var(--sp-ease);
}

.sp-mega__children a:hover {
	border-bottom-color: rgba(23, 115, 234, 0.2) !important;
	color: var(--sp-primary) !important;
	transform: translateX(3px);
}

.sp-mega__children a:hover::before {
	background: var(--sp-primary);
	transform: translateY(-50%) scale(1);
}

.sp-home-categories,
.sp-filter-card,
.sp-shop-toolbar,
.sp-shop-hero__inner,
.sp-page__header,
.sp-page-sidebar,
.sp-page__content,
.sp-product-main,
.sp-product-gallery__main,
.sp-product-summary,
.sp-product-tabs section,
.woocommerce-cart-form,
.cart-collaterals,
.checkout,
.woocommerce-checkout-review-order {
	border: 1px solid rgba(220, 233, 247, 0.96) !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 255, 0.96)) !important;
	box-shadow: 0 16px 42px rgba(23, 88, 164, 0.055) !important;
}

.sp-shop-hero {
	padding: 48px 0 44px !important;
	background:
		radial-gradient(circle at 14% 0, rgba(23, 115, 234, 0.08), transparent 34%),
		linear-gradient(180deg, #ffffff, #f6fbff) !important;
}

.sp-shop-hero__inner,
.sp-page__header {
	position: relative;
	overflow: hidden;
	border-radius: 16px !important;
}

.sp-shop-hero__inner {
	min-width: 0;
	padding: clamp(26px, 3vw, 42px) clamp(26px, 4vw, 46px) !important;
}

.sp-shop-hero__inner::after,
.sp-page__header::after {
	content: "";
	position: absolute;
	inset: auto 24px 18px auto;
	width: 128px;
	height: 128px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(23, 115, 234, 0.105), transparent 68%);
	pointer-events: none;
}

.sp-shop-hero h1,
.sp-page__header h1 {
	font-size: clamp(30px, 3vw, 42px) !important;
	line-height: 1.16 !important;
}

.sp-shop-hero p,
.sp-shop-hero__desc,
.sp-page__header p,
.sp-page__content,
.sp-product-summary__excerpt,
.sp-product-assurance,
.sp-product-tabs {
	color: #53667f !important;
}

.sp-page {
	padding-top: 38px !important;
}

.sp-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
	color: #8294aa !important;
	font-size: 13px !important;
	font-weight: 430 !important;
}

.sp-breadcrumbs a {
	color: #52667f !important;
	transition: color 150ms var(--sp-ease);
}

.sp-breadcrumbs a:hover {
	color: var(--sp-primary) !important;
}

.sp-page-layout {
	margin-top: 28px;
}

.sp-page-sidebar {
	border-radius: 14px !important;
	overflow: hidden;
}

.sp-page-sidebar h2 {
	color: var(--sp-ink) !important;
	font-size: 15px !important;
	font-weight: 520 !important;
}

.sp-page-sidebar a {
	color: #52667f !important;
	font-weight: 440 !important;
	transition: background-color 150ms var(--sp-ease), color 150ms var(--sp-ease), transform 150ms var(--sp-ease);
}

.sp-page-sidebar a:hover,
.sp-page-sidebar a.is-active {
	background: #eef7ff !important;
	color: var(--sp-primary) !important;
	transform: translateX(3px);
}

.sp-page__content {
	border-radius: 16px !important;
	padding: clamp(24px, 3vw, 40px) !important;
	line-height: 1.78 !important;
}

.sp-page__content h2,
.sp-page__content h3 {
	font-weight: 520 !important;
	color: var(--sp-ink) !important;
}

.sp-page__content a {
	color: var(--sp-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.sp-product-page {
	padding-top: 36px !important;
}

.sp-hero-zoom__copy strong {
	max-width: 500px !important;
	font-size: clamp(28px, 3vw, 42px) !important;
	font-weight: 500 !important;
	line-height: 1.12 !important;
}

.sp-home-categories {
	scrollbar-width: thin;
	scrollbar-color: rgba(23, 115, 234, 0.28) transparent;
}

.sp-home-categories::-webkit-scrollbar {
	width: 6px;
}

.sp-home-categories::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(23, 115, 234, 0.22);
}

.sp-product-main {
	border-radius: 18px !important;
	padding: clamp(22px, 3vw, 38px) !important;
	gap: clamp(24px, 4vw, 50px) !important;
}

.sp-product-gallery__main {
	border-radius: 16px !important;
	overflow: hidden;
}

.sp-product-gallery__main img,
.sp-product-card__image img {
	transition: transform 220ms var(--sp-ease), filter 220ms var(--sp-ease);
}

.sp-product-gallery__main:hover img {
	transform: scale(1.025);
}

.sp-product-summary h1 {
	font-size: clamp(30px, 3.25vw, 44px) !important;
	line-height: 1.14 !important;
}

.sp-product-summary__price,
.sp-product-card__price,
.price {
	color: var(--sp-primary) !important;
	font-weight: 560 !important;
}

.sp-product-assurance li {
	border-color: rgba(220, 233, 247, 0.95) !important;
	background: #f6fbff !important;
	border-radius: 12px !important;
	transition: border-color 150ms var(--sp-ease), transform 150ms var(--sp-ease), background-color 150ms var(--sp-ease);
}

.sp-product-assurance li:hover {
	border-color: rgba(23, 115, 234, 0.25) !important;
	background: #eef7ff !important;
	transform: translateY(-1px);
}

.sp-product-tabs {
	gap: 22px !important;
}

.sp-product-tabs section {
	border-radius: 16px !important;
	padding: clamp(22px, 2.6vw, 34px) !important;
}

.sp-product-card,
.products .product {
	border-radius: 14px !important;
}

.sp-product-card:hover,
.products .product:hover {
	border-color: rgba(23, 115, 234, 0.28) !important;
	box-shadow: var(--sp-surface-hover) !important;
	transform: translateY(-3px);
}

.sp-product-card:hover .sp-product-card__image img,
.products .product:hover .sp-product-card__image img {
	transform: translateY(-3px) scale(1.03);
}

.sp-product-card__tag,
.onsale,
.sp-badge {
	top: 18px !important;
	padding: 5px 12px !important;
	border-radius: 999px !important;
	background: #eaf4ff !important;
	color: var(--sp-primary) !important;
	border: 1px solid rgba(23, 115, 234, 0.14);
	box-shadow: 0 10px 20px rgba(23, 115, 234, 0.08);
	font-size: 11px !important;
	font-weight: 520 !important;
}

.sp-home-slider__arrow,
.sp-rail-arrow {
	border-width: 1px !important;
	border-color: rgba(199, 224, 250, 0.98) !important;
	background: rgba(255, 255, 255, 0.98) !important;
	box-shadow: 0 18px 42px rgba(23, 88, 164, 0.14) !important;
	color: var(--sp-primary) !important;
}

.sp-product-rail {
	overflow: visible !important;
	margin-inline: -8px;
	padding-inline: 8px;
}

.sp-product-section--rail .sp-products-grid {
	padding-inline: 18px !important;
	scroll-padding-inline: 18px;
}

.sp-rail-arrow {
	top: 38% !important;
	z-index: 50 !important;
}

.sp-rail-arrow--prev {
	left: 10px !important;
}

.sp-rail-arrow--next {
	right: 10px !important;
}

.sp-home-slider__arrow:hover,
.sp-rail-arrow:hover {
	background: var(--sp-primary) !important;
	color: #fff !important;
	transform: translateY(-50%) scale(1.04) !important;
}

.sp-home-slider__arrow:hover::before,
.sp-rail-arrow:hover::before {
	border-color: #fff !important;
}

.sp-card-favorite,
.sp-product-favorite,
.sp-icon-link {
	transition: border-color 160ms var(--sp-ease), background-color 160ms var(--sp-ease), color 160ms var(--sp-ease), box-shadow 160ms var(--sp-ease), transform 160ms var(--sp-ease);
}

.sp-card-favorite:hover,
.sp-product-favorite:hover,
.sp-icon-link:hover {
	transform: translateY(-2px);
}

.sp-card-favorite .sp-heart-svg,
.sp-product-favorite .sp-heart-svg,
.sp-icon-link--favorites .sp-heart-svg {
	width: 21px !important;
	height: 21px !important;
}

.woocommerce table.shop_table {
	border-collapse: separate !important;
	border-spacing: 0 !important;
	border: 1px solid rgba(220, 233, 247, 0.96) !important;
	border-radius: 14px !important;
	overflow: hidden;
	background: #fff !important;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: rgba(220, 233, 247, 0.9) !important;
	color: #42536b !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce input.input-text,
.woocommerce select,
.woocommerce textarea {
	min-height: 46px;
	border: 1px solid rgba(207, 226, 246, 0.96) !important;
	border-radius: 12px !important;
	background: #fff !important;
	color: #334861 !important;
	box-shadow: none !important;
	transition: border-color 150ms var(--sp-ease), box-shadow 150ms var(--sp-ease);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce input.input-text:focus,
.woocommerce select:focus,
.woocommerce textarea:focus {
	border-color: rgba(23, 115, 234, 0.5) !important;
	box-shadow: 0 0 0 4px rgba(23, 115, 234, 0.09) !important;
	outline: 0;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.checkout-button,
.sp-button,
.button,
.added_to_cart {
	border-radius: 12px !important;
	font-weight: 520 !important;
	transition: background-color 160ms var(--sp-ease), color 160ms var(--sp-ease), box-shadow 160ms var(--sp-ease), transform 160ms var(--sp-ease);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.checkout-button:hover,
.sp-button:hover,
.button:hover,
.added_to_cart:hover {
	transform: translateY(-2px);
}

@keyframes spMegaReveal {
	from {
		opacity: 0;
		transform: translateY(-8px) scale(0.992);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes spSurfaceRise {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.sp-shop-hero__inner,
	.sp-page__header,
	.sp-page__content,
	.sp-page-sidebar,
	.sp-product-main,
	.sp-product-tabs section,
	.sp-filter-card,
	.sp-shop-toolbar {
		animation: spSurfaceRise 280ms var(--sp-ease) both;
	}

	.sp-product-tabs section:nth-child(2),
	.sp-filter-card:nth-child(2) {
		animation-delay: 45ms;
	}
}

@media (max-width: 1180px) {
	.sp-mega {
		grid-template-columns: 294px minmax(0, 1fr) !important;
	}

	.sp-mega__flyout {
		left: 294px !important;
		padding-inline: 30px !important;
	}

	.sp-mega__children {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		column-gap: 28px !important;
	}
}

@media (max-width: 980px) {
	.sp-catalog-panel__inner {
		width: min(calc(100% - 28px), var(--sp-container)) !important;
	}

	.sp-mega {
		grid-template-columns: 280px minmax(0, 1fr) !important;
	}

	.sp-mega__flyout {
		left: 280px !important;
	}

	.sp-mega__children {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 760px) {
	.sp-catalog-panel {
		padding: 86px 14px 20px !important;
		background: rgba(246, 251, 255, 0.98) !important;
	}

	.sp-mega {
		border-radius: 16px !important;
		min-height: auto !important;
	}

	.sp-mega__list {
		border-right: 0 !important;
	}

	.sp-mega__link {
		min-height: 50px !important;
	}

	.sp-mega__flyout {
		left: auto !important;
		padding: 12px 14px 18px 58px !important;
		background: #f8fcff !important;
	}

	.sp-mega__children {
		grid-template-columns: 1fr !important;
	}

	.sp-shop-hero {
		padding: 30px 0 28px !important;
	}

	.sp-page__content,
	.sp-product-tabs section {
		padding: 22px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sp-catalog-panel.is-open .sp-mega,
	.sp-shop-hero__inner,
	.sp-page__header,
	.sp-page__content,
	.sp-page-sidebar,
	.sp-product-main,
	.sp-product-tabs section,
	.sp-filter-card,
	.sp-shop-toolbar,
	.sp-mega__link,
	.sp-mega__thumb,
	.sp-mega__children a,
	.sp-product-card,
	.products .product,
	.sp-product-gallery__main img,
	.sp-product-card__image img,
	.sp-home-slider__arrow,
	.sp-rail-arrow,
	.sp-button,
	.button,
	.added_to_cart {
		animation: none !important;
		transition: none !important;
	}
}

/* Interaction fixes: click-only catalog, clean topbar hover, refined phone icon. */
.sp-home-category--more {
	display: none !important;
}

.sp-home-categories {
	scrollbar-width: none !important;
	-ms-overflow-style: none;
}

.sp-home-categories::-webkit-scrollbar {
	width: 0 !important;
	height: 0 !important;
	display: none !important;
}

.sp-topbar__phone {
	gap: 12px !important;
	font-weight: 520 !important;
	transition: opacity 150ms var(--sp-ease), transform 150ms var(--sp-ease);
}

.sp-topbar__phone:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.sp-topbar__phone .sp-icon-phone {
	position: relative;
	width: 28px !important;
	height: 28px !important;
	flex: 0 0 28px;
	border: 1px solid rgba(255, 255, 255, 0.58) !important;
	border-radius: 9px !important;
	background: rgba(255, 255, 255, 0.12) !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
	color: #fff;
}

.sp-topbar__phone .sp-icon-phone::before {
	content: "";
	position: absolute;
	left: 9px;
	top: 6px;
	width: 10px;
	height: 16px;
	border: 1.7px solid currentColor;
	border-radius: 3px;
	background:
		linear-gradient(currentColor, currentColor) center 3px / 4px 1px no-repeat;
	transform: none;
}

.sp-topbar__phone .sp-icon-phone::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 7px;
	width: 2.8px;
	height: 2.8px;
	border-radius: 50%;
	background: currentColor;
	transform: translateX(-50%);
}

.sp-menu--top a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 4px;
	border-radius: 0 !important;
	background: transparent !important;
	color: rgba(255, 255, 255, 0.88) !important;
	opacity: 1 !important;
	transition: color 150ms var(--sp-ease), transform 150ms var(--sp-ease);
}

.sp-menu--top a::after {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 4px;
	height: 2px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	transition: left 170ms var(--sp-ease), right 170ms var(--sp-ease), opacity 170ms var(--sp-ease);
	opacity: 0;
}

.sp-menu--top a:hover,
.sp-menu--top a:focus-visible {
	background: transparent !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.sp-menu--top a:hover::after,
.sp-menu--top a:focus-visible::after {
	left: 8px;
	right: 8px;
	opacity: 1;
}

.sp-catalog-toggle:hover,
.sp-catalog-toggle:focus-visible {
	background: linear-gradient(135deg, var(--sp-primary-dark), var(--sp-primary)) !important;
	box-shadow: 0 16px 34px rgba(23, 115, 234, 0.22) !important;
	transform: translateY(-1px);
}

.sp-catalog-toggle[aria-expanded="true"] {
	background: linear-gradient(135deg, var(--sp-primary-dark), #2d8fff) !important;
	box-shadow: 0 18px 40px rgba(23, 115, 234, 0.26) !important;
}

.sp-catalog-toggle[aria-expanded="true"] .sp-catalog-toggle__icon {
	transform: scale(0.96);
}

.sp-eyebrow a {
	display: inline-flex;
	align-items: center;
	color: inherit;
	transition: color 150ms var(--sp-ease), transform 150ms var(--sp-ease);
}

.sp-eyebrow a:hover,
.sp-eyebrow a:focus-visible {
	color: var(--sp-primary);
	transform: translateY(-1px);
}

/* Category management polish: all categories stay reachable without stretching the page. */
.sp-mega {
	height: clamp(500px, 72vh, 680px) !important;
	min-height: 0 !important;
}

.sp-mega__list,
.sp-mega__flyout,
.sp-home-categories {
	overscroll-behavior: contain;
	scrollbar-width: thin !important;
	scrollbar-color: rgba(23, 115, 234, 0.34) transparent !important;
}

.sp-mega__list {
	min-height: 0;
	max-height: 100%;
	overflow-y: auto;
}

.sp-mega__flyout {
	overflow-y: auto;
}

.sp-mega__list::-webkit-scrollbar,
.sp-mega__flyout::-webkit-scrollbar,
.sp-home-categories::-webkit-scrollbar {
	width: 6px !important;
	height: 6px !important;
	display: block !important;
}

.sp-mega__list::-webkit-scrollbar-button,
.sp-mega__flyout::-webkit-scrollbar-button,
.sp-home-categories::-webkit-scrollbar-button {
	display: none !important;
	width: 0 !important;
	height: 0 !important;
}

.sp-mega__list::-webkit-scrollbar-thumb,
.sp-mega__flyout::-webkit-scrollbar-thumb,
.sp-home-categories::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(23, 115, 234, 0.26);
}

.sp-mega__list::-webkit-scrollbar-track,
.sp-mega__flyout::-webkit-scrollbar-track,
.sp-home-categories::-webkit-scrollbar-track {
	background: transparent;
}

@media (max-width: 760px) {
	.sp-mega {
		height: auto !important;
	}

	.sp-mega__list,
	.sp-mega__flyout {
		max-height: none;
		overflow: visible;
	}
}

/* Mega menu scroll breathing room. */
.sp-mega__list {
	padding: 20px 18px 20px 20px !important;
	scroll-padding-block: 20px;
}

.sp-mega__flyout {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
	scroll-padding-block: 20px;
}

.sp-mega__list::-webkit-scrollbar-track,
.sp-mega__flyout::-webkit-scrollbar-track {
	margin-block: 20px !important;
}

.sp-mega__list::-webkit-scrollbar-thumb,
.sp-mega__flyout::-webkit-scrollbar-thumb {
	min-height: 44px;
}

@media (max-width: 760px) {
	.sp-mega__list {
		padding: 14px !important;
	}

	.sp-mega__flyout {
		padding-top: 12px !important;
		padding-bottom: 18px !important;
	}
}

/* Filter/archive stability: keep controls inside the boxed layout at every zoom level. */
.sp-site-header,
.sp-topbar,
.sp-header-main,
.sp-shop-hero,
.sp-main {
	width: 100%;
	max-width: 100%;
}

.sp-header-main__inner {
	grid-template-columns: minmax(190px, 220px) minmax(168px, 196px) minmax(280px, 1fr) auto !important;
	gap: clamp(12px, 1.3vw, 20px) !important;
	min-width: 0;
}

.sp-header-main__inner > *,
.sp-shop-hero__inner > *,
.sp-shop-content,
.sp-shop-toolbar,
.sp-header-search,
.sp-search--shop {
	min-width: 0;
}

.sp-header-search,
.sp-search--shop {
	width: 100%;
	max-width: 100%;
}

.sp-header-actions {
	justify-content: flex-end;
	gap: 12px !important;
	min-width: 0;
}

.sp-icon-link {
	padding-inline: 14px !important;
}

.sp-sale-link {
	flex: 0 0 52px;
	width: 52px !important;
	height: 52px !important;
}

.sp-shop-hero__inner {
	grid-template-columns: minmax(0, 1fr) minmax(280px, min(42vw, 520px)) !important;
	align-items: center !important;
}

.sp-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

.woocommerce-ordering {
	margin-left: auto;
}

.woocommerce-ordering select {
	max-width: min(100%, 240px);
}

@media (max-width: 1180px) {
	.sp-header-main__inner {
		grid-template-columns: minmax(170px, 220px) minmax(54px, 172px) minmax(240px, 1fr) auto !important;
	}

	.sp-icon-link {
		width: 52px !important;
		min-width: 52px !important;
		padding-inline: 0 !important;
	}

	.sp-icon-link__text {
		display: none !important;
	}

	.sp-header-actions {
		gap: 10px !important;
	}
}

@media (max-width: 980px) {
	.sp-header-main__inner {
		grid-template-columns: minmax(0, 1fr) auto auto !important;
		grid-template-areas:
			"logo catalog actions"
			"search search search";
		row-gap: 14px !important;
		padding-block: 14px !important;
	}

	.sp-logo,
	.custom-logo-link {
		grid-area: logo;
	}

	.sp-catalog-toggle {
		grid-area: catalog;
	}

	.sp-header-actions {
		grid-area: actions;
	}

	.sp-header-search {
		grid-area: search;
	}

	.sp-shop-hero__inner {
		grid-template-columns: 1fr !important;
	}

	.sp-search--shop {
		justify-self: stretch;
	}
}

@media (max-width: 760px) {
	.sp-container,
	.sp-container.sp-shop-layout,
	.sp-shop-hero .sp-container {
		width: min(calc(100vw - 28px), var(--sp-container)) !important;
		max-width: calc(100vw - 28px) !important;
	}

	.sp-header-main__inner {
		width: min(100%, calc(100vw - 28px)) !important;
		max-width: calc(100vw - 28px) !important;
		margin-left: auto !important;
		margin-right: auto !important;
		grid-template-columns: repeat(5, minmax(36px, 40px)) !important;
		grid-template-areas: none !important;
		justify-content: space-between;
		gap: 0 !important;
		padding-block: 10px !important;
	}

	.sp-logo,
	.custom-logo-link,
	.sp-catalog-toggle,
	.sp-header-search {
		grid-area: auto;
	}

	.sp-header-actions {
		display: none !important;
	}

	.sp-header-search {
		width: 40px !important;
		max-width: 40px !important;
		min-height: 40px !important;
		grid-template-columns: 40px !important;
	}

	.sp-header-search input,
	.sp-header-search input[type="hidden"] {
		display: none !important;
	}

	.sp-shop-hero__inner {
		overflow: hidden;
		padding-inline: 18px !important;
	}

	.sp-search--shop {
		grid-template-columns: minmax(0, 1fr) 44px !important;
		overflow: hidden;
	}

	.sp-search--shop button {
		width: 40px !important;
		min-width: 40px !important;
	}

	.sp-shop-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.woocommerce-ordering,
	.woocommerce-ordering select {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
	}
}

/* Mobile production pass: stable, light, and fully bounded layouts. */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

img,
svg,
video,
canvas {
	max-width: 100%;
}

.sp-eyebrow a {
	display: inline-flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.woocommerce-pagination {
	width: 100%;
	margin-top: 34px;
}

.woocommerce-pagination ul.page-numbers {
	display: flex !important;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-pagination ul.page-numbers li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
	min-width: 40px;
	height: 40px;
	display: inline-grid;
	place-items: center;
	border: 1px solid rgba(23, 115, 234, 0.16);
	border-radius: 14px;
	background: #fff;
	color: var(--sp-ink);
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 12px 26px rgba(23, 115, 234, 0.08);
	transition: background-color 160ms var(--sp-ease), color 160ms var(--sp-ease), transform 160ms var(--sp-ease);
}

.woocommerce-pagination .page-numbers a:hover,
.woocommerce-pagination .page-numbers .current {
	background: var(--sp-primary);
	color: #fff;
	transform: translateY(-1px);
}

@media (max-width: 760px) {
	:root {
		--sp-mobile-gutter: 14px;
	}

	body {
		background:
			linear-gradient(180deg, #ffffff 0, #f7fbff 260px, var(--sp-page-bg) 100%) !important;
		color: #22324a;
	}

	body.admin-bar .sp-header-main {
		top: 46px;
	}

	.sp-container,
	.sp-container.sp-home-stage,
	.sp-container.sp-shop-layout,
	.sp-product-page,
	.sp-page,
	.sp-footer__inner,
	.sp-footer__bottom,
	.sp-shop-hero .sp-container,
	.sp-catalog-panel__inner {
		width: calc(100vw - (var(--sp-mobile-gutter) * 2)) !important;
		max-width: calc(100vw - (var(--sp-mobile-gutter) * 2)) !important;
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.sp-topbar {
		display: none !important;
	}

	.sp-header-main {
		position: sticky;
		top: 0;
		z-index: 90;
		background: rgba(255, 255, 255, 0.96);
		border-bottom: 1px solid rgba(23, 115, 234, 0.14);
		box-shadow: 0 14px 38px rgba(23, 115, 234, 0.08);
		backdrop-filter: blur(18px);
	}

	.sp-header-main__inner {
		width: calc(100vw - 20px) !important;
		max-width: calc(100vw - 20px) !important;
		min-height: 64px !important;
		display: grid !important;
		grid-template-columns: 44px minmax(0, 1fr) 44px 44px 44px !important;
		grid-template-areas: none !important;
		align-items: center !important;
		gap: 8px !important;
		margin-right: auto !important;
		margin-left: auto !important;
		padding: 10px 0 !important;
	}

	.sp-header-main__inner > * {
		min-width: 0;
	}

	.sp-catalog-toggle,
	.sp-header-search,
	.sp-mobile-favorites,
	.sp-mobile-cart {
		width: 44px !important;
		min-width: 44px !important;
		height: 44px !important;
		min-height: 44px !important;
		display: grid !important;
		place-items: center !important;
		padding: 0 !important;
		border: 1px solid rgba(23, 115, 234, 0.18) !important;
		border-radius: 15px !important;
		background: #fff !important;
		color: #22324a !important;
		box-shadow: 0 10px 24px rgba(23, 115, 234, 0.08) !important;
	}

	.sp-catalog-toggle {
		order: 1;
		background: linear-gradient(135deg, #1773ea, #2f91ff) !important;
		color: #fff !important;
	}

	.sp-logo,
	.custom-logo-link {
		order: 2;
		width: 100% !important;
		max-width: 100% !important;
		display: inline-flex !important;
		align-items: center;
		gap: 9px;
		overflow: hidden;
		color: #22324a;
		font-size: 19px !important;
		line-height: 1;
		white-space: nowrap;
	}

	.sp-logo-mark {
		width: 38px !important;
		height: 38px !important;
		flex: 0 0 38px;
		border-radius: 13px;
		font-size: 15px !important;
		box-shadow: 0 12px 28px rgba(23, 115, 234, 0.18);
	}

	.sp-logo-text {
		display: inline-block !important;
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		font-weight: 600 !important;
		letter-spacing: 0;
	}

	.custom-logo-link img {
		width: auto !important;
		max-width: 160px !important;
		max-height: 42px !important;
		object-fit: contain;
	}

	.sp-header-search {
		order: 3;
		position: relative;
		grid-template-columns: 44px !important;
		overflow: visible !important;
	}

	.sp-mobile-favorites {
		order: 4;
	}

	.sp-mobile-cart {
		order: 5;
	}

	.sp-header-actions {
		display: none !important;
	}

	.sp-catalog-toggle__label {
		position: absolute !important;
		width: 1px !important;
		height: 1px !important;
		overflow: hidden !important;
		clip: rect(0, 0, 0, 0) !important;
	}

	.sp-catalog-toggle__icon {
		width: 22px !important;
		height: 22px !important;
		background:
			linear-gradient(currentColor, currentColor) 2px 4px / 7px 7px no-repeat,
			linear-gradient(currentColor, currentColor) 13px 4px / 7px 7px no-repeat,
			linear-gradient(currentColor, currentColor) 2px 15px / 7px 7px no-repeat,
			linear-gradient(currentColor, currentColor) 13px 15px / 7px 7px no-repeat !important;
		border-radius: 0 !important;
	}

	.sp-catalog-toggle__icon::before,
	.sp-catalog-toggle__icon::after {
		display: none !important;
	}

	.sp-header-search input[type="search"],
	.sp-header-search input[type="hidden"] {
		display: none !important;
	}

	.sp-header-search button {
		grid-column: 1 !important;
		width: 44px !important;
		height: 44px !important;
		min-width: 44px !important;
		border-radius: inherit !important;
		background: transparent !important;
		color: var(--sp-primary) !important;
	}

	.sp-header-search.is-open {
		position: absolute !important;
		inset-inline: 0 !important;
		top: calc(100% + 8px) !important;
		z-index: 120;
		width: calc(100vw - 20px) !important;
		max-width: calc(100vw - 20px) !important;
		height: 54px !important;
		grid-template-columns: minmax(0, 1fr) 48px !important;
		background: #fff !important;
		border-radius: 18px !important;
		box-shadow: 0 18px 42px rgba(23, 115, 234, 0.18) !important;
	}

	.sp-header-search.is-open input[type="search"] {
		display: block !important;
		width: 100% !important;
		min-width: 0;
		height: 100%;
		padding: 0 16px !important;
		border: 0 !important;
		background: transparent !important;
		color: #22324a;
	}

	.sp-header-search.is-open input[type="hidden"] {
		display: none !important;
	}

	.sp-header-search.is-open button {
		grid-column: 2 !important;
		width: 48px !important;
		height: 48px !important;
		margin: 3px !important;
		background: var(--sp-primary) !important;
		color: #fff !important;
		border-radius: 15px !important;
	}

	.sp-cart-count,
	.sp-favorites-count {
		top: -9px !important;
		right: -7px !important;
		min-width: 19px;
		height: 19px;
		display: grid;
		font-size: 11px;
		font-weight: 700;
	}

	.sp-mobile-cart .sp-cart-count {
		display: grid !important;
	}

	.sp-main {
		min-width: 0;
		overflow: hidden;
	}

	.sp-catalog-panel {
		position: fixed !important;
		inset: 64px 0 0 !important;
		z-index: 80;
		padding: 12px 0 18px !important;
		background: rgba(245, 250, 255, 0.94) !important;
		overflow-y: auto !important;
		backdrop-filter: blur(16px);
	}

	body.admin-bar .sp-catalog-panel {
		inset-top: 110px !important;
	}

	.sp-catalog-panel__inner {
		display: block !important;
	}

	.sp-mega {
		width: 100% !important;
		max-width: 100% !important;
		max-height: calc(100dvh - 102px);
		min-height: 0 !important;
		display: grid !important;
		grid-template-columns: 1fr !important;
		border-radius: 18px !important;
		overflow: hidden !important;
		background: rgba(255, 255, 255, 0.98) !important;
		border: 1px solid rgba(23, 115, 234, 0.18) !important;
		box-shadow: 0 24px 60px rgba(23, 115, 234, 0.16) !important;
	}

	.sp-mega__list {
		max-height: min(58dvh, 520px) !important;
		overflow-y: auto !important;
		overscroll-behavior: contain;
		padding: 20px 14px !important;
		border: 0 !important;
		scroll-padding-block: 20px;
	}

	.sp-mega__list::-webkit-scrollbar-track {
		margin-block: 20px !important;
	}

	.sp-mega__link {
		grid-template-columns: 42px minmax(0, 1fr) 18px !important;
		min-height: 58px !important;
		gap: 12px !important;
		padding: 8px 10px !important;
		border-radius: 15px !important;
		color: #536984 !important;
		font-size: 15px !important;
		line-height: 1.25 !important;
		font-weight: 500 !important;
	}

	.sp-mega__thumb {
		width: 40px !important;
		height: 40px !important;
		border-radius: 13px !important;
	}

	.sp-mega__chevron {
		position: static !important;
		width: 10px !important;
		height: 10px !important;
		justify-self: end;
	}

	.sp-mega__item:hover > .sp-mega__link,
	.sp-mega__item.is-active > .sp-mega__link {
		background: #eef7ff !important;
		color: var(--sp-primary) !important;
	}

	.sp-mega__flyout {
		position: static !important;
		display: none !important;
		max-height: none !important;
		padding: 12px 6px 18px 58px !important;
		overflow: visible !important;
		border: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
	}

	.sp-mega__item.is-active > .sp-mega__flyout {
		display: block !important;
	}

	.sp-mega__flyout-head {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 12px !important;
		margin: 0 0 10px !important;
	}

	.sp-mega__flyout-head h3 {
		font-size: 18px !important;
		line-height: 1.2 !important;
		font-weight: 600 !important;
	}

	.sp-mega__children {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 6px !important;
	}

	.sp-mega__children a {
		min-height: 40px !important;
		padding: 8px 0 !important;
		font-size: 14px !important;
		font-weight: 500 !important;
	}

	.sp-home-stage {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 16px !important;
		padding-top: 16px !important;
	}

	.sp-home-slider {
		order: 1;
		width: 100%;
		min-width: 0;
	}

	.sp-home-categories {
		order: 2;
		display: grid !important;
		grid-template-columns: 1fr !important;
		max-height: 390px;
		overflow-y: auto;
		border-radius: 18px !important;
		background: rgba(255, 255, 255, 0.94);
		border: 1px solid rgba(23, 115, 234, 0.16);
		box-shadow: 0 18px 46px rgba(23, 115, 234, 0.09);
	}

	.sp-home-category {
		min-height: 56px !important;
		grid-template-columns: 42px minmax(0, 1fr) !important;
		gap: 12px !important;
		padding: 8px 14px !important;
		color: #536984 !important;
		font-weight: 500 !important;
	}

	.sp-home-category:hover,
	.sp-home-category:focus-visible {
		background: #eef7ff !important;
		color: var(--sp-primary) !important;
	}

	.sp-home-category__icon {
		width: 38px !important;
		height: 38px !important;
		border-radius: 13px !important;
	}

	.sp-home-slider__track,
	.sp-hero-zoom,
	.sp-hero-zoom--image {
		width: 100% !important;
		min-height: 338px !important;
		height: 338px !important;
		border-radius: 18px !important;
	}

	.sp-hero-zoom,
	.sp-hero-zoom--image {
		position: relative !important;
		display: block !important;
		padding: 24px 20px !important;
		overflow: hidden !important;
	}

	.sp-hero-zoom::before {
		opacity: 0.74;
	}

	.sp-hero-zoom__copy,
	.sp-hero-zoom--image .sp-hero-zoom__copy {
		position: relative;
		z-index: 2;
		max-width: 76% !important;
		display: grid !important;
		justify-items: start;
		gap: 12px !important;
		padding: 0 !important;
		transform: none !important;
		text-align: left !important;
	}

	.sp-hero-zoom__copy strong {
		max-width: 100%;
		font-size: clamp(27px, 8vw, 34px) !important;
		line-height: 1.08 !important;
		font-weight: 600 !important;
		letter-spacing: 0 !important;
	}

	.sp-hero-zoom__price {
		font-size: 28px !important;
		font-weight: 500 !important;
	}

	.sp-hero-zoom__media,
	.sp-hero-zoom--image .sp-hero-zoom__media {
		position: absolute !important;
		right: -2px !important;
		bottom: 50px !important;
		z-index: 1;
		width: 56% !important;
		max-width: 230px !important;
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 8px !important;
		padding: 0 !important;
		transform: none !important;
		opacity: 0.96;
	}

	.sp-hero-zoom__media span:nth-child(n+3) {
		display: none !important;
	}

	.sp-hero-zoom__media span {
		width: 100% !important;
		aspect-ratio: 1;
		padding: 8px !important;
		border-radius: 16px !important;
		background: rgba(255, 255, 255, 0.88) !important;
		box-shadow: 0 16px 32px rgba(23, 115, 234, 0.08) !important;
	}

	.sp-home-slider__arrow {
		display: none !important;
	}

	.sp-home-slider__dots {
		bottom: 16px !important;
	}

	.sp-feature-strip,
	.sp-brand-strip {
		width: calc(100vw - 28px) !important;
		max-width: calc(100vw - 28px) !important;
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.sp-feature-strip {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 12px !important;
		margin-top: 16px !important;
	}

	.sp-feature-card {
		min-height: 96px !important;
		padding: 16px !important;
		border-radius: 16px !important;
	}

	.sp-brand-strip {
		display: flex !important;
		gap: 12px !important;
		overflow-x: auto;
		padding-bottom: 8px !important;
		scroll-snap-type: x mandatory;
	}

	.sp-brand-strip__item {
		flex: 0 0 46%;
		min-height: 78px !important;
		border-radius: 16px !important;
		scroll-snap-align: start;
	}

	.sp-product-section,
	.sp-related-products {
		width: calc(100vw - 28px) !important;
		max-width: calc(100vw - 28px) !important;
		margin: 30px auto 0 !important;
	}

	.sp-section-head {
		display: flex !important;
		align-items: flex-end !important;
		justify-content: space-between !important;
		gap: 12px !important;
		margin-bottom: 14px !important;
	}

	.sp-section-head h2 {
		font-size: clamp(23px, 7vw, 30px) !important;
		line-height: 1.15 !important;
		font-weight: 600 !important;
	}

	.sp-section-head a {
		flex: 0 0 auto;
		font-size: 13px !important;
	}

	.sp-product-rail {
		width: 100% !important;
		min-width: 0 !important;
		overflow: visible !important;
	}

	.sp-product-section--rail .sp-products-grid {
		display: grid !important;
		grid-auto-flow: column;
		grid-auto-columns: minmax(178px, 64vw);
		grid-template-columns: none !important;
		gap: 12px !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		padding: 0 0 14px !important;
		scroll-snap-type: x mandatory;
	}

	.sp-product-section--rail .sp-product-card {
		scroll-snap-align: start;
	}

	.sp-rail-arrow {
		display: none !important;
	}

	.sp-shop-hero {
		padding: 18px 0 16px !important;
	}

	.sp-shop-hero__inner {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 18px !important;
		padding: 24px 18px !important;
		border-radius: 18px !important;
		overflow: hidden !important;
	}

	.sp-shop-hero h1,
	.sp-page__header h1 {
		font-size: clamp(31px, 9vw, 42px) !important;
		line-height: 1.12 !important;
		font-weight: 560 !important;
		overflow-wrap: anywhere;
	}

	.sp-page__header h1 {
		font-size: clamp(28px, 8vw, 36px) !important;
		line-height: 1.16 !important;
	}

	.sp-shop-hero p,
	.sp-shop-hero__desc,
	.sp-page__header p {
		max-width: 100% !important;
		font-size: 15px !important;
		line-height: 1.75 !important;
	}

	.sp-search--shop {
		width: 100% !important;
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 48px !important;
		border-radius: 16px !important;
		overflow: hidden !important;
	}

	.sp-search--shop input[type="search"] {
		min-width: 0 !important;
		padding: 0 14px !important;
	}

	.sp-search--shop button {
		width: 48px !important;
		min-width: 48px !important;
		border-radius: 14px !important;
	}

	.sp-shop-layout {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 18px !important;
		padding: 22px 0 44px !important;
	}

	.sp-shop-content {
		order: 1 !important;
		min-width: 0 !important;
	}

	.sp-shop-sidebar {
		order: 2 !important;
		min-width: 0 !important;
	}

	.sp-shop-quick-links {
		display: flex !important;
		align-items: center;
		gap: 8px !important;
		overflow-x: auto;
		padding: 0 0 10px !important;
		margin: 0 0 12px !important;
		scroll-snap-type: x mandatory;
	}

	.sp-shop-quick-links a {
		flex: 0 0 auto;
		min-height: 42px;
		padding: 0 15px !important;
		border-radius: 999px !important;
		font-size: 13px !important;
		font-weight: 600 !important;
		scroll-snap-align: start;
	}

	.sp-shop-toolbar {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 10px !important;
		align-items: stretch !important;
		margin: 0 0 16px !important;
	}

	.sp-shop-toolbar > div {
		font-size: 14px !important;
		color: #66768c !important;
	}

	.woocommerce-ordering,
	.woocommerce-ordering select {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
	}

	.woocommerce-ordering select {
		min-height: 48px !important;
		border-radius: 15px !important;
	}

	.sp-shop-content .sp-products-grid,
	.woocommerce .sp-shop-content .products {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
	}

	.sp-product-card,
	.products .product.sp-product-card {
		min-width: 0 !important;
		min-height: 0 !important;
		padding: 12px !important;
		border-radius: 16px !important;
		background: rgba(255, 255, 255, 0.96) !important;
		box-shadow: 0 14px 34px rgba(23, 115, 234, 0.08) !important;
	}

	.sp-product-card__tag {
		top: 12px !important;
		left: 12px !important;
		height: 28px !important;
		padding: 0 12px !important;
		border-radius: 999px !important;
		font-size: 11px !important;
		font-weight: 700 !important;
	}

	.sp-product-card__image {
		width: 100% !important;
		min-height: 132px !important;
		height: 132px !important;
		margin: 0 !important;
		border-radius: 14px !important;
	}

	.sp-product-card__image img {
		max-height: 112px !important;
		object-fit: contain !important;
	}

	.sp-product-card__body {
		padding: 12px 0 0 !important;
	}

	.sp-product-card__price {
		font-size: 20px !important;
		line-height: 1.2 !important;
		font-weight: 600 !important;
	}

	.sp-product-card__monthly {
		margin-top: 4px !important;
		font-size: 12px !important;
		line-height: 1.35 !important;
	}

	.sp-product-card h3 {
		min-height: 40px !important;
		margin-top: 8px !important;
		font-size: 13px !important;
		line-height: 1.35 !important;
		font-weight: 500 !important;
	}

	.sp-product-card__meta {
		display: none !important;
	}

	.sp-product-card__actions {
		display: grid !important;
		grid-template-columns: 40px minmax(0, 1fr) !important;
		gap: 8px !important;
		margin-top: 12px !important;
	}

	.sp-card-favorite {
		width: 40px !important;
		height: 40px !important;
		border-radius: 13px !important;
	}

	.sp-product-card__actions .sp-button,
	.sp-product-card__actions .button,
	.sp-product-card__actions .added_to_cart {
		width: 100% !important;
		min-width: 0 !important;
		min-height: 40px !important;
		padding: 0 8px !important;
		border-radius: 13px !important;
		font-size: 12px !important;
		font-weight: 600 !important;
		gap: 5px !important;
	}

	.sp-product-card__actions .sp-cart-svg,
	.sp-product-card__actions .sp-cart-svg--button {
		width: 18px !important;
		height: 18px !important;
	}

	.sp-filter-card {
		padding: 16px !important;
		border-radius: 18px !important;
	}

	.sp-filter-card h2 {
		font-size: 20px !important;
		font-weight: 600 !important;
	}

	.sp-filter-list {
		max-height: 330px;
		overflow-y: auto;
		padding-right: 4px;
	}

	.sp-filter-list a {
		min-height: 48px !important;
		padding: 10px 0 !important;
		font-size: 14px !important;
	}

	.sp-price-filter__fields {
		grid-template-columns: 1fr 1fr !important;
		gap: 10px !important;
	}

	.sp-price-filter input {
		min-width: 0;
	}

	.sp-breadcrumbs {
		width: calc(100vw - 28px) !important;
		max-width: calc(100vw - 28px) !important;
		overflow-x: auto;
		white-space: nowrap;
		padding: 12px 0 !important;
	}

	.sp-product-page {
		padding-top: 14px !important;
		padding-bottom: 38px !important;
	}

	.sp-product-main {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 16px !important;
		padding: 16px !important;
		border-radius: 18px !important;
	}

	.sp-product-gallery__main {
		min-height: 280px !important;
		height: auto !important;
		border-radius: 16px !important;
	}

	.sp-product-gallery__main img {
		max-height: 260px !important;
		object-fit: contain !important;
	}

	.sp-product-gallery__thumbs {
		display: flex !important;
		gap: 10px !important;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.sp-product-gallery__thumbs img {
		flex: 0 0 64px;
		width: 64px !important;
		height: 64px !important;
	}

	.sp-product-summary {
		padding: 16px 10px 18px !important;
		gap: 12px !important;
	}

	.sp-product-summary h1 {
		font-size: clamp(29px, 9vw, 40px) !important;
		line-height: 1.12 !important;
		font-weight: 600 !important;
	}

	.sp-product-summary__price {
		font-size: 30px !important;
		font-weight: 600 !important;
	}

	.sp-product-favorite {
		width: 100% !important;
		justify-content: center !important;
		min-height: 46px !important;
		border-radius: 14px !important;
	}

	.sp-product-summary__cart .cart,
	.sp-product-summary__cart form.cart {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 10px !important;
	}

	.sp-product-summary__cart .quantity,
	.sp-product-summary__cart .quantity input,
	.sp-product-summary__cart .single_add_to_cart_button,
	.sp-product-summary__cart select {
		width: 100% !important;
		min-height: 46px !important;
		border-radius: 14px !important;
	}

	.sp-product-assurance {
		grid-template-columns: 1fr !important;
		gap: 8px !important;
	}

	.sp-product-tabs {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 14px !important;
		margin-top: 18px !important;
	}

	.sp-product-tabs > section {
		padding: 18px !important;
		border-radius: 18px !important;
	}

	.sp-page {
		padding-top: 18px !important;
		padding-bottom: 42px !important;
	}

	.sp-page__header {
		padding: 24px 18px !important;
		border-radius: 18px !important;
		overflow: hidden !important;
	}

	.sp-page-layout,
	.sp-page-layout.has-sidebar {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}

	.sp-page__content {
		order: 1;
		padding: 18px !important;
		border-radius: 18px !important;
		font-size: 15px !important;
		line-height: 1.8 !important;
	}

	.sp-page-sidebar {
		order: 2;
		padding: 14px !important;
		border-radius: 18px !important;
	}

	.woocommerce-cart-form,
	.cart-collaterals,
	.cart_totals,
	.woocommerce-checkout,
	.woocommerce-checkout #customer_details,
	.woocommerce-checkout #order_review,
	.woocommerce-checkout-review-order {
		width: 100% !important;
		max-width: 100% !important;
	}

	.woocommerce table.shop_table {
		display: block;
		width: 100% !important;
		overflow-x: auto;
		border-radius: 16px !important;
	}

	.woocommerce form .form-row,
	.woocommerce-checkout .col2-set .col-1,
	.woocommerce-checkout .col2-set .col-2 {
		width: 100% !important;
		float: none !important;
	}

	.woocommerce input.input-text,
	.woocommerce textarea,
	.woocommerce select {
		min-height: 46px !important;
		border-radius: 14px !important;
	}

	.sp-empty,
	.cart-empty,
	.return-to-shop {
		width: 100% !important;
		max-width: 100% !important;
	}

	.sp-footer {
		padding-top: 34px !important;
	}

	.sp-footer__inner {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 22px !important;
	}

	.sp-footer__brand,
	.sp-footer__col {
		min-width: 0 !important;
	}

	.sp-footer__bottom {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 10px !important;
		padding: 18px 0 !important;
		text-align: left !important;
	}

	.sp-back-to-top {
		justify-self: start;
	}
}

@media (max-width: 420px) {
	.sp-header-main__inner {
		grid-template-columns: 44px minmax(0, 1fr) 42px 42px 42px !important;
		gap: 6px !important;
	}

	.sp-catalog-toggle,
	.sp-header-search,
	.sp-mobile-favorites,
	.sp-mobile-cart {
		width: 42px !important;
		min-width: 42px !important;
		height: 42px !important;
		min-height: 42px !important;
	}

	.sp-logo,
	.custom-logo-link {
		font-size: 17px !important;
	}

	.sp-logo-mark {
		width: 36px !important;
		height: 36px !important;
		flex-basis: 36px;
	}

	.custom-logo-link img {
		max-width: 138px !important;
	}

	.sp-shop-content .sp-products-grid,
	.woocommerce .sp-shop-content .products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}

	.sp-product-card {
		padding: 10px !important;
	}

	.sp-product-card__image {
		min-height: 122px !important;
		height: 122px !important;
	}

	.sp-product-card__image img {
		max-height: 104px !important;
	}

	.sp-product-card__actions {
		grid-template-columns: 38px minmax(0, 1fr) !important;
		gap: 7px !important;
	}

	.sp-card-favorite {
		width: 38px !important;
		height: 38px !important;
	}

	.sp-product-card__actions .sp-button,
	.sp-product-card__actions .button,
	.sp-product-card__actions .added_to_cart {
		min-height: 38px !important;
		font-size: 11px !important;
	}
}

@media (max-width: 360px) {
	.sp-logo-text {
		display: none !important;
	}

	.sp-shop-content .sp-products-grid,
	.woocommerce .sp-shop-content .products {
		grid-template-columns: 1fr !important;
	}
}

/* Shop filter polish: price controls first, softer spacing, and brand-aligned surfaces. */
.sp-shop-layout {
	gap: clamp(26px, 2.2vw, 34px) !important;
	align-items: start !important;
	padding-top: 42px !important;
}

.sp-shop-sidebar {
	display: flex !important;
	flex-direction: column !important;
	gap: 16px !important;
	align-self: start !important;
}

.sp-filter-card,
.sp-filter-widget {
	margin-bottom: 0 !important;
}

.sp-filter-card--price {
	order: -1;
	padding: 20px !important;
	border-color: rgba(23, 115, 234, 0.18) !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.98)) !important;
	box-shadow: 0 18px 46px rgba(23, 115, 234, 0.1) !important;
}

.sp-filter-card--price h2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px !important;
	color: var(--sp-ink) !important;
}

.sp-filter-card--price h2::after {
	content: "₾";
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: rgba(23, 115, 234, 0.1);
	color: var(--sp-primary);
	font-size: 17px;
	font-weight: 900;
}

.sp-price-filter {
	gap: 14px !important;
}

.sp-price-filter__fields {
	gap: 10px !important;
}

.sp-price-filter label {
	gap: 7px !important;
	font-size: 12px !important;
	color: #6b7d93 !important;
}

.sp-price-filter input {
	min-height: 46px !important;
	border-radius: 14px !important;
	border-color: rgba(23, 115, 234, 0.18) !important;
	background: #fff !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sp-price-filter input:focus {
	border-color: rgba(23, 115, 234, 0.48) !important;
	box-shadow: 0 0 0 4px rgba(23, 115, 234, 0.11) !important;
	outline: 0;
}

.sp-price-filter .sp-button {
	min-height: 46px !important;
	border-radius: 14px !important;
	box-shadow: 0 14px 30px rgba(23, 115, 234, 0.2) !important;
}

.sp-filter-card--categories {
	padding: 20px 16px 16px !important;
}

.sp-filter-list {
	display: grid !important;
	gap: 6px !important;
}

.sp-filter-list a {
	min-height: 42px !important;
	padding: 0 10px !important;
	border-bottom: 0 !important;
	border-radius: 12px !important;
}

.sp-filter-list small {
	min-width: 28px;
	height: 24px;
	display: inline-grid;
	place-items: center;
	border-radius: 999px;
	background: #eef7ff;
	color: var(--sp-primary);
	font-size: 11px;
	font-weight: 800;
}

.sp-filter-list a:hover small,
.sp-filter-list a.is-active small {
	background: #fff;
}

.sp-shop-toolbar {
	margin-bottom: 24px !important;
	padding: 14px 14px 14px 18px !important;
	border-radius: 18px !important;
	border-color: rgba(23, 115, 234, 0.15) !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.98)) !important;
}

.sp-shop-toolbar > div {
	padding-left: 2px;
	color: #66768c !important;
}

.sp-shop-content .sp-products-grid,
.woocommerce .sp-shop-content .products {
	padding: 4px 4px 0 !important;
	gap: 34px 30px !important;
}

@media (max-width: 760px) {
	.sp-shop-layout {
		padding-top: 24px !important;
	}

	.sp-shop-sidebar {
		gap: 14px !important;
	}

	.sp-filter-card--price,
	.sp-filter-card--categories {
		padding: 18px !important;
	}

	.sp-shop-toolbar {
		padding: 14px !important;
		border-radius: 18px !important;
	}

	.sp-shop-content .sp-products-grid,
	.woocommerce .sp-shop-content .products {
		padding: 0 !important;
		gap: 12px !important;
	}
}

/* Cart redesign: compact branded checkout surface. */
body.woocommerce-cart .sp-page {
	padding-top: 30px !important;
	padding-bottom: 64px !important;
}

body.woocommerce-cart .sp-page__header {
	max-width: none !important;
	margin-bottom: 22px !important;
	padding: 24px 30px !important;
	border-radius: 22px !important;
	background:
		radial-gradient(circle at 92% 18%, rgba(23, 115, 234, 0.13), transparent 26%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98)) !important;
}

body.woocommerce-cart .sp-page__header h1 {
	margin: 0 !important;
	font-size: clamp(28px, 3vw, 40px) !important;
	line-height: 1.08 !important;
}

body.woocommerce-cart .sp-page__content {
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.woocommerce-cart .woocommerce {
	display: grid !important;
	width: 100% !important;
	max-width: 100% !important;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
	gap: 22px;
	align-items: start;
	overflow: hidden;
}

body.woocommerce-cart .woocommerce::before,
body.woocommerce-cart .woocommerce::after,
body.woocommerce-cart .cart-collaterals::before,
body.woocommerce-cart .cart-collaterals::after {
	content: none !important;
	display: none !important;
}

body.woocommerce-cart .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 18px !important;
	padding: 16px 18px !important;
	border: 1px solid rgba(23, 115, 234, 0.16) !important;
	border-radius: 18px !important;
	background: rgba(255, 255, 255, 0.96) !important;
	color: #63748a !important;
	overflow-wrap: anywhere;
	box-shadow: 0 14px 34px rgba(23, 88, 164, 0.06) !important;
}

body.woocommerce-cart .woocommerce-message .button,
body.woocommerce-cart .woocommerce-info .button {
	margin-left: auto !important;
}

body.woocommerce-cart .woocommerce-cart-form {
	box-sizing: border-box;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 18px !important;
	border-radius: 24px !important;
	border: 1px solid rgba(220, 233, 247, 0.96) !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 255, 0.98)) !important;
	box-shadow: 0 18px 48px rgba(23, 88, 164, 0.075) !important;
}

body.woocommerce-cart table.cart.shop_table {
	display: block !important;
	width: 100% !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	overflow: visible !important;
}

body.woocommerce-cart table.cart thead {
	display: none !important;
}

body.woocommerce-cart table.cart tbody {
	display: grid !important;
	width: 100% !important;
	gap: 14px;
}

body.woocommerce-cart table.cart tr.cart_item {
	display: grid !important;
	box-sizing: border-box;
	width: 100% !important;
	grid-template-columns: 34px 86px minmax(0, 1fr) 92px 150px 96px;
	gap: 14px;
	align-items: center;
	padding: 14px !important;
	border: 1px solid rgba(207, 226, 246, 0.9);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(23, 88, 164, 0.055);
}

body.woocommerce-cart table.cart tr:not(.cart_item) {
	display: block !important;
}

body.woocommerce-cart table.cart th,
body.woocommerce-cart table.cart td {
	min-width: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

body.woocommerce-cart table.shop_table_responsive tr td::before {
	display: none !important;
	content: none !important;
}

body.woocommerce-cart td.product-remove {
	justify-self: center;
}

body.woocommerce-cart td.product-remove a.remove {
	display: inline-grid !important;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: #fff5f5;
	color: #e04545 !important;
	font-size: 22px;
	line-height: 1;
	text-decoration: none !important;
	transition: background-color 160ms var(--sp-ease), color 160ms var(--sp-ease), transform 160ms var(--sp-ease);
}

body.woocommerce-cart td.product-remove a.remove:hover {
	background: #e04545;
	color: #fff !important;
	transform: translateY(-1px);
}

body.woocommerce-cart td.product-thumbnail a {
	display: grid;
	place-items: center;
	width: 86px;
	height: 86px;
	border-radius: 18px;
	background: #f6fbff;
	border: 1px solid rgba(220, 233, 247, 0.92);
	overflow: hidden;
}

body.woocommerce-cart td.product-thumbnail img {
	width: 72px !important;
	height: 72px !important;
	object-fit: contain;
}

body.woocommerce-cart td.product-name a {
	display: block;
	color: var(--sp-ink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
	text-decoration: none;
	overflow-wrap: anywhere;
}

body.woocommerce-cart td.product-name a:hover {
	color: var(--sp-primary);
}

body.woocommerce-cart td.product-price,
body.woocommerce-cart td.product-subtotal {
	color: #63748a !important;
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
}

body.woocommerce-cart td.product-subtotal {
	color: var(--sp-primary) !important;
	font-size: 16px;
	text-align: right;
}

body.woocommerce-cart td.product-quantity .quantity {
	display: flex;
	justify-content: center;
}

body.woocommerce-cart td.product-quantity .qty {
	width: 88px !important;
	min-height: 42px !important;
	border-radius: 14px !important;
	text-align: center;
	font-weight: 800;
}

body.woocommerce-cart td.actions {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding-top: 4px !important;
}

body.woocommerce-cart td.actions .coupon {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	max-width: 480px;
}

body.woocommerce-cart td.actions .coupon .input-text {
	min-height: 46px !important;
	border-radius: 15px !important;
}

body.woocommerce-cart td.actions .button,
body.woocommerce-cart td.actions button.button {
	min-height: 46px !important;
	padding: 0 18px !important;
	border-radius: 15px !important;
}

body.woocommerce-cart td.actions > .button {
	justify-self: end;
}

body.woocommerce-cart .cart-collaterals {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
	position: sticky;
	top: 118px;
	float: none !important;
	width: 100% !important;
	padding: 22px !important;
	border: 1px solid rgba(23, 115, 234, 0.16);
	border-radius: 24px;
	background:
		radial-gradient(circle at 88% 8%, rgba(23, 115, 234, 0.13), transparent 28%),
		linear-gradient(180deg, #fff, #f7fbff);
	box-shadow: 0 22px 56px rgba(23, 88, 164, 0.12);
}

body.woocommerce-cart .cart_totals h2 {
	margin: 0 0 16px;
	color: var(--sp-ink);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.2;
}

body.woocommerce-cart .cart_totals table.shop_table {
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

body.woocommerce-cart .cart_totals table.shop_table tr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 0;
	border-bottom: 1px solid rgba(220, 233, 247, 0.9);
}

body.woocommerce-cart .cart_totals table.shop_table tr:last-child {
	border-bottom: 0;
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
	padding: 0 !important;
	border: 0 !important;
	color: #62758d !important;
	font-size: 14px;
}

body.woocommerce-cart .cart_totals table.shop_table td {
	text-align: right;
	font-weight: 850;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td,
body.woocommerce-cart .cart_totals .order-total .amount {
	color: var(--sp-primary) !important;
	font-size: 19px;
}

body.woocommerce-cart .wc-proceed-to-checkout {
	padding: 18px 0 0 !important;
}

body.woocommerce-cart .checkout-button {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	min-height: 54px !important;
	border-radius: 17px !important;
	background: linear-gradient(180deg, #2f86f6 0%, var(--sp-primary) 100%) !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	box-shadow: 0 18px 38px rgba(23, 115, 234, 0.24) !important;
}

body.woocommerce-cart .checkout-button:hover {
	box-shadow: 0 22px 46px rgba(23, 115, 234, 0.3) !important;
}

body.woocommerce-cart .cart-empty,
body.woocommerce-cart .return-to-shop {
	margin: 0 !important;
}

body.woocommerce-cart .cart-empty.woocommerce-info {
	border: 1px solid rgba(23, 115, 234, 0.18) !important;
	border-radius: 24px !important;
	background: linear-gradient(180deg, #fff, #f7fbff) !important;
	color: #53667f !important;
	padding: 28px !important;
	box-shadow: 0 18px 48px rgba(23, 88, 164, 0.08) !important;
}

body.woocommerce-cart .return-to-shop {
	margin-top: 14px !important;
}

body.woocommerce-cart .return-to-shop .button {
	min-height: 48px !important;
	padding: 0 22px !important;
	border-radius: 16px !important;
}

@media (max-width: 980px) {
	body.woocommerce-cart .woocommerce {
		grid-template-columns: 1fr;
	}

	body.woocommerce-cart .cart-collaterals .cart_totals {
		position: static;
	}
}

@media (max-width: 760px) {
	body.woocommerce-cart .sp-page {
		padding-top: 18px !important;
	}

	body.woocommerce-cart .sp-container.sp-page {
		width: calc(100vw - 28px) !important;
		max-width: calc(100vw - 28px) !important;
		overflow: hidden;
	}

	body.woocommerce-cart .sp-page__header {
		padding: 22px 18px !important;
		border-radius: 18px !important;
	}

	body.woocommerce-cart .woocommerce-cart-form {
		padding: 14px !important;
		border-radius: 20px !important;
	}

	body.woocommerce-cart table.cart tr.cart_item {
		grid-template-columns: 64px minmax(0, 1fr);
		grid-template-areas:
			"thumb name"
			"price price"
			"qty qty"
			"subtotal subtotal"
			"remove remove";
		gap: 10px 12px;
		padding: 12px !important;
		border-radius: 18px;
	}

	body.woocommerce-cart td.product-remove {
		grid-area: remove;
		position: static;
		justify-self: stretch;
	}

	body.woocommerce-cart td.product-remove a.remove {
		width: 100%;
		height: 38px;
		font-size: 0;
		border: 1px solid rgba(224, 69, 69, 0.14);
	}

	body.woocommerce-cart td.product-remove a.remove::after {
		content: "წაშლა";
		font-size: 13px;
		font-weight: 900;
	}

	body.woocommerce-cart td.product-thumbnail {
		grid-area: thumb;
	}

	body.woocommerce-cart td.product-thumbnail a {
		width: 64px;
		height: 64px;
		border-radius: 16px;
	}

	body.woocommerce-cart td.product-thumbnail img {
		width: 52px !important;
		height: 52px !important;
	}

	body.woocommerce-cart td.product-name {
		grid-area: name;
		padding-right: 2px !important;
	}

	body.woocommerce-cart td.product-name a {
		font-size: 14px;
	}

	body.woocommerce-cart td.product-price {
		grid-area: price;
		display: grid;
		gap: 5px;
		justify-items: start;
		padding-top: 8px !important;
		border-top: 1px solid rgba(220, 233, 247, 0.85) !important;
	}

	body.woocommerce-cart td.product-price::before,
	body.woocommerce-cart td.product-quantity::before,
	body.woocommerce-cart td.product-subtotal::before {
		content: attr(data-title) !important;
		display: inline-flex !important;
		color: #8294aa;
		font-size: 12px;
		font-weight: 800;
	}

	body.woocommerce-cart table.cart.shop_table_responsive tr.cart_item td.product-price::before,
	body.woocommerce-cart table.cart.shop_table_responsive tr.cart_item td.product-quantity::before,
	body.woocommerce-cart table.cart.shop_table_responsive tr.cart_item td.product-subtotal::before {
		content: attr(data-title) !important;
		display: inline-flex !important;
	}

	body.woocommerce-cart td.product-quantity {
		grid-area: qty;
		display: grid;
		gap: 6px;
		justify-items: start;
	}

	body.woocommerce-cart td.product-quantity .quantity {
		justify-content: flex-start;
		width: 100%;
	}

body.woocommerce-cart td.product-subtotal {
		grid-area: subtotal;
		display: grid;
		gap: 5px;
		justify-items: start;
		text-align: left;
		padding-top: 8px !important;
		border-top: 1px solid rgba(220, 233, 247, 0.85) !important;
	}

	body.woocommerce-cart td.actions {
		grid-template-columns: 1fr;
	}

	body.woocommerce-cart td.actions .coupon {
		grid-template-columns: 1fr;
		max-width: none;
	}

	body.woocommerce-cart td.actions > .button {
		justify-self: stretch;
		width: 100%;
	}

	body.woocommerce-cart .woocommerce-message,
	body.woocommerce-cart .woocommerce-info,
	body.woocommerce-cart .woocommerce-error {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 14px !important;
	}

	body.woocommerce-cart .woocommerce-message .button,
	body.woocommerce-cart .woocommerce-info .button {
		width: 100%;
		margin-left: 0 !important;
	}

	body.woocommerce-cart .cart-collaterals .cart_totals {
		padding: 18px !important;
		border-radius: 20px;
	}
}

/* Cart feedback: make add-to-cart feel immediate and visible. */
@keyframes spCartCountPulse {
	0% {
		transform: scale(1);
	}
	38% {
		transform: scale(1.32);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes spCartButtonIcon {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(3px);
	}
	100% {
		transform: translateX(0);
	}
}

.sp-icon-link--cart.is-updated,
.sp-mobile-cart.is-updated {
	border-color: rgba(18, 166, 106, 0.36) !important;
	background: linear-gradient(180deg, #f0fff8, #ffffff) !important;
	color: #0f8f5e !important;
	box-shadow: 0 16px 34px rgba(18, 166, 106, 0.17) !important;
}

.sp-icon-link--cart.is-updated .sp-cart-count,
.sp-mobile-cart.is-updated .sp-cart-count {
	background: #12a66a !important;
	color: #fff !important;
	border-color: #12a66a !important;
	animation: spCartCountPulse 620ms var(--sp-ease);
}

.sp-product-card__actions .add_to_cart_button.loading,
.sp-product-card__actions .add_to_cart_button.is-sp-adding {
	pointer-events: none;
	background: linear-gradient(135deg, var(--sp-primary-dark), #2d93ff) !important;
	color: #fff !important;
	opacity: 0.92;
	box-shadow: 0 12px 24px rgba(23, 115, 234, 0.18) !important;
}

.sp-product-card__actions .add_to_cart_button.loading .sp-cart-svg,
.sp-product-card__actions .add_to_cart_button.is-sp-adding .sp-cart-svg {
	animation: spCartButtonIcon 700ms ease-in-out infinite;
}

.sp-product-card__actions .add_to_cart_button.added,
.sp-product-card__actions .add_to_cart_button.is-sp-added {
	background: linear-gradient(135deg, #12a66a, #17bf7d) !important;
	color: #fff !important;
	box-shadow: 0 12px 24px rgba(18, 166, 106, 0.2) !important;
}

.sp-cart-toast {
	position: fixed;
	top: 136px;
	right: max(18px, calc((100vw - var(--sp-container)) / 2));
	z-index: 300;
	width: min(430px, calc(100vw - 36px));
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 14px;
	border: 1px solid rgba(23, 115, 234, 0.18);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--sp-ink);
	box-shadow: 0 24px 58px rgba(15, 23, 42, 0.16);
	backdrop-filter: blur(14px);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-12px) scale(0.98);
	transition: opacity 180ms var(--sp-ease), transform 180ms var(--sp-ease);
}

.sp-cart-toast.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.sp-cart-toast__icon {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: linear-gradient(135deg, #12a66a, #18c683);
	color: #fff;
	box-shadow: 0 14px 26px rgba(18, 166, 106, 0.22);
}

.sp-cart-toast__icon svg {
	width: 23px;
	height: 23px;
	fill: currentColor;
}

.sp-cart-toast__body {
	min-width: 0;
	display: grid;
	gap: 3px;
}

.sp-cart-toast__body strong {
	color: #13233a;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.sp-cart-toast__body span {
	color: #66768c;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sp-cart-toast__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 12px;
	background: var(--sp-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
	box-shadow: 0 12px 24px rgba(23, 115, 234, 0.2);
	transition: background-color 160ms var(--sp-ease), transform 160ms var(--sp-ease);
}

.sp-cart-toast__action:hover {
	background: var(--sp-primary-dark);
	color: #fff;
	transform: translateY(-1px);
}

@media (max-width: 760px) {
	.sp-cart-toast {
		top: auto;
		right: 14px;
		bottom: 14px;
		left: 14px;
		width: auto;
		grid-template-columns: 42px minmax(0, 1fr);
		padding: 13px;
		border-radius: 18px;
		transform: translateY(12px) scale(0.98);
	}

	.sp-cart-toast.is-visible {
		transform: translateY(0) scale(1);
	}

	.sp-cart-toast__icon {
		width: 42px;
		height: 42px;
		border-radius: 14px;
	}

	.sp-cart-toast__body span {
		white-space: normal;
	}

	.sp-cart-toast__action {
		grid-column: 2;
		justify-self: start;
		min-height: 34px;
		padding-inline: 12px;
	}
}

/* Cart auto-update controls: no manual refresh needed. */
body.has-sp-cart-autoupdate.woocommerce-cart td.actions > button[name="update_cart"] {
	display: none !important;
}

body.woocommerce-cart .woocommerce.is-sp-cart-updating {
	position: relative;
}

body.woocommerce-cart .woocommerce.is-sp-cart-updating .woocommerce-cart-form,
body.woocommerce-cart .woocommerce.is-sp-cart-updating .cart-collaterals {
	opacity: 0.62;
	pointer-events: none;
	transition: opacity 160ms var(--sp-ease);
}

body.woocommerce-cart .woocommerce.is-sp-cart-updating::after {
	content: attr(data-sp-updating);
	position: fixed;
	left: 50%;
	bottom: 26px;
	z-index: 260;
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	border: 1px solid rgba(23, 115, 234, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--sp-primary);
	font-size: 13px;
	font-weight: 850;
	box-shadow: 0 18px 42px rgba(23, 88, 164, 0.14);
	transform: translateX(-50%);
}

body.woocommerce-cart td.product-quantity .quantity.is-sp-enhanced {
	display: inline-grid;
	grid-template-columns: 38px 58px 38px;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 4px;
	border: 1px solid rgba(194, 214, 236, 0.95);
	border-radius: 16px;
	background: #f7fbff;
}

body.woocommerce-cart td.product-quantity .quantity.is-sp-enhanced .qty {
	width: 58px !important;
	min-height: 34px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 10px !important;
	background: #fff !important;
	box-shadow: inset 0 0 0 1px rgba(220, 233, 247, 0.85);
	color: #22324a !important;
	font-size: 15px;
	text-align: center;
	-moz-appearance: textfield;
}

body.woocommerce-cart td.product-quantity .quantity.is-sp-enhanced .qty::-webkit-outer-spin-button,
body.woocommerce-cart td.product-quantity .quantity.is-sp-enhanced .qty::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.sp-cart-qty-btn {
	width: 38px;
	height: 34px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 12px;
	background: #fff;
	color: var(--sp-primary);
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	box-shadow: inset 0 0 0 1px rgba(194, 214, 236, 0.95);
	transition: background-color 160ms var(--sp-ease), color 160ms var(--sp-ease), transform 160ms var(--sp-ease), box-shadow 160ms var(--sp-ease);
}

.sp-cart-qty-btn:hover {
	background: var(--sp-primary);
	color: #fff;
	box-shadow: 0 10px 20px rgba(23, 115, 234, 0.18);
	transform: translateY(-1px);
}

.sp-cart-qty-btn--minus {
	color: #e04545;
}

.sp-cart-qty-btn--minus:hover {
	background: #fff1f1;
	color: #d93a3a;
	box-shadow: inset 0 0 0 1px rgba(224, 69, 69, 0.18);
}

.sp-cart-confirm {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: grid;
	place-items: center;
	padding: 18px;
	background: rgba(11, 24, 42, 0.34);
	backdrop-filter: blur(10px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms var(--sp-ease);
}

.sp-cart-confirm.is-open {
	opacity: 1;
	pointer-events: auto;
}

.sp-cart-confirm__dialog {
	width: min(430px, 100%);
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	padding: 20px;
	border: 1px solid rgba(220, 233, 247, 0.96);
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff, #f7fbff);
	box-shadow: 0 28px 80px rgba(11, 24, 42, 0.22);
	transform: translateY(10px) scale(0.98);
	transition: transform 180ms var(--sp-ease);
}

.sp-cart-confirm.is-open .sp-cart-confirm__dialog {
	transform: translateY(0) scale(1);
}

.sp-cart-confirm__mark {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: #fff1f1;
	color: #e04545;
	font-size: 23px;
	font-weight: 900;
}

.sp-cart-confirm__body {
	min-width: 0;
	display: grid;
	gap: 7px;
	align-content: center;
}

.sp-cart-confirm__body h2 {
	margin: 0;
	color: #13233a;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.25;
}

.sp-cart-confirm__body p {
	margin: 0;
	color: #66768c;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.55;
}

.sp-cart-confirm__actions {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 4px;
}

.sp-cart-confirm__actions button {
	min-height: 44px;
	border: 0;
	border-radius: 14px;
	font-weight: 850;
	cursor: pointer;
}

.sp-cart-confirm__cancel {
	background: #eef6ff;
	color: var(--sp-primary);
}

.sp-cart-confirm__remove {
	background: #e04545;
	color: #fff;
	box-shadow: 0 12px 24px rgba(224, 69, 69, 0.2);
}

@media (max-width: 760px) {
	body.woocommerce-cart td.product-quantity .quantity.is-sp-enhanced {
		width: min(100%, 176px);
		grid-template-columns: 40px minmax(52px, 1fr) 40px;
		justify-content: start;
	}

	body.woocommerce-cart .woocommerce.is-sp-cart-updating::after {
		right: 14px;
		bottom: 14px;
		left: 14px;
		width: auto;
		transform: none;
	}

	.sp-cart-confirm__dialog {
		grid-template-columns: 44px minmax(0, 1fr);
		padding: 18px;
		border-radius: 20px;
	}

	.sp-cart-confirm__mark {
		width: 44px;
		height: 44px;
		border-radius: 14px;
	}

	.sp-cart-confirm__actions {
		grid-template-columns: 1fr;
	}
}

/* Checkout redesign: branded two-column order flow with native WooCommerce logic intact. */
body.woocommerce-checkout .sp-page {
	padding-top: 34px !important;
	padding-bottom: 72px !important;
}

body.woocommerce-checkout .sp-page__header {
	padding: clamp(24px, 3vw, 38px) clamp(24px, 4vw, 46px) !important;
	border-color: rgba(23, 115, 234, 0.16) !important;
	background:
		linear-gradient(135deg, rgba(23, 115, 234, 0.105), transparent 48%),
		linear-gradient(180deg, #ffffff, #f6fbff) !important;
	box-shadow: 0 18px 46px rgba(23, 88, 164, 0.075) !important;
}

body.woocommerce-checkout .sp-page__content {
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.woocommerce-checkout .woocommerce {
	width: 100%;
	min-width: 0;
	max-width: 100%;
}

body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-checkout .woocommerce-form-login-toggle,
body.woocommerce-checkout .woocommerce-form-coupon-toggle {
	margin-bottom: 16px;
}

body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-error {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 16px !important;
	padding: 14px 16px !important;
	border: 1px solid rgba(23, 115, 234, 0.18) !important;
	border-left: 4px solid var(--sp-primary) !important;
	border-radius: 16px !important;
	background: linear-gradient(180deg, #ffffff, #f7fbff) !important;
	color: #47566c !important;
	box-shadow: 0 14px 34px rgba(23, 88, 164, 0.06) !important;
	box-sizing: border-box;
	max-width: 100%;
}

body.woocommerce-checkout .woocommerce-error {
	border-left-color: #dc3545 !important;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 410px);
	gap: 22px;
	align-items: start;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout .checkout_coupon,
body.woocommerce-checkout .woocommerce-form-login {
	border: 1px solid rgba(220, 233, 247, 0.96) !important;
	border-radius: 22px !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 255, 0.97)) !important;
	box-shadow: 0 18px 46px rgba(23, 88, 164, 0.07) !important;
}

body.woocommerce-checkout #customer_details {
	grid-column: 1;
	grid-row: 1;
	position: relative;
	min-width: 0;
	padding: clamp(20px, 2.4vw, 28px) !important;
	display: grid;
	gap: 24px;
}

body.woocommerce-checkout #order_review_heading {
	grid-column: 2;
	grid-row: 1;
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 !important;
	padding: 18px 20px !important;
	border: 1px solid rgba(220, 233, 247, 0.96) !important;
	border-radius: 22px !important;
	background: linear-gradient(180deg, #ffffff, #f7fbff) !important;
	color: #13233a !important;
	font-size: 18px !important;
	font-weight: 850 !important;
	box-shadow: 0 16px 40px rgba(23, 88, 164, 0.06) !important;
}

body.woocommerce-checkout #order_review_heading::before,
body.woocommerce-checkout #customer_details::before {
	width: 34px;
	height: 34px;
	display: inline-grid;
	place-items: center;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--sp-primary), #2d93ff);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	box-shadow: 0 12px 24px rgba(23, 115, 234, 0.2);
}

body.woocommerce-checkout #customer_details::before {
	content: "1";
	position: absolute;
	top: 20px;
	right: 20px;
}

body.woocommerce-checkout #order_review_heading::before {
	content: "2";
	flex: 0 0 auto;
}

body.woocommerce-checkout #order_review {
	grid-column: 2;
	grid-row: 1;
	margin-top: 82px !important;
	position: sticky;
	top: 118px;
	min-width: 0;
	padding: 20px !important;
}

body.woocommerce-checkout .col2-set {
	width: 100% !important;
	min-width: 0;
	max-width: 100%;
	display: grid;
	gap: 24px;
}

body.woocommerce-checkout .col2-set::before,
body.woocommerce-checkout .col2-set::after {
	display: none !important;
}

body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2 {
	float: none !important;
	width: 100% !important;
	min-width: 0;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-additional-fields {
	min-width: 0;
	max-width: 100%;
	display: grid;
	gap: 18px;
}

body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3 {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 !important;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(220, 233, 247, 0.95);
	color: #13233a !important;
	font-size: 18px !important;
	font-weight: 850 !important;
	line-height: 1.25;
}

body.woocommerce-checkout .woocommerce-billing-fields h3::before,
body.woocommerce-checkout .woocommerce-additional-fields h3::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--sp-primary);
	box-shadow: 0 0 0 6px rgba(23, 115, 234, 0.1);
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
	min-width: 0;
	max-width: 100%;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 16px;
}

body.woocommerce-checkout .woocommerce form .form-row,
body.woocommerce-checkout form .form-row {
	float: none !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	display: grid;
	gap: 7px;
}

body.woocommerce-checkout #billing_country_field,
body.woocommerce-checkout #billing_address_1_field,
body.woocommerce-checkout #billing_address_2_field,
body.woocommerce-checkout #billing_state_field,
body.woocommerce-checkout #order_comments_field,
body.woocommerce-checkout .form-row-wide {
	grid-column: 1 / -1;
}

body.woocommerce-checkout #billing_city_field,
body.woocommerce-checkout #billing_postcode_field,
body.woocommerce-checkout #billing_phone_field,
body.woocommerce-checkout #billing_email_field,
body.woocommerce-checkout #billing_first_name_field,
body.woocommerce-checkout #billing_last_name_field {
	grid-column: span 1;
}

body.woocommerce-checkout .woocommerce form .form-row label,
body.woocommerce-checkout form .form-row label {
	margin: 0;
	color: #2c3b50;
	font-size: 12.5px;
	font-weight: 800;
	line-height: 1.25;
}

body.woocommerce-checkout .woocommerce form .form-row .required {
	color: #dc3545 !important;
	text-decoration: none;
}

body.woocommerce-checkout .woocommerce-input-wrapper {
	display: block;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	min-width: 0;
}

body.woocommerce-checkout .woocommerce input.input-text,
body.woocommerce-checkout .woocommerce textarea,
body.woocommerce-checkout .woocommerce select,
body.woocommerce-checkout input.input-text,
body.woocommerce-checkout textarea,
body.woocommerce-checkout select {
	width: 100% !important;
	min-height: 48px !important;
	padding: 12px 14px !important;
	border: 1px solid rgba(194, 214, 236, 0.95) !important;
	border-radius: 14px !important;
	background: rgba(255, 255, 255, 0.96) !important;
	color: #22324a !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
	transition: border-color 160ms var(--sp-ease), box-shadow 160ms var(--sp-ease), background-color 160ms var(--sp-ease);
}

body.woocommerce-checkout .woocommerce textarea,
body.woocommerce-checkout textarea {
	min-height: 116px !important;
	resize: vertical;
}

body.woocommerce-checkout .woocommerce input.input-text:focus,
body.woocommerce-checkout .woocommerce textarea:focus,
body.woocommerce-checkout .woocommerce select:focus,
body.woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout select:focus {
	border-color: rgba(23, 115, 234, 0.62) !important;
	background: #fff !important;
	box-shadow: 0 0 0 4px rgba(23, 115, 234, 0.1) !important;
	outline: 0;
}

body.woocommerce-checkout .select2-container {
	width: 100% !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single {
	height: 48px !important;
	display: flex !important;
	align-items: center;
	border: 1px solid rgba(194, 214, 236, 0.95) !important;
	border-radius: 14px !important;
	background: rgba(255, 255, 255, 0.96) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	width: 100%;
	padding-left: 14px !important;
	padding-right: 42px !important;
	color: #22324a !important;
	font-size: 14px;
	font-weight: 600;
	line-height: 48px !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 50% !important;
	right: 12px !important;
	transform: translateY(-50%);
}

body.woocommerce-checkout .select2-dropdown {
	border-color: rgba(194, 214, 236, 0.95) !important;
	border-radius: 14px !important;
	box-shadow: 0 18px 44px rgba(23, 88, 164, 0.12);
	overflow: hidden;
}

body.woocommerce-checkout #order_review table.shop_table {
	display: table !important;
	width: 100% !important;
	margin: 0 0 16px !important;
	border: 0 !important;
	border-collapse: separate !important;
	border-spacing: 0 8px !important;
	background: transparent !important;
	overflow: visible !important;
}

body.woocommerce-checkout #order_review table.shop_table th,
body.woocommerce-checkout #order_review table.shop_table td {
	padding: 10px 0 !important;
	border: 0 !important;
	color: #53667f;
	font-size: 13px;
	line-height: 1.35;
	vertical-align: top;
}

body.woocommerce-checkout #order_review table.shop_table thead th {
	padding-top: 0 !important;
	color: #8294aa;
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0;
}

body.woocommerce-checkout #order_review table.shop_table tbody tr.cart_item {
	background: #f7fbff;
	border-radius: 16px;
	box-shadow: inset 0 0 0 1px rgba(220, 233, 247, 0.85);
}

body.woocommerce-checkout #order_review table.shop_table tbody tr.cart_item td {
	padding: 13px 12px !important;
}

body.woocommerce-checkout #order_review table.shop_table tbody tr.cart_item td:first-child {
	border-radius: 16px 0 0 16px;
}

body.woocommerce-checkout #order_review table.shop_table tbody tr.cart_item td:last-child {
	border-radius: 0 16px 16px 0;
	text-align: right;
}

body.woocommerce-checkout #order_review .product-name {
	color: #22324a !important;
	font-weight: 750;
}

body.woocommerce-checkout #order_review .product-total,
body.woocommerce-checkout #order_review table.shop_table td:last-child {
	text-align: right;
	color: #22324a !important;
	font-weight: 800;
	white-space: nowrap;
}

body.woocommerce-checkout #order_review table.shop_table tfoot tr {
	border-top: 1px solid rgba(220, 233, 247, 0.86);
}

body.woocommerce-checkout #order_review table.shop_table tfoot th,
body.woocommerce-checkout #order_review table.shop_table tfoot td {
	padding: 12px 0 !important;
	border-top: 1px solid rgba(220, 233, 247, 0.86) !important;
}

body.woocommerce-checkout #order_review table.shop_table .order-total th,
body.woocommerce-checkout #order_review table.shop_table .order-total td,
body.woocommerce-checkout #order_review table.shop_table .order-total .amount {
	color: #10233f !important;
	font-size: 18px !important;
	font-weight: 900 !important;
}

body.woocommerce-checkout #payment {
	margin-top: 12px;
	border: 0 !important;
	border-radius: 18px !important;
	background: transparent !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
	margin: 0 !important;
	padding: 0 0 14px !important;
	border-bottom: 1px solid rgba(220, 233, 247, 0.92) !important;
	list-style: none !important;
}

body.woocommerce-checkout #payment ul.payment_methods li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

body.woocommerce-checkout #payment .woocommerce-info {
	margin: 0 !important;
	padding: 13px 14px !important;
	border-left-color: #f0a429 !important;
	background: linear-gradient(180deg, #fffdf7, #ffffff) !important;
	color: #6f5a20 !important;
	font-size: 12.5px;
	line-height: 1.55;
}

body.woocommerce-checkout #payment .form-row.place-order {
	display: grid !important;
	gap: 14px;
	margin: 0 !important;
	padding: 16px 0 0 !important;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text {
	padding: 12px 14px;
	border: 1px solid rgba(220, 233, 247, 0.86);
	border-radius: 14px;
	background: #f7fbff;
	color: #66768c;
	font-size: 12px;
	line-height: 1.55;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text p {
	margin: 0;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text a {
	color: var(--sp-primary);
	font-weight: 800;
}

body.woocommerce-checkout #place_order {
	width: 100% !important;
	min-height: 54px !important;
	border-radius: 16px !important;
	background: linear-gradient(135deg, var(--sp-primary), #2d93ff) !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	box-shadow: 0 18px 34px rgba(23, 115, 234, 0.24) !important;
}

body.woocommerce-checkout #place_order:hover {
	background: linear-gradient(135deg, var(--sp-primary-dark), #1773ea) !important;
	transform: translateY(-1px);
}

body.woocommerce-checkout .checkout_coupon,
body.woocommerce-checkout .woocommerce-form-login {
	margin: 0 0 18px !important;
	padding: 18px !important;
}

body.woocommerce-checkout .checkout_coupon p,
body.woocommerce-checkout .woocommerce-form-login p {
	margin-top: 0;
}

body.woocommerce-checkout .checkout_coupon .form-row {
	display: inline-grid !important;
	width: min(100%, 320px) !important;
	margin-right: 10px !important;
	vertical-align: end;
}

body.woocommerce-checkout .checkout_coupon .button,
body.woocommerce-checkout .woocommerce-form-login .button {
	min-height: 48px !important;
	border-radius: 14px !important;
}

@media (max-width: 1024px) {
	body.woocommerce-checkout form.checkout.woocommerce-checkout {
		grid-template-columns: minmax(0, 1fr);
	}

	body.woocommerce-checkout #customer_details,
	body.woocommerce-checkout #order_review_heading,
	body.woocommerce-checkout #order_review {
		grid-column: 1;
		grid-row: auto;
	}

	body.woocommerce-checkout #order_review {
		position: static;
		margin-top: 0 !important;
	}
}

@media (max-width: 760px) {
	body.woocommerce-checkout .sp-container.sp-page {
		width: calc(100vw - 36px) !important;
		max-width: calc(100vw - 36px) !important;
		overflow: hidden;
	}

	body.woocommerce-checkout .sp-page {
		padding-top: 18px !important;
		padding-bottom: 44px !important;
	}

	body.woocommerce-checkout .sp-page__header {
		padding: 22px 18px !important;
		border-radius: 18px !important;
		overflow: hidden !important;
	}

	body.woocommerce-checkout .sp-page__header h1 {
		max-width: 100%;
		font-size: 28px !important;
		line-height: 1.12 !important;
		overflow-wrap: anywhere;
		word-break: normal;
	}

	body.woocommerce-checkout .woocommerce-message,
	body.woocommerce-checkout .woocommerce-info,
	body.woocommerce-checkout .woocommerce-error {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 13px 14px !important;
		overflow-wrap: anywhere;
	}

	body.woocommerce-checkout .woocommerce-message .button,
	body.woocommerce-checkout .woocommerce-info .button {
		float: none !important;
		display: inline-flex !important;
		width: 100%;
		max-width: 100%;
		margin-left: 0 !important;
		justify-self: stretch;
	}

	body.woocommerce-checkout #customer_details,
	body.woocommerce-checkout #order_review,
	body.woocommerce-checkout #order_review_heading,
	body.woocommerce-checkout .checkout_coupon,
	body.woocommerce-checkout .woocommerce-form-login {
		border-radius: 18px !important;
	}

	body.woocommerce-checkout #customer_details,
	body.woocommerce-checkout #order_review {
		padding: 16px !important;
		overflow: hidden;
	}

	body.woocommerce-checkout .woocommerce-billing-fields h3,
	body.woocommerce-checkout .woocommerce-additional-fields h3 {
		padding-right: 46px;
		overflow-wrap: anywhere;
	}

	body.woocommerce-checkout .woocommerce input.input-text,
	body.woocommerce-checkout .woocommerce textarea,
	body.woocommerce-checkout .woocommerce select,
	body.woocommerce-checkout input.input-text,
	body.woocommerce-checkout textarea,
	body.woocommerce-checkout select,
	body.woocommerce-checkout .select2-container {
		min-width: 0 !important;
		max-width: 100% !important;
	}

	body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
	body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
		grid-template-columns: 1fr;
		gap: 13px;
	}

	body.woocommerce-checkout #billing_city_field,
	body.woocommerce-checkout #billing_postcode_field,
	body.woocommerce-checkout #billing_phone_field,
	body.woocommerce-checkout #billing_email_field,
	body.woocommerce-checkout #billing_first_name_field,
	body.woocommerce-checkout #billing_last_name_field {
		grid-column: 1 / -1;
	}

	body.woocommerce-checkout #order_review table.shop_table tbody tr.cart_item td {
		padding: 0 !important;
	}

	body.woocommerce-checkout #order_review .product-total,
	body.woocommerce-checkout #order_review table.shop_table td:last-child {
		white-space: normal;
	}

	body.woocommerce-checkout #order_review table.shop_table,
	body.woocommerce-checkout #order_review table.shop_table thead,
	body.woocommerce-checkout #order_review table.shop_table tbody,
	body.woocommerce-checkout #order_review table.shop_table tfoot,
	body.woocommerce-checkout #order_review table.shop_table tr,
	body.woocommerce-checkout #order_review table.shop_table th,
	body.woocommerce-checkout #order_review table.shop_table td {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	body.woocommerce-checkout #order_review table.shop_table {
		border-spacing: 0 !important;
		overflow: hidden !important;
	}

	body.woocommerce-checkout #order_review table.shop_table thead {
		display: none !important;
	}

	body.woocommerce-checkout #order_review table.shop_table tbody tr.cart_item {
		display: grid !important;
		gap: 8px;
		padding: 12px !important;
		border-radius: 16px;
		background: #f7fbff;
		box-shadow: inset 0 0 0 1px rgba(220, 233, 247, 0.86);
	}

	body.woocommerce-checkout #order_review table.shop_table tbody tr.cart_item td:first-child,
	body.woocommerce-checkout #order_review table.shop_table tbody tr.cart_item td:last-child {
		border-radius: 0;
		text-align: left !important;
	}

	body.woocommerce-checkout #order_review table.shop_table tfoot tr {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
		gap: 5px;
		padding: 11px 0;
		border-top: 1px solid rgba(220, 233, 247, 0.86);
	}

	body.woocommerce-checkout #order_review table.shop_table tfoot th,
	body.woocommerce-checkout #order_review table.shop_table tfoot td {
		width: auto !important;
		padding: 0 !important;
		border-top: 0 !important;
	}

	body.woocommerce-checkout #order_review table.shop_table tfoot td {
		justify-self: start;
		text-align: left !important;
	}

	body.woocommerce-checkout .woocommerce-privacy-policy-text,
	body.woocommerce-checkout #payment .woocommerce-info {
		overflow-wrap: anywhere;
		word-break: break-word;
		white-space: normal;
	}

	body.woocommerce-checkout .woocommerce-privacy-policy-text *,
	body.woocommerce-checkout #payment .woocommerce-info * {
		max-width: 100%;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	body.woocommerce-checkout .checkout_coupon .form-row {
		width: 100% !important;
		margin-right: 0 !important;
		margin-bottom: 10px !important;
	}

	body.woocommerce-checkout .checkout_coupon .button,
	body.woocommerce-checkout .woocommerce-form-login .button {
		width: 100% !important;
	}
}

/* === Phase 4: per-section + per-archive banners (2026-05-09) === */
/*
 * .sp-rail-banner sits directly under a category rail on the home page.
 * It composes with .sp-home-promo for visual consistency, but tightens
 * the spacing so the banner reads as part of the rail, not as a separate
 * standalone block.
 */
.sp-rail-banner.sp-home-promo {
    margin-top: 14px;
    min-height: 120px;
    padding: 22px 32px;
    border-radius: 10px;
}

.sp-rail-banner.sp-home-promo span {
    font-size: 22px;
}

@media (max-width: 768px) {
    .sp-rail-banner.sp-home-promo {
        margin-top: 10px;
        padding: 18px 18px;
        min-height: 92px;
    }
    .sp-rail-banner.sp-home-promo span {
        font-size: 17px;
    }
}

/*
 * .sp-archive-banner sits at the top of a WC product-category archive
 * page, between the shop hero and the layout grid. Similar visual to the
 * home promo banner, with two-line title + subtitle support.
 */
.sp-archive-banner {
    display: grid;
    align-items: center;
    margin: 18px auto 0;
    padding: 26px 36px;
    min-height: 130px;
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(23, 115, 234, 0.95), rgba(82, 163, 255, 0.85));
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.sp-archive-banner--image {
    background-color: var(--sp-primary);
    background-image: var(--sp-promo-desktop);
    background-size: cover;
    background-position: center;
}

.sp-archive-banner__copy {
    display: grid;
    gap: 4px;
    max-width: 640px;
}

.sp-archive-banner__copy strong {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
}

.sp-archive-banner__copy span {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.92;
}

.sp-archive-banner--image .sp-archive-banner__copy {
    background: rgba(15, 23, 42, 0.45);
    padding: 14px 18px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
    .sp-archive-banner {
        background-image: var(--sp-promo-mobile, var(--sp-promo-desktop));
        padding: 20px 18px;
        margin-top: 12px;
        min-height: 100px;
    }
    .sp-archive-banner__copy strong {
        font-size: 18px;
    }
    .sp-archive-banner__copy span {
        font-size: 13px;
    }
}

/* === Phase 6: accessibility — reduced motion + visible focus === */
/*
 * Honour prefers-reduced-motion. Hero auto-rotation and the home rail
 * scroll-snap stay functional, but transitions and transforms collapse
 * to no-op so vestibular-sensitive users see a calm UI.
 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .sp-home-slider__track,
    .sp-product-rail .sp-products-grid {
        scroll-behavior: auto !important;
    }

    .sp-hero-zoom,
    .sp-hero-zoom__media,
    .sp-feature-card,
    .sp-product-card,
    .sp-home-category {
        transform: none !important;
    }
}

/*
 * :focus-visible — a clear focus ring for keyboard users without
 * polluting mouse-click states. Applies to interactive elements the
 * storefront actually exposes.
 */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
.sp-home-category:focus-visible,
.sp-rail-arrow:focus-visible,
.sp-home-slider__arrow:focus-visible,
.sp-icon-link:focus-visible,
.sp-mobile-cart:focus-visible,
.sp-mobile-favorites:focus-visible,
.sp-catalog-toggle:focus-visible {
    outline: 2px solid var(--sp-primary);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Skip link should be invisible until tabbed to. */
.skip-link {
    position: absolute;
    top: -100px;
    left: 8px;
    z-index: 10000;
    padding: 10px 18px;
    background: var(--sp-primary);
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: top 120ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
    top: 8px;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* === isurve.ge-style mega menu (2026-05-09) === */
/*
 * Wide popup beside the left-rail with multiple columns. Each column has
 * a sub-category as its header (clickable link) and lists the leaf
 * categories underneath as plain links. Grid auto-fills to fit.
 */
.sp-mega__flyout--columns .sp-mega__columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px 36px;
    padding: 6px 4px 4px;
}

.sp-mega__column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.sp-mega__column-head {
    display: inline-block;
    margin-bottom: 4px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--sp-border, #e5e7eb);
    color: var(--sp-ink, #111827);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 120ms ease;
}

.sp-mega__column-head:hover,
.sp-mega__column-head:focus-visible {
    color: var(--sp-primary, #1773ea);
}

.sp-mega__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
}

.sp-mega__column li {
    margin: 0;
}

.sp-mega__column li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 0;
    color: var(--sp-ink, #111827);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition: color 120ms ease;
}

.sp-mega__column li a:hover,
.sp-mega__column li a:focus-visible {
    color: var(--sp-primary, #1773ea);
}

.sp-mega__column li a span {
    flex: 0 0 auto;
    padding: 1px 7px;
    background: var(--sp-soft, #eef6ff);
    color: var(--sp-muted, #6b7280);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .sp-mega__flyout--columns .sp-mega__columns {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* === Zoommer-style mega menu reveal: smooth fade for panel + flyouts === */
/*
 * Replace the previous display:none/block toggle with an
 * opacity + visibility + transform transition so the catalog panel
 * fades in vertically and each flyout fades in horizontally as the
 * cursor travels down the left rail.
 */

/* The whole catalog panel: fade + slide down */
.sp-catalog-panel {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 200ms ease, visibility 180ms;
}

.sp-catalog-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Each flyout: fade + slight horizontal slide */
.sp-mega__flyout {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 180ms ease, transform 200ms ease, visibility 180ms;
}

.sp-mega__item:hover > .sp-mega__flyout,
.sp-mega__item.is-active > .sp-mega__flyout,
.sp-mega__item:focus-within > .sp-mega__flyout {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

/* Reduced motion: no slide, no fade-in delay — just instant show. */
@media (prefers-reduced-motion: reduce) {
    .sp-catalog-panel,
    .sp-mega__flyout {
        transition: none !important;
        transform: none !important;
    }
}

/* Slightly stronger highlight on the active sidebar row so the user
 * always sees which category is being previewed in the right panel. */
.sp-mega__item.is-active > .sp-mega__link {
    background: var(--sp-soft, #eef6ff) !important;
    color: var(--sp-primary, #1773ea) !important;
}

/* === Home sidebar mega flyout (zoommer-style) === */
/*
 * The home-page left sidebar gains the same hover-reveal flyout that
 * the catalog mega menu uses. Each category row, on hover/focus,
 * fades in a wide multi-column panel to its right.
 */

/* Override the previous overflow:hidden so flyouts can escape the aside. */
.sp-home-categories {
    overflow: visible !important;
    position: relative;
    z-index: 5;
}

.sp-home-categories__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}

.sp-home-cat-row {
    position: relative;
    display: block;
    margin: 0;
}

/* Make sure the row link still uses the existing visual rules. */
.sp-home-cat-row > .sp-home-category {
    width: 100%;
}

/* Chevron — small right-pointing arrow on rows that have a flyout. */
.sp-home-cat-row__chev {
    margin-left: auto;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.5;
    transition: opacity 120ms ease, transform 200ms ease;
}

.sp-home-cat-row:hover .sp-home-cat-row__chev,
.sp-home-cat-row:focus-within .sp-home-cat-row__chev {
    opacity: 1;
    transform: rotate(45deg) translate(2px, -2px);
}

/* Highlight the row whose flyout is showing. */
.sp-home-cat-row:hover > .sp-home-category,
.sp-home-cat-row:focus-within > .sp-home-category {
    background: var(--sp-soft, #eef6ff);
    color: var(--sp-primary, #1773ea);
}

/* Flyout panel — positioned to the right of the sidebar, fades in. */
.sp-home-cat-flyout {
    position: absolute;
    top: -8px;
    left: calc(100% + 14px);
    min-width: 720px;
    max-width: 980px;
    padding: 22px 26px 24px;
    background: #fff;
    border: 1px solid var(--sp-border, #e5e7eb);
    border-radius: 12px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
    z-index: 50;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 180ms ease, transform 200ms ease, visibility 180ms;
}

/* Pass 22: JS class is the source of truth; :focus-within preserved
 * for keyboard accessibility. :hover trigger removed. */
.sp-home-cat-row.sp-flyout-open > .sp-home-cat-flyout,
.sp-home-cat-row:focus-within > .sp-home-cat-flyout {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

/* Bridge so the cursor can travel from the sidebar row to the flyout
 * across the 14px gap without the hover state being lost. */
.sp-home-cat-flyout::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -14px;
    width: 14px;
}

.sp-home-cat-flyout__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--sp-border, #e5e7eb);
}

.sp-home-cat-flyout__head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--sp-ink, #111827);
}

.sp-home-cat-flyout__head a {
    color: var(--sp-primary, #1773ea);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.sp-home-cat-flyout__head a:hover,
.sp-home-cat-flyout__head a:focus-visible {
    text-decoration: underline;
}

/* Flat list (for top-level cats with no Level-2 grouping) */
.sp-home-cat-flyout__flat {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 6px 24px;
}

.sp-home-cat-flyout__flat li {
    margin: 0;
}

.sp-home-cat-flyout__flat a {
    display: block;
    padding: 6px 0;
    color: var(--sp-ink, #111827);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 120ms ease;
}

.sp-home-cat-flyout__flat a:hover,
.sp-home-cat-flyout__flat a:focus-visible {
    color: var(--sp-primary, #1773ea);
}

/* On mobile, hide the flyout — sidebar collapses to a list, no hover UX. */
@media (max-width: 960px) {
    .sp-home-cat-flyout {
        display: none !important;
    }
    .sp-home-cat-row__chev {
        display: none;
    }
}

/* Reduced motion: instant show, no slide. */
@media (prefers-reduced-motion: reduce) {
    .sp-home-cat-flyout,
    .sp-home-cat-row__chev {
        transition: none !important;
        transform: none !important;
    }
}

/* === Home flyout polish: viewport-aware width + tighter grid math === */
/*
 * Codex review (2026-05-10): the previous minmax(220px, 1fr) + 36px gap
 * could only fit 3 columns inside 980px and 2 columns inside 720px, so
 * categories with 4-5 sub-groups (ტექნიკა, თავის მოვლა) wrapped to a
 * single column. Tightened to minmax(170px, 1fr) + 22-28px gaps so
 * 4-5 columns fit comfortably.
 *
 * Width now scales with the viewport: max 980px, or whatever fits
 * after subtracting the sidebar + page gutters. Below ~1100px the
 * flyout becomes too cramped, so it disables itself there.
 */

/* Multi-column grid — applies in BOTH contexts (catalog mega + home flyout). */
.sp-mega__flyout--columns .sp-mega__columns,
.sp-home-cat-flyout--columns .sp-mega__columns {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 22px 28px;
    padding: 4px 2px 2px;
}

/* Home flyout: viewport-aware sizing instead of fixed min-width. */
.sp-home-cat-flyout {
    width: min(980px, calc(100vw - 340px));
    min-width: min(720px, calc(100vw - 340px));
}

/* Disable the flyout below 1100px so it never overflows the viewport.
 * Sidebar items still navigate on click; users on tablets just don't
 * get the hover preview. */
@media (max-width: 1099px) {
    .sp-home-cat-flyout {
        display: none !important;
    }
    .sp-home-cat-row__chev {
        display: none;
    }
}

/* === Zoommer-exact home flyout alignment (audit pass 2) === */
/*
 * Issues from previous pass + user audit:
 *  1. Flyout was positioned relative to its row (top:-8px), so it
 *     opened mid-page when hovering a row near the bottom. Fix:
 *     position relative to the sidebar itself so every flyout
 *     anchors at the same top:0 of the sidebar.
 *  2. The 14px gap between sidebar and flyout broke visual unity
 *     vs zoommer where they share an edge. Fix: left:100% with no
 *     gap; round only the right corners on the flyout.
 *  3. The flyout's panel-wide header (.sp-home-cat-flyout__head)
 *     is removed in PHP — zoommer goes straight to columns.
 *  4. Sidebar enforces a minimum height tall enough to host the
 *     largest flyout, so the two read as one card.
 */

/* Row no longer establishes positioning context; flyout climbs to
 * the sidebar instead. */
.sp-home-cat-row {
    position: static !important;
}

/* Sidebar sets the positioning context for absolute flyouts and
 * grows to match the flyout's natural height when one is open. */
.sp-home-categories {
    position: relative;
    overflow: visible !important;
    z-index: 5;
    min-height: 460px;
}

/* Flyout: anchored to top-right of sidebar, no gap, full overlap
 * across the hero area. */
.sp-home-cat-flyout {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    right: auto !important;

    width: min(980px, calc(100vw - 320px));
    min-width: min(720px, calc(100vw - 320px));
    min-height: 100%;

    padding: 22px 28px 24px;
    background: #fff;
    border: 1px solid var(--sp-border, #e5e7eb);
    border-left: 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 14px 0 36px rgba(15, 23, 42, 0.10);
    z-index: 50;

    /* fade-only — no horizontal slide so the cursor crossing the
     * sidebar→flyout edge feels seamless. */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, visibility 160ms;
}

/* Pass 22 — JS class is source of truth, :focus-within for keyboard a11y. */
.sp-home-cat-row.sp-flyout-open > .sp-home-cat-flyout,
.sp-home-cat-row:focus-within > .sp-home-cat-flyout {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Cursor doesn't need a bridge any more — sidebar and flyout share
 * an edge. Drop the previous ::before that introduced one. */
.sp-home-cat-flyout::before {
    content: none !important;
}

/* Column heads — zoommer-style: bold, slightly larger, NO bottom
 * border, sits comfortably above its item list. */
.sp-home-cat-flyout--columns .sp-mega__column-head,
.sp-home-cat-flyout--flat ~ .sp-mega__column-head {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 10px !important;
    color: var(--sp-ink, #111827) !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.2;
}

/* Column items — tighter, lower-weight, more rows fit per panel. */
.sp-home-cat-flyout--columns .sp-mega__column li a {
    padding: 4px 0 !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    line-height: 1.35;
}

.sp-home-cat-flyout--columns .sp-mega__column li a:hover,
.sp-home-cat-flyout--columns .sp-mega__column li a:focus-visible {
    color: var(--sp-primary, #1773ea) !important;
}

/* Increase column-row gap so vertical sections (when content wraps
 * to a second row of grid) breathe. */
.sp-home-cat-flyout--columns .sp-mega__columns {
    gap: 30px 28px !important;
    align-items: start;
}

/* Flat panel (Mobiles, Auto, Furniture, Christmas trees) — same
 * tighter typography for visual consistency. */
.sp-home-cat-flyout--flat ul {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
    gap: 4px 28px !important;
}

.sp-home-cat-flyout--flat ul a {
    padding: 5px 0 !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
}

/* === Zoommer-pixel-perfect home sidebar (audit pass 3, Codex-reviewed) === */
/*
 * Pass-3 audit pulled apart the previous fixes. Critical insight from
 * Codex: NEVER set overflow:hidden on .sp-home-categories__list because
 * the absolute-positioned flyout is a descendant of that ul — it would
 * get clipped. Instead, hide individual secondary rows.
 *
 * Behaviour now matches zoommer.ge:
 *   - Sidebar collapses to first 4 rows (matches slider height).
 *   - Bottom of sidebar floats a single circular chevron-down button.
 *   - Hover anywhere on the sidebar (or the chevron) → secondary rows
 *     animate in; chevron fades out.
 *   - Flyout opens to the right at top:0 of sidebar with z-index 99999
 *     so it sits above slider arrows and feature cards.
 *   - Decorative image renders bottom-right of flyout, slightly cropped
 *     by the flyout's bottom edge.
 */

/* ---------- z-index stacking chain (Codex's recommendation) ---------- */
.sp-home-stage {
    position: relative;
    overflow: visible !important;
}
.sp-home-categories {
    position: relative;
    z-index: 100;
    /* Override the previous min-height — let the list itself drive the
     * collapsed and expanded heights. */
    min-height: 0 !important;
    overflow: visible !important;
    background: #fff;
    border-radius: 10px;
}
.sp-home-slider { position: relative; z-index: 1; }

/* ---------- Sidebar list and rows ---------- */
.sp-home-categories__list {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: visible !important;  /* never clip the flyout descendant */
}
.sp-home-cat-row {
    position: static !important;   /* flyout climbs to .sp-home-categories */
    margin: 0;
    /* Smooth height transition for secondary rows revealing on hover. */
    transition: max-height 280ms ease, opacity 220ms ease, padding 280ms ease;
    overflow: visible;
}

/* (Earlier .is-secondary rules consolidated into the definitive
 * pass-6 block lower in the file — kept here as a no-op reminder.) */

/* ---------- Bottom expand chevron ---------- */
.sp-home-categories__expand {
    position: absolute;
    left: 50%;
    bottom: -18px;                /* outside the sidebar, half-overlapping */
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--sp-border, #e5e7eb);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.10);
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 60;
    opacity: 1;
    transition: opacity 220ms ease, transform 220ms ease;
}
.sp-home-categories__expand-chev {
    width: 9px;
    height: 9px;
    border-bottom: 2px solid #4b5563;
    border-right: 2px solid #4b5563;
    transform: rotate(45deg);
    margin-bottom: 2px;
    pointer-events: none;
}
.sp-home-categories:hover .sp-home-categories__expand,
.sp-home-categories:focus-within .sp-home-categories__expand {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(4px);
}

/* Hide the legacy "see more" anchor (kept for SEO but invisible). */
.sp-home-category--more {
    display: none !important;
}

/* ---------- Flyout panel ---------- */
.sp-home-cat-flyout {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    right: auto !important;

    width: min(980px, calc(100vw - 320px));
    min-width: min(720px, calc(100vw - 320px));
    min-height: 100%;

    padding: 24px 30px 26px;
    background: #fff;
    border: 1px solid var(--sp-border, #e5e7eb);
    border-left: 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 16px 0 40px rgba(15, 23, 42, 0.10);

    /* Codex: 99999 plus a clean stacking-context chain prevents slider
     * arrows from poking through. */
    z-index: 99999 !important;
    overflow: hidden;             /* clip decorative image to the panel */

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, visibility 160ms;
}

/* Pass 22 — JS class is source of truth, :focus-within for keyboard a11y. */
.sp-home-cat-row.sp-flyout-open > .sp-home-cat-flyout,
.sp-home-cat-row:focus-within > .sp-home-cat-flyout {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ---------- Decorative image bottom-right of flyout ---------- */
.sp-home-cat-flyout__image {
    position: absolute;
    /* Pass 24: 10px inset, never bleeds past flyout border. */
    bottom: 10px;
    right: 10px;
    max-width: 280px;
    max-height: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    /* Don't block content text — leave room on the right column.
     * Items in .sp-mega__columns will reflow around it because of the
     * grid auto-fit; image only sits in the empty bottom-right region. */
}

/* ---------- Mobile / tablet: disable hover UX entirely ---------- */
@media (max-width: 1099px) {
    .sp-home-cat-row.is-secondary {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible !important;
        pointer-events: auto !important;
    }
    .sp-home-categories__expand,
    .sp-home-cat-flyout {
        display: none !important;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .sp-home-cat-row,
    .sp-home-categories__expand,
    .sp-home-cat-flyout {
        transition: none !important;
    }
}

/* Don't let the grid stretch the sidebar past its content height — that
 * leaves an awkward white gap below row 4 in the collapsed state. With
 * align-items:start the sidebar takes its content height (4 rows in
 * collapsed state, 8 rows when hovered), and the chevron at bottom:-18px
 * sits cleanly just below the visible content. */
.sp-home-stage {
    align-items: start !important;
}
.sp-home-categories {
    align-self: start !important;
}

/* === Sidebar height = slider height (Codex strategy C, pass 4) === */
/*
 * Codex consultation: use flex auto-stretch so the visible row count
 * fills the slider height, regardless of how many categories admin
 * picks. Never clip the flyout's ancestor (would defeat z-index).
 *
 *   - Sidebar inherits the grid cell's full height (slider's natural
 *     height because grid align-items defaults to stretch).
 *   - Rows flex: 1 1 0; min-height: 55px — distribute to fill when N
 *     is small (8 cats × 55px = 440px ≈ slider), stay tall enough
 *     when N is large (28 cats: rows stay at 55px, sidebar overflows
 *     and capped via the secondary-row hover-reveal pipeline).
 *   - All ancestors of the flyout stay overflow:visible so the
 *     horizontal panel is never clipped.
 */

/* Grid cell stretches the sidebar to slider height. */
.sp-home-stage {
    align-items: stretch !important;
}
.sp-home-categories {
    align-self: stretch !important;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* List fills the sidebar; rows distribute to fill the list. */
.sp-home-categories__list {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    overflow: visible !important;
}

.sp-home-cat-row {
    flex: 1 1 0;
    min-height: 54px;
    display: flex;
}

.sp-home-cat-row > .sp-home-category {
    flex: 1;
    height: 100%;
    /* Override the existing min-height so flex stretch wins. */
    min-height: 0 !important;
}

/* Visual border between rows is on the link element already; remove
 * the last row's bottom border so the sidebar ends cleanly. */
.sp-home-cat-row:last-child > .sp-home-category {
    border-bottom: 0;
}

/* === Sidebar overlay strategy: anchor in grid, sidebar absolute (pass 5) === */
/*
 * The previous approach kept the sidebar in normal grid flow, so when
 * 12 rows revealed on hover, the grid row grew and pushed feature
 * cards down — visually broken vs zoommer.ge where the expanded
 * sidebar OVERLAYS the page below.
 *
 * Fix: introduce .sp-home-categories-anchor as the grid-cell holder
 * (inherits slider height via stretch). The actual <aside> is
 * absolutely positioned inside the anchor, so it can grow vertically
 * past the grid row without pushing anything.
 *
 * z-index chain (high → low):
 *   .sp-home-cat-flyout      99999
 *   .sp-home-categories       200
 *   .sp-home-categories-anchor 100   (so the absolute child stays in
 *                                       the same stacking context)
 *   .sp-home-slider             1
 *   .sp-feature-strip           1   (next stage, also positioned)
 */

.sp-home-stage {
    position: relative;
    z-index: 50;
    overflow: visible !important;
    align-items: stretch !important;
}

/* Anchor: grid cell, takes slider height, never grows. */
.sp-home-categories-anchor {
    position: relative;
    z-index: 100;
    align-self: stretch;
    /* Establish a min-height so the anchor doesn't collapse if its
     * child becomes absolutely positioned. The sidebar's absolute
     * child fills it via inset:0. */
    min-height: 380px;
    overflow: visible;
}

/* Sidebar: absolutely positioned overlay inside the anchor. Can grow
 * vertically on hover without pushing anything. */
.sp-home-categories {
    position: absolute !important;
    inset: 0 0 auto 0;            /* top-left, full width, height by content */
    z-index: 200;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--sp-shadow, 0 8px 24px rgba(15, 23, 42, 0.06));
    overflow: visible !important; /* never clip the flyout descendant */

    /* Internal flex column so the list fills available height. */
    display: flex;
    flex-direction: column;
}

/* Sidebar's collapsed height = anchor's height (slider height). */
.sp-home-categories,
.sp-home-categories__list {
    /* Reset any previous flex weirdness so the rows clearly distribute. */
    min-height: 0 !important;
}

.sp-home-categories__list {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

/* Rows: balanced height (~58-60px), good visual spacing. */
.sp-home-cat-row {
    flex: 1 1 0;
    min-height: 58px;
    max-height: 64px;             /* prevent stretch jitter when slider is tall */
    display: flex;
    overflow: visible;
}

.sp-home-cat-row > .sp-home-category {
    flex: 1;
    height: 100%;
    min-height: 0 !important;
    padding: 10px 18px;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    column-gap: 14px;
}

.sp-home-cat-row > .sp-home-category > .sp-home-category__icon {
    width: 24px;
    height: 24px;
}

/* Secondary rows: collapsed height: 0 by default; reveal on hover.
 * Override the previous max-height:80px so the expansion is precisely
 * one row's worth of height. */
.sp-home-cat-row.is-secondary {
    flex: 0 0 auto !important;
    max-height: 0 !important;
    min-height: 0 !important;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 0;
    transition: max-height 240ms ease, opacity 200ms ease;
}

.sp-home-categories:hover .sp-home-cat-row.is-secondary,
.sp-home-categories:focus-within .sp-home-cat-row.is-secondary {
    max-height: 64px !important;
    min-height: 58px !important;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
}

/* Drop the legacy "more" anchor which is duplicating layout space. */
.sp-home-category--more { display: none !important; }

/* Stage's siblings (feature-strip etc.) need a positioned context too
 * so the absolute sidebar overlays them on hover-expand. */
.sp-feature-strip,
.sp-brand-strip,
.sp-product-section {
    position: relative;
    z-index: 1;
}

/* === Sidebar fills slider height exactly + chevron at sidebar bottom (pass 6) === */
/*
 * User audit: previous max-height:64px on rows capped the total sidebar
 * height, leaving a visible gap below the sidebar. Also the chevron
 * lived at the SIDEBAR bottom rather than the LIST bottom, so it
 * floated mid-page once the sidebar was shorter than the slider.
 *
 * Fixes:
 *   - Sidebar now uses inset:0 (full bounds of the anchor), so it
 *     ALWAYS matches anchor height = slider height.
 *   - Rows lose their max-height cap; they flex to evenly fill the
 *     full sidebar height.
 *   - Chevron is anchored to the LIST element's bottom (not the
 *     sidebar's), so it sits just below the last visible row.
 *   - Anchor's min-height is removed; grid stretch handles the height.
 */

.sp-home-categories-anchor {
    min-height: 0 !important;     /* let grid stretch pick the height */
}

.sp-home-categories {
    /* Fill the anchor exactly in collapsed state. When secondary rows
     * reveal on hover, the sidebar grows BELOW the anchor (overlay) by
     * letting bottom auto out via the .is-secondary expansion. */
    inset: 0 !important;
    height: auto !important;
    min-height: 100%;
}

/* Rows: drop the max-height cap so flex can stretch them evenly. */
.sp-home-cat-row {
    max-height: none !important;
}

/* Chevron is now positioned relative to the list, sitting just below
 * the last visible row regardless of sidebar height. */
.sp-home-categories__list {
    position: relative;           /* positioning context for chevron */
}

.sp-home-categories__expand {
    position: absolute !important;
    /* Override the previous bottom:-18px (which was relative to the
     * sidebar). Now bottom:-18px of the list element = below the
     * last visible row. */
    bottom: -18px !important;
}

/* === Pass 7: sidebar grows past anchor with full opaque background === */
/*
 * Pass-6 used `inset: 0` which forced sidebar height = anchor height.
 * Result: when secondary rows expanded, the rows visually overflowed
 * the sidebar's white-backgrounded box and rendered transparently
 * over feature-cards (the icons appearing over the page below).
 *
 * Fix: drop bottom:0; explicitly set top/left/right = 0 only. Sidebar
 * height is content-driven, with min-height:100% to fill anchor in
 * collapsed state. The white background now extends across all 12
 * rows when expanded — no transparent overlap.
 */
.sp-home-categories {
    inset: auto !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    height: auto !important;
    min-height: 100%;

    /* Make sure the box-shadow stays consistent and the overlay reads
     * as a single tall card when expanded. */
    background: #fff !important;
}

/* === Pass 8 (Playwright-verified): kill max-height clamp, free flex distribution === */
/*
 * Browser inspection found:
 *   - .sp-home-categories had max-height:360px from a legacy rule (no !important).
 *   - Rows had min-height:58px, so 8 rows totaled 464px and overflowed the 360px box.
 *
 * Fix: remove BOTH limits in collapsed state. Slider is 360px; let flex
 * distribute that height across the 8 visible rows (~45px each). Row's
 * inner link gets tighter padding so the icon+label still feels balanced.
 */
.sp-home-categories {
    max-height: none !important;
    overflow-y: visible !important;
}

.sp-home-cat-row:not(.is-secondary) {
    min-height: 0 !important;
    max-height: none !important;
}

/* Tighter row padding so 45px rows still read cleanly. */
.sp-home-cat-row > .sp-home-category {
    padding: 6px 18px !important;
    min-height: 0 !important;
}

.sp-home-cat-row > .sp-home-category > .sp-home-category__icon {
    width: 22px !important;
    height: 22px !important;
}

/* Hover-revealed secondary rows still get a comfortable height — the
 * sidebar grows past the anchor via overlay, so we can afford 50px there. */
.sp-home-categories:hover .sp-home-cat-row.is-secondary,
.sp-home-categories:focus-within .sp-home-cat-row.is-secondary {
    max-height: 60px !important;
    min-height: 50px !important;
}

/* === Pass 9 (Playwright-verified): restore sidebar fill-anchor height === */
/*
 * Pass-8 over-corrected: by killing min-height on the sidebar, the
 * absolute-positioned element collapsed to 1.6px because content
 * (rows with flex-basis:0) summed to 0 and there was no explicit
 * height-source.
 *
 * Restored chain:
 *   sidebar: min-height:100% (= anchor's 360px) so it fills the cell
 *   sidebar: height:auto (so it can grow past 360px when hover-expanded)
 *   list:    flex:1 (fills sidebar's height)
 *   row:     flex:1 1 0; min-height:0 (rows distribute the list's height
 *           across 8 visible rows ≈ 45px each at the slider's 360px)
 */
.sp-home-categories {
    min-height: 100% !important;
    height: auto !important;
}

/* The pass-6 list min-height:0 stays — the list still needs to flex-shrink
 * inside the sidebar; only the sidebar itself needs the 100% floor. */

/* === Pass 10: fixed-height rows so sidebar grows on hover-expand === */
/*
 * Pass-9 used flex:1 1 0 to distribute the slider height across 8 rows.
 * That works for COLLAPSED state but breaks on hover: list height stays
 * pinned, so when secondary rows expand to 50px the visible rows shrink
 * to fit instead of the sidebar growing.
 *
 * Fix: switch visible rows to fixed flex:0 0 45px height. Sidebar's
 * total = 8 * 45 = 360px (matches the 360px slider). On hover, secondary
 * rows stretch to 50px each and the sidebar grows from 360px to ~560px
 * via the existing min-height:100% + height:auto chain — no row reflow.
 */
.sp-home-cat-row:not(.is-secondary) {
    flex: 0 0 45px !important;
    min-height: 0 !important;
    max-height: none !important;
}

.sp-home-cat-row > .sp-home-category {
    padding: 4px 18px !important;
    min-height: 0 !important;
}

/* When sidebar is hovered, secondary rows expand naturally — no need to
 * touch visible rows. */
.sp-home-categories:hover .sp-home-cat-row.is-secondary,
.sp-home-categories:focus-within .sp-home-cat-row.is-secondary {
    flex: 0 0 50px !important;
    max-height: 50px !important;
    min-height: 0 !important;
}

/* === Pass 11 (Playwright-verified vs zoommer): close the 8px gap + hover bridge === */
/*
 * Real-browser inspection found:
 *   Row right edge: x=387
 *   Flyout left edge: x=395
 *   8px GAP between them — when cursor crosses, neither :hover is true
 *   and the flyout fades out. zoommer's gap is 0px (verified live).
 *
 * Two-part fix:
 *   1. Eliminate the gap entirely. The 8px came from sidebar's border-box
 *      math (border 1px + small offset from .sp-home-cat-flyout's padding
 *      interaction). Override flyout's left to match the row's right edge
 *      using viewport-relative `transform: translateX(0)` + `left: 100%`
 *      and clear any inherited margin/inset.
 *   2. Add a hover bridge — a ::before pseudo on the flyout extending
 *      leftward 16px into the gap area. The bridge is invisible but
 *      counts as part of the flyout for cursor hit-testing.
 *   3. Keep the flyout open while the cursor hovers IT directly, not just
 *      the row. That way once the user reaches the flyout, leaving the
 *      row no longer matters.
 */

/* Eliminate gap — flyout's left edge sits exactly at the row's right edge. */
.sp-home-cat-flyout {
    left: calc(100% - 1px) !important;  /* -1px compensates for the sidebar's border */
    margin: 0 !important;
}

/* Hover bridge: 16px-wide invisible strip on the flyout's left side that
 * counts as part of the flyout for hover purposes. The bridge spans the
 * gap area so the cursor never enters "no-man's-land" while traveling
 * sidebar → flyout. */
.sp-home-cat-flyout::before {
    content: "" !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -16px;
    width: 16px;
    background: transparent;
    pointer-events: auto;
}

/* Pass 22: JS class .sp-flyout-open is the single open-state source.
 * :focus-within preserved for keyboard accessibility. Hover triggers
 * removed so Escape/click-outside can actually close the panel. */
.sp-home-cat-row.sp-flyout-open > .sp-home-cat-flyout,
.sp-home-cat-row:focus-within > .sp-home-cat-flyout {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
}

.sp-home-cat-row.sp-flyout-open > .sp-home-category {
    background: var(--sp-soft, #eef6ff);
    color: var(--sp-primary, #1773ea);
}

/* === Pass 12: zoommer-matched product card image + hover persistence === */
/*
 * Real-browser comparison (Playwright):
 *   Zoommer card 160×303, image 160×160 edge-to-edge (84% of card).
 *   SmartPlus card 205×370, image 167×124 with padding 50px 18px 18px
 *   → 27% of card. Image looked tiny.
 *
 * Fix: pull the wrap's padding to 0 so the image fills the card's full
 * width as a 1:1 square. BEST PRICE / sale badge floats over the image
 * at top-left, matching zoommer's badge position.
 */

.sp-product-card__image {
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    background: #fff !important;
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.sp-product-card__image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    padding: 18px !important;     /* breathing room INSIDE the square */
    box-sizing: border-box !important;
}

/* BEST PRICE / sale badge — top-left over the image */
.sp-product-card .sp-product-card__badge,
.sp-product-card .onsale,
.sp-product-card [class*="badge"] {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 5 !important;
    margin: 0 !important;
    padding: 4px 12px !important;
    background: var(--sp-soft, #eef6ff) !important;
    color: var(--sp-primary, #1773ea) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    border-radius: 999px !important;
    line-height: 1.4 !important;
    text-transform: uppercase;
}

/* === Pass 12b: hover persistence — give cursor time to reach flyout === */
/*
 * User feedback: flyout disappeared too fast when moving cursor over
 * white space toward category links. zoommer keeps theirs visible
 * comfortably long (React state, no transition).
 *
 * Add a 220ms TRANSITION-DELAY on the closing transition. While
 * cursor is OFF the row but ON its way to the flyout, the flyout
 * still appears visible for 220ms — enough time to land on the
 * bridge or flyout. When cursor returns to row/flyout, the open
 * transition fires immediately (no delay on opening).
 */
.sp-home-cat-flyout {
    transition: opacity 160ms ease 220ms,
                visibility 0s linear 380ms !important;
}

/* Pass 22 — JS class drives the no-delay open transition. */
.sp-home-cat-row.sp-flyout-open > .sp-home-cat-flyout,
.sp-home-cat-row:focus-within > .sp-home-cat-flyout {
    transition: opacity 160ms ease 0s,
                visibility 0s linear 0s !important;
}

/* === Pass 12c: force 1:1 image area (aspect-ratio was being squashed by parent flex) === */
.sp-product-card__image {
    aspect-ratio: 1 / 1;
    height: auto !important;          /* override any flex-fixed height */
    flex: 0 0 auto !important;        /* don't let flex shrink it */
    padding-top: 100%;                /* fallback in case aspect-ratio is overridden */
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
}

/* When padding-top is in play, image becomes absolutely positioned inside */
.sp-product-card__image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 14px !important;          /* breathing room inside the square */
    box-sizing: border-box !important;
}

/* Reset aspect ratio's effect on padding-top — when aspect-ratio is supported,
 * padding-top: 100% is redundant. Both together are safe. */
@supports (aspect-ratio: 1 / 1) {
    .sp-product-card__image {
        padding-top: 0 !important;
    }
}

/* === Pass 12d: kill 124px max-height on product card image === */
.sp-product-card__image img,
.sp-product-card img.attachment-smartplus-card,
.sp-product-card img.wp-post-image {
    max-height: none !important;
    max-width: none !important;
}

/* === Pass 13: flyout panel fits its content (no min-height clamp) === */
/*
 * Playwright inspection showed:
 *   - მობილურები flyout was 980×360 with only 7 items (2 rows of grid)
 *     leaving most of the panel empty white because of min-height:100%
 *     (which made it match the sidebar's 360px height).
 *   - ტექნიკა flyout was 980×1240 — content drove the height correctly
 *     because the columns layout filled the space.
 *
 * Fix: drop min-height:100% on the flyout. Each panel now sizes to its
 * own content. Sidebar background stays visible (white card) regardless
 * because the flyout is overlaid on top of slider/feature-cards via
 * z-index:99999, not against the sidebar's background.
 *
 * Side benefit: when the flyout is short (flat panels, ≤8 items), the
 * panel feels compact and zoommer-correct instead of a 360px white wall
 * with two rows of links at the top.
 */
.sp-home-cat-flyout {
    min-height: 0 !important;
}

/* For column-flyouts with VERY uneven column heights (e.g. ტექნიკა has
 * a 17-row column next to a 6-row column), trim the bottom padding so
 * the short columns don't visually leave 100+px of dead space.
 * Use align-content: start on the grid container — already in pass-11
 * but make sure it sticks. */
.sp-home-cat-flyout--columns .sp-mega__columns {
    align-content: start !important;
    align-items: start !important;
}

/* Flat panel: tighter row gap so 7 items don't sprawl over a 360px
 * panel. With min-height gone the panel will already shrink, but lock
 * the inter-row gap to a comfortable 6px for clarity. */
.sp-home-cat-flyout--flat ul {
    gap: 6px 28px !important;
    align-content: start;
}

/* === Pass 14 (Codex-reviewed): flyout height matches sidebar with inner-scroll === */
/*
 * User requirement: flyout panel height should match the sidebar's
 * actual rendered height (includes hover-expanded secondary rows).
 * If content > sidebar height → scroll inside the panel.
 *
 * Codex's three critical insights:
 *  1. The flyout's `top: 0` is relative to its <li> ROW, not the
 *     sidebar — lower rows would push the flyout below the sidebar.
 *     Fix: JS writes --sp-row-offset per row, CSS pulls flyout up
 *     by that offset.
 *  2. overflow-y: auto on the flyout would clip the ::before bridge
 *     pseudo (which extends 16px LEFT). Solution: split into outer
 *     (overflow:visible) + inner wrapper (overflow:auto) — markup
 *     change in front-page.php just landed.
 *  3. Set --sp-sidebar-h synchronously on init, not just on hover,
 *     so the first hover already has the right height.
 */

/* JS writes --sp-sidebar-h on the sidebar and --sp-row-offset on each
 * row. Use these to size the flyout. */

.sp-home-cat-flyout {
    /* Note: rows are position:static (pass 5), so flyout's containing
     * block is the sidebar itself. `top: 0` already equals the
     * sidebar's top edge — no row-offset compensation needed. */
    top: 0 !important;

    /* Pass-15: height = max(sidebar height, content height) capped at
     * 90vh. flex:column + inner flex:1 makes the inner stretch to
     * fill outer. With this, content that fits the sidebar shows no
     * scroll (looks compact); content slightly larger pushes the
     * outer to grow (still no scroll); content >>>> page only scrolls
     * once outer hits its 90vh ceiling. */
    min-height: var(--sp-sidebar-h, 360px) !important;
    max-height: 90vh !important;
    height: auto !important;

    display: flex !important;
    flex-direction: column !important;

    /* Outer must stay overflow:visible so the ::before bridge stays
     * interactive. Scroll lives on the inner wrapper. */
    overflow: visible !important;
}

.sp-home-cat-flyout-inner {
    /* flex:1 lets the inner stretch to fill the outer regardless of
     * whether the outer is at min-height (matching sidebar with empty
     * space below) or grown to fit tall content. Drop min/max:inherit
     * because they were holding the inner at min and forcing scroll
     * for content slightly above it. */
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 30px 26px;
    background: #fff;
    border-radius: 0 12px 12px 0;
    /* Position context for the absolute decorative image */
    position: relative;
    /* Thin scrollbar on Firefox + Chromium */
    scrollbar-width: thin;
    scrollbar-color: rgba(23, 115, 234, 0.32) transparent;
}

.sp-home-cat-flyout-inner::-webkit-scrollbar {
    width: 6px;
}

.sp-home-cat-flyout-inner::-webkit-scrollbar-track {
    background: transparent;
}

.sp-home-cat-flyout-inner::-webkit-scrollbar-thumb {
    background: rgba(23, 115, 234, 0.32);
    border-radius: 999px;
}

.sp-home-cat-flyout-inner::-webkit-scrollbar-thumb:hover {
    background: rgba(23, 115, 234, 0.55);
}

/* The outer flyout no longer paints background or padding — those moved
 * to the inner wrapper so the bridge stays clean. */
.sp-home-cat-flyout {
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 12px 12px 0 !important;
    box-shadow: none !important;
}

/* The inner wrapper picks up the visual styling (shadow + border). */
.sp-home-cat-flyout-inner {
    border: 1px solid var(--sp-border, #e5e7eb);
    border-left: 0;
    box-shadow: 14px 0 36px rgba(15, 23, 42, 0.10);
}

/* Pass 24: image fully inset (10px) so it never bleeds past the panel border. */
.sp-home-cat-flyout__image {
    bottom: 10px !important;
    right: 10px !important;
}

/* === Three-level hierarchy (zoommer-matched typography) === */
/* Parent name = active row in sidebar, already highlighted. */
/* Children = column heads, BOLD black */
.sp-home-cat-flyout--columns .sp-mega__column-head {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: var(--sp-ink, #111827) !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
}

/* Grandchildren = leaves, regular weight, slightly muted */
.sp-home-cat-flyout--columns .sp-mega__column li a {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #4b5563 !important;
    padding: 4px 0 !important;
}

.sp-home-cat-flyout--columns .sp-mega__column li a:hover,
.sp-home-cat-flyout--columns .sp-mega__column li a:focus-visible {
    color: var(--sp-primary, #1773ea) !important;
}

/* Flat panel: items styled like grandchildren (regular weight). */
.sp-home-cat-flyout--flat ul a {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--sp-ink, #111827) !important;
}

/* === Pass 15b: image moved out of inner — re-position relative to OUTER === */
/* Image is now a direct child of the outer flyout, not the inner. Must
 * still anchor to bottom-right of the panel. */
.sp-home-cat-flyout > .sp-home-cat-flyout__image {
    position: absolute !important;
    /* Pass 24: image fully inside the panel, 10px from bottom + right
     * edges so it never bleeds past the flyout's border. */
    bottom: 10px !important;
    right: 10px !important;
    max-width: 280px !important;
    max-height: 240px !important;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* Pass 23: reserve a bottom band so multi-column text never flows
 * behind the decorative image. Applied only when an image is present
 * (otherwise the empty space would just waste room). */
.sp-home-cat-flyout:has(> .sp-home-cat-flyout__image) .sp-home-cat-flyout-inner {
    padding-bottom: 256px !important;
}

/* === Pass 16: CSS multi-column instead of grid (kills inter-row gap) === */
/*
 * User audit: ტექნიკა flyout had 4 columns at top (კონდიციონერები,
 * მსხვილი, ჩასაშენებელი, ციფრული) then a HUGE white gap, then
 * წვრილი ტექნიკა as a 5th section below. CSS Grid auto-fit puts
 * items in row-major order — when there are 5 sections in a 4-col
 * grid, the 5th drops to row 2 and the other 3 cells in row 2 are
 * empty (grid distributes empty space).
 *
 * Fix: switch to CSS multi-column (column-count + column-fill).
 * Sections flow naturally: each section breaks-inside-avoid so its
 * header+items stay together, but consecutive sections can pack
 * into the SAME column if there's room. No empty cells, no white
 * gaps.
 */
.sp-home-cat-flyout--columns .sp-mega__columns {
    display: block !important;
    column-count: 4;
    column-gap: 30px;
    column-fill: balance;
}

.sp-home-cat-flyout--columns .sp-mega__column {
    /* Keep each section's header + items together in a single column. */
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    /* Spacing between consecutive sections within a column. */
    margin-bottom: 22px;
    display: block;
}

/* Multi-column doesn't honor `display: flex` on the children, so
 * reset the column section to standard block layout. */
.sp-home-cat-flyout--columns .sp-mega__column ul {
    display: block !important;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sp-home-cat-flyout--columns .sp-mega__column li {
    display: block;
    margin: 0;
}

/* On narrower viewports, drop to 3 then 2 columns. */
@media (max-width: 1280px) {
    .sp-home-cat-flyout--columns .sp-mega__columns { column-count: 3; }
}
@media (max-width: 980px) {
    .sp-home-cat-flyout--columns .sp-mega__columns { column-count: 2; }
}

/* === Pass 17 (Codex-diagnosed): keep pointer-events alive during close grace === */
/*
 * Bug: when cursor leaves row, .sp-home-cat-row:hover drops INSTANTLY.
 * Pre-pass-17 close transition was:
 *   opacity 160ms 220ms     (visual fade — delay 220ms then fade for 160ms)
 *   visibility 0s 380ms     (visibility flips to hidden at 380ms)
 *   pointer-events: none    (NO transition → flips INSTANTLY)
 *
 * Result: during the 0-380ms close grace window, flyout is still visible
 * (visibility: visible) BUT pointer-events: none. Cursor over flyout pixels
 * hits whatever's behind (slider, feature-cards). .sp-home-cat-flyout:hover
 * never fires because the hit element isn't the flyout. So the close keeps
 * progressing and the flyout disappears, exactly as the user reported.
 *
 * Fix: delay pointer-events with the same 380ms timer as visibility so it
 * stays `auto` throughout the grace window. Cursor entering flyout in that
 * window now triggers :hover which cancels the close transition.
 */
.sp-home-cat-flyout {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition:
        opacity 160ms ease 220ms,
        visibility 0s linear 380ms,
        pointer-events 0s linear 380ms !important;
}

/* Pass 22: removed :hover and :hover-on-flyout open-state triggers.
 * JS now owns the open/close lifecycle via the .sp-flyout-open class.
 * Keyboard focus-within is preserved for accessibility. */
.sp-home-cat-row:focus-within > .sp-home-cat-flyout {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition:
        opacity 160ms ease 0s,
        visibility 0s linear 0s,
        pointer-events 0s linear 0s !important;
}

/* === Pass 18: hover-intent class joins :hover as an open-state trigger === */
/*
 * The JS hover-intent layer in main.js sets `.sp-flyout-open` on the
 * active sidebar row. This selector adds it to the open-state cascade
 * so JS-managed hover state opens the flyout the same way CSS :hover
 * does, with the SAME no-delay transition timings.
 *
 * Pure CSS :hover stays as a fallback (works fine for slow cursor and
 * keyboard focus). The JS class is the reliable layer for fast diagonal
 * cursor movement where browser hover events are throttled.
 */
.sp-home-cat-row.sp-flyout-open > .sp-home-cat-flyout {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition:
        opacity 160ms ease 0s,
        visibility 0s linear 0s,
        pointer-events 0s linear 0s !important;
}

/* Active sidebar row visually highlighted while its flyout is open
 * (matches the same treatment as :hover). */
.sp-home-cat-row.sp-flyout-open > .sp-home-category {
    background: var(--sp-soft, #eef6ff);
    color: var(--sp-primary, #1773ea);
}


/* ============================================================
 * === Pass 27: UNIFIED MOBILE RESPONSIVE LAYER (≤ 1099px) ===
 * ============================================================ */

:root {
    --sp-tap:       44px;
    --sp-tap-lg:    48px;
    --sp-gutter:    24px;
    --sp-section-gap: 48px;
    --sp-card-gap:  20px;
    --sp-drawer-w:  min(86vw, 360px);
}

html, body {
    overflow-x: clip;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
select,
textarea {
    font-size: 16px !important;
}

@media (hover: none) {
    .sp-home-cat-flyout {
        display: none !important;
    }
}

@media (max-width: 1099px) {

    :root {
        --sp-gutter: 16px;
        --sp-section-gap: 32px;
        --sp-card-gap: 12px;
    }

    .sp-topbar {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
    .sp-topbar__phone { font-size: 12px !important; }
    .sp-topbar__nav,
    .sp-topbar__note {
        display: none !important;
    }

    .sp-header-main__inner {
        gap: 10px !important;
        padding: 10px var(--sp-gutter) !important;
        flex-wrap: wrap !important;
    }
    .sp-logo,
    .sp-logo--image {
        flex: 0 0 auto !important;
        font-size: 16px !important;
    }
    .sp-logo-text { font-size: 16px !important; }
    .sp-catalog-toggle {
        padding: 0 14px !important;
        height: var(--sp-tap-lg) !important;
        min-width: var(--sp-tap-lg) !important;
        font-size: 14px !important;
    }
    .sp-catalog-toggle__label {
        display: none !important;
    }
    .sp-catalog-toggle__icon {
        width: 22px !important;
        height: 22px !important;
    }
    .sp-header-search {
        order: 99 !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
        margin-top: 8px !important;
    }
    .sp-header-search input {
        height: var(--sp-tap-lg) !important;
    }
    .sp-icon-link__text,
    .sp-mobile-cart__label,
    .sp-mobile-favorites__label {
        display: none !important;
    }
    .sp-icon-link,
    .sp-mobile-cart,
    .sp-mobile-favorites,
    .sp-sale-link {
        min-width: var(--sp-tap-lg) !important;
        min-height: var(--sp-tap-lg) !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .sp-home-stage {
        flex-direction: column !important;
        gap: 16px !important;
        padding: 0 var(--sp-gutter) !important;
    }
    .sp-home-categories-anchor {
        display: none !important;
    }

    body.sp-catalog-open .sp-home-categories-anchor {
        display: block !important;
        position: fixed !important;
        top: 0 !important; bottom: 0 !important; left: 0 !important;
        width: var(--sp-drawer-w) !important;
        max-width: 100vw !important;
        z-index: 99999 !important;
        background: #fff !important;
        box-shadow: 6px 0 24px rgba(0, 0, 0, .25) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        animation: sp-drawer-in 220ms ease-out !important;
    }
    body.sp-catalog-open .sp-home-categories {
        position: static !important;
        width: 100% !important;
        max-height: none !important;
        height: auto !important;
        min-height: 100% !important;
        padding: 8px 0 !important;
        box-shadow: none !important;
    }
    body.sp-catalog-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(15, 22, 36, .55);
        z-index: 99998;
        animation: sp-fade-in 220ms ease-out;
    }
    body.sp-catalog-open {
        overflow: hidden !important;
    }
    @keyframes sp-drawer-in {
        from { transform: translateX(-100%); }
        to   { transform: translateX(0); }
    }
    @keyframes sp-fade-in {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    body.sp-catalog-open .sp-home-cat-row {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible !important;
        pointer-events: auto !important;
        padding: 0 !important;
    }
    body.sp-catalog-open .sp-home-cat-row.is-secondary {
        max-height: none !important;
        opacity: 1 !important;
    }
    body.sp-catalog-open .sp-home-cat-row > .sp-home-category {
        min-height: var(--sp-tap-lg) !important;
        padding: 12px 18px !important;
        font-size: 15px !important;
    }
    body.sp-catalog-open .sp-home-cat-flyout {
        display: none !important;
    }
    body.sp-catalog-open .sp-home-categories__expand,
    body.sp-catalog-open .sp-home-category--more {
        display: none !important;
    }
    .sp-home-cat-row__chev { display: none !important; }

    .sp-home-slider {
        display: block !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .sp-home-slider__track {
        height: clamp(220px, 50vw, 360px) !important;
        min-height: 220px !important;
    }
    .sp-hero-zoom__media {
        display: none !important;
    }
    .sp-hero-zoom__copy {
        padding: 16px 18px !important;
    }
    .sp-hero-zoom__copy strong {
        font-size: clamp(20px, 5vw, 28px) !important;
        line-height: 1.2 !important;
    }
    .sp-hero-zoom__price {
        font-size: clamp(18px, 4.5vw, 22px) !important;
    }

    .sp-feature-cards {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 0 var(--sp-gutter) !important;
    }
    .sp-feature-card {
        padding: 14px !important;
    }
    .sp-feature-card__title {
        font-size: 14px !important;
    }
    .sp-feature-card__text {
        font-size: 12px !important;
    }

    .sp-products-grid,
    .sp-products-row,
    .sp-home-row__track {
        padding: 0 var(--sp-gutter) !important;
        gap: 12px !important;
    }
    .sp-section-head,
    .sp-home-row__head {
        padding: 0 var(--sp-gutter) !important;
        font-size: 18px !important;
    }
    .sp-section-head h2,
    .sp-home-row__title {
        font-size: clamp(18px, 5vw, 22px) !important;
    }

    .sp-product-card {
        min-width: 160px !important;
    }
    .sp-product-card__image {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        padding: 0 !important;
    }
    .sp-product-card__image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
    .sp-product-card__title {
        font-size: 13px !important;
        line-height: 1.3 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .sp-product-card__price {
        font-size: 15px !important;
    }
    .sp-product-card__add,
    .sp-product-card__heart {
        min-height: var(--sp-tap) !important;
        min-width: var(--sp-tap) !important;
    }

    .sp-home-promo,
    .sp-home-banner {
        margin: 0 var(--sp-gutter) !important;
        max-width: calc(100% - var(--sp-gutter) * 2) !important;
        border-radius: 8px !important;
        min-height: 120px !important;
    }

    .sp-shop-hero {
        padding: 16px var(--sp-gutter) !important;
    }
    .sp-shop-hero__inner {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .sp-shop-hero h1 {
        font-size: clamp(22px, 6vw, 32px) !important;
    }

    .sp-shop-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .sp-shop-sidebar {
        display: none !important;
    }
    body.sp-shop-filters-open .sp-shop-sidebar {
        display: block !important;
        position: fixed !important;
        top: 0 !important; bottom: 0 !important; right: 0 !important;
        width: var(--sp-drawer-w) !important;
        z-index: 99999 !important;
        background: #fff !important;
        overflow-y: auto !important;
        padding: 16px !important;
        box-shadow: -6px 0 24px rgba(0, 0, 0, .25) !important;
        animation: sp-drawer-right-in 220ms ease-out !important;
    }
    body.sp-shop-filters-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(15, 22, 36, .55);
        z-index: 99998;
    }
    body.sp-shop-filters-open {
        overflow: hidden !important;
    }
    @keyframes sp-drawer-right-in {
        from { transform: translateX(100%); }
        to   { transform: translateX(0); }
    }

    .sp-shop-filter-fab {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 10px 16px !important;
        margin: 0 var(--sp-gutter) 16px !important;
        height: var(--sp-tap-lg) !important;
        background: var(--sp-primary, #1773ea) !important;
        color: #fff !important;
        border: none !important;
        border-radius: 6px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
    }

    .sp-product-page {
        grid-template-columns: 1fr !important;
        padding: 0 var(--sp-gutter) !important;
        gap: 18px !important;
    }
    .sp-product-gallery,
    .sp-product-summary,
    .sp-product-tabs {
        max-width: 100% !important;
    }
    .sp-product-summary h1 {
        font-size: clamp(18px, 5vw, 24px) !important;
    }
    .sp-product-price {
        font-size: clamp(20px, 5.5vw, 26px) !important;
    }
    .sp-product-summary .single_add_to_cart_button,
    .sp-product-add-to-cart .single_add_to_cart_button {
        height: var(--sp-tap-lg) !important;
        font-size: 15px !important;
        width: 100% !important;
    }

    .sp-footer__columns {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
    }
    .sp-footer {
        padding: 32px var(--sp-gutter) 16px !important;
    }
    .sp-footer__bottom {
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center !important;
    }

    .sp-site-header :is(.sp-logo, .sp-catalog-toggle, .sp-icon-link, .sp-sale-link, .sp-mobile-cart, .sp-mobile-favorites, nav a),
    .sp-mega :is(a, button),
    .sp-home-categories :is(a, button),
    .sp-page-sidebar nav a,
    .sp-footer-menu a,
    .sp-shop-filter-fab,
    .woocommerce-pagination :is(a.page-numbers, span.page-numbers) {
        min-block-size: var(--sp-tap) !important;
        touch-action: manipulation;
    }
}

@media (max-width: 480px) {
    .sp-feature-cards { grid-template-columns: 1fr !important; }
    .sp-footer__columns { grid-template-columns: 1fr !important; gap: 20px !important; }
}

@media (min-width: 768px) and (max-width: 1099px) {
    .sp-feature-cards { grid-template-columns: repeat(4, 1fr) !important; }
    .sp-products-grid:not(.is-row) { grid-template-columns: repeat(3, 1fr) !important; }
    .sp-footer__columns { grid-template-columns: repeat(4, 1fr) !important; }
    .sp-catalog-toggle__label { display: inline-block !important; }
    .sp-icon-link__text { display: inline-block !important; }
}

/* ===== End Pass 27 mobile responsive layer ===== */

/* === Pass 27 patches === */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-home-categories-anchor {
        padding-top: env(safe-area-inset-top, 12px) !important;
    }
    body.sp-catalog-open .sp-home-categories {
        padding: 60px 0 24px !important;
    }
    /* Add a close affordance at top of drawer */
    body.sp-catalog-open .sp-home-categories::before {
        content: "✕";
        position: absolute;
        top: 12px; right: 14px;
        width: 36px; height: 36px;
        display: grid;
        place-items: center;
        font-size: 22px;
        color: #1f2937;
        cursor: pointer;
        z-index: 1;
    }
    /* Keep brand text shorter at narrow widths */
    .sp-logo-text { max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}
@media (max-width: 380px) {
    .sp-logo-text { display: none !important; }   /* mark only on tiny screens */
    .sp-logo { gap: 0 !important; }
}

/* === Pass 27.2: refine header breakpoint scope ===
 * At 768-1099 the screen has plenty of width; revert header to
 * desktop-like layout but keep the catalog drawer (touch can't
 * hover the mega-menu). Mobile-style header only at ≤ 767.
 */
@media (min-width: 768px) and (max-width: 1099px) {
    .sp-header-main__inner {
        flex-wrap: nowrap !important;
        gap: 16px !important;
    }
    .sp-header-search {
        order: 0 !important;
        flex: 1 1 auto !important;
        max-width: 480px !important;
        margin-top: 0 !important;
    }
    .sp-icon-link__text,
    .sp-mobile-cart__label,
    .sp-mobile-favorites__label {
        display: inline-block !important;
    }
    .sp-catalog-toggle__label {
        display: inline-block !important;
    }
    .sp-topbar__nav {
        display: flex !important;
    }
    .sp-topbar__note {
        display: block !important;
    }
}

/* === Pass 27.3: tablet header restoration (768-1099) ===
 * The previous mobile rules with flex-wrap broke the tablet header.
 * Force desktop-like single-row layout with explicit ordering.
 */
@media (min-width: 768px) and (max-width: 1099px) {
    .sp-header-main__inner {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 14px !important;
        padding: 12px 16px !important;
    }
    .sp-logo,
    .sp-logo--image {
        order: 0 !important;
        flex: 0 0 auto !important;
    }
    .sp-catalog-toggle {
        order: 1 !important;
        flex: 0 0 auto !important;
        height: 44px !important;
        padding: 0 18px !important;
    }
    .sp-header-search {
        order: 2 !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 !important;
    }
    .sp-header-search input {
        height: 44px !important;
        font-size: 14px !important;
    }
    /* Right cluster: icons in a row */
    .sp-mobile-cart,
    .sp-mobile-favorites,
    .sp-icon-link,
    .sp-sale-link {
        order: 3 !important;
        flex: 0 0 auto !important;
        height: 44px !important;
        min-width: 44px !important;
    }
    .sp-icon-link__text,
    .sp-mobile-cart__label,
    .sp-mobile-favorites__label {
        display: none !important;        /* keep icon-only on tablet */
    }
    .sp-topbar {
        padding: 6px 16px !important;
    }
    .sp-topbar__inner {
        flex-wrap: nowrap !important;
    }
    .sp-topbar__note {
        display: none !important;        /* topbar text would push to 2 lines */
    }
    .sp-topbar__nav {
        display: flex !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        overflow: hidden !important;
    }
    .sp-topbar__nav a {
        font-size: 12px !important;
    }
}

/* === Pass 27.4: home-stage grid → single column on mobile === */
@media (max-width: 1099px) {
    .sp-home-stage {
        display: block !important;
        grid-template-columns: 1fr !important;
    }
    .sp-home-slider {
        width: 100% !important;
        max-width: 100% !important;
    }
}


/* ============================================================
 * === Pass 28: precision polish + no-op selector fixes  ====
 * ============================================================
 * Codex review revealed several Pass 27 selectors didn't match the
 * actual class names on the page (footer__columns→__inner,
 * product-page→product-main, product-card__add→card-favorite).
 * This pass corrects those AND adds the brand polish layer:
 *   • real <button> drawer close (replaces non-clickable ::before)
 *   • banner aspect-ratio (was min-height with cropping bugs)
 *   • hero badge restored
 *   • slider arrows hidden ≤768
 *   • tap feedback :active states
 *   • global @media (hover: none) neutralization
 *   • iOS safe-area-inset-bottom on drawers
 *   • logo S+ mark always visible (don't hide on tiny screens)
 */

/* ---- Real drawer close button (replaces pseudo-element X) ---- */
.sp-drawer-close {
    display: none;
}
@media (max-width: 1099px) {
    .sp-drawer-close {
        position: sticky;
        top: 8px;
        margin: 4px 8px 0 auto;
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        font-size: 28px;
        line-height: 1;
        font-weight: 300;
        color: #1f2937;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 999px;
        cursor: pointer;
        z-index: 2;
        transition: background 160ms ease, transform 120ms ease;
    }
    .sp-drawer-close:hover { background: #fff; }
    .sp-drawer-close:active { transform: scale(0.94); background: #eef6ff; }
    .sp-drawer-close:focus-visible { outline: 2px solid var(--sp-primary, #1773ea); outline-offset: 2px; }

    /* Kill the old ::before X — real button takes over */
    body.sp-catalog-open .sp-home-categories::before { content: none !important; }
}

/* ---- Logo always visible (revert Pass 27 hide-on-tiny rule) ---- */
@media (max-width: 380px) {
    .sp-logo-text {
        display: inline-block !important;
        font-size: 14px !important;
        max-width: 80px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .sp-logo {
        gap: 6px !important;
    }
}

/* ---- Footer: actual selector is sp-footer__inner (not __columns) ---- */
@media (max-width: 1099px) {
    .sp-footer__inner {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
    }
}
@media (max-width: 480px) {
    .sp-footer__inner {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }
}

/* ---- Single product: actual grid is .sp-product-main ---- */
@media (max-width: 1099px) {
    .sp-product-main {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .sp-product-summary__price {
        font-size: clamp(22px, 6vw, 28px) !important;
    }
    .sp-product-summary__cart .single_add_to_cart_button,
    .sp-product-summary__cart .button {
        width: 100% !important;
        min-height: 48px !important;
        font-size: 15px !important;
    }
}

/* ---- Product card: real action selectors ---- */
@media (max-width: 1099px) {
    .sp-card-favorite,
    .sp-product-card__actions .button,
    .sp-product-card__actions .sp-button,
    .sp-product-card__actions .added_to_cart {
        min-width: 44px !important;
        min-height: 44px !important;
    }
    .sp-card-favorite {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
    }
}

/* ---- Hero on mobile: badge + arrows + image fallback ---- */
@media (max-width: 767px) {
    .sp-home-slider__arrow,
    .sp-home-slider__arrow--prev,
    .sp-home-slider__arrow--next {
        display: none !important;
    }
    .sp-hero-zoom__eyebrow {
        display: inline-block !important;
        font-size: 10px !important;
        padding: 3px 8px !important;
        background: var(--sp-primary, #1773ea) !important;
        color: #fff !important;
        border-radius: 4px !important;
        margin-bottom: 8px !important;
    }
    /* Hide thumbs on mobile but keep slide background image */
    .sp-hero-zoom__media { display: none !important; }
    .sp-hero-zoom--image {
        background-size: cover !important;
        background-position: right center !important;
    }
}

/* ---- Promo banners: aspect-ratio not min-height ---- */
@media (max-width: 1099px) {
    .sp-home-promo,
    .sp-home-banner,
    .sp-home-promo--image,
    .sp-rail-banner,
    .sp-archive-banner--image {
        min-height: 0 !important;
        aspect-ratio: var(--sp-promo-mobile-ratio, 343 / 140) !important;
        background-size: cover !important;
        background-position: center !important;
    }
    /* If banner has an inline <img>, contain it */
    .sp-home-promo img,
    .sp-home-banner img,
    .sp-rail-banner img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}

/* ---- Product rails: restate horizontal scroll on mobile ---- */
@media (max-width: 1099px) {
    .sp-product-section--rail .sp-products-grid,
    .sp-products-grid.is-row,
    .sp-home-row__track {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: var(--sp-gutter, 16px);
        -webkit-overflow-scrolling: touch;
    }
    .sp-product-section--rail .sp-product-card,
    .sp-products-grid.is-row .sp-product-card,
    .sp-home-row__track .sp-product-card {
        scroll-snap-align: start;
    }
    /* Section head: keep title and link side-by-side */
    .sp-section-head,
    .sp-home-row__head {
        display: flex !important;
        align-items: baseline !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
    }
    .sp-section-head h2,
    .sp-home-row__title {
        min-width: 0 !important;
        flex: 1 1 auto !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .sp-section-head a,
    .sp-home-row__head a {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }
}

/* ---- Hover-none: neutralize touch hovers ---- */
@media (hover: none) {
    .sp-product-card:hover,
    .sp-feature-card:hover,
    .sp-card-favorite:hover,
    .sp-home-promo:hover,
    .sp-home-banner:hover,
    .sp-home-cat-row:hover {
        transform: none !important;
    }
    .sp-product-card:hover .sp-product-card__image img,
    .sp-feature-card:hover .sp-feature-card__icon,
    .sp-home-promo:hover img,
    .sp-home-banner:hover img {
        transform: none !important;
    }
    .sp-home-cat-flyout {
        display: none !important;
    }
}

/* ---- Tap feedback :active states (the polish layer) ---- */
@media (hover: none) {
    .sp-product-card:active,
    .sp-feature-card:active,
    .sp-mega__link:active {
        transform: scale(0.98);
        transition: transform 80ms ease-out;
    }
    .sp-card-favorite:active,
    .sp-product-card__actions .button:active,
    .sp-icon-link:active,
    .sp-mobile-cart:active,
    .sp-mobile-favorites:active,
    .sp-sale-link:active,
    .sp-catalog-toggle:active,
    .sp-shop-filter-fab:active {
        transform: scale(0.92);
        transition: transform 80ms ease-out;
    }
    .sp-home-cat-row > .sp-home-category:active {
        background: var(--sp-soft, #eef6ff) !important;
    }
}

/* ---- Safe-area-inset-bottom for drawers + sticky elements ---- */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-home-categories,
    body.sp-shop-filters-open .sp-shop-sidebar {
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

/* ---- Shop filter FAB: visible only on mobile, sticky-ish near top ---- */
.sp-shop-filter-fab {
    display: none;
}
@media (max-width: 1099px) {
    .sp-shop-filter-fab {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        margin: 0 0 16px !important;
        padding: 0 18px !important;
        height: 44px !important;
        min-width: 44px !important;
        background: var(--sp-primary, #1773ea) !important;
        color: #fff !important;
        border: none !important;
        border-radius: 8px !important;
        font-family: inherit !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        align-self: flex-start !important;
        box-shadow: 0 2px 8px rgba(23, 115, 234, 0.25) !important;
    }
    .sp-shop-filter-fab:active {
        transform: scale(0.97);
    }
    .sp-shop-filter-fab svg { flex: 0 0 auto; }
}

/* ===== End Pass 28 ===== */

/* === Pass 28.1: banner image override (long-standing CSS bug)
 * The .sp-home-promo rule at line 3190 uses `background:` shorthand
 * which clears background-image, defeating the .sp-home-promo--image
 * background-image declared earlier. Restate the image rule at the
 * tail of the file so it wins cascade order. */
.sp-home-promo.sp-home-promo--image {
    background-color: var(--sp-primary, #1773ea) !important;
    background-image:
        linear-gradient(90deg, rgba(13, 52, 110, 0.48), rgba(13, 52, 110, 0.08)),
        var(--sp-promo-desktop) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
@media (max-width: 767px) {
    .sp-home-promo.sp-home-promo--image {
        background-image:
            linear-gradient(90deg, rgba(13, 52, 110, 0.38), rgba(13, 52, 110, 0.05)),
            var(--sp-promo-mobile, var(--sp-promo-desktop)) !important;
    }
}


/* ============================================================
 * === Pass 29: motion polish — animations & smooth transitions
 * ============================================================
 * Brand-quality motion across the site. Every interactive surface
 * gets a smooth transition, hero slider crossfades with a soft
 * scale, sections fade-up as they enter the viewport.
 *
 * Easing tokens (universal):
 *   --sp-ease-out      0.22, 1, 0.36, 1     soft landing default
 *   --sp-ease-expo     0.16, 1, 0.3, 1      heroic deceleration
 *   --sp-ease-spring   0.34, 1.56, 0.64, 1  bouncy snap (use rarely)
 *   --sp-dur-fast      160ms                buttons / micro
 *   --sp-dur-base      280ms                cards / panels
 *   --sp-dur-slow      640ms                hero / page reveals
 */

:root {
    --sp-ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
    --sp-ease-expo:   cubic-bezier(0.16, 1, 0.30, 1);
    --sp-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --sp-dur-fast:    160ms;
    --sp-dur-base:    280ms;
    --sp-dur-slow:    640ms;
}

html {
    scroll-behavior: smooth;
}

/* ---- Hero slider: opacity + scale crossfade ---- */
.sp-home-slide {
    transition:
        opacity var(--sp-dur-slow) var(--sp-ease-out),
        transform var(--sp-dur-slow) var(--sp-ease-out) !important;
    transform: translateY(0) scale(0.985) !important;
    will-change: opacity, transform;
}
.sp-home-slide.is-active {
    transform: translateY(0) scale(1) !important;
}
/* Inner content (badge, title, price, image) fades up with a tiny
 * stagger when the slide activates. */
.sp-home-slide .sp-hero-zoom__copy,
.sp-home-slide .sp-hero-zoom__media {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 520ms var(--sp-ease-out) 60ms,
        transform 520ms var(--sp-ease-out) 60ms;
}
.sp-home-slide.is-active .sp-hero-zoom__copy {
    opacity: 1;
    transform: translateY(0);
}
.sp-home-slide.is-active .sp-hero-zoom__media {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 140ms;
}

/* ---- Slider dots: smooth active state ---- */
.sp-home-slider__dots button {
    transition:
        width 320ms var(--sp-ease-out),
        background 220ms var(--sp-ease-out),
        opacity 220ms var(--sp-ease-out);
}

/* ---- Slider arrows: lift + shadow on hover ---- */
.sp-home-slider__arrow {
    transition:
        background 220ms var(--sp-ease-out),
        transform 220ms var(--sp-ease-out),
        box-shadow 220ms var(--sp-ease-out),
        opacity 220ms var(--sp-ease-out);
}
.sp-home-slider__arrow:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 22px rgba(23, 115, 234, 0.25);
}
.sp-home-slider__arrow:active {
    transform: translateY(-50%) scale(0.96);
}

/* ---- Product cards: lift + shadow on hover ---- */
@media (hover: hover) and (pointer: fine) {
    .sp-product-card {
        transition:
            transform var(--sp-dur-base) var(--sp-ease-out),
            box-shadow var(--sp-dur-base) var(--sp-ease-out),
            border-color var(--sp-dur-base) var(--sp-ease-out);
    }
    .sp-product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    }
    .sp-product-card__image img {
        transition: transform 520ms var(--sp-ease-out);
    }
    .sp-product-card:hover .sp-product-card__image img {
        transform: scale(1.04);
    }
}

/* ---- Feature cards: subtle lift ---- */
@media (hover: hover) and (pointer: fine) {
    .sp-feature-card {
        transition:
            transform var(--sp-dur-base) var(--sp-ease-out),
            box-shadow var(--sp-dur-base) var(--sp-ease-out),
            border-color var(--sp-dur-base) var(--sp-ease-out);
    }
    .sp-feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    }
    .sp-feature-card__icon {
        transition: transform var(--sp-dur-base) var(--sp-ease-out);
    }
    .sp-feature-card:hover .sp-feature-card__icon {
        transform: scale(1.08) rotate(-3deg);
    }
}

/* ---- Promo banner: image subtle zoom on hover ---- */
@media (hover: hover) and (pointer: fine) {
    .sp-home-promo {
        transition:
            transform var(--sp-dur-base) var(--sp-ease-out),
            box-shadow var(--sp-dur-base) var(--sp-ease-out);
        overflow: hidden;
    }
    .sp-home-promo:hover {
        transform: translateY(-2px);
        box-shadow: 0 22px 44px rgba(23, 115, 234, 0.20);
    }
    .sp-home-promo.sp-home-promo--image {
        transition:
            transform var(--sp-dur-base) var(--sp-ease-out),
            box-shadow var(--sp-dur-base) var(--sp-ease-out),
            background-size 600ms var(--sp-ease-out);
        background-size: 100% auto, cover;
    }
    .sp-home-promo.sp-home-promo--image:hover {
        background-size: 105% auto, cover;
    }
}

/* ---- Buttons: smooth color + shadow ---- */
.sp-button,
button.sp-button,
.wp-block-button__link,
.button {
    transition:
        background var(--sp-dur-fast) var(--sp-ease-out),
        color var(--sp-dur-fast) var(--sp-ease-out),
        border-color var(--sp-dur-fast) var(--sp-ease-out),
        box-shadow var(--sp-dur-fast) var(--sp-ease-out),
        transform var(--sp-dur-fast) var(--sp-ease-out) !important;
}
.sp-button:hover,
.wp-block-button__link:hover,
.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(23, 115, 234, 0.22);
}
.sp-button:active,
.wp-block-button__link:active,
.button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(23, 115, 234, 0.18);
}

/* ---- Icon links (header heart / cart / search): smooth hover ---- */
.sp-icon-link,
.sp-mobile-cart,
.sp-mobile-favorites,
.sp-sale-link,
.sp-catalog-toggle {
    transition:
        background var(--sp-dur-fast) var(--sp-ease-out),
        color var(--sp-dur-fast) var(--sp-ease-out),
        transform var(--sp-dur-fast) var(--sp-ease-out),
        box-shadow var(--sp-dur-fast) var(--sp-ease-out) !important;
}
@media (hover: hover) and (pointer: fine) {
    .sp-icon-link:hover,
    .sp-mobile-cart:hover,
    .sp-mobile-favorites:hover,
    .sp-sale-link:hover {
        transform: translateY(-1px);
    }
    .sp-catalog-toggle:hover {
        box-shadow: 0 6px 16px rgba(23, 115, 234, 0.30);
    }
}

/* ---- Sidebar category row: smooth bg slide indicator ---- */
.sp-home-cat-row > .sp-home-category {
    position: relative;
    transition:
        background var(--sp-dur-fast) var(--sp-ease-out),
        color var(--sp-dur-fast) var(--sp-ease-out),
        padding-left var(--sp-dur-base) var(--sp-ease-out);
}
.sp-home-cat-row > .sp-home-category::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--sp-primary, #1773ea);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 220ms var(--sp-ease-out);
    pointer-events: none;
}
.sp-home-cat-row:hover > .sp-home-category::before,
.sp-home-cat-row.sp-flyout-open > .sp-home-category::before {
    transform: scaleY(1);
}
@media (hover: hover) and (pointer: fine) {
    .sp-home-cat-row:hover > .sp-home-category {
        padding-left: 22px;
    }
}

/* ---- Drawer & backdrop: smoother slide + fade ---- */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-home-categories-anchor {
        animation: sp-drawer-in-soft 360ms var(--sp-ease-out) !important;
    }
    body.sp-catalog-open::after {
        animation: sp-fade-soft 320ms var(--sp-ease-out) !important;
    }
    body.sp-shop-filters-open .sp-shop-sidebar {
        animation: sp-drawer-right-in-soft 360ms var(--sp-ease-out) !important;
    }
}
@keyframes sp-drawer-in-soft {
    from { transform: translateX(-100%); opacity: 0.6; }
    to   { transform: translateX(0);    opacity: 1; }
}
@keyframes sp-drawer-right-in-soft {
    from { transform: translateX(100%); opacity: 0.6; }
    to   { transform: translateX(0);   opacity: 1; }
}
@keyframes sp-fade-soft {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ---- Sidebar list items inside drawer: stagger fade-in ---- */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-home-cat-row {
        opacity: 0;
        transform: translateX(-8px);
        animation: sp-row-in 360ms var(--sp-ease-out) forwards;
    }
    body.sp-catalog-open .sp-home-cat-row:nth-child(1)  { animation-delay: 80ms; }
    body.sp-catalog-open .sp-home-cat-row:nth-child(2)  { animation-delay: 100ms; }
    body.sp-catalog-open .sp-home-cat-row:nth-child(3)  { animation-delay: 120ms; }
    body.sp-catalog-open .sp-home-cat-row:nth-child(4)  { animation-delay: 140ms; }
    body.sp-catalog-open .sp-home-cat-row:nth-child(5)  { animation-delay: 160ms; }
    body.sp-catalog-open .sp-home-cat-row:nth-child(6)  { animation-delay: 180ms; }
    body.sp-catalog-open .sp-home-cat-row:nth-child(7)  { animation-delay: 200ms; }
    body.sp-catalog-open .sp-home-cat-row:nth-child(8)  { animation-delay: 220ms; }
    body.sp-catalog-open .sp-home-cat-row:nth-child(9)  { animation-delay: 240ms; }
    body.sp-catalog-open .sp-home-cat-row:nth-child(10) { animation-delay: 260ms; }
    body.sp-catalog-open .sp-home-cat-row:nth-child(n+11) { animation-delay: 280ms; }
}
@keyframes sp-row-in {
    to { opacity: 1; transform: translateX(0); }
}

/* ---- Mega flyout (desktop): smoother fade + slight slide ---- */
.sp-home-cat-flyout {
    transition:
        opacity 320ms var(--sp-ease-out),
        visibility 0s linear 380ms,
        transform 320ms var(--sp-ease-out),
        pointer-events 0s linear 380ms !important;
    transform: translateX(-8px) !important;
}
.sp-home-cat-row:hover > .sp-home-cat-flyout,
.sp-home-cat-row:focus-within > .sp-home-cat-flyout,
.sp-home-cat-row.sp-flyout-open > .sp-home-cat-flyout {
    transform: translateX(0) !important;
    transition:
        opacity 240ms var(--sp-ease-out),
        visibility 0s linear 0s,
        transform 320ms var(--sp-ease-out),
        pointer-events 0s linear 0s !important;
}

/* ---- Section reveal on scroll (intersection observer adds .is-revealed) ---- */
.sp-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity var(--sp-dur-slow) var(--sp-ease-out),
        transform var(--sp-dur-slow) var(--sp-ease-out);
    will-change: opacity, transform;
}
.sp-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Image hover within product rails: subtle zoom ---- */
@media (hover: hover) and (pointer: fine) {
    .sp-card-favorite {
        transition:
            background var(--sp-dur-fast) var(--sp-ease-out),
            color var(--sp-dur-fast) var(--sp-ease-out),
            transform var(--sp-dur-fast) var(--sp-ease-out);
    }
    .sp-card-favorite:hover {
        transform: scale(1.12);
        color: var(--sp-primary, #1773ea);
    }
}

/* ---- Search input focus ---- */
.sp-header-search input,
.sp-search input {
    transition:
        border-color var(--sp-dur-fast) var(--sp-ease-out),
        box-shadow var(--sp-dur-fast) var(--sp-ease-out),
        background var(--sp-dur-fast) var(--sp-ease-out);
}
.sp-header-search input:focus,
.sp-search input:focus {
    border-color: var(--sp-primary, #1773ea);
    box-shadow: 0 0 0 4px rgba(23, 115, 234, 0.12);
    outline: none;
}

/* ---- Form controls (filters, qty, etc.) ---- */
input[type="text"],
input[type="search"],
input[type="number"],
input[type="email"],
select,
textarea {
    transition:
        border-color var(--sp-dur-fast) var(--sp-ease-out),
        box-shadow var(--sp-dur-fast) var(--sp-ease-out);
}
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(23, 115, 234, 0.12);
}

/* ---- Filter list categories: smooth hover ---- */
.sp-filter-list li a,
.sp-filter-list li button {
    transition:
        background var(--sp-dur-fast) var(--sp-ease-out),
        color var(--sp-dur-fast) var(--sp-ease-out),
        padding-left var(--sp-dur-base) var(--sp-ease-out);
}
.sp-filter-list li a:hover {
    padding-left: 18px;
    color: var(--sp-primary, #1773ea);
}

/* ---- Drawer close button: subtle rotation on hover ---- */
.sp-drawer-close {
    transition:
        background var(--sp-dur-fast) var(--sp-ease-out),
        transform 220ms var(--sp-ease-out),
        color var(--sp-dur-fast) var(--sp-ease-out);
}
.sp-drawer-close:hover {
    transform: rotate(90deg) scale(1.05);
    color: var(--sp-primary, #1773ea);
}

/* ---- Catalog button toggle: subtle pulse when drawer closed ---- */
.sp-catalog-toggle__icon {
    transition: transform var(--sp-dur-base) var(--sp-ease-out);
}
.sp-catalog-toggle[aria-expanded="true"] .sp-catalog-toggle__icon {
    transform: rotate(90deg);
}

/* ---- Reduced motion: kill all transitions ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .sp-reveal { opacity: 1; transform: none; }
}

/* ===== End Pass 29 motion polish ===== */


/* ============================================================
 * === Pass 30: single-product polish + softer hovers ========
 * ============================================================
 * User feedback: hover transitions are too jumpy; product summary
 * panel needs proper brand styling; description should feel close;
 * related products grid should look polished.
 */

/* ---- Soften card hovers (Pass 29 was too aggressive) ---- */
@media (hover: hover) and (pointer: fine) {
    .sp-product-card {
        transition:
            transform 320ms var(--sp-ease-out),
            box-shadow 320ms var(--sp-ease-out),
            border-color 320ms var(--sp-ease-out) !important;
    }
    .sp-product-card:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08) !important;
    }
    .sp-product-card:hover .sp-product-card__image img {
        transform: scale(1.02) !important;
    }
    .sp-feature-card:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06) !important;
    }
    .sp-feature-card:hover .sp-feature-card__icon {
        transform: scale(1.05) !important;
    }
    .sp-home-promo:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 16px 32px rgba(23, 115, 234, 0.15) !important;
    }
}

/* ============================================================
 * Single product page — branded summary card
 * ============================================================ */

.sp-product-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.sp-product-main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    margin-top: 16px;
}

@media (max-width: 1099px) {
    .sp-product-main {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

/* ---- Gallery ---- */
.sp-product-gallery {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
.sp-product-gallery__main {
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    border-radius: 12px;
    overflow: hidden;
}
.sp-product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 480ms var(--sp-ease-out);
}
@media (hover: hover) and (pointer: fine) {
    .sp-product-gallery__main:hover img {
        transform: scale(1.03);
    }
}
.sp-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
    gap: 10px;
    margin-top: 16px;
}
.sp-product-gallery__thumbs img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: contain;
    background: #f7fafc;
    border: 1.5px solid transparent;
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
    transition:
        border-color var(--sp-dur-fast) var(--sp-ease-out),
        transform var(--sp-dur-fast) var(--sp-ease-out);
}
.sp-product-gallery__thumbs img:hover {
    border-color: var(--sp-primary, #1773ea);
    transform: translateY(-1px);
}

/* ---- Summary card ---- */
.sp-product-summary {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sp-product-summary > .sp-badge {
    align-self: flex-start;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ff5252, #f44336);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    border-radius: 999px;
    text-transform: uppercase;
}

.sp-product-summary h1 {
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.2;
    font-weight: 800;
    color: #0f1a2c;
    margin: 0;
    letter-spacing: -0.01em;
}

.sp-product-summary__rating { margin: 0; }
.sp-product-summary__rating .star-rating { font-size: 14px; }
.sp-product-summary__rating .star-rating::before {
    color: rgba(15, 23, 42, 0.16);
}
.sp-product-summary__rating .star-rating span::before {
    color: #fbbf24;
}

.sp-product-summary__price {
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 800;
    color: var(--sp-primary, #1773ea);
    line-height: 1;
    margin: 4px 0 2px;
}
.sp-product-summary__price del {
    font-size: 16px;
    font-weight: 500;
    color: #94a3b8;
    margin-right: 8px;
}

.sp-product-summary__excerpt {
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
    padding: 12px 14px;
    background: linear-gradient(135deg, #f7fafc 0%, #eef6ff 100%);
    border-radius: 10px;
    border-left: 3px solid var(--sp-primary, #1773ea);
}
.sp-product-summary__excerpt p { margin: 0; }
.sp-product-summary__excerpt:empty { display: none; }

/* ---- Favorite circle button (top-right of summary card) ---- */
.sp-product-favorite {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    background: #fff;
    border: 1.5px solid rgba(23, 115, 234, 0.2);
    border-radius: 999px;
    color: var(--sp-primary, #1773ea);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background var(--sp-dur-fast) var(--sp-ease-out),
        border-color var(--sp-dur-fast) var(--sp-ease-out),
        transform var(--sp-dur-fast) var(--sp-ease-out);
}
.sp-product-favorite svg {
    width: 16px;
    height: 16px;
}
@media (hover: hover) and (pointer: fine) {
    .sp-product-favorite:hover {
        background: var(--sp-soft, #eef6ff);
        border-color: var(--sp-primary, #1773ea);
        transform: translateY(-1px);
    }
}
.sp-product-favorite[aria-pressed="true"] {
    background: var(--sp-primary, #1773ea);
    color: #fff;
    border-color: var(--sp-primary, #1773ea);
}

/* ---- Variations form (Color, Size etc.) ---- */
.sp-product-summary__cart {
    margin-top: 4px;
}
.sp-product-summary table.variations,
.variations_form table.variations {
    border-collapse: collapse;
    margin: 0 0 14px;
    width: 100%;
}
.sp-product-summary table.variations th,
.variations_form table.variations th {
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0 0 6px;
    text-align: left;
    width: auto !important;
}
.sp-product-summary table.variations td,
.variations_form table.variations td {
    padding: 0 0 12px;
}
.sp-product-summary select,
.variations_form select {
    width: 100%;
    height: 48px;
    padding: 0 36px 0 14px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #0f1a2c;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%231773ea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition:
        border-color var(--sp-dur-fast) var(--sp-ease-out),
        box-shadow var(--sp-dur-fast) var(--sp-ease-out);
}
.sp-product-summary select:focus,
.variations_form select:focus {
    border-color: var(--sp-primary, #1773ea);
    box-shadow: 0 0 0 4px rgba(23, 115, 234, 0.12);
    outline: none;
}
.reset_variations {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: none;
}
.reset_variations:hover { color: var(--sp-primary, #1773ea); }

/* ---- Add-to-cart row: qty + button ---- */
.sp-product-summary form.cart {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin: 0;
    flex-wrap: wrap;
}
.sp-product-summary .single_variation_wrap {
    width: 100%;
}
.sp-product-summary .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}
.sp-product-summary .quantity {
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.sp-product-summary .quantity input.qty {
    width: 64px !important;
    height: 52px !important;
    padding: 0 4px;
    border: none !important;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #0f1a2c;
    -moz-appearance: textfield;
}
.sp-product-summary .quantity input.qty::-webkit-outer-spin-button,
.sp-product-summary .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.sp-product-summary .single_add_to_cart_button,
.sp-product-summary form.cart .button {
    flex: 1 1 auto;
    height: 52px;
    min-width: 200px;
    padding: 0 28px;
    background: linear-gradient(135deg, var(--sp-primary-dark, #0f5ec8), var(--sp-primary, #1773ea));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(23, 115, 234, 0.28);
    transition:
        transform var(--sp-dur-fast) var(--sp-ease-out),
        box-shadow var(--sp-dur-fast) var(--sp-ease-out),
        opacity var(--sp-dur-fast) var(--sp-ease-out) !important;
}
@media (hover: hover) and (pointer: fine) {
    .sp-product-summary .single_add_to_cart_button:hover,
    .sp-product-summary form.cart .button:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 10px 24px rgba(23, 115, 234, 0.36) !important;
    }
}
.sp-product-summary .single_add_to_cart_button:active {
    transform: translateY(0) !important;
}
.sp-product-summary .single_add_to_cart_button.disabled,
.sp-product-summary .single_add_to_cart_button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

/* ---- Assurance pills row ---- */
.sp-product-assurance {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sp-product-assurance li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}
.sp-product-assurance li::before {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><circle cx='7' cy='7' r='6' fill='%231773ea'/><path d='M4 7L6 9L10 5' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    flex: 0 0 auto;
}

/* ---- Product meta (code, brand) ---- */
.sp-product-summary .product_meta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.7;
}
.sp-product-summary .product_meta > span {
    display: inline-block;
    margin-right: 12px;
}
.sp-product-summary .product_meta a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
}
.sp-product-summary .product_meta a:hover {
    color: var(--sp-primary, #1773ea);
}
.sp-product-summary .sku_wrapper .sku,
.sp-product-summary .posted_in a {
    color: #475569;
    font-weight: 600;
}

/* ---- Tabs / description card below ---- */
.sp-product-tabs {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 24px;
    margin-top: 24px;
}
@media (max-width: 1099px) {
    .sp-product-tabs {
        grid-template-columns: 1fr !important;
    }
}
.sp-product-tabs section {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
.sp-product-tabs h2 {
    font-size: 18px;
    font-weight: 800;
    color: #0f1a2c;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sp-soft, #eef6ff);
    position: relative;
}
.sp-product-tabs h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 48px;
    height: 2px;
    background: var(--sp-primary, #1773ea);
}
.sp-product-tabs section p { line-height: 1.65; color: #334155; }
.sp-product-tabs .shop_attributes {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.sp-product-tabs .shop_attributes th,
.sp-product-tabs .shop_attributes td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.sp-product-tabs .shop_attributes tr:nth-child(odd) {
    background: #f7fafc;
}
.sp-product-tabs .shop_attributes th {
    font-weight: 700;
    color: #475569;
    width: 40%;
}
.sp-product-tabs .shop_attributes td { color: #0f1a2c; }

/* ---- Related products rail ---- */
.sp-related-products {
    margin-top: 32px;
}
.sp-related-products .sp-section-head {
    margin-bottom: 16px;
}
.sp-related-products .sp-section-head h2 {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    color: #0f1a2c;
    margin: 0;
}

/* ===== End Pass 30 ===== */

/* === Pass 30.1: keep secondary rows visible while flyout is open ===
 * When the JS hover-intent layer marks a row .sp-flyout-open, the
 * cursor is on the flyout — the sidebar's :hover state is hit-test-
 * unstable across the flyout's absolute positioning, so secondary
 * rows can collapse during diagonal traversal.
 * 
 * Force secondary rows to stay revealed whenever any flyout is open,
 * AND keep the sidebar matching the flyout's height for visual sync.
 */
@media (min-width: 1100px) {
    .sp-home-categories:has(.sp-home-cat-row.sp-flyout-open) .sp-home-cat-row.is-secondary,
    .sp-home-categories:has(.sp-home-cat-flyout:hover) .sp-home-cat-row.is-secondary {
        max-height: 64px !important;
        min-height: 58px !important;
        opacity: 1 !important;
        overflow: visible !important;
        pointer-events: auto !important;
    }
    /* While any flyout is open, force the sidebar to its fully-
     * expanded height so the panels align edge-to-edge. */
    .sp-home-categories:has(.sp-home-cat-row.sp-flyout-open) {
        min-height: var(--sp-sidebar-h, 662px) !important;
    }
}


/* ============================================================
 * === Pass 31: mobile audit — drawer + scroll-reveal fix ====
 * ============================================================
 * Critical: Pass 29 scroll-reveal left content at opacity:0 when the
 * IntersectionObserver wasn't firing (full-page render, slow scroll,
 * search engines). Revert to fully-visible default — keep only the
 * subtle transform fade as a polish layer.
 *
 * Plus mobile drawer/header/row/section polish per user audit at 400px.
 */

/* ---- Scroll-reveal: ALWAYS visible, animate-in is bonus ---- */
.sp-reveal {
    opacity: 1 !important;
    transform: none !important;
}
.sp-reveal:not(.is-revealed) {
    /* When the JS observer hasn't fired yet, content stays fully
     * visible. The reveal class adds a soft fade-in only if/when it
     * lands. Removing the aggressive initial-state hide. */
}

/* ============================================================
 * Mobile drawer (≤ 1099px) — tighter, more brand
 * ============================================================ */
@media (max-width: 1099px) {

    :root {
        --sp-drawer-w: min(80vw, 320px);
    }

    /* Backdrop: clean dim, no filter (Pass 32: blur caused drawer text
     * to render through a sub-pixel sampling artifact on the same body
     * stacking context, killing readability). */
    body.sp-catalog-open::after {
        background: rgba(15, 23, 42, 0.55) !important;
    }

    body.sp-catalog-open .sp-home-categories-anchor {
        width: var(--sp-drawer-w) !important;
        box-shadow: 6px 0 30px rgba(15, 23, 42, 0.18) !important;
    }

    /* Drawer header: title bar */
    body.sp-catalog-open .sp-home-categories {
        padding: 0 !important;
        position: relative;
    }
    body.sp-catalog-open .sp-home-categories::before {
        content: "კატეგორიები" !important;
        display: block !important;
        padding: 18px 20px 14px !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        color: #94a3b8 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        border-bottom: 1px solid #e2e8f0 !important;
        position: sticky !important;
        top: 0 !important;
        background: #fff !important;
        z-index: 3 !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
    }
    body.sp-catalog-open .sp-home-categories__list {
        padding: 6px 0 16px !important;
    }

    /* Compact rows */
    body.sp-catalog-open .sp-home-cat-row {
        margin: 0 !important;
        border-bottom: 1px solid #f1f5f9;
    }
    body.sp-catalog-open .sp-home-cat-row:last-child {
        border-bottom: none;
    }
    body.sp-catalog-open .sp-home-cat-row > .sp-home-category {
        min-height: 44px !important;
        padding: 10px 20px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #1f2937 !important;
        background: transparent !important;
        gap: 12px !important;
    }
    body.sp-catalog-open .sp-home-cat-row > .sp-home-category:hover,
    body.sp-catalog-open .sp-home-cat-row > .sp-home-category:active {
        background: var(--sp-soft, #eef6ff) !important;
        color: var(--sp-primary, #1773ea) !important;
    }
    body.sp-catalog-open .sp-home-category__icon {
        width: 18px !important;
        height: 18px !important;
        flex: 0 0 18px !important;
        opacity: 0.7;
    }

    /* Drawer close button: smaller, top-right corner, doesn't push
     * content down */
    body.sp-catalog-open .sp-drawer-close {
        position: absolute !important;
        top: 12px !important;
        right: 12px !important;
        width: 32px !important;
        height: 32px !important;
        margin: 0 !important;
        font-size: 22px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-color: transparent !important;
        z-index: 4 !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }
    /* Kill the old pseudo-X completely */
    body.sp-catalog-open .sp-home-categories::after { content: none !important; }
}

/* ============================================================
 * Mobile: home page tightening (≤ 767)
 * ============================================================ */
@media (max-width: 767px) {

    /* Hero: ensure proper image rendering (was empty due to thumb hide) */
    .sp-home-slider__track {
        height: clamp(200px, 48vw, 280px) !important;
        min-height: 200px !important;
        border-radius: 14px !important;
        overflow: hidden;
    }
    .sp-hero-zoom {
        height: 100% !important;
        padding: 18px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    .sp-hero-zoom__copy {
        flex: 0 0 auto !important;
        max-width: 75% !important;
        padding: 0 !important;
    }
    .sp-hero-zoom__eyebrow {
        font-size: 10px !important;
        padding: 3px 8px !important;
        background: var(--sp-primary, #1773ea) !important;
        color: #fff !important;
        border-radius: 4px !important;
        margin: 0 0 10px !important;
        display: inline-block !important;
        font-weight: 700 !important;
        letter-spacing: 0.04em !important;
    }
    .sp-hero-zoom__copy strong {
        font-size: clamp(20px, 5.5vw, 24px) !important;
        line-height: 1.15 !important;
        margin: 0 0 8px !important;
        color: #0f1a2c !important;
    }
    .sp-hero-zoom__price {
        font-size: clamp(16px, 4vw, 20px) !important;
        font-weight: 800 !important;
        color: var(--sp-primary, #1773ea) !important;
    }

    /* Feature cards: less internal padding, smaller text */
    .sp-feature-cards {
        padding: 0 16px !important;
        gap: 10px !important;
    }
    .sp-feature-card {
        padding: 12px 14px !important;
        border-radius: 12px !important;
        display: grid !important;
        grid-template-columns: 36px 1fr !important;
        gap: 10px !important;
        align-items: center !important;
    }
    .sp-feature-card__icon {
        width: 36px !important;
        height: 36px !important;
        flex: 0 0 36px !important;
    }
    .sp-feature-card__title {
        font-size: 13px !important;
        font-weight: 700 !important;
        margin: 0 0 2px !important;
        line-height: 1.2 !important;
    }
    .sp-feature-card__text {
        font-size: 11px !important;
        line-height: 1.35 !important;
        color: #64748b !important;
        margin: 0 !important;
    }

    /* Section heads: tighter, more refined */
    .sp-section-head,
    .sp-home-row__head {
        padding: 0 16px !important;
        margin-bottom: 12px !important;
        margin-top: 24px !important;
    }
    .sp-section-head h2,
    .sp-home-row__title {
        font-size: 18px !important;
        font-weight: 800 !important;
        color: #0f1a2c !important;
    }
    .sp-section-head a,
    .sp-home-row__head a {
        font-size: 13px !important;
        color: var(--sp-primary, #1773ea) !important;
        font-weight: 600 !important;
    }

    /* Banners: cleaner shape, less crop */
    .sp-home-promo {
        margin: 0 16px !important;
        max-width: calc(100% - 32px) !important;
        border-radius: 12px !important;
        aspect-ratio: 16 / 7 !important;
        min-height: 0 !important;
        height: auto !important;
    }
    .sp-home-promo span {
        font-size: 14px !important;
        padding: 12px 16px !important;
    }

    /* Footer: less padding, cleaner */
    .sp-footer {
        padding: 28px 16px 16px !important;
        margin-top: 32px !important;
    }
    .sp-footer__brand .sp-logo {
        justify-content: center !important;
    }
    .sp-footer__inner > div h3,
    .sp-footer__inner > div h4 {
        font-size: 13px !important;
        font-weight: 800 !important;
        color: #94a3b8 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.06em !important;
        margin-bottom: 10px !important;
    }
    .sp-footer__inner a {
        font-size: 14px !important;
        line-height: 1.8 !important;
    }
    .sp-footer__bottom {
        font-size: 12px !important;
        color: #94a3b8 !important;
        padding-top: 16px !important;
        margin-top: 20px !important;
        border-top: 1px solid #e2e8f0 !important;
    }

    /* Header: tighter spacing */
    .sp-header-main__inner {
        gap: 8px !important;
        padding: 8px 12px !important;
    }
    .sp-topbar__phone {
        padding: 0 !important;
    }

    /* Catalog button on mobile: prominent brand-blue circle */
    .sp-catalog-toggle {
        background: var(--sp-primary, #1773ea) !important;
        color: #fff !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 6px rgba(23, 115, 234, 0.25) !important;
    }
    .sp-catalog-toggle .sp-catalog-toggle__icon {
        color: #fff !important;
    }

    /* Logo: smaller mark + small wordmark */
    .sp-logo {
        gap: 6px !important;
    }
    .sp-logo > span:first-child,
    .sp-logo__mark {
        width: 36px !important;
        height: 36px !important;
        font-size: 13px !important;
        flex: 0 0 36px !important;
    }
    .sp-logo-text {
        font-size: 15px !important;
        font-weight: 800 !important;
        color: #0f1a2c !important;
        max-width: 80px !important;
    }

    /* Header icon links: clean circle buttons */
    .sp-icon-link,
    .sp-mobile-cart,
    .sp-mobile-favorites,
    .sp-sale-link {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        background: #fff !important;
        border: 1.5px solid #e2e8f0 !important;
        border-radius: 999px !important;
    }
    .sp-icon-link svg,
    .sp-mobile-cart svg,
    .sp-mobile-favorites svg {
        width: 18px !important;
        height: 18px !important;
    }
    .sp-cart-count {
        top: -4px !important;
        right: -4px !important;
        min-width: 18px !important;
        height: 18px !important;
        font-size: 10px !important;
        background: var(--sp-primary, #1773ea) !important;
        color: #fff !important;
        border-radius: 999px !important;
        display: grid !important;
        place-items: center !important;
    }
}

/* ============================================================
 * Mobile: shop page polish
 * ============================================================ */
@media (max-width: 767px) {
    .sp-shop-hero {
        padding: 16px !important;
    }
    .sp-shop-hero .sp-eyebrow {
        font-size: 11px !important;
        letter-spacing: 0.06em !important;
        margin-bottom: 6px !important;
    }
    .sp-shop-hero h1 {
        font-size: 24px !important;
        font-weight: 800 !important;
        color: #0f1a2c !important;
        margin: 0 0 8px !important;
    }
    .sp-shop-hero .sp-shop-hero__desc {
        font-size: 13px !important;
        color: #64748b !important;
    }
    .sp-search--shop {
        margin-top: 12px !important;
    }
    .sp-search--shop input {
        height: 44px !important;
    }

    /* Quick-link tabs: horizontal scrollable, compact */
    .sp-shop-quick-links {
        display: flex !important;
        gap: 8px !important;
        padding: 0 16px !important;
        overflow-x: auto !important;
        scrollbar-width: none;
        margin-bottom: 12px !important;
    }
    .sp-shop-quick-links::-webkit-scrollbar { display: none; }
    .sp-shop-quick-links a {
        flex: 0 0 auto !important;
        padding: 8px 14px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
        background: #fff !important;
        border: 1.5px solid #e2e8f0 !important;
        border-radius: 999px !important;
        color: #475569 !important;
    }
    .sp-shop-quick-links a.is-active,
    .sp-shop-quick-links a:hover {
        background: var(--sp-primary, #1773ea) !important;
        color: #fff !important;
        border-color: var(--sp-primary, #1773ea) !important;
    }

    /* Product grid: 2 cols, tighter */
    .sp-products-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        padding: 0 16px !important;
    }
    .sp-product-card {
        padding: 8px !important;
        border-radius: 12px !important;
    }
    .sp-product-card__title {
        font-size: 12px !important;
        line-height: 1.3 !important;
        min-height: 32px !important;
    }
    .sp-product-card__price {
        font-size: 14px !important;
        font-weight: 800 !important;
    }
    .sp-product-card__installment {
        font-size: 10px !important;
        color: #94a3b8 !important;
    }
    .sp-product-card__actions {
        gap: 6px !important;
    }
}

/* ===== End Pass 31 ===== */


/* ============================================================
 * === Pass 32: hero lockdown + drawer header + final mobile fixes
 * ============================================================
 * Codex cascade-trace identified four cascade bugs at 412px:
 *   1. body.sp-catalog-open::after backdrop-filter was bleeding
 *      into drawer text (FIXED at line 12942 — see comment there)
 *   2. Hero on mobile was showing a 28%-opacity orphan thumb behind
 *      an 88%-white overlay → "empty white slab" effect
 *   3. Drawer close X (absolute top-right) overlapped sticky title
 *   4. .is-priority category rows kept gradient bg from base CSS
 */

/* ============================================================
 * Hero mobile lockdown — full-bleed photo + bottom-anchored copy
 * ============================================================ */
@media (max-width: 767px) {
    .sp-home-slider__track {
        height: clamp(220px, 56vw, 320px) !important;
        border-radius: 14px !important;
        overflow: hidden !important;
    }
    .sp-hero-zoom,
    .sp-hero-zoom--image {
        min-height: 0 !important;
        height: 100% !important;
        padding: 22px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        gap: 8px !important;
        background-color: #0f1f3a !important;
    }
    .sp-hero-zoom--image {
        background-image:
            linear-gradient(180deg, rgba(15,31,58,0.10) 0%, rgba(15,31,58,0.75) 100%),
            var(--sp-hero-mobile, var(--sp-hero-desktop)) !important;
        background-size: cover !important;
        background-position: center !important;
    }
    .sp-hero-zoom::before { display: none !important; }
    .sp-hero-zoom__copy,
    .sp-hero-zoom--image .sp-hero-zoom__copy {
        position: static !important;
        clip: auto !important;
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        padding: 0 !important;
    }
    .sp-hero-zoom__copy strong {
        color: #fff !important;
        font-size: clamp(20px, 5.2vw, 26px) !important;
        line-height: 1.15 !important;
        max-width: 100% !important;
        font-weight: 800 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.30);
    }
    .sp-hero-zoom__eyebrow {
        background: #fff !important;
        color: var(--sp-primary, #1773ea) !important;
        font-size: 10px !important;
        font-weight: 800 !important;
        padding: 4px 10px !important;
        border-radius: 4px !important;
        letter-spacing: 0.06em !important;
        align-self: flex-start !important;
    }
    .sp-hero-zoom__price {
        background: #fff !important;
        color: var(--sp-primary, #1773ea) !important;
        font-size: clamp(16px, 4.2vw, 20px) !important;
        font-weight: 800 !important;
        padding: 5px 12px !important;
        border-radius: 6px !important;
        align-self: flex-start !important;
    }
    .sp-hero-zoom__media { display: none !important; }
    .sp-hero-zoom__arrow,
    .sp-home-slider__arrow { display: none !important; }

    /* Suppress slide-content crossfade pulse on mobile so title
     * doesn't strobe during background transition */
    .sp-home-slide .sp-hero-zoom__copy,
    .sp-home-slide .sp-hero-zoom__media {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Hero pagination dots: brand white-on-dark inside slide */
    .sp-home-slider__dots {
        position: absolute !important;
        bottom: 12px !important;
        right: 20px !important;
        left: auto !important;
        display: flex !important;
        gap: 6px !important;
    }
    .sp-home-slider__dots button {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
        min-height: 8px !important;
        padding: 0 !important;
        background: rgba(255, 255, 255, 0.45) !important;
        border: none !important;
        border-radius: 999px !important;
        transition: width 240ms var(--sp-ease-out), background 240ms var(--sp-ease-out);
    }
    .sp-home-slider__dots button.is-active {
        width: 20px !important;
        background: #fff !important;
    }
}

/* ============================================================
 * Drawer header / close button overlap fix
 * ============================================================ */
@media (max-width: 1099px) {
    /* Reserve 56px on the right of the title bar for the close X */
    body.sp-catalog-open .sp-home-categories::before {
        padding: 18px 56px 14px 20px !important;
    }
    /* Override .is-priority gradient on drawer rows so they match the
     * flat list style */
    body.sp-catalog-open .sp-home-category,
    body.sp-catalog-open .sp-home-category.is-priority {
        background: transparent !important;
        color: #1f2937 !important;
    }
    body.sp-catalog-open .sp-home-cat-row > .sp-home-category:hover,
    body.sp-catalog-open .sp-home-cat-row > .sp-home-category:focus-visible {
        background: var(--sp-soft, #eef6ff) !important;
        color: var(--sp-primary, #1773ea) !important;
    }
}

/* ============================================================
 * Typography clamp refinement
 * ============================================================ */
@media (max-width: 767px) {
    .sp-section-head h2,
    .sp-home-row__title {
        font-size: clamp(16px, 4.5vw, 20px) !important;
    }
    .sp-shop-hero h1 {
        font-size: clamp(20px, 5.5vw, 28px) !important;
    }
}

/* ============================================================
 * Universal touch-target enforcement on mobile
 * ============================================================ */
@media (max-width: 1099px) {
    .sp-shop-toolbar > *,
    .sp-shop-filters button,
    .sp-shop-filters select,
    .sp-product-card__actions .button,
    .sp-product-card__actions .added_to_cart,
    .variations select,
    .quantity .qty {
        min-height: 44px !important;
    }
    .sp-home-slider__arrow {
        min-width: 44px !important;
        min-height: 44px !important;
    }
}

/* ============================================================
 * Optional 360-and-below tightening
 * ============================================================ */
@media (max-width: 379px) {
    .sp-icon-link,
    .sp-mobile-cart,
    .sp-mobile-favorites,
    .sp-sale-link {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
    }
    .sp-icon-link svg,
    .sp-mobile-cart svg,
    .sp-mobile-favorites svg {
        width: 16px !important;
        height: 16px !important;
    }
    .sp-header-main__inner {
        gap: 6px !important;
        padding: 8px 10px !important;
    }
}

/* ============================================================
 * Body antialiasing for crisp Georgian glyphs
 * ============================================================ */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== End Pass 32 ===== */

/* ============================================================
 * === Pass 33: hero __media specificity fix + cascade cleanup
 * ============================================================
 * Line 6983 inside @media (max-width: 760px) has
 *   .sp-hero-zoom__media, .sp-hero-zoom--image .sp-hero-zoom__media
 *   { display: grid !important; ... }
 * The compound selector list gives this rule specificity 0,2,0 for
 * any slide with .sp-hero-zoom--image. Pass 32's
 *   .sp-hero-zoom__media { display: none !important }
 * is specificity 0,1,0 → loses despite being later in cascade.
 *
 * Match the specificity and place last. Same for __copy etc.
 */
@media (max-width: 767px) {
    .sp-hero-zoom__media,
    .sp-hero-zoom--image .sp-hero-zoom__media,
    .sp-hero-zoom .sp-hero-zoom__media {
        display: none !important;
        visibility: hidden !important;
        position: absolute !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    /* Belt-and-suspenders: nuke the inner spans + img too */
    .sp-hero-zoom__media span,
    .sp-hero-zoom__media img,
    .sp-hero-zoom__media span:first-child {
        display: none !important;
        visibility: hidden !important;
    }
    /* Restore copy block as the only visible content */
    .sp-hero-zoom__copy,
    .sp-hero-zoom--image .sp-hero-zoom__copy {
        max-width: 100% !important;
        position: static !important;
    }
}

/* === Pass 34: global mobile drawer (rendered via header.php on non-home pages) === */
.sp-home-categories-anchor--global {
    display: none;
}
@media (max-width: 1099px) {
    /* When the drawer is open, show the global anchor as the drawer */
    body.sp-catalog-open .sp-home-categories-anchor--global {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: var(--sp-drawer-w, min(80vw, 320px)) !important;
        max-width: 100vw !important;
        z-index: 99999 !important;
        background: #fff !important;
        box-shadow: 6px 0 30px rgba(15, 23, 42, 0.18) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        animation: sp-drawer-in-soft 360ms var(--sp-ease-out, ease-out) !important;
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

/* === Pass 35: stronger backdrop dim so drawer is the focus === */
@media (max-width: 1099px) {
    body.sp-catalog-open::after {
        background: rgba(15, 23, 42, 0.78) !important;
    }
    /* Make the title bar pop a little */
    body.sp-catalog-open .sp-home-categories::before {
        color: #475569 !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        letter-spacing: 0.1em !important;
    }
}

/* === Pass 35.1: drawer title bar collapse to compact band === */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-home-categories::before {
        content: "" !important;
        height: 12px !important;
        padding: 0 !important;
        border-bottom: 1px solid #f1f5f9 !important;
        background: #fff !important;
    }
}

/* === Pass 35.3: clean backdrop + fix drawer stacking ===
 * Pass 35.2 set the backdrop near-solid but the drawer's own anchor
 * lost contrast because its stacking context didn't isolate from
 * body's transform/filter ancestor. Wrap the anchor with explicit
 * isolation: isolate so the dim never bleeds inside it. */
@media (max-width: 1099px) {
    body.sp-catalog-open::after {
        background: rgba(15, 23, 42, 0.72) !important;
    }
    body.sp-catalog-open .sp-home-categories-anchor {
        isolation: isolate;
    }
    /* Slider dots / chevrons z-stack BELOW the drawer */
    body.sp-catalog-open .sp-home-slider__dots,
    body.sp-catalog-open .sp-home-slider__arrow {
        z-index: 1 !important;
    }
}

/* === Pass 35.4: drawer title "კატეგორიები" visible at top === */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-home-categories::before {
        content: "კატეგორიები" !important;
        display: block !important;
        padding: 16px 56px 14px 20px !important;
        height: auto !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        color: #475569 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        border-bottom: 1px solid #f1f5f9 !important;
        background: #fff !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 3 !important;
        line-height: 1.4 !important;
    }
    /* Close button positioned over the title bar */
    body.sp-catalog-open .sp-drawer-close {
        position: absolute !important;
        top: 10px !important;
        right: 12px !important;
        margin: 0 !important;
        z-index: 4 !important;
    }
}

/* === Pass 35.5: drawer title color + size pop === */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-home-categories::before {
        content: "კატეგორიები" !important;
        color: #0f1a2c !important;          /* ink, not slate */
        font-size: 16px !important;          /* bigger */
        font-weight: 800 !important;
        letter-spacing: 0.02em !important;
        text-transform: none !important;     /* normal case for Georgian */
        padding: 18px 56px 16px 20px !important;
        line-height: 1.2 !important;
        height: auto !important;
    }
}

/* === Pass 35.6: drawer starts BELOW site header so title shows === */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-home-categories-anchor,
    body.sp-catalog-open .sp-home-categories-anchor--global {
        top: 60px !important;
        height: calc(100vh - 60px) !important;
        bottom: auto !important;
    }
    /* Don't dim the header — keep it interactive above the backdrop */
    body.sp-catalog-open .sp-site-header {
        position: relative !important;
        z-index: 100000 !important;
        background: #fff !important;
    }
    /* Backdrop also starts below header */
    body.sp-catalog-open::after {
        top: 60px !important;
    }
}

/* === Pass 35.7: kill desktop mega panel completely on mobile ===
 * Child elements (.sp-mega__flyout-head) had visibility: visible that
 * overrode the parent panel's visibility: hidden, intercepting clicks
 * meant for the drawer. Force display:none on the entire panel below
 * 1100px.
 */
@media (max-width: 1099px) {
    [data-sp-catalog-panel],
    .sp-catalog-panel,
    .sp-mega,
    .sp-mega__flyout,
    .sp-mega__flyout-head,
    .sp-mega__panel {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* === Pass 35.8: detach drawer from sp-home-stage stacking context ===
 * .sp-home-stage has z-index: 50, creating a stacking context that
 * TRAPS the drawer (z 99999 inside) BELOW body::after (z 99998 in
 * body root). Reset stage z-index on mobile so drawer escapes.
 */
@media (max-width: 1099px) {
    .sp-home-stage {
        z-index: auto !important;
    }
}


/* ============================================================
 * === Pass 36: drawer accordion (3-level hierarchy) =========
 * ============================================================
 * The drawer now renders parent + child + grandchild categories.
 * Children/grandchildren collapsed by default, tap chevron to expand.
 * Smooth max-height animation, chevron rotates 180° when open.
 */

@media (max-width: 1099px) {
    /* Home page: hide the inline sidebar drawer and rely on the
     * global partial (with accordion support) on mobile. */
    body.home .sp-home-categories-anchor:not(.sp-home-categories-anchor--global) {
        display: none !important;
    }

    /* Row layout: link + chevron toggle */
    body.sp-catalog-open .sp-home-cat-row__head {
        display: flex !important;
        align-items: stretch;
        justify-content: space-between;
        gap: 0;
        border-bottom: 1px solid #f1f5f9;
    }
    body.sp-catalog-open .sp-home-cat-row__head > a {
        flex: 1 1 auto;
        min-height: 44px;
        padding: 10px 16px 10px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 600;
        color: #1f2937;
        text-decoration: none;
    }
    body.sp-catalog-open .sp-home-cat-row__head > a:active,
    body.sp-catalog-open .sp-home-cat-row__head > a:hover {
        background: var(--sp-soft, #eef6ff);
        color: var(--sp-primary, #1773ea);
    }

    /* Chevron toggle button */
    body.sp-catalog-open .sp-cat-toggle {
        flex: 0 0 auto;
        width: 44px;
        height: auto;
        background: transparent;
        border: none;
        border-left: 1px solid #f1f5f9;
        cursor: pointer;
        color: #94a3b8;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: background var(--sp-dur-fast, 160ms) var(--sp-ease-out, ease-out), color var(--sp-dur-fast, 160ms) var(--sp-ease-out, ease-out);
    }
    body.sp-catalog-open .sp-cat-toggle:active,
    body.sp-catalog-open .sp-cat-toggle:hover {
        background: #f7fafc;
        color: var(--sp-primary, #1773ea);
    }
    body.sp-catalog-open .sp-cat-toggle svg {
        transition: transform 260ms var(--sp-ease-out, ease-out);
    }
    body.sp-catalog-open .sp-cat-toggle[aria-expanded="true"] svg {
        transform: rotate(180deg);
        color: var(--sp-primary, #1773ea);
    }

    /* Children list: collapsed by default */
    body.sp-catalog-open .sp-home-cat-children,
    body.sp-catalog-open .sp-home-cat-grandchildren {
        list-style: none;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        background: #f7fafc;
        transition: max-height 380ms var(--sp-ease-out, ease-out);
    }
    /* When parent row is expanded, show children */
    body.sp-catalog-open .sp-home-cat-row.is-expanded > .sp-home-cat-children,
    body.sp-catalog-open .sp-home-cat-child.is-expanded > .sp-home-cat-grandchildren {
        max-height: 2000px;   /* arbitrarily large for transition */
    }

    /* Child rows */
    body.sp-catalog-open .sp-home-cat-child {
        border-bottom: 1px solid #e2e8f0;
    }
    body.sp-catalog-open .sp-home-cat-child:last-child { border-bottom: none; }
    body.sp-catalog-open .sp-home-cat-child > .sp-home-cat-row__head > a {
        padding: 9px 16px 9px 48px;     /* indent for child level */
        font-size: 13px;
        font-weight: 500;
        color: #334155;
    }
    body.sp-catalog-open .sp-home-cat-child > .sp-home-cat-row__head .sp-cat-toggle {
        width: 40px;
    }
    body.sp-catalog-open .sp-home-cat-child > .sp-home-cat-row__head .sp-cat-toggle svg {
        width: 12px;
        height: 12px;
    }

    /* Grandchildren */
    body.sp-catalog-open .sp-home-cat-grandchildren {
        background: #eef6ff;
    }
    body.sp-catalog-open .sp-home-cat-grandchildren li {
        border-bottom: 1px solid rgba(23, 115, 234, 0.1);
    }
    body.sp-catalog-open .sp-home-cat-grandchildren li:last-child { border-bottom: none; }
    body.sp-catalog-open .sp-home-cat-grandchildren a {
        display: block;
        padding: 8px 16px 8px 64px;     /* deeper indent */
        font-size: 12.5px;
        font-weight: 500;
        color: #475569;
        text-decoration: none;
        min-height: 36px;
        line-height: 1.3;
    }
    body.sp-catalog-open .sp-home-cat-grandchildren a:active,
    body.sp-catalog-open .sp-home-cat-grandchildren a:hover {
        background: rgba(23, 115, 234, 0.08);
        color: var(--sp-primary, #1773ea);
    }
}

/* ===== End Pass 36 ===== */

/* === Pass 36.1: drawer row layout fix === */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-home-cat-row,
    body.sp-catalog-open .sp-home-cat-child {
        display: block !important;
        flex-direction: column !important;
    }
    body.sp-catalog-open .sp-home-cat-row__head {
        display: flex !important;
    }
    body.sp-catalog-open .sp-home-cat-children,
    body.sp-catalog-open .sp-home-cat-grandchildren {
        width: 100% !important;
        display: block !important;
    }
}

/* === Pass 36.2: drawer row flex grow for accordion === */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-home-categories__list {
        display: block !important;
        height: auto !important;
    }
    body.sp-catalog-open .sp-home-categories__list .sp-home-cat-row,
    body.sp-catalog-open .sp-home-categories__list .sp-home-cat-child {
        flex: 0 0 auto !important;
        flex-basis: auto !important;
        min-height: 0 !important;
        height: auto !important;
    }
}

/* === Pass 37: footer 2-col compact on mobile === */
@media (max-width: 1099px) {
    .sp-footer__inner {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px 16px !important;
        align-items: start !important;
    }
    /* Brand block spans both columns */
    .sp-footer__brand {
        grid-column: 1 / -1 !important;
        text-align: center !important;
    }
    .sp-footer__brand p {
        font-size: 13px !important;
        margin-bottom: 4px !important;
    }
    /* Tighter columns */
    .sp-footer__inner > div h3,
    .sp-footer__inner > div h4 {
        font-size: 11px !important;
        margin-bottom: 8px !important;
        letter-spacing: 0.05em !important;
    }
    .sp-footer__inner ul li,
    .sp-footer__inner a {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }
    .sp-footer__inner ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
}
@media (max-width: 360px) {
    .sp-footer__inner {
        grid-template-columns: 1fr !important;
    }
}

/* === Pass 38: drawer airy brand styling (no chevron frames) === */
@media (max-width: 1099px) {
    /* Kill chevron column border */
    body.sp-catalog-open .sp-cat-toggle {
        border-left: none !important;
        background: transparent !important;
        opacity: 0.5;
    }
    body.sp-catalog-open .sp-cat-toggle:active,
    body.sp-catalog-open .sp-cat-toggle:hover {
        background: transparent !important;
        opacity: 1;
    }
    body.sp-catalog-open .sp-cat-toggle[aria-expanded="true"] {
        opacity: 1;
        color: var(--sp-primary, #1773ea) !important;
    }

    /* Lighter row separators - hairlines only */
    body.sp-catalog-open .sp-home-cat-row__head {
        border-bottom: 1px solid #eef2f7 !important;
    }
    body.sp-catalog-open .sp-home-cat-row:last-child .sp-home-cat-row__head {
        border-bottom: none !important;
    }

    /* More breathing room in rows */
    body.sp-catalog-open .sp-home-cat-row__head > a {
        padding: 13px 16px 13px 20px !important;
        min-height: 48px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #0f1a2c !important;
        letter-spacing: -0.005em !important;
    }
    /* Active highlight: light brand wash, no harsh fill */
    body.sp-catalog-open .sp-home-cat-row__head > a:active {
        background: rgba(23, 115, 234, 0.06) !important;
    }
    body.sp-catalog-open .sp-home-cat-row.is-expanded > .sp-home-cat-row__head > a {
        color: var(--sp-primary, #1773ea) !important;
        font-weight: 700 !important;
    }
    body.sp-catalog-open .sp-home-cat-row.is-expanded > .sp-home-cat-row__head {
        background: rgba(23, 115, 234, 0.04) !important;
    }

    /* Children: cleaner indent, no harsh bg shift */
    body.sp-catalog-open .sp-home-cat-children {
        background: transparent !important;
        border-bottom: 1px solid #eef2f7 !important;
    }
    body.sp-catalog-open .sp-home-cat-child > .sp-home-cat-row__head {
        border-bottom: 1px solid #f5f7fa !important;
        background: #fafbfd !important;
    }
    body.sp-catalog-open .sp-home-cat-child:last-child > .sp-home-cat-row__head {
        border-bottom: none !important;
    }
    body.sp-catalog-open .sp-home-cat-child > .sp-home-cat-row__head > a {
        padding: 11px 16px 11px 52px !important;
        font-size: 13.5px !important;
        font-weight: 500 !important;
        color: #334155 !important;
    }
    body.sp-catalog-open .sp-home-cat-child.is-expanded > .sp-home-cat-row__head {
        background: rgba(23, 115, 234, 0.05) !important;
    }

    /* Grandchildren: lightest touch */
    body.sp-catalog-open .sp-home-cat-grandchildren {
        background: #f7f9fc !important;
        border-bottom: 1px solid #eef2f7 !important;
    }
    body.sp-catalog-open .sp-home-cat-grandchildren li {
        border-bottom: 1px solid rgba(23, 115, 234, 0.04) !important;
    }
    body.sp-catalog-open .sp-home-cat-grandchildren a {
        padding: 9px 16px 9px 72px !important;
        font-size: 13px !important;
        color: #475569 !important;
    }

    /* Title bar: airy and clean */
    body.sp-catalog-open .sp-home-categories::before {
        font-size: 12px !important;
        font-weight: 700 !important;
        color: #94a3b8 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.12em !important;
        padding: 16px 56px 14px 20px !important;
        border-bottom: 1px solid #eef2f7 !important;
    }

    /* Close button: airy outline circle */
    body.sp-catalog-open .sp-drawer-close {
        background: transparent !important;
        border: 1px solid #e2e8f0 !important;
        color: #94a3b8 !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 18px !important;
        top: 13px !important;
        right: 14px !important;
    }
    body.sp-catalog-open .sp-drawer-close:hover {
        background: #f7f9fc !important;
        border-color: #cbd5e1 !important;
        color: #0f1a2c !important;
    }

    /* Category icons: muted */
    body.sp-catalog-open .sp-home-category__icon {
        opacity: 0.4 !important;
        transition: opacity 200ms ease;
    }
    body.sp-catalog-open .sp-home-cat-row.is-expanded .sp-home-category__icon,
    body.sp-catalog-open .sp-home-cat-row > .sp-home-cat-row__head > a:hover .sp-home-category__icon {
        opacity: 0.7 !important;
    }
}

/* === Pass 39: drawer remove row separators, keep only title border === */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-home-cat-row__head,
    body.sp-catalog-open .sp-home-cat-row:last-child .sp-home-cat-row__head,
    body.sp-catalog-open .sp-home-cat-child > .sp-home-cat-row__head,
    body.sp-catalog-open .sp-home-cat-child:last-child > .sp-home-cat-row__head,
    body.sp-catalog-open .sp-home-cat-row,
    body.sp-catalog-open .sp-home-cat-child,
    body.sp-catalog-open .sp-home-cat-children,
    body.sp-catalog-open .sp-home-cat-grandchildren,
    body.sp-catalog-open .sp-home-cat-grandchildren li,
    body.sp-catalog-open .sp-home-cat-grandchildren li:last-child {
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
        border-left: none !important;
        border-right: none !important;
    }
    /* Keep only the title bar border to separate "კატეგორიები" from rows */
    body.sp-catalog-open .sp-home-categories::before {
        border-bottom: 1px solid #e2e8f0 !important;
    }
}

/* === Pass 40: drawer title bar polish === */
@media (max-width: 1099px) {
    /* Title: bigger, ink color, not uppercase, weight 700, modern */
    body.sp-catalog-open .sp-home-categories::before {
        content: "კატეგორიები" !important;
        display: flex !important;
        align-items: center !important;
        padding: 20px 64px 16px 20px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #0f1a2c !important;
        text-transform: none !important;
        letter-spacing: -0.01em !important;
        border-bottom: 1px solid #eef2f7 !important;
        background: #fff !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 3 !important;
        height: auto !important;
        line-height: 1 !important;
        box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02) !important;
    }
    /* Close: aligned with title baseline, solid white circle, ink icon */
    body.sp-catalog-open .sp-drawer-close {
        position: absolute !important;
        top: 14px !important;
        right: 16px !important;
        width: 32px !important;
        height: 32px !important;
        margin: 0 !important;
        background: #f7f9fc !important;
        border: none !important;
        color: #475569 !important;
        font-size: 20px !important;
        font-weight: 400 !important;
        line-height: 1 !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        z-index: 4 !important;
        display: grid !important;
        place-items: center !important;
        transition: background var(--sp-dur-fast, 160ms) ease, color var(--sp-dur-fast, 160ms) ease !important;
    }
    body.sp-catalog-open .sp-drawer-close:hover {
        background: #eef2f7 !important;
        color: #0f1a2c !important;
    }
    body.sp-catalog-open .sp-drawer-close:active {
        background: #e2e8f0 !important;
        transform: scale(0.94) !important;
    }
}

/* === Pass 41: drawer close X sticky next to title === */
@media (max-width: 1099px) {
    /* Make the aside a flex column so sticky positioning works */
    body.sp-catalog-open .sp-home-categories {
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
    }
    /* Pin the X to the top right of the drawer scroll viewport */
    body.sp-catalog-open .sp-drawer-close {
        position: sticky !important;
        top: 14px !important;
        right: 16px !important;
        margin: 14px 16px -32px auto !important;
        align-self: flex-end !important;
        z-index: 5 !important;
    }
}

/* === Pass 41.1: drawer X stays put (relative to fixed anchor) === */
@media (max-width: 1099px) {
    /* Aside is static so X's containing block becomes the anchor */
    body.sp-catalog-open .sp-home-categories {
        position: static !important;
        display: block !important;
    }
    /* Anchor stays the positioned ancestor for X */
    body.sp-catalog-open .sp-home-categories-anchor,
    body.sp-catalog-open .sp-home-categories-anchor--global {
        position: fixed !important;
    }
    /* X absolute to anchor, stays at top-right regardless of aside scroll */
    body.sp-catalog-open .sp-drawer-close {
        position: absolute !important;
        top: 14px !important;
        right: 16px !important;
        margin: 0 !important;
        align-self: auto !important;
        z-index: 10 !important;
    }
}

/* === Pass 41.2: X position fixed to viewport (doesn't scroll with drawer) === */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-drawer-close {
        position: fixed !important;
        top: 74px !important;        /* below site header (60) + 14px gap */
        left: auto !important;
        right: auto !important;
        /* Position to drawer right edge: 80vw cap 320, minus 16+32 */
        margin: 0 !important;
        z-index: 100001 !important;  /* above site header (100000) */
    }
}
@media (max-width: 1099px) {
    /* Calculate X left position to match drawer width */
    body.sp-catalog-open .sp-drawer-close {
        left: calc(min(80vw, 320px) - 48px) !important;
    }
}

/* === Pass 42: drawer X smaller polished circle === */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-drawer-close {
        width: 26px !important;
        height: 26px !important;
        top: 17px !important;
        left: calc(min(80vw, 320px) - 38px) !important;  /* 26 + 12 from right edge */
        font-size: 17px !important;
        font-weight: 500 !important;
        background: #f1f5f9 !important;
        color: #64748b !important;
        border-radius: 50% !important;
        display: grid !important;
        place-items: center !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    body.sp-catalog-open .sp-drawer-close:hover {
        background: #e2e8f0 !important;
        color: #0f1a2c !important;
    }
}

/* === Pass 42.1: X back below site header === */
@media (max-width: 1099px) {
    body.sp-catalog-open .sp-drawer-close {
        top: 77px !important;  /* drawer top (60) + 17px gap to align with title baseline */
    }
}

/* === Pass 43: mega flyout only renders when its panel is open ===
 * Stray .is-active on a .sp-mega__item was leaving the flyout
 * visible+pointer-events:auto over the hero slider, blocking arrows
 * and dots. Force panel.is-open as ancestor for any visible flyout.
 */
.sp-catalog-panel:not(.is-open) .sp-mega__flyout,
[data-sp-catalog-panel]:not(.is-open) .sp-mega__flyout {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* === Pass 44: product card designer polish === */
.sp-product-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 14px 14px 16px !important;
    position: relative;
    overflow: hidden;
    transition: transform 320ms var(--sp-ease-out, ease-out),
                box-shadow 320ms var(--sp-ease-out, ease-out),
                border-color 320ms var(--sp-ease-out, ease-out) !important;
}

/* BEST PRICE badge: floating above image, less overlap */
.sp-product-card__badge,
.sp-product-card .sp-badge,
.sp-product-card .sp-product-card__sale-badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 3 !important;
    padding: 4px 10px !important;
    background: linear-gradient(135deg, #e0efff, #f4f9ff) !important;
    color: var(--sp-primary, #1773ea) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
    border-radius: 999px !important;
    border: 1px solid rgba(23, 115, 234, 0.12) !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
    margin: 0 !important;
}

/* Image: give more breathing room, contain properly */
.sp-product-card__image {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: auto !important;
    margin: 8px 0 14px !important;
    padding: 0 !important;
    background: #fff !important;
    border-radius: 10px !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden;
}
.sp-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transition: transform 480ms var(--sp-ease-out, ease-out);
}
@media (hover: hover) and (pointer: fine) {
    .sp-product-card:hover .sp-product-card__image img {
        transform: scale(1.04);
    }
}

/* Price: bold, brand */
.sp-product-card__price,
.sp-product-card .price {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--sp-primary, #1773ea) !important;
    margin: 0 0 4px !important;
    line-height: 1.2 !important;
}
.sp-product-card__price del,
.sp-product-card .price del {
    font-size: 13px !important;
    color: #94a3b8 !important;
    margin-right: 6px !important;
    font-weight: 500 !important;
}

/* Installment line: subtle */
.sp-product-card__installment,
.sp-product-card__instalment {
    font-size: 11px !important;
    color: #94a3b8 !important;
    margin-bottom: 8px !important;
    font-weight: 500 !important;
}

/* Title: 2-line clamp, ink, weight 500 */
.sp-product-card__title,
.sp-product-card .woocommerce-loop-product__title {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #0f1a2c !important;
    line-height: 1.35 !important;
    margin: 0 0 14px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 2.7em !important;
}

/* Actions row: heart + ATC */
.sp-product-card__actions {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    margin-top: auto !important;
}
.sp-card-favorite,
.sp-product-card__heart {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    background: #f7fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    display: grid !important;
    place-items: center !important;
    color: #64748b !important;
    cursor: pointer;
    transition: background var(--sp-dur-fast, 160ms) ease,
                color var(--sp-dur-fast, 160ms) ease,
                border-color var(--sp-dur-fast, 160ms) ease,
                transform var(--sp-dur-fast, 160ms) ease;
}
.sp-card-favorite:hover,
.sp-product-card__heart:hover {
    background: rgba(244, 67, 54, 0.08) !important;
    border-color: rgba(244, 67, 54, 0.3) !important;
    color: #ef4444 !important;
    transform: translateY(-1px);
}
.sp-card-favorite[aria-pressed="true"],
.sp-product-card__heart.is-active {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: #fff !important;
}

.sp-product-card__actions .button,
.sp-product-card__add,
.sp-product-card .added_to_cart {
    flex: 1 1 auto !important;
    height: 40px !important;
    padding: 0 16px !important;
    background: linear-gradient(135deg, var(--sp-primary-dark, #0f5ec8), var(--sp-primary, #1773ea)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    box-shadow: 0 3px 8px rgba(23, 115, 234, 0.18) !important;
    transition: transform var(--sp-dur-fast, 160ms) ease,
                box-shadow var(--sp-dur-fast, 160ms) ease !important;
}
@media (hover: hover) and (pointer: fine) {
    .sp-product-card__actions .button:hover,
    .sp-product-card__add:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 6px 16px rgba(23, 115, 234, 0.28) !important;
    }
}

/* Hover card lift */
@media (hover: hover) and (pointer: fine) {
    .sp-product-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08) !important;
        border-color: #e2e8f0 !important;
    }
}

/* ===== End Pass 44 ===== */

/* === Pass 45: maximize product image area === */
.sp-product-card {
    padding: 0 0 14px !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Image: edge-to-edge, MAX space */
.sp-product-card__image {
    margin: 0 !important;
    padding: 16px 12px !important;
    border-radius: 14px 14px 0 0 !important;
    background: #fff !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    flex: 0 0 auto !important;
}
.sp-product-card__image img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Push badge above image inside the padded area */
.sp-product-card__badge,
.sp-product-card .sp-badge,
.sp-product-card .sp-product-card__sale-badge {
    top: 10px !important;
    left: 10px !important;
}

/* Body inset for everything except image */
.sp-product-card__price,
.sp-product-card .price,
.sp-product-card__installment,
.sp-product-card__instalment,
.sp-product-card__title,
.sp-product-card .woocommerce-loop-product__title,
.sp-product-card__actions {
    margin-left: 14px !important;
    margin-right: 14px !important;
}
.sp-product-card__price {
    margin-top: 4px !important;
}
.sp-product-card__actions {
    margin-top: auto !important;
    padding-top: 8px !important;
}

/* ===== End Pass 45 ===== */

/* === Pass 45.1: image fits container with contain === */
.sp-product-card__image {
    overflow: hidden !important;
    position: relative !important;
}
.sp-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
}
