/* Akoma Groupe â€” shop archive (ported from Elite Shipping theme) */
body.akoma-shop-archive,
body.akoma-product-category {
  --shop-navy: #0464a9;
  --shop-navy-mid: #1c3229;
  --shop-blue: #116bbfed;
  --shop-blue-dark: #0269df;
  --shop-white: #ffffff;
  --shop-gray-50: #faf7f1;
  --shop-blue-100: #e6f0f3a1;
  --shop-blue-200: #0592cc54;
  --shop-gray-400: #cbd5e1;
  --shop-gray-500: #64748b;
  --shop-gray-700: #008bfc;
  --shop-text-strong: #15251f;
  --shop-text-muted: rgba(255, 255, 255, 0.86);
  --shop-gallery-bg: #0f1a16;
}
.apex-page-hero {
	background: linear-gradient(135deg, var(--shop-navy) 0%, var(--shop-navy-mid) 100%);
	color: var(--shop-white);
	padding: 56px 0 48px;
}
.apex-page-hero-title {
	margin: 0 0 12px;
	font-family: Montserrat, sans-serif;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	line-height: 1.15;
}
.apex-page-hero-desc {
	margin: 0;
	max-width: 640px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 16px;
	line-height: 1.7;
}
.apex-about-page .apex-kicker {
	color: var(--shop-blue);
}
.apex-page-hero .apex-kicker {
	color: var(--shop-blue);
}
.apex-page-hero .apex-kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  color: var(--shop-blue);
  font-family: var(--font-body, "Manrope", sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.apex-page-hero--bar,
.apex-page-hero--blog,
.apex-page-hero--blog-single,
.apex-page-hero--shop {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 240px;
	padding: 45px 0 40px;
}
.apex-page-hero--bar .container,
.apex-page-hero--blog .container,
.apex-page-hero--shop .container {
	text-align: left;
}

/* —— Kitchen cabinetry shop hero (luxury glass panel)
 * Keep original hero footprint: min-height 240px / padding 72px 0 64px
 * (from shared .apex-page-hero--bar rules above). Do not enlarge the banner.
 */
.apex-page-hero--shop {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.apex-page-hero--shop .apex-page-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(138deg, rgb(0 0 0 / 57%) 0%, rgb(0 0 0 / 0%) 35% 35%, transparent 70%);
}

.apex-page-hero--shop .apex-page-hero__layout {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	width: 100%;
	text-align: left;
}

.apex-page-hero--shop .apex-page-hero__panel {
	position: relative;
	width: 100%;
	max-width: 520px;
	padding: 16px 32px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 22px;
	background: rgb(10 15 20 / 32%);
	box-shadow: 0 16px 40px 0px rgb(255 225 225 / 31%), inset 6px 17px 20px 11px rgb(255 232 232 / 6%), inset -3px -3px 1px 0px rgb(255 225 225 / 31%);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(7px);
	z-index: 1;
}

.apex-page-hero--shop .apex-page-hero__kicker,
.apex-page-hero--shop .apex-kicker {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	margin: 0 0 0.65rem;
	color: #6ee7d8;
	font-family: Inter, "SF Pro Text", "Segoe UI", Manrope, system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 4px;
	line-height: 1;
	text-transform: uppercase;
	opacity: 0;
	animation: akoma-hero-kicker-in 700ms ease-out 120ms forwards;
}

.apex-page-hero--shop .apex-page-hero__kicker::after {
	content: "";
	display: block;
	width: 53px;
	height: 1px;
	background: linear-gradient(90deg, #6e9ce7 54%, rgba(110, 231, 216, 0) 100%);
}

.apex-page-hero--shop .apex-page-hero-title {
	margin: 0 0 0.55rem;
	color: #ffffff;
	font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
	font-size: clamp(32px, 4vw, 42px);
	font-weight: 600;
	letter-spacing: -0.5px;
	line-height: 1.05;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	opacity: 0;
	transform: translateY(20px);
	animation: akoma-hero-title-in 800ms ease-out 220ms forwards;
}

h1.apex-page-hero-title::after {
	content: "";
	display: block;
	width: 288px;
	height: 1px;
	background: linear-gradient(90deg, rgba(110, 231, 216, 0) 20%, #ffffff 50%, rgba(110, 231, 216, 0) 80%);
	margin-top: 0.25rem;
}

.apex-page-hero--shop .apex-page-hero-desc {
	margin: 0;
	max-width: 420px;
	color: rgba(255, 255, 255, 0.85);
	font-family: Inter, "SF Pro Text", "Segoe UI", Manrope, system-ui, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	opacity: 0;
	transform: translateY(14px);
	animation: akoma-hero-desc-in 780ms ease-out 360ms forwards;
}

@keyframes akoma-hero-kicker-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes akoma-hero-title-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes akoma-hero-desc-in {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1024px) {
	.apex-page-hero--shop .apex-page-hero__panel {
		padding: 24px 28px;
		max-width: 480px;
	}
}

@media (max-width: 720px) {
	.apex-page-hero--shop .apex-page-hero__scrim {
		background: linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.72) 0%,
			rgba(0, 0, 0, 0.55) 55%,
			rgba(0, 0, 0, 0.35) 100%
		);
	}

	.apex-page-hero--shop .apex-page-hero__panel {
		max-width: none;
		width: 100%;
		padding: 20px 22px;
		border-radius: 18px;
		background: rgba(8, 12, 16, 0.78);
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.apex-page-hero--shop .apex-page-hero-title {
		font-size: 32px;
		letter-spacing: -0.4px;
	}

	.apex-page-hero--shop .apex-page-hero-desc {
		font-size: 14px;
		max-width: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.apex-page-hero--shop .apex-page-hero__kicker,
	.apex-page-hero--shop .apex-kicker,
	.apex-page-hero--shop .apex-page-hero-title,
	.apex-page-hero--shop .apex-page-hero-desc {
		opacity: 1;
		transform: none;
		animation: none;
	}
}

.apex-blog-page .apex-kicker,
.apex-blog-single .apex-kicker,
.apex-page-hero--bar .apex-kicker,
.apex-shop-archive .apex-kicker,
.akoma-shop-archive .apex-kicker {
	color: #50aaff;
}

/* Keep kitchen hero collection label on the mint accent. */
.apex-page-hero--shop .apex-page-hero__kicker,
.apex-page-hero--shop .apex-kicker {
	color: #6ee7d8;
}

.akoma-wc-main { padding: 0 0 72px; background: var(--shop-white); }

.apex-shop-archive {
	padding: 36px 0 0;
	background: var(--shop-white);
}
.apex-shop-layout {
	display: grid;
	grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.apex-shop-sidebar {
	position: sticky;
	top: calc(var(--header-h, 104px) + 1.25rem);
	align-self: start;
	/* max-height: calc(100vh - var(--header-h, 104px) - 2rem); */
	overscroll-behavior: contain;
	scrollbar-width: thin;
}

.apex-shop-main {
	min-width: 0;
}
.apex-shop-active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
	margin: 0 0 18px;
	padding: 0 0 16px;
	border-bottom: 1px solid var(--shop-blue-200);
}
.apex-shop-active-filters-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	flex: 1 1 auto;
	min-width: 0;
}
.apex-shop-active-filter-tag {
	display: inline-flex;
	align-items: center;
	gap: 0;
	max-width: 100%;
	min-height: 34px;
	padding: 0;
	border: 1px solid rgb(0 125 255 / 20%);
	border-radius: 999px;
	background: linear-gradient(180deg, #f3f9ff 0%, #ffffff 100%);
	color: var(--shop-navy);
	box-shadow: 0 1px 4px rgb(0 95 255 / 8%);
}
.apex-shop-active-filter-tag-inner {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: 100%;
	padding: 4px 6px 4px 14px;
}
.apex-shop-active-filter-label {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 220px;
}
.apex-shop-active-filter-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgb(0 120 255 / 10%);
	color: var(--shop-navy);
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	transition: background .2s ease, color .2s ease, transform .15s ease;
}
.apex-shop-active-filter-remove-icon {
	display: block;
	width: 14px;
	height: 14px;
}
.apex-shop-active-filter-remove:hover {
	background: var(--shop-blue);
	color: var(--shop-white);
	transform: scale(1.05);
}
.apex-shop-active-filters-clear {
	flex-shrink: 0;
	margin-left: auto;
	padding: 6px 2px;
	color: var(--shop-blue);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.02em;
	white-space: nowrap;
	transition: color .2s ease;
}
.apex-shop-active-filters-clear:hover {
	color: var(--shop-navy);
	text-decoration: underline;
}

.apex-shop-sidebar-block + .apex-shop-sidebar-block {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--shop-blue-200);
}
.apex-shop-sidebar-title {
	margin: 0 0 16px;
	font-size: 17px;
	font-weight: 800;
	color: #005baf;
	letter-spacing: 0.04em;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.02em;
	line-height: 1.1;
}
.apex-shop-price-filter {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.apex-shop-price-slider {
	position: relative;
	height: 28px;
	margin: 2px 4px 0;
	padding: 0 2px;
}
.apex-shop-price-slider-track {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 6px;
	border-radius: 999px;
	background: var(--shop-blue-100);
	border: 1px solid var(--shop-blue-200);
	box-shadow: inset 0 1px 2px rgb(4 100 169 / 8%);
	transform: translateY(-50%);
}
.apex-shop-price-slider-range {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #0493f5 0%, var(--shop-navy) 100%);
}
.apex-shop-price-slider input[type="range"] {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 28px;
	margin: 0;
	padding: 0;
	background: none;
	pointer-events: none;
	transform: translateY(-50%);
	-webkit-appearance: none;
	appearance: none;
}
.apex-shop-price-slider input[type="range"]::-webkit-slider-runnable-track {
	height: 6px;
	background: transparent;
	border: 0;
}
.apex-shop-price-slider input[type="range"]::-moz-range-track {
	height: 6px;
	background: transparent;
	border: 0;
}
.apex-shop-price-slider input[type="range"]::-webkit-slider-thumb {
	width: 10px;
	height: 18px;
	margin-top: -6px;
	border: 1px solid rgb(0 125 255 / 35%);
	border-radius: 4px;
	background: linear-gradient(180deg, #ffffff 0%, #e8f6ff 100%);
	box-shadow: 0 1px 4px rgb(9 83 155 / 18%), inset 0 0 0 1px rgb(255 255 255 / 80%);
	cursor: grab;
	pointer-events: auto;
	-webkit-appearance: none;
	appearance: none;
}
.apex-shop-price-slider input[type="range"]::-moz-range-thumb {
	width: 10px;
	height: 18px;
	border: 1px solid rgb(0 125 255 / 35%);
	border-radius: 4px;
	background: linear-gradient(180deg, #ffffff 0%, #e8f6ff 100%);
	box-shadow: 0 1px 4px rgb(9 83 155 / 18%), inset 0 0 0 1px rgb(255 255 255 / 80%);
	cursor: grab;
	pointer-events: auto;
}
.apex-shop-price-slider input[type="range"]:active::-webkit-slider-thumb {
	cursor: grabbing;
}
.apex-shop-price-slider input[type="range"]:active::-moz-range-thumb {
	cursor: grabbing;
}
.apex-shop-price-slider input[type="range"]:focus {
	outline: none;
}
.apex-shop-price-slider input[type="range"]:focus-visible::-webkit-slider-thumb {
	box-shadow: 0 0 0 3px rgb(0 127 255 / 22%), 0 1px 4px rgb(9 83 155 / 18%);
}
.apex-shop-price-slider input[type="range"]:focus-visible::-moz-range-thumb {
	box-shadow: 0 0 0 3px rgb(0 127 255 / 22%), 0 1px 4px rgb(9 83 155 / 18%);
}
.apex-shop-price-slider-min {
	z-index: 2;
}
.apex-shop-price-slider-max {
	z-index: 3;
}
.apex-shop-price-slider-label {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px;
	margin: 0;
	font-family: Inter, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: var(--shop-gray-500);
}
.apex-shop-price-slider-label-text {
	font-weight: 500;
}
.apex-shop-price-slider-label strong {
	color: var(--shop-navy);
	font-weight: 700;
}
.apex-shop-price-slider-label-sep {
	color: var(--shop-gray-500);
}
.apex-shop-price-fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
	gap: 8px;
	align-items: stretch;
	margin: 0;
}
.apex-shop-price-field {
	position: relative;
	min-width: 0;
}
.apex-shop-price-fields input {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	padding: 8px 30px 8px 12px;
	border: 1px solid var(--shop-blue-200);
	border-radius: 8px;
	background: var(--shop-white);
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--shop-navy);
	box-shadow: 0 1px 2px rgba(0, 21, 41, .04);
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.apex-shop-price-fields input::placeholder {
	color: var(--shop-gray-500);
	font-weight: 400;
}
.apex-shop-price-fields input:hover {
	border-color: #c5ced9;
	background: #fcfdfe;
}
.apex-shop-price-fields input:focus {
	outline: none;
	border-color: #0570e263;
	box-shadow: inset 0 0 7px 3px rgb(0 108 255 / 14%), 0 0 7px 3px rgb(0 108 255 / 14%);
}
.apex-shop-price-unit {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: var(--shop-gray-500);
	line-height: 1;
	pointer-events: none;
}
.apex-shop-price-sep {
	color: var(--shop-gray-500);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}
.apex-shop-price-fields .apex-shop-filter-btn {
	width: auto;
	min-height: 100%;
	padding: 8px 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}
.apex-shop-filter-btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
}
.apex-shop-filter-btn-icon svg {
	display: block;
	width: 18px;
	height: 18px;
}
.apex-shop-filter-btn {
	width: 100%;
	padding: 12px 16px;
	border: 0;
	border-radius: 8px;
	background: #0493f5;
	color: var(--shop-white);
	font-family: Montserrat, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 4px 14px rgb(0 127 255 / 22%);
	transition: background .2s ease, box-shadow .2s ease, transform .15s ease;
}
.apex-shop-filter-btn:hover {
	background: #0269df;
	box-shadow: 0 6px 18px rgb(0 149 255 / 28%);
}
.apex-shop-filter-btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgb(0 127 255 / 28%);
}
.apex-shop-filter-btn:active {
	transform: translateY(1px);
}
.apex-shop-sidebar-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.apex-shop-sidebar-list li + li {
	margin-top: 10px;
}
.apex-shop-sidebar-list a {
	color: var(--shop-gray-700);
	text-decoration: none;
	font-size: 14px;
}
.apex-shop-sidebar-list a:hover,
.apex-shop-sidebar-list a.is-current {
	color: var(--shop-text-strong);
	font-weight: 700;
}
.apex-shop-sidebar-block--stock,
.apex-shop-sidebar-block--collections,
.apex-shop-sidebar-block--door-series,
.apex-shop-sidebar-block--price {
	width: 100%;
	max-width: none;
	padding: 18px;
	border: 1px solid var(--shop-blue-200);
	border-radius: 12px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 4px 16px rgba(0, 21, 41, .04);
}
.apex-shop-sidebar-block--stock .apex-shop-sidebar-title,
.apex-shop-sidebar-block--collections .apex-shop-sidebar-title,
.apex-shop-sidebar-block--door-series .apex-shop-sidebar-title,
.apex-shop-sidebar-block--price .apex-shop-sidebar-title {
	margin-bottom: 14px;
}
.apex-shop-stock-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}
.apex-shop-stock-option {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--shop-blue-200);
	border-radius: 10px;
	background: var(--shop-white);
	color: var(--shop-text-strong);
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(0, 21, 41, .04);
	transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease, background .2s ease;
}
.apex-shop-stock-option:hover {
	border-color: rgb(0 168 255 / 35%);
	box-shadow: 0 6px 18px rgb(9 83 155 / 8%);
	transform: translateY(-1px);
}
.apex-shop-stock-option.is-active {
	border-color: #116bbf73;
	background: linear-gradient(180deg, #eef9ff 0%, #ffffff 100%);
	box-shadow: 0px 4px 10px rgb(0 170 255 / 12%);
}
.apex-shop-stock-option-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 10px;
}
.apex-shop-stock-option-icon--sale {
	background: rgb(0 141 255 / 12%);
	color: var(--shop-blue);
}
.apex-shop-stock-option-icon--stock {
	background: rgba(34, 197, 94, .12);
	color: #16a34a;
}
.apex-shop-stock-option-icon--wood-collection {
	background: rgb(120 84 28 / 12%);
	color: #92652a;
}
.apex-shop-stock-option-icon--melamine-collection {
	background: rgb(0 141 255 / 12%);
	color: var(--shop-blue);
}
.apex-shop-stock-option-icon--aline,
.apex-shop-stock-option-icon--divine {
	background: rgb(0 100 169 / 12%);
	color: var(--shop-navy);
}
.apex-shop-stock-option-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1 1 auto;
	min-width: 0;
}
.apex-shop-stock-option-label {
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--shop-navy);
}
.apex-shop-stock-option-desc {
	font-size: 12px;
	line-height: 1.35;
	color: var(--shop-gray-500);
}
.apex-shop-stock-option-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--shop-blue-100);
	color: transparent;
	transition: background .2s ease, color .2s ease;
}
.apex-shop-stock-option.is-active .apex-shop-stock-option-check {
	background: var(--shop-blue);
	color: var(--shop-white);
}
.apex-shop-sidebar-block--categories {
	padding: 18px;
	border: 1px solid var(--shop-blue-200);
	border-radius: 12px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 4px 16px rgba(0, 21, 41, .04);
}
.apex-shop-sidebar-block--categories .apex-shop-sidebar-title {
	margin-bottom: 12px;
}
.apex-shop-category-panel {
	max-height: 721px;
	overflow-y: auto;
	padding-right: 4px;
	scrollbar-width: thin;
	scrollbar-color: rgb(1 83 255 / 22%) #00000000;
}
.apex-shop-category-panel::-webkit-scrollbar {
	width: 6px;
}
.apex-shop-category-panel::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(0, 21, 65, .18);
}
.apex-shop-category-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}
.apex-shop-category-list--nested {
	gap: 4px;
	margin-top: 4px;
	padding-left: 12px;
	border-left: 1px solid var(--shop-blue-200);
}
.apex-shop-category-link--depth-0 {
	font-weight: 700;
}
.apex-shop-category-link--parent {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 8px;
	padding: 4px 6px 4px 1px;
	overflow: hidden;
	border: 1px solid #00bdff21;
	border-radius: 10px;
	background: var(--shop-white);
	color: var(--shop-gray-700);
	box-shadow: 0 1px 2px rgba(0, 21, 41, .03);
	transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.apex-shop-category-link-main {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	min-width: 0;
	gap: 8px 10px;
	padding: 0;
	color: inherit;
	text-decoration: none;
}
.apex-shop-category-link--parent .apex-shop-category-count {
	flex-shrink: 0;
}
.apex-shop-category-link--parent .apex-shop-category-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	justify-self: end;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	cursor: pointer;
	box-shadow: none;
	transition: transform .15s ease;
}
.apex-shop-category-toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: linear-gradient(180deg, #f4faff 0%, #e8f4fc 100%);
	border: 1px solid rgb(0 125 255 / 14%);
	color: var(--shop-navy);
	box-shadow: 0 1px 3px rgb(0 76 155 / 8%);
	transition: transform .28s cubic-bezier(.4, 0, .2, 1), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.apex-shop-category-toggle-icon svg {
	display: block;
}
.apex-shop-category-link--parent:hover .apex-shop-category-toggle-icon {
	background: linear-gradient(180deg, #e6f4ff 0%, #d9edff 100%);
	border-color: rgb(0 125 255 / 28%);
	color: var(--shop-blue);
	box-shadow: 0 3px 8px rgb(0 120 255 / 14%);
}
.apex-shop-category-link--parent.is-current .apex-shop-category-toggle-icon {
	background: linear-gradient(180deg, #0493f5 0%, var(--shop-navy) 100%);
	border-color: transparent;
	color: var(--shop-white);
	box-shadow: 0 2px 10px rgb(0 120 255 / 30%);
}
.apex-shop-category-toggle:hover .apex-shop-category-toggle-icon {
	transform: scale(1.06);
}
.apex-shop-category-toggle:active .apex-shop-category-toggle-icon {
	transform: scale(0.94);
}
.apex-shop-category-toggle:focus-visible {
	outline: none;
}
.apex-shop-category-toggle:focus-visible .apex-shop-category-toggle-icon {
	box-shadow: 0 0 0 3px rgb(0 127 255 / 22%), 0 2px 8px rgb(0 120 255 / 14%);
}
.apex-shop-category-item.is-collapsed .apex-shop-category-toggle-icon {
	transform: rotate(-90deg);
}
.apex-shop-category-item.is-collapsed .apex-shop-category-toggle:hover .apex-shop-category-toggle-icon {
	transform: rotate(-90deg) scale(1.06);
}
.apex-shop-category-item.is-collapsed .apex-shop-category-toggle:active .apex-shop-category-toggle-icon {
	transform: rotate(-90deg) scale(0.94);
}
.apex-shop-category-item.is-collapsed > .apex-shop-category-list--nested {
	display: none;
}
.apex-shop-category-link--depth-1 {
	background: #fbfdff;
}
.apex-shop-category-link--depth-2:not(.apex-shop-category-link--parent),
.apex-shop-category-link--depth-3:not(.apex-shop-category-link--parent) {
	padding: 4px 6px 4px 1px;
	font-size: 13px;
}
.apex-shop-category-link--depth-2 .apex-shop-category-label,
.apex-shop-category-link--depth-3 .apex-shop-category-label {
	font-size: 13px;
	font-weight: 600;
}
.apex-shop-category-link--depth-3 .apex-shop-category-label {
	font-weight: 500;
}
.apex-shop-category-link:not(.apex-shop-category-link--parent) {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;
	padding: 4px 6px 4px 1px;
	border: 1px solid #00bdff21;
	border-radius: 10px;
	background: var(--shop-white);
	color: var(--shop-gray-700);
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(0, 21, 41, .03);
	transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.apex-shop-category-link:not(.apex-shop-category-link--parent) .apex-shop-category-count {
	flex-shrink: 0;
	justify-self: end;
}
.apex-shop-category-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--shop-blue-100);
	color: transparent;
	transition: background .2s ease, color .2s ease;
}
.apex-shop-category-link:hover,
.apex-shop-category-link--parent:hover {
	border-color: rgb(0 125 255 / 24%);
	background: #f5fcff;
	color: var(--shop-navy);
	box-shadow: 0 6px 16px rgb(9 153 240 / 7%);
	transform: translateX(2px);
}
.apex-shop-category-link.is-current,
.apex-shop-category-link--parent.is-current {
	border-color: var(--shop-blue);
	background: linear-gradient(180deg, #dfecff 0%, #ffffff 100%);
	color: var(--shop-navy);
	box-shadow: 0px 1px 6px rgb(0 95 255 / 10%);
}
.apex-shop-category-link.is-current .apex-shop-category-check,
.apex-shop-category-link--parent.is-current .apex-shop-category-check {
	background: var(--shop-blue);
	color: var(--shop-white);
}
.apex-shop-category-link.is-partial,
.apex-shop-category-link--parent.is-partial {
	border-color: rgb(0 125 255 / 34%);
	background: linear-gradient(180deg, #f3f9ff 0%, #ffffff 100%);
	color: var(--shop-navy);
}
.apex-shop-category-link.is-partial .apex-shop-category-check,
.apex-shop-category-link--parent.is-partial .apex-shop-category-check {
	background: rgb(0 120 255 / 16%);
	color: var(--shop-blue);
}
.apex-shop-category-link.is-partial .apex-shop-category-label,
.apex-shop-category-link--parent.is-partial .apex-shop-category-label {
	font-weight: 700;
	color: var(--shop-navy);
}
.apex-shop-category-link.is-partial .apex-shop-category-count,
.apex-shop-category-link--parent.is-partial .apex-shop-category-count {
	background: rgb(0 120 255 / 10%);
	color: var(--shop-blue);
}
.apex-shop-category-label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: inherit;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.apex-shop-category-link.is-current .apex-shop-category-label,
.apex-shop-category-link--parent.is-current .apex-shop-category-label {
	font-weight: 700;
	color: var(--shop-navy);
}
.apex-shop-category-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 24px;
	padding: 0 8px;
	border-radius: 999px;
	background: var(--shop-blue-100);
	color: var(--shop-gray-700);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}
.apex-shop-category-link.is-current .apex-shop-category-count,
.apex-shop-category-link--parent.is-current .apex-shop-category-count {
	background: rgb(0 120 255 / 14%);
	color: var(--shop-blue);
}
.apex-shop-top-rated-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.apex-shop-top-rated-item {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 14px 0;
	border-bottom: 1px solid var(--shop-blue-200);
}
.apex-shop-top-rated-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
.apex-shop-top-rated-media {
	display: block;
	overflow: hidden;
	width: 72px;
	height: 72px;
	background: var(--shop-blue-100);
}
.apex-shop-top-rated-media img,
.apex-shop-top-rated-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.apex-shop-top-rated-ph {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--shop-blue-200);
}
.apex-shop-top-rated-title {
	margin: 0 0 6px;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 400;
}
.apex-shop-top-rated-title a {
	color: var(--shop-gray-700);
	text-decoration: none;
}
.apex-shop-top-rated-title a:hover {
	color: var(--shop-blue);
}
.apex-shop-top-rated-price {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}
.apex-shop-top-rated-price .amount,
.apex-shop-top-rated-price .woocommerce-Price-amount,
.apex-shop-top-rated-price ins,
.apex-shop-top-rated-price ins .amount,
.apex-shop-top-rated-price ins .woocommerce-Price-amount {
	color: var(--shop-blue);
}
.apex-shop-top-rated-price del .amount,
.apex-shop-top-rated-price del .woocommerce-Price-amount {
	color: var(--shop-gray-500);
	font-weight: 400;
	text-decoration: line-through;
}
.apex-shop-top-rated-price ins {
	text-decoration: none;
}
.apex-shop-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
	padding: 14px 0;
	border-bottom: 1px solid var(--shop-blue-200);
}
.apex-shop-toolbar-left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
}
.apex-shop-toolbar-label {
	font-size: 14px;
	color: var(--shop-gray-700);
}
.apex-shop-per-page {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}
.apex-shop-per-page-sep {
	color: var(--shop-gray-400);
}
.apex-shop-per-page-link {
	color: var(--shop-gray-700);
	text-decoration: none;
}
.apex-shop-per-page-link:hover,
.apex-shop-per-page-link.is-active {
	color: var(--shop-text-strong);
	font-weight: 700;
}
.apex-shop-toolbar-sep {
	display: inline-block;
	width: 1px;
	height: 18px;
	margin: 0 14px;
	background: var(--shop-blue-200);
	vertical-align: middle;
}
.apex-shop-toolbar-label--layout {
	margin-right: 2px;
}
.apex-shop-view-modes {
	display: inline-flex;
	align-items: center;
	gap: 0;
	padding: 3px;
	border: 1px solid #0071cd69;
	border-radius: 10px;
	background: linear-gradient(168deg, #ffffff00 0%, #0071cd0f 94% 100%);
	box-shadow: inset 0 1px 2px rgba(0, 21, 41, .03);
}
.apex-shop-view-mode {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 44px;
	padding: 6px 8px;
	border: 0;
	border-radius: 7px;
	background: #0098ff00;
	color: #008bfc;
	text-decoration: none;
	line-height: 1;
	transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}
.apex-shop-view-mode:hover {
	background: #118bff24;
}
.apex-shop-view-mode:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 102, 0, .35);
}
.apex-shop-view-mode.is-active {
	background: #008bfc38;
	color: #008bfc;
	box-shadow: 0 1px 4px rgba(0, 21, 41, .1);
}
.apex-shop-view-mode-icon {
	display: grid;
	grid-template-columns: repeat(var(--icon-cols, 4), minmax(0, 1fr));
	grid-template-rows: repeat(var(--icon-rows, 2), minmax(0, 1fr));
	gap: 2px;
	flex: 0 0 auto;
	height: 14px;
}
.apex-shop-view-mode-icon--2 {
	width: 7px;
}
.apex-shop-view-mode-icon--3 {
	width: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
}

.apex-shop-view-mode-icon--3 i:nth-child(1) {
	grid-column: 1 / 3;
	grid-row: 1;
	justify-self: center;
	width: calc(50% - 1px);
	max-width: calc(50% - 1px);
}

.apex-shop-view-mode-icon--3 i:nth-child(2) {
	grid-column: 1;
	grid-row: 2;
}

.apex-shop-view-mode-icon--3 i:nth-child(3) {
	grid-column: 2;
	grid-row: 2;
}

.apex-shop-view-mode-icon--4 {
	width: 14px;
}
.apex-shop-view-mode-icon i {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 2px;
	background: #008bfc5c;
	transition: background .2s ease;
}
.apex-shop-view-mode.is-active .apex-shop-view-mode-icon i {
	background: #008bfc;
}
.apex-shop-view-mode-text {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.apex-shop-toolbar-right {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}
.apex-shop-filters-toggle {
	display: none;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--shop-blue-200);
	border-radius: 10px;
	background: var(--shop-white);
	color: var(--shop-navy);
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0, 21, 41, .04);
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.apex-shop-filters-toggle:hover {
	border-color: #c5ced9;
	background: #fcfdfe;
}
.apex-shop-filters-toggle:focus-visible {
	outline: none;
	border-color: var(--shop-blue);
	box-shadow: 0 0 0 3px rgba(255, 102, 0, .14);
}
.apex-shop-filters-toggle-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 18px;
}
.apex-shop-filters-toggle-icon i {
	display: block;
	height: 2px;
	border-radius: 1px;
	background: currentColor;
}
.apex-shop-filters-drawer-head {
	display: none;
}
.apex-shop-filters-close {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: Inter, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--shop-gray-700);
	cursor: pointer;
}
.apex-shop-filters-close:hover {
	color: var(--shop-navy);
}
.apex-shop-filters-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 8, 20, 0.55);
	z-index: 450;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
}
body.akoma-shop-filters-open .apex-shop-filters-overlay {
	opacity: 1;
	visibility: visible;
}
body.akoma-shop-filters-open {
	overflow: hidden;
}
.apex-shop-sort {
	position: relative;
}
.apex-shop-toolbar .woocommerce-ordering,
.apex-shop-sort .woocommerce-ordering {
	margin: 0;
	float: none;
}
.apex-shop-toolbar .woocommerce-ordering select,
.apex-shop-sort .woocommerce-ordering select,
body.akoma-shop-archive .woocommerce-ordering select,
body.akoma-product-category .woocommerce-ordering select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	min-width: 210px;
	padding: 10px 38px 10px 14px;
	border: 1px solid var(--shop-blue-200);
	border-radius: 10px;
	background-color: var(--shop-white);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' stroke='%23334155' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--shop-navy);
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0, 21, 41, .04);
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.apex-shop-toolbar .woocommerce-ordering select:hover,
.apex-shop-sort .woocommerce-ordering select:hover,
body.akoma-shop-archive .woocommerce-ordering select:hover,
body.akoma-product-category .woocommerce-ordering select:hover {
	border-color: #0684e245;
	background-color: #0092ff00;
	box-shadow: inset 1px 1px 13px 4px #008bff29;
}
.apex-shop-toolbar .woocommerce-ordering select:focus,
.apex-shop-sort .woocommerce-ordering select:focus,
body.akoma-shop-archive .woocommerce-ordering select:focus,
body.akoma-product-category .woocommerce-ordering select:focus {
	outline: none;
	border-color: #116bbf61;
	box-shadow: 1px 1px 14px 1px rgb(0 76 255 / 14%), inset 1px 1px 14px 1px rgb(0 76 255 / 14%);
}
.apex-shop-toolbar .woocommerce-ordering select:focus-visible,
.apex-shop-sort .woocommerce-ordering select:focus-visible {
	outline: none;
}
.apex-shop-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px 20px;
}
.apex-shop-grid--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.apex-shop-grid--cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.apex-shop-grid--cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.apex-shop-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	min-height: 0;
	min-width: 0;
	border-radius: 16px;
	background: #001529;
	overflow: hidden;
	text-align: left;
	box-shadow: -1px 8px 24px 3px rgb(0 72 140 / 45%);
	transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.apex-shop-product-card::before {
	content: none;
}
.apex-shop-product-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3;
	padding: 20px 18px 40px;
	clip-path: ellipse(100% 75% at 50% 0%);
	background: #0071cda3;
	pointer-events: none;
}
.apex-shop-product-header-label {
	display: block;
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-size: clamp(14px, 1.8vw, 11px);
	font-weight: 500;
	color: var(--shop-white);
	line-height: 1.15;
}
.apex-shop-product-card:hover {
	border-color: rgb(0 146 255);
	box-shadow: 4px 8px 20px 3px rgb(63 160 255 / 28%);
	transform: translateY(-3px);
}
.apex-shop-product-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	overflow: hidden;
	background: #ffffff;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	--apex-shop-img-expand-duration: 5.5s;
	--apex-shop-img-fade-duration: 1s;
}
.apex-shop-product-media-link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}
.apex-shop-product-actions {
	position: absolute;
	right: 12px;
	bottom: 30%;
	z-index: 5;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	pointer-events: none;
	overflow: visible;
}
.apex-shop-product-add,
.apex-shop-product-wishlist {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #ffffffa8;
	color: #068ce4;
	box-shadow: 0 4px 14px rgb(0 131 255 / 12%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	cursor: pointer;
	text-decoration: none;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	transform: translateX(36px);
	transition: opacity .32s cubic-bezier(0.22, 1, 0.36, 1), visibility .32s ease, transform .38s cubic-bezier(0.22, 1, 0.36, 1), background .22s ease, color .22s ease, box-shadow .22s ease;
}
.apex-shop-product-add-icon,
.apex-shop-product-wishlist-icon {
	display: block;
	width: 18px;
	height: 18px;
}
.apex-shop-product-add-tooltip {
	position: absolute;
	right: calc(100% + 10px);
	top: 50%;
	transform: translateY(-50%) translateX(4px);
	padding: 6px 10px;
	border-radius: 6px;
	background: rgba(0, 21, 41, 0.92);
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity .18s ease,
		visibility .18s ease,
		transform .18s ease;
	transition-delay: 0s;
}
.apex-shop-product-add-tooltip::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -4px;
	width: 8px;
	height: 8px;
	background: rgba(0, 21, 41, 0.92);
	transform: translateY(-50%) rotate(45deg);
}
.apex-shop-product-card:hover .apex-shop-product-actions,
.apex-shop-product-card:focus-within .apex-shop-product-actions {
	pointer-events: auto;
}
.apex-shop-product-card:hover .apex-shop-product-add,
.apex-shop-product-card:focus-within .apex-shop-product-add,
.apex-shop-product-card:hover .apex-shop-product-wishlist,
.apex-shop-product-card:focus-within .apex-shop-product-wishlist,
.apex-shop-product-card:hover .apex-shop-product-wishlist.is-active,
.apex-shop-product-card:focus-within .apex-shop-product-wishlist.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0);
}
/* Cart (rightmost) leads the slide-in; wishlist follows — reads as right → left. */
.apex-shop-product-card:hover .apex-shop-product-add,
.apex-shop-product-card:focus-within .apex-shop-product-add {
	transition-delay: 0.04s;
}
.apex-shop-product-card:hover .apex-shop-product-wishlist,
.apex-shop-product-card:focus-within .apex-shop-product-wishlist,
.apex-shop-product-card:hover .apex-shop-product-wishlist.is-active,
.apex-shop-product-card:focus-within .apex-shop-product-wishlist.is-active {
	transition-delay: 0.12s;
}
.apex-shop-product-card:not(:hover):not(:focus-within) .apex-shop-product-add,
.apex-shop-product-card:not(:hover):not(:focus-within) .apex-shop-product-wishlist {
	transition-delay: 0s;
}
/* Active = filled look only; keep off-screen until card hover so slide-in still runs. */
.apex-shop-product-wishlist.is-active {
	background: var(--shop-blue-dark);
	color: #ffffff;
	box-shadow: 0 6px 18px rgba(255, 102, 0, 0.36);
}
.apex-shop-product-add:hover,
.apex-shop-product-add:focus-visible,
.apex-shop-product-wishlist:hover,
.apex-shop-product-wishlist:focus-visible,
.apex-shop-product-card:hover .apex-shop-product-wishlist.is-active:hover,
.apex-shop-product-card:focus-within .apex-shop-product-wishlist.is-active:focus-visible {
	background: #057fe2de;
	color: #ffffff;
	transform: translateX(0) scale(1.04);
	box-shadow: 0 6px 18px rgb(0 106 255 / 36%);
}
.apex-shop-product-add.is-loading,
.apex-shop-product-add.loading {
	opacity: 0.72;
	pointer-events: none;
}
/* WooCommerce injects this next to the add button after AJAX add — keep card UI icon-only. */
.apex-shop-product-actions a.added_to_cart,
.apex-shop-product-card a.added_to_cart {
	display: none !important;
}
.apex-shop-product-add:hover .apex-shop-product-add-tooltip,
.apex-shop-product-add:focus-visible .apex-shop-product-add-tooltip,
.apex-shop-product-wishlist:hover .apex-shop-product-add-tooltip,
.apex-shop-product-wishlist:focus-visible .apex-shop-product-add-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
	transition-delay: 4s;
}
.apex-shop-product-add:focus-visible,
.apex-shop-product-wishlist:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.95);
	outline-offset: 2px;
}
@media (max-width: 1024px) {
	.apex-shop-product-actions {
		pointer-events: auto;
		z-index: 6;
	}
	.apex-shop-product-add,
	.apex-shop-product-wishlist {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		transition:
			background .22s ease,
			color .22s ease,
			box-shadow .22s ease,
			transform .22s ease;
	}
	.apex-shop-product-card:hover .apex-shop-product-add,
	.apex-shop-product-card:focus-within .apex-shop-product-add,
	.apex-shop-product-card:hover .apex-shop-product-wishlist,
	.apex-shop-product-card:focus-within .apex-shop-product-wishlist {
		transform: none;
		transition-delay: 0s;
	}
	.apex-shop-product-wishlist.is-active {
		background: var(--shop-blue-dark);
		color: #ffffff;
		box-shadow: 0 6px 18px rgba(255, 102, 0, 0.36);
		transform: none;
	}
	.apex-shop-product-add:hover,
	.apex-shop-product-wishlist:hover,
	.apex-shop-product-wishlist.is-active:hover {
		transform: scale(1.04);
	}
	.apex-shop-product-add-tooltip {
		display: none;
	}
	.apex-shop-product-cat {
		display: none;
	}
}
@media (prefers-reduced-motion: reduce) {
	.apex-shop-product-add,
	.apex-shop-product-wishlist {
		transform: none;
		transition:
			opacity .15s ease,
			visibility .15s ease,
			background .15s ease,
			color .15s ease,
			box-shadow .15s ease;
	}
	.apex-shop-product-card:hover .apex-shop-product-add,
	.apex-shop-product-card:focus-within .apex-shop-product-add,
	.apex-shop-product-card:hover .apex-shop-product-wishlist,
	.apex-shop-product-card:focus-within .apex-shop-product-wishlist {
		transform: none;
		transition-delay: 0s;
	}
}
.apex-shop-product-media img,
.apex-shop-product-img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: cover;
	transition:
		transform var(--apex-shop-img-expand-duration, 5.5s) ease,
		opacity var(--apex-shop-img-fade-duration, 1s) ease;
}
.apex-shop-product-img--secondary {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0;
	pointer-events: none;
}
.apex-shop-product-card:hover .apex-shop-product-media img:not(.apex-shop-product-img--secondary),
.apex-shop-product-card:hover .apex-shop-product-img--primary {
	transform: scale(1.15);
}
.apex-shop-product-card.has-hover-image:hover .apex-shop-product-img--primary {
	opacity: 0;
	transform: none;
}
.apex-shop-product-card.has-hover-image:hover .apex-shop-product-img--secondary {
	opacity: 1;
	transform: scale(1.15);
}
@media (hover: none) {
	.apex-shop-product-card.has-hover-image:hover .apex-shop-product-img--primary {
		opacity: 1;
	}
	.apex-shop-product-card.has-hover-image:hover .apex-shop-product-img--secondary {
		opacity: 0;
		transform: none;
	}
}

/*
 * Cancel WooCommerce general.scss on shop/category archives:
 * .woocommerce img, .woocommerce-page img { height: auto; max-width: 100%; }
 */
body.akoma-shop-archive.woocommerce-page .apex-shop-product-media img,
body.akoma-shop-archive.woocommerce-page .apex-shop-product-img,
body.akoma-shop-archive.woocommerce .apex-shop-grid img,
body.akoma-product-category.woocommerce-page .apex-shop-product-media img {
	width: 100% !important;
	max-width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}
.apex-shop-product-badge,
.apex-single-sale-badge {
	display: inline-flex;
}
.woocommerce span.onsale {
	display: none !important;
}
.apex-shop-product-badge {
	position: absolute;
	top: 56px;
	left: 14px;
	z-index: 5;
	color: var(--shop-white);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.apex-shop-product-badge--sale {
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 10px;
	border-radius: 999px;
	background: var(--shop-blue);
	box-shadow: 0 6px 16px rgb(0 106 255 / 28%);
	font-size: 10px;
}
.apex-shop-product-badge--hot {
	padding: 6px 12px;
	border-radius: 999px;
	background: #dc2626;
	font-size: 11px;
	letter-spacing: 0.04em;
}
.apex-shop-product-body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	gap: 8px;
	margin-top: auto;
	padding: 18px 14px 16px;
	text-align: left;
	background: linear-gradient(180deg, rgba(0, 21, 41, 0) 0%, #0071cdb3 38%, #0071cda3 100%);
}
.apex-shop-product-cat {
	display: none;
}
.apex-shop-product-title {
	order: 1;
	margin: 0;
	/* font-family: Montserrat, sans-serif; */
	font-size: 13px;
	line-height: 1.35;
	font-weight: 400;
	/* letter-spacing: 0.04em; */
	/* text-transform: uppercase; */
}
.apex-shop-product-title a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #ffffff;
	text-decoration: none;
	transition: color .2s ease;
	text-shadow: 1px 1px 2px #134fa8b3;
}
.apex-shop-product-meta {
	order: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 12px;
	margin-top: auto;
}
.apex-shop-product-price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.3;
	color: #fff;
	text-shadow: 1px 1px 2px #134fa8b3;
}
.apex-shop-product-price .amount,
.apex-shop-product-price .woocommerce-Price-amount,
.apex-shop-product-price ins,
.apex-shop-product-price ins .amount,
.apex-shop-product-price ins .woocommerce-Price-amount {
	color: #ffffff;
	text-shadow: 2px 1px 2px #224fe8;
}
.apex-shop-product-price ins {
	text-decoration: none;
}
.apex-shop-product-price del {
	opacity: 1;
}
.apex-shop-product-price del .amount,
.apex-shop-product-price del .woocommerce-Price-amount {
	color: #ffeaea;
	font-size: 14px;
	font-weight: 500;
	text-decoration: line-through;
}
.apex-shop-product-stock {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	border-radius: 999px;
	background: #0483d996;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	white-space: nowrap;
	box-shadow: 0px 1px 0px 0px #66b9f870;
}
.apex-shop-product-link {
	display: none;
}
.apex-shop-pagination-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
}
.apex-shop-pagination-wrap--top {
	margin: 0 0 24px;
}
.apex-shop-pagination-wrap--bottom {
	margin-top: 40px;
}
.apex-shop-results-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	margin: 0;
	font-family: Inter, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: var(--shop-gray-500);
}
.apex-shop-results-page,
.apex-shop-results-count {
	font-weight: 500;
}
.apex-shop-results-page {
	color: var(--shop-navy);
	font-weight: 600;
}
.apex-shop-results-sep {
	color: var(--shop-blue-200);
}
.apex-shop-results-count strong,
.apex-shop-results-count {
	color: var(--shop-gray-700);
}
.apex-shop-pagination {
	flex: 1 1 auto;
	text-align: right;
}
.apex-shop-pagination--top,
.apex-shop-pagination--bottom {
	margin: 0;
}
.apex-shop-pagination .woocommerce-pagination {
	margin: 0;
}
.apex-shop-pagination ul.page-numbers {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.apex-shop-pagination ul.page-numbers li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.apex-shop-pagination ul.page-numbers li::marker {
	content: none;
}
.apex-shop-pagination a.page-numbers,
.apex-shop-pagination span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid #0974e524;
	border-radius: 8px;
	background: linear-gradient(199deg, #00000000 0%, #0098ff14 94% 100%);
	color: #008bfc;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(0, 21, 41, .04);
	transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.apex-shop-pagination a.page-numbers:hover {
	border-color: #0e6fe54a;
	background: radial-gradient(ellipse, rgb(1 96 249 / 0%) 26%, #0789e424 100% 79%);
	color: #1766e2;
	box-shadow: 0px 4px 6px rgb(23 130 232 / 6%);
}
.apex-shop-pagination span.page-numbers.current {
	border-color: #0071cd33;
	background: #0071cda3;
	color: var(--shop-white);
	box-shadow: 0 2px 8px rgb(4 132 255 / 51%);
}
.apex-shop-pagination span.page-numbers.dots,
.apex-shop-pagination .page-numbers.dots {
	min-width: auto;
	padding: 0 6px;
	border-color: transparent;
	background: transparent;
	box-shadow: none;
	color: var(--shop-gray-500);
	font-weight: 500;
	cursor: default;
}
.apex-shop-pagination a.page-numbers.next,
.apex-shop-pagination a.page-numbers.prev {
	min-width: 38px;
	padding: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
}
body.akoma-shop-archive .woocommerce-pagination ul.page-numbers,
body.akoma-product-category .woocommerce-pagination ul.page-numbers {
	list-style: none !important;
	padding-left: 0 !important;
}
body.akoma-shop-archive .woocommerce-pagination ul.page-numbers li,
body.akoma-product-category .woocommerce-pagination ul.page-numbers li {
	list-style: none !important;
	margin: 0 !important;
}
body.akoma-shop-archive .woocommerce-pagination a.page-numbers,
body.akoma-shop-archive .woocommerce-pagination span.page-numbers,
body.akoma-product-category .woocommerce-pagination a.page-numbers,
body.akoma-product-category .woocommerce-pagination span.page-numbers {
	text-decoration: none !important;
}
.apex-empty { color: var(--shop-gray-500); font-style: italic; }

@media (max-width: 768px) {
	.apex-shop-layout {
		grid-template-columns: 1fr;
	}
	.apex-shop-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		z-index: 460;
		width: min(340px, 88vw);
		max-height: none;
		margin: 0;
		padding: 20px 22px 32px;
		background: var(--shop-white);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transform: translateX(-105%);
		transition: transform .28s ease;
		box-shadow: 8px 0 32px rgba(0, 21, 41, .12);
	}
	body.akoma-shop-filters-open .apex-shop-sidebar {
		transform: translateX(0);
	}
	.apex-shop-filters-drawer-head {
		display: flex;
		align-items: center;
		margin: -4px 0 12px;
		padding-bottom: 12px;
		border-bottom: 1px solid var(--shop-blue-200);
	}
	.apex-shop-toolbar-left {
		display: none;
	}
	.apex-shop-filters-toggle {
		display: inline-flex;
	}
	.apex-shop-toolbar-right {
		width: 100%;
		margin-left: 0;
		gap: 12px;
	}
	.apex-shop-sort {
		flex: 1 1 auto;
		min-width: 0;
	}
	.apex-shop-toolbar .woocommerce-ordering select,
	.apex-shop-sort .woocommerce-ordering select {
		width: 100%;
		min-width: 0;
	}
	.apex-shop-pagination-wrap {
		flex-direction: column;
		align-items: stretch;
	}
	.apex-shop-results-meta {
		justify-content: center;
		text-align: center;
	}
	.apex-shop-pagination {
		text-align: center;
	}
	.apex-shop-pagination ul.page-numbers {
		justify-content: center;
		width: 100%;
	}
	.apex-shop-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.elite-single-product .apex-related-products .apex-shop-grid,
	body.elite-single-product-page .apex-related-products .apex-shop-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.apex-shop-grid--cols-3,
	.apex-shop-grid--cols-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.akoma-wc-main { padding: 0 0 48px; }
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 14px !important;
	}
}
@media (max-width: 480px) {
	.apex-shop-grid,
	.apex-shop-grid--cols-2,
	.apex-shop-grid--cols-3,
	.apex-shop-grid--cols-4,
	.elite-single-product .apex-related-products .apex-shop-grid,
	body.elite-single-product-page .apex-related-products .apex-shop-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 12px;
	}
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 14px 12px !important;
	}
