.easy-store {
	--es-ink: #172033;
	--es-muted: #667085;
	--es-line: #e2e7ee;
	--es-panel: #ffffff;
	--es-soft: #f5f7fa;
	--es-accent: #2357d9;
	--es-accent-dark: #173fa8;
	--es-category-line-color: #adb9c9;
	--es-category-line-width: 2px;
	--es-sidebar-width: 30%;
	--es-product-columns-desktop: 3;
	--es-product-columns-tablet: 2;
	--es-product-columns-mobile: 1;
	--es-radius: 16px;
	color: var(--es-ink);
	margin: 2rem 0;
	overflow-anchor: none;
	position: relative;
	text-align: left;
}

.easy-store::before {
	background: linear-gradient(90deg, transparent, var(--es-accent), transparent);
	content: '';
	height: 3px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: -0.35rem;
	transform: translateX(-100%);
	z-index: 40;
}

.easy-store.is-loading {
	cursor: progress;
}

.easy-store.is-loading::before {
	animation: easy-store-loading 1.05s ease-in-out infinite;
	opacity: 1;
}

.easy-store.is-loading .easy-store__layout {
	opacity: 0.58;
	pointer-events: none;
	transition: opacity 160ms ease;
}

.easy-store.has-ajax-error .easy-store__ajax-status {
	background: #fff1f1;
	border: 1px solid #d92d20;
	border-radius: 10px;
	clip: auto;
	clip-path: none;
	color: #8f1d18;
	display: block;
	height: auto;
	margin: 0 0 1rem;
	overflow: visible;
	padding: 0.7rem 0.8rem;
	position: static;
	white-space: normal;
	width: auto;
}

@keyframes easy-store-loading {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.easy-store.is-loading::before {
		animation: none;
		background: var(--es-accent);
		transform: none;
	}
}

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

.easy-store a {
	text-decoration: none;
}

.easy-store .screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.easy-store__intro {
	margin-bottom: 1.75rem;
}

.easy-store--intro-left .easy-store__intro {
	text-align: left;
}

.easy-store--intro-center .easy-store__intro {
	text-align: center;
}

.easy-store--intro-right .easy-store__intro {
	text-align: right;
}

.easy-store__intro h2,
.easy-store__results-header h3,
.easy-store__section-heading h3,
.easy-store__product-card h4,
.easy-store__empty h4 {
	color: var(--es-ink);
	font-family: inherit;
	line-height: 1.2;
	margin: 0;
}

.easy-store__intro h2 {
	font-size: clamp(2rem, 4vw, 3.25rem);
	letter-spacing: -0.035em;
}

.easy-store__subheading {
	color: var(--es-muted);
	font-size: 1.05rem;
	margin: 0.65rem 0 0;
}

.easy-store__eyebrow {
	color: var(--es-accent);
	font-size: 0.75rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	margin: 0 0 0.45rem;
	text-transform: uppercase;
}

.easy-store__layout {
	display: grid;
	gap: 1.75rem;
	grid-template-columns: minmax(270px, var(--es-sidebar-width)) minmax(0, 1fr);
}

.easy-store__filters {
	align-self: start;
	background: var(--es-soft);
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem;
	position: sticky;
	top: 1.5rem;
}

.easy-store__search {
	background: var(--es-panel);
	border: 1px solid var(--es-line);
	border-radius: 12px;
	padding: 0.9rem;
}

.easy-store__search label {
	display: block;
	font-size: 0.84rem;
	font-weight: 700;
	margin-bottom: 0.45rem;
}

.easy-store__search-row {
	display: grid;
	gap: 0.4rem;
	grid-template-columns: minmax(0, 1fr);
}

.easy-store__search-field {
	min-width: 0;
	position: relative;
}

.easy-store__search input[type="search"] {
	background: #fff;
	border: 1px solid #cbd3df;
	border-radius: 9px;
	color: var(--es-ink);
	font: inherit;
	font-size: 0.9rem;
	min-width: 0;
	padding: 0.7rem 0.75rem;
	width: 100%;
}

.easy-store__search button {
	background: var(--es-accent);
	border: 0;
	border-radius: 9px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 0.86rem;
	font-weight: 700;
	padding: 0.7rem 0.8rem;
	width: 100%;
}

.easy-store__search button:hover {
	background: var(--es-accent-dark);
}

.easy-store__search-help {
	color: var(--es-muted);
	font-size: 0.76rem;
	line-height: 1.35;
	margin: 0.45rem 0 0;
}

.easy-store__search-suggestions {
	background: #fff;
	border: 1px solid #b9c5d4;
	border-radius: 9px;
	box-shadow: 0 12px 28px rgba(31, 45, 61, 0.17);
	left: 0;
	max-height: 19rem;
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: calc(100% + 0.3rem);
	z-index: 30;
}

.easy-store__search-suggestions[hidden] {
	display: none;
}

.easy-store__search .easy-store__search-suggestion,
.easy-store__search .easy-store__search-suggestion-empty {
	border-bottom: 1px solid #e6ebf1;
	box-sizing: border-box;
	min-height: 44px;
	padding: 0.68rem 0.75rem;
}

.easy-store__search .easy-store__search-suggestion {
	background: #fff !important;
	border-radius: 0 !important;
	color: var(--es-ink) !important;
	display: block;
	font: inherit;
	text-align: left;
	width: 100%;
}

.easy-store__search .easy-store__search-suggestion:last-child,
.easy-store__search .easy-store__search-suggestion-empty:last-child {
	border-bottom: 0;
}

.easy-store__search .easy-store__search-suggestion:hover,
.easy-store__search .easy-store__search-suggestion.is-active {
	background: #edf3ff !important;
	color: var(--es-accent-dark) !important;
}

.easy-store__search-suggestion-name {
	display: block;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.3;
}

.easy-store__search-suggestion-sku,
.easy-store__search-suggestion-empty {
	color: var(--es-muted);
	font-size: 0.76rem;
	line-height: 1.3;
}

.easy-store__search input:focus-visible,
.easy-store__search button:focus-visible,
.easy-store__manufacturer-toggle:focus-visible,
.easy-store__manufacturer-actions button:focus-visible,
.easy-store__manufacturer-list input:focus-visible,
.easy-store a:focus-visible {
	outline: 3px solid rgba(35, 87, 217, 0.28);
	outline-offset: 2px;
}

.easy-store__reset {
	color: var(--es-accent);
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 650;
	margin-top: 0.6rem;
}

.easy-store__categories,
.easy-store__manufacturers {
	background: var(--es-panel);
	border: 1px solid var(--es-line);
	border-radius: 12px;
	margin: 0;
	padding: 0.9rem;
}

.easy-store__filters--categories_first .easy-store__categories,
.easy-store__filters--search_first .easy-store__search {
	order: 1;
}

.easy-store__manufacturers {
	order: 2;
}

.easy-store__filters--categories_first .easy-store__search,
.easy-store__filters--search_first .easy-store__categories {
	order: 3;
}

.easy-store__manufacturer-heading {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	justify-content: space-between;
}

.easy-store .easy-store__manufacturer-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 8px;
	color: var(--es-ink);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	gap: 0.65rem;
	margin: -0.35rem 0;
	min-height: 44px;
	padding: 0.35rem 0.1rem;
	text-align: left;
}

.easy-store .easy-store__manufacturer-toggle:hover,
.easy-store .easy-store__manufacturer-toggle:focus,
.easy-store .easy-store__manufacturer-toggle:active {
	background: #e8edf5;
	color: var(--es-ink);
}

.easy-store__manufacturer-toggle > span:last-child {
	white-space: nowrap;
}

.easy-store__manufacturer-chevron {
	border-bottom: 2px solid currentcolor;
	border-right: 2px solid currentcolor;
	display: block;
	height: 8px;
	transform: rotate(-45deg);
	transition: transform 160ms ease;
	width: 8px;
}

.easy-store__manufacturer-toggle[aria-expanded="true"] .easy-store__manufacturer-chevron {
	transform: rotate(45deg) translate(-1px, -1px);
}

.easy-store__manufacturer-summary {
	color: var(--es-muted);
	font-size: 0.72rem;
	font-weight: 650;
	text-align: right;
	white-space: nowrap;
}

.easy-store__manufacturer-panel[hidden] {
	display: none;
}

.easy-store__manufacturer-panel {
	border-top: 1px solid var(--es-line);
	margin-top: 0.6rem;
	padding-top: 0.7rem;
}

.easy-store__manufacturer-panel fieldset {
	border: 0;
	margin: 0;
	min-width: 0;
	padding: 0;
}

.easy-store__manufacturer-list {
	display: grid;
	gap: 0.2rem;
	max-height: 230px;
	overflow: auto;
	scrollbar-width: thin;
}

.easy-store__manufacturer-list label {
	align-items: center;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	font-size: 0.84rem;
	font-weight: 590;
	gap: 0.55rem;
	min-height: 40px;
	padding: 0.4rem 0.45rem;
}

.easy-store__manufacturer-list label:hover {
	background: #e8edf5;
}

.easy-store__manufacturer-list input {
	accent-color: var(--es-accent);
	flex: 0 0 auto;
	height: 18px;
	margin: 0;
	width: 18px;
}

.easy-store__manufacturer-logo {
	align-items: center;
	background: #f5f7fa;
	border: 1px solid #d9e0e9;
	border-radius: 8px;
	display: inline-flex;
	flex: 0 0 36px;
	height: 36px;
	justify-content: center;
	overflow: hidden;
	width: 36px;
}

.easy-store__manufacturer-logo-image {
	display: block;
	height: 100%;
	margin: 0;
	object-fit: contain;
	padding: 3px;
	width: 100%;
}

.easy-store__manufacturer-logo-image--placeholder {
	opacity: 0.72;
	padding: 0;
}

.easy-store__manufacturer-name {
	min-width: 0;
	overflow-wrap: anywhere;
}

.easy-store__manufacturer-actions {
	align-items: center;
	display: flex;
	gap: 0.7rem;
	margin-top: 0.75rem;
}

.easy-store__manufacturer-actions button {
	background: var(--es-accent);
	border: 0;
	border-radius: 9px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 0.8rem;
	font-weight: 700;
	min-height: 40px;
	padding: 0.6rem 0.75rem;
}

.easy-store__manufacturer-actions button:hover {
	background: var(--es-accent-dark);
}

.easy-store__manufacturer-actions a {
	color: var(--es-accent);
	font-size: 0.78rem;
	font-weight: 700;
}

.easy-store__section-heading {
	align-items: baseline;
	display: flex;
	justify-content: space-between;
	margin: 0 0 0.6rem;
	padding: 0 0.1rem;
}

.easy-store__section-heading--end {
	justify-content: flex-end;
}

.easy-store__section-heading h3 {
	font-size: 0.95rem;
}

.easy-store__section-heading > a {
	color: var(--es-accent);
	font-size: 0.78rem;
	font-weight: 700;
}

.easy-store .easy-store__category-list {
	list-style: none;
	margin: 0;
	padding: 0 0 0 0.25rem;
}

.easy-store .easy-store__category-list--root {
	max-height: min(62vh, 570px);
	overflow: auto;
	padding: 0 0 0.25rem;
	scrollbar-width: thin;
}

.easy-store__category-list--root > li:first-child,
.easy-store__category-list--root > li:first-child > a {
	margin-left: 0;
	width: 100%;
}

.easy-store__category-list .easy-store__category-list {
	border-left: var(--es-category-line-width) solid var(--es-category-line-color);
	margin-left: 0.25rem;
}

.easy-store__category-list[hidden] {
	display: none;
}

.easy-store__category-list li {
	margin: 0.15rem 0;
}

.easy-store__category-list a {
	align-items: center;
	border-radius: 8px;
	color: #344054;
	display: flex;
	font-size: 0.84rem;
	font-weight: 590;
	gap: 0.35rem;
	justify-content: space-between;
	line-height: 1.25;
	padding: 0.45rem 0.55rem;
}

.easy-store__category-row {
	align-items: stretch;
	display: flex;
	gap: 0.2rem;
}

.easy-store__category-row > a {
	flex: 1 1 auto;
	min-width: 0;
}

.easy-store__category-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 8px;
	color: #667085;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 42px;
	justify-content: center;
	min-height: 42px;
	padding: 0;
}

.easy-store__category-toggle-spacer {
	display: block;
	flex: 0 0 42px;
	min-height: 42px;
}

.easy-store__category-toggle:hover {
	background: #e8edf5;
	color: var(--es-ink);
}

.easy-store__category-toggle:focus-visible {
	outline: 3px solid rgba(35, 87, 217, 0.28);
	outline-offset: 2px;
}

.easy-store__category-toggle > span {
	border-bottom: 2px solid currentcolor;
	border-right: 2px solid currentcolor;
	display: block;
	height: 8px;
	transform: rotate(-45deg);
	transition: transform 160ms ease;
	width: 8px;
}

.easy-store__category-toggle[aria-expanded="true"] > span {
	transform: rotate(45deg) translate(-1px, -1px);
}

.easy-store__category-label {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	gap: 0.45rem;
	min-width: 0;
}

.easy-store__category-name {
	min-width: 0;
	overflow-wrap: normal;
	word-break: normal;
}

.easy-store__category-logo {
	align-items: center;
	background: #fff;
	border: 1px solid #d9e0e9;
	display: inline-flex;
	flex: 0 0 auto;
	justify-content: center;
	overflow: hidden;
}

.easy-store__category-logo--browser {
	border-radius: 7px;
	height: 30px;
	width: 30px;
}

.easy-store__category-logo--results {
	border-radius: 9px;
	height: 40px;
	width: 40px;
}

.easy-store__category-logo-image {
	display: block;
	height: 100%;
	margin: 0;
	object-fit: contain;
	padding: 2px;
	width: 100%;
}

.easy-store__category-list a:hover {
	background: #e8edf5;
	color: var(--es-ink);
}

.easy-store__category-list a.is-active {
	background: var(--es-accent);
	color: #fff;
}

.easy-store__category-count {
	color: #8791a2;
	flex: 0 0 auto;
	font-size: 0.72rem;
	font-variant-numeric: tabular-nums;
	font-weight: 700;
}

.easy-store__category-list a.is-active .easy-store__category-count {
	color: rgba(255, 255, 255, 0.78);
}

.easy-store__results {
	min-width: 0;
}

.easy-store__results-header {
	border-bottom: 1px solid var(--es-line);
	margin-bottom: 1rem;
	padding: 0.1rem 0 0.85rem;
}

.easy-store__results-header > .easy-store__eyebrow {
	margin-bottom: 0.8rem;
}

.easy-store__results-row {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.easy-store__results-header h3 {
	font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.easy-store .easy-store__result-count,
.easy-store .easy-store__search-summary {
	color: var(--es-muted);
	font-size: 0.88rem;
	margin: 0;
}

.easy-store__results-actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 0.7rem;
	justify-content: flex-end;
}

.easy-store__catalog-cart {
	white-space: nowrap;
}

.easy-store__checkout-shortcut {
	align-items: center;
	background: var(--es-accent);
	border: 1px solid var(--es-accent);
	border-radius: 9px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 44px;
	height: 44px;
	justify-content: center;
	padding: 0;
	width: 44px;
}

.easy-store__checkout-shortcut svg {
	fill: none;
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 22px;
}

.easy-store__checkout-shortcut:hover,
.easy-store__checkout-shortcut:focus-visible {
	background: var(--es-accent-dark);
	border-color: var(--es-accent-dark);
	color: #fff;
}

.easy-store__checkout-shortcut:focus-visible {
	box-shadow: 0 0 0 3px rgba(35, 87, 217, 0.18);
	outline: 0;
}

.easy-store__checkout-shortcut:disabled {
	background: #d5dce8;
	border-color: #d5dce8;
	color: #738096;
	cursor: not-allowed;
	opacity: 0.72;
}

.easy-store__search-summary {
	margin: -0.3rem 0 1rem;
}

.easy-store__product-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(var(--es-product-columns-desktop), minmax(0, 1fr));
}

.easy-store__product-card {
	background: var(--es-panel);
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.easy-store__product-card:hover {
	border-color: #c4cfdf;
	box-shadow: 0 14px 34px rgba(20, 32, 55, 0.09);
	transform: translateY(-2px);
}

.easy-store__product-image {
	aspect-ratio: 4 / 3;
	background: #f2f4f7;
	display: block;
	overflow: hidden;
}

.easy-store__product-image img {
	height: 100%;
	margin: 0;
	object-fit: contain;
	padding: 0.65rem;
	transition: transform 220ms ease;
	width: 100%;
}

.easy-store__product-card:hover .easy-store__product-image img {
	transform: scale(1.025);
}

.easy-store__product-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 0.85rem;
}

.easy-store .easy-store__product-categories {
	color: var(--es-accent);
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	margin: 0 0 0.45rem;
	text-transform: uppercase;
}

.easy-store__product-card h4 {
	font-size: 1.02rem;
	font-weight: 700;
}

.easy-store__product-card h4 a {
	color: var(--es-ink);
}

.easy-store .easy-store__product-summary {
	color: var(--es-muted);
	font-size: 0.84rem;
	line-height: 1.5;
	margin: 0.45rem 0 0;
}

.easy-store__product-footer {
	display: grid;
	gap: 0.55rem;
	margin-top: 0.65rem;
}

.easy-store .easy-store__price {
	color: var(--es-ink);
	font-size: 0.98rem;
	font-weight: 750;
	margin: 0;
}

.easy-store__price del {
	color: var(--es-muted);
	font-size: 0.8rem;
}

.easy-store__product-actions {
	display: grid;
	gap: 0.45rem;
	grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
}

.easy-store__product-button,
.easy-store__product-actions > a.added_to_cart {
	appearance: none;
	align-items: center;
	border: 1px solid var(--es-accent);
	border-radius: 8px;
	display: flex;
	font-size: 0.72rem;
	font-weight: 750;
	justify-content: center;
	line-height: 1.25;
	min-height: 36px;
	padding: 0.45rem 0.55rem;
	text-align: center;
	text-decoration: none;
}

.easy-store__product-button--view,
.easy-store__product-actions > a.added_to_cart {
	background: #fff;
	color: var(--es-accent);
}

.easy-store__product-button--cart {
	background: var(--es-accent);
	color: #fff;
}

.easy-store__product-button:hover,
.easy-store__product-actions > a.added_to_cart:hover {
	background: var(--es-accent-dark);
	border-color: var(--es-accent-dark);
	color: #fff;
}

.easy-store__featured {
	background: #f7f9fc;
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	margin: 0 0 1.75rem;
	padding: 1rem;
}

.easy-store__featured-header {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 0.8rem;
}

.easy-store__featured-header h4,
.easy-store__mixed-section > h4 {
	color: var(--es-ink);
	font-family: inherit;
	font-size: 1.08rem;
	font-weight: 750;
	line-height: 1.3;
	margin: 0;
}

.easy-store__featured-controls {
	display: flex;
	gap: 0.4rem;
}

.easy-store__featured-controls button {
	align-items: center;
	background: var(--es-panel);
	border: 1px solid #c8d1de;
	border-radius: 999px;
	color: var(--es-ink);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 1rem;
	height: 42px;
	justify-content: center;
	padding: 0;
	width: 42px;
}

.easy-store__featured-controls button:hover:not(:disabled),
.easy-store__featured-controls button:focus-visible {
	border-color: var(--es-accent);
	color: var(--es-accent);
}

.easy-store__featured-controls button:disabled {
	cursor: default;
	opacity: 0.38;
}

.easy-store__featured--no-overflow .easy-store__featured-controls {
	display: none;
}

.easy-store__featured-track {
	align-items: start;
	display: grid;
	gap: 1rem;
	grid-auto-columns: var(--es-featured-card-width-desktop);
	grid-auto-flow: column;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 0 0 0.45rem;
	scroll-behavior: smooth;
	scroll-snap-type: inline mandatory;
	scrollbar-color: #aeb9c8 transparent;
	scrollbar-width: thin;
}

.easy-store__featured-track .easy-store__product-card {
	scroll-snap-align: start;
}

.easy-store__featured--table {
	padding-left: 0;
	padding-right: 0;
}

.easy-store__featured--table .easy-store__featured-header {
	margin-bottom: 0.7rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.easy-store__featured--table .easy-store__list-table-wrap {
	background: var(--es-panel);
	border-radius: 12px;
}

.easy-store__product-detail {
	background: var(--es-panel);
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	overflow: hidden;
}

.easy-store__product-detail-toolbar {
	align-items: center;
	border-bottom: 1px solid var(--es-line);
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: space-between;
	min-height: 58px;
	padding: 0.45rem 1rem;
}

.easy-store__product-detail-toolbar-actions {
	align-items: center;
	display: flex;
	gap: 0.65rem;
	margin-left: auto;
	min-width: 0;
}

.easy-store__product-back,
.easy-store__product-cart,
.easy-store__nav-button {
	align-items: center;
	border: 1px solid var(--es-accent);
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 750;
	gap: 0.45rem;
	justify-content: center;
	min-height: 44px;
	padding: 0.6rem 0.85rem;
	text-decoration: none;
}

.easy-store__product-back,
.easy-store__nav-button--primary {
	background: var(--es-accent);
	color: #fff;
}

.easy-store__product-cart,
.easy-store__nav-button--secondary {
	background: #fff;
	color: var(--es-accent);
}

.easy-store__product-back:hover,
.easy-store__product-back:focus-visible,
.easy-store__product-cart:hover,
.easy-store__product-cart:focus-visible,
.easy-store__nav-button:hover,
.easy-store__nav-button:focus-visible {
	background: var(--es-accent-dark);
	border-color: var(--es-accent-dark);
	color: #fff;
}

.easy-store__cart-count {
	align-items: center;
	background: var(--es-accent);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 0.68rem;
	height: 1.45rem;
	justify-content: center;
	min-width: 1.45rem;
	padding: 0 0.32rem;
}

.easy-store__product-cart:hover .easy-store__cart-count,
.easy-store__product-cart:focus-visible .easy-store__cart-count {
	background: #fff;
	color: var(--es-accent-dark);
}

.easy-store__product-detail-main {
	display: grid;
	gap: clamp(1.2rem, 3vw, 2rem);
	grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
	padding: clamp(1rem, 2.5vw, 1.65rem);
}

.easy-store__product-detail-main--summary-only {
	grid-template-columns: minmax(0, 1fr);
}

.easy-store__product-detail-gallery,
.easy-store__product-detail-summary {
	min-width: 0;
}

.easy-store__product-detail-image {
	aspect-ratio: 1 / 1;
	background: var(--es-soft);
	border-radius: 12px;
	display: grid;
	overflow: hidden;
	place-items: center;
}

.easy-store .easy-store__product-detail-image > .easy-store__product-detail-main-image {
	display: block;
	height: 100%;
	margin: 0;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	padding: 0.8rem;
	width: 100%;
}

.easy-store__product-detail-thumbnails {
	display: flex;
	gap: 0.55rem;
	overflow-x: auto;
	padding: 0.65rem 0 0.15rem;
}

.easy-store__product-detail-thumbnail {
	background: #fff;
	border: 1px solid var(--es-line);
	border-radius: 8px;
	cursor: pointer;
	flex: 0 0 64px;
	height: 64px;
	overflow: hidden;
	padding: 0.25rem;
}

.easy-store__product-detail-thumbnail.is-active,
.easy-store__product-detail-thumbnail:hover,
.easy-store__product-detail-thumbnail:focus-visible {
	border-color: var(--es-accent);
	box-shadow: 0 0 0 1px var(--es-accent);
}

.easy-store__product-detail-thumbnail img {
	height: 100%;
	margin: 0;
	object-fit: contain;
	width: 100%;
}

.easy-store .easy-store__product-detail-manufacturer {
	color: var(--es-accent);
	font-size: 0.73rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 0.45rem;
	text-transform: uppercase;
}

.easy-store__product-detail-summary h3 {
	color: var(--es-ink);
	font-family: inherit;
	font-size: clamp(1.55rem, 3vw, 2.25rem);
	letter-spacing: -0.025em;
	line-height: 1.14;
	margin: 0;
}

.easy-store .easy-store__product-detail-meta {
	color: var(--es-muted);
	display: grid;
	font-size: 0.78rem;
	gap: 0.3rem;
	margin: 0.75rem 0 0;
}

.easy-store__product-detail-meta strong {
	color: #526074;
}

.easy-store .easy-store__product-detail-price {
	color: var(--es-ink);
	font-size: 1.35rem;
	font-weight: 800;
	margin: 1rem 0 0;
}

.easy-store__product-detail-price del {
	color: var(--es-muted);
	font-size: 0.9rem;
}

.easy-store__product-detail-short-description {
	color: var(--es-muted);
	font-size: 0.95rem;
	line-height: 1.65;
	margin-top: 0.9rem;
	overflow-wrap: anywhere;
}

.easy-store .easy-store__product-detail-short-description p,
.easy-store .easy-store__product-detail-description p {
	margin: 0.6rem 0;
}

.easy-store__product-detail-short-description > :first-child,
.easy-store__product-detail-description > div > :first-child {
	margin-top: 0;
}

.easy-store__product-detail-short-description > :last-child,
.easy-store__product-detail-description > div > :last-child {
	margin-bottom: 0;
}

.easy-store__product-detail-purchase {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 1rem;
}

.easy-store__product-detail-native-purchase {
	flex: 1 1 320px;
	min-width: 0;
}

.easy-store__product-detail-native-purchase form.cart,
.easy-store__product-detail-native-purchase .woocommerce-variation-add-to-cart {
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 0;
}

.easy-store__product-detail-native-purchase form.variations_form,
.easy-store__product-detail-native-purchase form.grouped_form {
	display: block;
}

.easy-store__product-detail-native-purchase .quantity {
	float: none;
	margin: 0;
	width: 88px;
}

.easy-store__product-detail-native-purchase input.qty,
.easy-store__product-detail-native-purchase select {
	background: #fff;
	border: 1px solid #c8d1de;
	border-radius: 8px;
	color: var(--es-ink);
	font: inherit;
	min-height: 44px;
	padding: 0.55rem 0.65rem;
}

.easy-store__product-detail-native-purchase input.qty {
	width: 88px;
}

.easy-store__product-detail-native-purchase select {
	max-width: 100%;
	width: 100%;
}

.easy-store__product-detail-native-purchase .single_add_to_cart_button,
.easy-store__product-detail-native-purchase a.button {
	appearance: none;
	background: var(--es-accent);
	border: 1px solid var(--es-accent);
	border-radius: 9px;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 750;
	line-height: 1.35;
	min-height: 44px;
	padding: 0.65rem 1rem;
	text-decoration: none;
}

.easy-store__product-detail-native-purchase .single_add_to_cart_button:hover,
.easy-store__product-detail-native-purchase .single_add_to_cart_button:focus-visible,
.easy-store__product-detail-native-purchase a.button:hover,
.easy-store__product-detail-native-purchase a.button:focus-visible {
	background: var(--es-accent-dark);
	border-color: var(--es-accent-dark);
	color: #fff;
}

.easy-store__product-detail-native-purchase .single_add_to_cart_button:focus-visible,
.easy-store__product-detail-native-purchase a.button:focus-visible,
.easy-store__product-detail-native-purchase input:focus-visible,
.easy-store__product-detail-native-purchase select:focus-visible {
	outline: 3px solid rgba(35, 87, 217, 0.28);
	outline-offset: 2px;
}

.easy-store__product-detail-native-purchase .single_add_to_cart_button:disabled,
.easy-store__product-detail-native-purchase .single_add_to_cart_button.disabled,
.easy-store .easy-store__add-control--pending {
	cursor: not-allowed;
	opacity: 0.55;
	pointer-events: none;
}

.easy-store__product-detail-native-purchase table.variations,
.easy-store__product-detail-native-purchase table.group_table {
	border: 0;
	border-collapse: collapse;
	margin: 0 0 0.8rem;
	table-layout: auto;
	width: 100%;
}

.easy-store__product-detail-native-purchase table.variations th,
.easy-store__product-detail-native-purchase table.variations td,
.easy-store__product-detail-native-purchase table.group_table th,
.easy-store__product-detail-native-purchase table.group_table td {
	background: transparent;
	border: 0;
	padding: 0.35rem 0.5rem 0.35rem 0;
	text-align: start;
	vertical-align: middle;
}

.easy-store__product-detail-native-purchase table.variations th {
	font-size: 0.8rem;
	font-weight: 750;
	width: 28%;
}

.easy-store__product-detail-native-purchase .reset_variations {
	display: inline-block;
	font-size: 0.78rem;
	margin-top: 0.35rem;
}

.easy-store__product-detail-native-purchase .single_variation,
.easy-store__product-detail-native-purchase .woocommerce-variation {
	margin-bottom: 0.65rem;
	width: 100%;
}

.easy-store__product-detail-native-purchase .woocommerce-variation-description,
.easy-store__product-detail-native-purchase .woocommerce-variation-availability,
.easy-store__product-detail-native-purchase .stock {
	color: var(--es-muted);
	font-size: 0.85rem;
	margin: 0.3rem 0;
}

.easy-store__product-detail-native-purchase .out-of-stock {
	color: #9b2c2c;
	font-weight: 750;
}

.easy-store__product-detail-native-purchase .woocommerce-grouped-product-list-item__label a {
	color: var(--es-ink);
	font-weight: 700;
}

.easy-store__product-detail-action,
.easy-store__product-detail-share,
.easy-store__product-detail-purchase > a.added_to_cart {
	appearance: none;
	align-items: center;
	border: 1px solid var(--es-accent);
	border-radius: 9px;
	display: inline-flex;
	font-size: 0.88rem;
	font-weight: 750;
	justify-content: center;
	min-height: 44px;
	padding: 0.65rem 1rem;
	text-decoration: none;
}

.easy-store__product-detail-action {
	background: var(--es-accent);
	color: #fff;
}

.easy-store__product-detail-share {
	background: #fff;
	color: var(--es-accent);
	cursor: pointer;
	flex: 0 0 42px;
	height: 42px;
	min-height: 42px;
	padding: 0;
	width: 42px;
}

.easy-store__product-detail-share svg {
	fill: currentColor;
	height: 19px;
	width: 19px;
}

.easy-store__product-detail-purchase > a.added_to_cart {
	background: #fff;
	color: var(--es-accent);
}

.easy-store__product-detail-action:hover,
.easy-store__product-detail-share:hover,
.easy-store__product-detail-share:focus-visible,
.easy-store__product-detail-purchase > a.added_to_cart:hover {
	background: var(--es-accent-dark);
	border-color: var(--es-accent-dark);
	color: #fff;
}

.easy-store__product-detail-share:focus-visible {
	box-shadow: 0 0 0 3px rgba(35, 87, 217, 0.18);
	outline: 0;
}

.easy-store__share-dialog {
	background: transparent;
	border: 0;
	color: var(--es-ink);
	max-height: min(720px, calc(100vh - 2rem));
	max-width: none;
	overflow: visible;
	padding: 0;
	width: min(560px, calc(100% - 2rem));
}

.easy-store__share-dialog::backdrop {
	background: rgba(12, 23, 42, 0.58);
	backdrop-filter: blur(2px);
}

.easy-store__share-dialog-shell {
	background: #fff;
	border: 1px solid var(--es-line);
	border-radius: 16px;
	box-shadow: 0 24px 70px rgba(12, 23, 42, 0.28);
	max-height: min(720px, calc(100vh - 2rem));
	overflow: auto;
	padding: 1.35rem;
}

.easy-store__share-dialog-header {
	align-items: flex-start;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.easy-store__share-eyebrow {
	color: var(--es-accent);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 0.3rem;
	text-transform: uppercase;
}

.easy-store__share-dialog-header h2 {
	color: var(--es-ink);
	font-family: inherit;
	font-size: clamp(1.25rem, 3vw, 1.65rem);
	line-height: 1.2;
	margin: 0;
}

.easy-store__share-product-name {
	color: var(--es-muted);
	font-size: 0.88rem;
	line-height: 1.4;
	margin: 0.38rem 0 0;
}

.easy-store__share-close {
	align-items: center;
	appearance: none;
	background: #f3f5f8;
	border: 1px solid var(--es-line);
	border-radius: 999px;
	color: var(--es-ink);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font: inherit;
	font-size: 1.35rem;
	height: 42px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 42px;
}

.easy-store__share-options {
	display: grid;
	gap: 0.65rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.easy-store__share-option {
	align-items: center;
	appearance: none;
	background: #f7f9fc;
	border: 1px solid var(--es-line);
	border-radius: 11px;
	color: var(--es-ink);
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 0.84rem;
	font-weight: 750;
	gap: 0.7rem;
	min-height: 52px;
	padding: 0.55rem 0.7rem;
	text-align: left;
	width: 100%;
}

.easy-store__share-option:hover,
.easy-store__share-option:focus-visible,
.easy-store__share-close:hover,
.easy-store__share-close:focus-visible {
	background: #edf3fb;
	border-color: var(--es-accent);
	color: var(--es-accent-dark);
}

.easy-store__share-option-symbol {
	align-items: center;
	background: #fff;
	border: 1px solid #cfdae8;
	border-radius: 8px;
	box-sizing: border-box;
	display: inline-flex;
	flex: 0 0 34px;
	font-size: 0.68rem;
	font-weight: 850;
	height: 34px;
	justify-content: center;
	line-height: 1;
	text-align: center;
}

.easy-store__share-option-symbol svg {
	fill: currentColor;
	height: 18px;
	width: 18px;
}

.easy-store__share-dialog--colour .easy-store__share-option-symbol {
	background: var(--es-share-brand, var(--es-accent));
	border-color: var(--es-share-brand, var(--es-accent));
	color: #fff;
}

.easy-store__share-dialog--colour .easy-store__share-option:hover .easy-store__share-option-symbol,
.easy-store__share-dialog--colour .easy-store__share-option:focus-visible .easy-store__share-option-symbol {
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--es-share-brand, var(--es-accent)) 20%, transparent);
}

.easy-store__share-message {
	color: var(--es-accent-dark);
	font-size: 0.82rem;
	font-weight: 700;
	margin: 0.7rem 0 0;
	min-height: 1.2em;
	text-align: center;
}

.easy-store__share-message a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.14em;
}

.easy-store__share-message a:focus-visible {
	outline: 3px solid rgba(35, 87, 217, 0.28);
	outline-offset: 2px;
}

.easy-store__product-detail-description {
	border-top: 1px solid var(--es-line);
	color: var(--es-muted);
	font-size: 0.92rem;
	line-height: 1.65;
	overflow-wrap: anywhere;
	padding: clamp(1rem, 2.5vw, 1.65rem);
}

.easy-store__product-detail-description > div {
	max-width: 100%;
	overflow-x: auto;
}

.easy-store__product-detail-short-description a:not(.button),
.easy-store__product-detail-description a:not(.button),
.easy-store__product-detail-tabs [role="tabpanel"] a:not(.button) {
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.14em;
}

.easy-store__product-detail-short-description img,
.easy-store__product-detail-short-description iframe,
.easy-store__product-detail-short-description table,
.easy-store__product-detail-description img,
.easy-store__product-detail-description iframe,
.easy-store__product-detail-description table {
	height: auto;
	max-width: 100%;
}

.easy-store__product-detail-description h4 {
	color: var(--es-ink);
	font-family: inherit;
	font-size: 1.15rem;
	margin: 0 0 0.75rem;
}

.easy-store__product-detail-tabs {
	border-top: 1px solid var(--es-line);
	color: var(--es-muted);
	font-size: 0.92rem;
	line-height: 1.65;
	min-width: 0;
	padding: clamp(1rem, 2.5vw, 1.65rem);
}

.easy-store__product-detail-tabs .woocommerce-tabs,
.easy-store__product-detail-tabs .wc-tabs-wrapper {
	min-width: 0;
	width: 100%;
}

.easy-store__product-detail-tabs ul.tabs,
.easy-store__product-detail-tabs .wc-tabs {
	align-items: end;
	border-bottom: 1px solid var(--es-line);
	display: flex;
	gap: 0.2rem;
	list-style: none;
	margin: 0;
	overflow-x: auto;
	padding: 0;
	scrollbar-width: thin;
}

.easy-store__product-detail-tabs ul.tabs::before,
.easy-store__product-detail-tabs ul.tabs::after {
	display: none;
}

.easy-store__product-detail-tabs ul.tabs li,
.easy-store__product-detail-tabs .wc-tabs li {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

.easy-store__product-detail-tabs ul.tabs li a,
.easy-store__product-detail-tabs .wc-tabs li a {
	align-items: center;
	background: transparent;
	border-bottom: 3px solid transparent;
	color: var(--es-muted);
	display: flex;
	font-size: 0.82rem;
	font-weight: 750;
	line-height: 1.25;
	margin: 0;
	min-height: 44px;
	padding: 0.7rem 0.85rem 0.65rem;
	text-decoration: none;
	white-space: nowrap;
}

.easy-store__product-detail-tabs ul.tabs li.active a,
.easy-store__product-detail-tabs .wc-tabs li.active a {
	border-bottom-color: var(--es-accent);
	color: var(--es-ink);
}

.easy-store__product-detail-tabs ul.tabs li a:hover,
.easy-store__product-detail-tabs .wc-tabs li a:hover {
	color: var(--es-accent-dark);
}

.easy-store__product-detail-tabs ul.tabs li a:focus-visible,
.easy-store__product-detail-tabs .wc-tabs li a:focus-visible {
	border-radius: 5px;
	box-shadow: 0 0 0 3px rgba(35, 87, 217, 0.22);
	outline: 0;
}

.easy-store__product-detail-tabs .woocommerce-Tabs-panel,
.easy-store__product-detail-tabs .wc-tab {
	background: transparent;
	color: var(--es-muted);
	margin: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
	overflow-x: auto;
	padding: 1.15rem 0 0;
}

.easy-store__product-detail-tabs .woocommerce-Tabs-panel[hidden],
.easy-store__product-detail-tabs .wc-tab[hidden] {
	display: none !important;
}

.easy-store__product-detail-tabs .woocommerce-Tabs-panel > :first-child,
.easy-store__product-detail-tabs .wc-tab > :first-child {
	margin-top: 0;
}

.easy-store__product-detail-tabs .woocommerce-Tabs-panel > :last-child,
.easy-store__product-detail-tabs .wc-tab > :last-child {
	margin-bottom: 0;
}

.easy-store__product-detail-tabs h2,
.easy-store__product-detail-tabs h3,
.easy-store__product-detail-tabs h4 {
	color: var(--es-ink);
	font-family: inherit;
	line-height: 1.3;
}

.easy-store__product-detail-tabs h2 {
	font-size: 1.15rem;
	margin: 0 0 0.75rem;
}

.easy-store__product-detail-tabs img,
.easy-store__product-detail-tabs iframe,
.easy-store__product-detail-tabs video {
	height: auto;
	max-width: 100%;
}

.easy-store__product-detail-tabs table {
	border-collapse: collapse;
	font-size: 0.85rem;
	max-width: 100%;
	width: 100%;
}

.easy-store__product-detail-tabs th,
.easy-store__product-detail-tabs td {
	border-bottom: 1px solid var(--es-line);
	padding: 0.55rem;
	text-align: left;
	vertical-align: top;
}

.easy-store__product-detail-tabs .wpp-pt-table-wrap {
	background: #fff;
	border: 1px solid var(--es-line);
	border-radius: 8px;
	margin: 1rem 0;
	max-width: 100%;
	overflow-x: auto;
}

.easy-store__product-detail-tabs .wpp-pt-data-table {
	margin: 0;
	min-width: 38rem;
}

.easy-store__product-detail-tabs .wpp-pt-data-table th {
	background: #f3f6f8;
	color: var(--es-ink);
}

.easy-store__product-detail-tabs .wpp-pt-data-table tbody tr:nth-child(even) td {
	background: #fafbfc;
}

.easy-store__product-detail-tabs .wpp-pt-package-table th:first-child,
.easy-store__product-detail-tabs .wpp-pt-package-table td:first-child {
	font-weight: 650;
	white-space: nowrap;
}

.easy-store__product-detail-tabs .wpp-pt-package-table th:last-child,
.easy-store__product-detail-tabs .wpp-pt-package-table td:last-child {
	text-align: center;
	width: 7rem;
}

.easy-store__product-detail-tabs .wpp-pt-video-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 28rem), 1fr));
}

.easy-store__product-detail-tabs .wpp-pt-video {
	aspect-ratio: 16 / 9;
	background: #000;
}

.easy-store__product-detail-tabs .wpp-pt-video iframe {
	border: 0;
	height: 100%;
	width: 100%;
}

.easy-store__product-detail-tabs .wpp-pt-downloads {
	display: grid;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.easy-store__product-detail-tabs .wpp-pt-downloads li {
	border-bottom: 1px solid var(--es-line);
	padding: 0 0 0.75rem;
}

.easy-store__product-detail-tabs input:not([type="checkbox"]):not([type="radio"]),
.easy-store__product-detail-tabs select,
.easy-store__product-detail-tabs textarea {
	border: 1px solid var(--es-line);
	border-radius: 8px;
	font: inherit;
	max-width: 100%;
	padding: 0.6rem 0.7rem;
}

.easy-store__product-detail-tabs button,
.easy-store__product-detail-tabs input[type="submit"] {
	background: var(--es-accent);
	border: 1px solid var(--es-accent);
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 750;
	min-height: 42px;
	padding: 0.6rem 0.95rem;
}

.easy-store--cart-page,
.easy-store--checkout-page {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
}

.easy-store__checkout-shell,
.easy-store__checkout-inline {
	background: #f7f9fc;
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	overflow: hidden;
}

.easy-store__checkout-frame-wrap {
	background: #fff;
	min-height: 760px;
	position: relative;
}

.easy-store .easy-store__checkout-frame-loading {
	align-items: center;
	background: #f7f9fc;
	color: var(--es-muted);
	display: flex;
	font-size: 0.85rem;
	font-weight: 700;
	gap: 0.55rem;
	left: 0;
	margin: 0;
	min-height: 54px;
	padding: 0.8rem 1rem;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}

.easy-store .easy-store__checkout-frame-loading[hidden] {
	display: none;
}

.easy-store__checkout-frame-loading::before {
	animation: easy-store-checkout-spin 0.8s linear infinite;
	border: 2px solid #cbd6e6;
	border-radius: 50%;
	border-top-color: var(--es-accent);
	content: '';
	height: 1rem;
	width: 1rem;
}

@keyframes easy-store-checkout-spin {
	to {
		transform: rotate(360deg);
	}
}

.easy-store__checkout-frame {
	background: #fff;
	border: 0;
	display: block;
	min-height: 760px;
	width: 100%;
}

.easy-store__checkout-inline--order-received .easy-store__checkout-frame-wrap,
.easy-store__checkout-inline--order-received .easy-store__checkout-frame {
	min-height: 0;
}

body.easy-store-embedded-checkout {
	background: #fff;
	height: auto !important;
	margin: 0;
	min-height: 0 !important;
}

body.easy-store-embedded-checkout #wrapper,
body.easy-store-embedded-checkout #inner-wrap {
	height: auto !important;
	min-height: 0 !important;
}

body.easy-store-embedded-checkout #masthead,
body.easy-store-embedded-checkout .site-header,
body.easy-store-embedded-checkout .entry-header,
body.easy-store-embedded-checkout #colophon,
body.easy-store-embedded-checkout .site-footer {
	display: none !important;
}

body.easy-store-embedded-checkout #primary,
body.easy-store-embedded-checkout #main,
body.easy-store-embedded-checkout .content-area,
body.easy-store-embedded-checkout .site-main,
body.easy-store-embedded-checkout .content-wrap,
body.easy-store-embedded-checkout .entry-content-wrap,
body.easy-store-embedded-checkout .entry-content {
	margin: 0 !important;
	max-width: none !important;
	padding: 0 !important;
	width: 100% !important;
}

body.easy-store-embedded-checkout .content-container.site-container {
	max-width: none !important;
	padding: 0 !important;
	width: 100% !important;
}

body.easy-store-embedded-checkout article.entry {
	box-shadow: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.easy-store-embedded-checkout .easy-store--checkout-embedded-document {
	margin: 0;
	max-width: none;
}

body.easy-store-embedded-checkout .easy-store--checkout-embedded-document .easy-store__checkout-shell {
	border: 0;
	border-radius: 0;
}

body.easy-store-embedded-checkout [data-easy-store-embedded-hidden="true"] {
	display: none !important;
}

@media print {
	body.easy-store-order-received #masthead,
	body.easy-store-order-received .site-header,
	body.easy-store-order-received .entry-header,
	body.easy-store-order-received #colophon,
	body.easy-store-order-received .site-footer,
	body.easy-store-order-received .easy-store__checkout-toolbar,
	body.easy-store-order-received .easy-store__checkout-header,
	body.easy-store-order-received .easy-store__checkout-order-actions {
		display: none !important;
	}

	body.easy-store-order-received #primary,
	body.easy-store-order-received #main,
	body.easy-store-order-received .content-area,
	body.easy-store-order-received .site-main,
	body.easy-store-order-received .content-container.site-container,
	body.easy-store-order-received .content-wrap,
	body.easy-store-order-received .entry-content-wrap,
	body.easy-store-order-received .entry-content {
		margin: 0 !important;
		max-width: none !important;
		padding: 0 !important;
		width: 100% !important;
	}

	body.easy-store-order-received .easy-store--checkout-page {
		margin: 0;
		max-width: none;
	}

	body.easy-store-order-received .easy-store__checkout-shell {
		background: #fff;
		border: 0;
		border-radius: 0;
	}
}

.easy-store__checkout-toolbar {
	align-items: center;
	background: var(--es-panel);
	border-bottom: 1px solid var(--es-line);
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	min-height: 62px;
	padding: 0.55rem 1rem;
}

.easy-store__checkout-header {
	background: linear-gradient(135deg, #f5f8ff 0%, #eef3ff 100%);
	border-bottom: 1px solid var(--es-line);
	padding: clamp(1rem, 2.5vw, 1.5rem);
}

.easy-store__checkout-header h2 {
	color: var(--es-ink);
	font-family: inherit;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0;
}

.easy-store .easy-store__checkout-header > p:last-child {
	color: var(--es-muted);
	font-size: 0.9rem;
	margin: 0.55rem 0 0;
}

.easy-store__checkout-toolbar[hidden],
.easy-store__checkout-header[hidden],
.easy-store__checkout-order-actions[hidden] {
	display: none !important;
}

.easy-store__checkout-order-actions {
	align-items: center;
	background: var(--es-panel);
	border-bottom: 1px solid var(--es-line);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: space-between;
	padding: 0.75rem 1rem;
}

.easy-store__checkout-order-action-group {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.easy-store__checkout-order-action-group--right {
	justify-content: flex-end;
}

.easy-store__order-action {
	align-items: center;
	border-radius: 9px;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 0.85rem;
	font-weight: 780;
	gap: 0.5rem;
	justify-content: center;
	min-height: 44px;
	padding: 0.6rem 0.9rem;
	text-decoration: none;
}

.easy-store__order-action svg {
	fill: none;
	height: 20px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 20px;
}

.easy-store__print-order {
	background: var(--es-accent);
	border: 1px solid var(--es-accent);
	color: #fff;
}

.easy-store__print-order:hover,
.easy-store__print-order:focus-visible {
	background: var(--es-accent-dark);
	border-color: var(--es-accent-dark);
	color: #fff;
}

.easy-store__download-order {
	background: #fff;
	border: 1px solid var(--es-accent);
	color: var(--es-accent);
}

.easy-store__download-order:hover,
.easy-store__download-order:focus-visible {
	background: #edf3ff;
	border-color: var(--es-accent-dark);
	color: var(--es-accent-dark);
}

.easy-store__download-order[aria-disabled="true"] {
	cursor: wait;
	opacity: 0.55;
	pointer-events: none;
}

.easy-store__order-action:focus-visible {
	box-shadow: 0 0 0 3px rgba(35, 87, 217, 0.18);
	outline: 0;
}

@media (max-width: 640px) {
	.easy-store__checkout-order-actions,
	.easy-store__checkout-order-action-group--left,
	.easy-store__checkout-order-action-group--right {
		width: 100%;
	}

	.easy-store__checkout-order-action-group--right {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.easy-store__checkout-order-action-group--left .easy-store__nav-button,
	.easy-store__checkout-order-action-group--right .easy-store__order-action {
		width: 100%;
	}
}

.easy-store__checkout-content {
	min-width: 0;
	padding: clamp(0.8rem, 2.5vw, 1.5rem);
}

.easy-store--checkout-page .wc-block-checkout,
.easy-store--checkout-page .wp-block-woocommerce-checkout {
	margin: 0;
	max-width: none;
	padding: 0;
}

.easy-store--checkout-page .wc-block-checkout__main,
.easy-store--checkout-page .wc-block-checkout__sidebar {
	min-width: 0;
}

.easy-store--checkout-page .wc-block-components-checkout-step {
	background: var(--es-panel);
	border: 1px solid var(--es-line);
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(20, 32, 55, 0.035);
	margin-bottom: 1rem;
	padding: 1rem;
}

.easy-store--checkout-page .wc-block-components-checkout-step::before {
	color: var(--es-accent);
}

.easy-store--checkout-page .wc-block-components-checkout-step__title,
.easy-store--checkout-page .wc-block-components-checkout-step__heading-content,
.easy-store--checkout-page .wc-block-components-title {
	color: var(--es-ink);
	font-family: inherit;
}

.easy-store--checkout-page .wc-block-components-checkout-step__title {
	font-size: 1.15rem;
	font-weight: 780;
}

.easy-store--checkout-page .wc-block-components-text-input input,
.easy-store--checkout-page .wc-block-components-combobox-control input,
.easy-store--checkout-page .wc-block-components-form .wc-block-components-select__select,
.easy-store--checkout-page form.checkout input.input-text,
.easy-store--checkout-page form.checkout select,
.easy-store--checkout-page form.checkout textarea {
	background: #fff;
	border: 1px solid #c8d1de;
	border-radius: 9px;
	box-shadow: none;
	color: var(--es-ink);
	font-family: inherit;
}

.easy-store--checkout-page .wc-block-components-text-input input:focus,
.easy-store--checkout-page .wc-block-components-combobox-control input:focus,
.easy-store--checkout-page .wc-block-components-form .wc-block-components-select__select:focus,
.easy-store--checkout-page form.checkout input.input-text:focus,
.easy-store--checkout-page form.checkout select:focus,
.easy-store--checkout-page form.checkout textarea:focus {
	border-color: var(--es-accent);
	box-shadow: 0 0 0 3px rgba(35, 87, 217, 0.14);
	outline: 0;
}

.easy-store--checkout-page .wc-block-checkout__sidebar,
.easy-store--checkout-page .wc-block-components-order-summary {
	background: var(--es-panel);
	border-color: var(--es-line);
	border-radius: 14px;
}

.easy-store--checkout-page .wc-block-checkout__sidebar {
	align-self: start;
	box-shadow: 0 4px 18px rgba(20, 32, 55, 0.035);
	position: sticky;
	top: 1rem;
}

.easy-store--checkout-page .wc-block-components-order-summary-item__description,
.easy-store--checkout-page .wc-block-components-totals-item__label,
.easy-store--checkout-page .wc-block-components-totals-item__value {
	color: var(--es-ink);
}

.easy-store--checkout-page .wc-block-components-totals-coupon,
.easy-store--checkout-page .wc-block-checkout__terms {
	border-color: var(--es-line);
}

.easy-store--checkout-page .wc-block-components-radio-control,
.easy-store--checkout-page .wc-block-checkout__no-payment-methods-notice,
.easy-store--checkout-page .wc-block-components-notice-banner {
	border-color: var(--es-line);
	border-radius: 10px;
}

.easy-store--checkout-page .wc-block-components-checkout-place-order-button,
.easy-store--checkout-page form.checkout #place_order {
	background: var(--es-accent);
	border: 1px solid var(--es-accent);
	border-radius: 9px;
	box-shadow: none;
	color: #fff;
	font-family: inherit;
	font-weight: 780;
	min-height: 48px;
}

.easy-store--checkout-page .wc-block-components-checkout-place-order-button:hover,
.easy-store--checkout-page .wc-block-components-checkout-place-order-button:focus-visible,
.easy-store--checkout-page form.checkout #place_order:hover,
.easy-store--checkout-page form.checkout #place_order:focus-visible {
	background: var(--es-accent-dark);
	border-color: var(--es-accent-dark);
	color: #fff;
}

.easy-store--checkout-page form.checkout.woocommerce-checkout {
	display: block;
}

.easy-store--checkout-page form.checkout.woocommerce-checkout > .col2-set,
.easy-store--checkout-page form.checkout.woocommerce-checkout > #order_review,
.easy-store--checkout-page form.checkout.woocommerce-checkout > #order_review_heading {
	background: var(--es-panel);
	border: 1px solid var(--es-line);
	border-radius: 14px;
	clear: both;
	float: none;
	margin: 0;
	min-width: 0;
	padding: 1rem;
	width: 100%;
}

.easy-store--checkout-page form.checkout.woocommerce-checkout > #order_review_heading {
	border-bottom: 0;
	border-radius: 14px 14px 0 0;
	padding-bottom: 0;
}

.easy-store--checkout-page form.checkout.woocommerce-checkout > #order_review {
	border-top: 0;
	border-radius: 0 0 14px 14px;
}

@supports selector(form:has(> *)) {
	@media (min-width: 900px) {
		.easy-store--checkout-page form.checkout.woocommerce-checkout:not(:has(> :not(.col2-set):not(#order_review_heading):not(#order_review):not(.woocommerce-NoticeGroup):not(.blockUI):not(input[type="hidden"]):not(script):not(style):not(template):not(noscript))) {
			align-items: start;
			column-gap: 1rem;
			display: grid;
			grid-template-areas:
				"notices notices"
				"customer heading"
				"customer review";
			grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
			row-gap: 0;
		}

		.easy-store--checkout-page form.checkout.woocommerce-checkout:not(:has(> :not(.col2-set):not(#order_review_heading):not(#order_review):not(.woocommerce-NoticeGroup):not(.blockUI):not(input[type="hidden"]):not(script):not(style):not(template):not(noscript)))::before,
		.easy-store--checkout-page form.checkout.woocommerce-checkout:not(:has(> :not(.col2-set):not(#order_review_heading):not(#order_review):not(.woocommerce-NoticeGroup):not(.blockUI):not(input[type="hidden"]):not(script):not(style):not(template):not(noscript)))::after {
			content: none;
			display: none;
		}

		.easy-store--checkout-page form.checkout.woocommerce-checkout:not(:has(> :not(.col2-set):not(#order_review_heading):not(#order_review):not(.woocommerce-NoticeGroup):not(.blockUI):not(input[type="hidden"]):not(script):not(style):not(template):not(noscript))) > .woocommerce-NoticeGroup {
			grid-area: notices;
		}

		.easy-store--checkout-page form.checkout.woocommerce-checkout:not(:has(> :not(.col2-set):not(#order_review_heading):not(#order_review):not(.woocommerce-NoticeGroup):not(.blockUI):not(input[type="hidden"]):not(script):not(style):not(template):not(noscript))) > .col2-set {
			clear: none;
			grid-area: customer;
		}

		.easy-store--checkout-page form.checkout.woocommerce-checkout:not(:has(> :not(.col2-set):not(#order_review_heading):not(#order_review):not(.woocommerce-NoticeGroup):not(.blockUI):not(input[type="hidden"]):not(script):not(style):not(template):not(noscript))) > #order_review_heading {
			align-self: stretch;
			clear: none;
			grid-area: heading;
		}

		.easy-store--checkout-page form.checkout.woocommerce-checkout:not(:has(> :not(.col2-set):not(#order_review_heading):not(#order_review):not(.woocommerce-NoticeGroup):not(.blockUI):not(input[type="hidden"]):not(script):not(style):not(template):not(noscript))) > #order_review {
			clear: none;
			grid-area: review;
		}

		.easy-store--checkout-page form.checkout.woocommerce-checkout:not(:has(> :not(.col2-set):not(#order_review_heading):not(#order_review):not(.woocommerce-NoticeGroup):not(.blockUI):not(input[type="hidden"]):not(script):not(style):not(template):not(noscript))) > .col2-set > .col-1,
		.easy-store--checkout-page form.checkout.woocommerce-checkout:not(:has(> :not(.col2-set):not(#order_review_heading):not(#order_review):not(.woocommerce-NoticeGroup):not(.blockUI):not(input[type="hidden"]):not(script):not(style):not(template):not(noscript))) > .col2-set > .col-2 {
			clear: none;
			float: none;
			min-width: 0;
			width: 100%;
		}

		.easy-store--checkout-page form.checkout.woocommerce-checkout:not(:has(> :not(.col2-set):not(#order_review_heading):not(#order_review):not(.woocommerce-NoticeGroup):not(.blockUI):not(input[type="hidden"]):not(script):not(style):not(template):not(noscript))) > .col2-set > .col-2 {
			margin-top: 1rem;
		}
	}
}

@media (max-width: 899px) {
	.easy-store--checkout-page form.checkout.woocommerce-checkout {
		display: block;
	}

	.easy-store--checkout-page form.checkout.woocommerce-checkout > .col2-set,
	.easy-store--checkout-page form.checkout.woocommerce-checkout > #order_review,
	.easy-store--checkout-page form.checkout.woocommerce-checkout > #order_review_heading,
	.easy-store--checkout-page form.checkout.woocommerce-checkout > .col2-set > .col-1,
	.easy-store--checkout-page form.checkout.woocommerce-checkout > .col2-set > .col-2 {
		clear: both;
		float: none;
		width: 100%;
	}

	.easy-store--checkout-page form.checkout.woocommerce-checkout > .col2-set > .col-2 {
		margin-top: 1rem;
	}

	.easy-store--checkout-page .wc-block-components-sidebar-layout.wc-block-checkout {
		display: flex !important;
		flex-direction: column;
		gap: 1rem;
	}

	.easy-store--checkout-page .wc-block-checkout__main,
	.easy-store--checkout-page .wc-block-checkout__sidebar {
		float: none !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		position: static !important;
		width: 100% !important;
	}
}

.easy-store.is-loading .easy-store__cart-page-shell {
	opacity: 0.58;
	pointer-events: none;
}

.easy-store__cart {
	background: #f7f9fc;
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	overflow: hidden;
}

.easy-store__cart-toolbar {
	align-items: center;
	background: var(--es-panel);
	border-bottom: 1px solid var(--es-line);
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	min-height: 62px;
	padding: 0.55rem 1rem;
}

.easy-store__cart-toolbar-left {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.easy-store__cart-toolbar-checkout {
	margin-left: auto;
}

.easy-store__cart-header {
	align-items: end;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	padding: clamp(1rem, 2.5vw, 1.5rem);
}

.easy-store__cart-header h2 {
	color: var(--es-ink);
	font-family: inherit;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0;
}

.easy-store .easy-store__cart-count-label {
	background: #e9efff;
	border-radius: 999px;
	color: var(--es-accent-dark);
	font-size: 0.82rem;
	margin: 0;
	padding: 0.45rem 0.7rem;
	white-space: nowrap;
}

.easy-store__cart-notices {
	padding: 0 clamp(1rem, 2.5vw, 1.5rem) 1rem;
}

.easy-store__cart-notices ul,
.easy-store__cart-notices .woocommerce-message,
.easy-store__cart-notices .woocommerce-error,
.easy-store__cart-notices .woocommerce-info {
	border: 1px solid var(--es-line);
	border-radius: 10px;
	list-style: none;
	margin: 0;
	padding: 0.75rem 0.85rem;
}

.easy-store__cart-layout {
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.65fr);
	padding: 0 clamp(1rem, 2.5vw, 1.5rem) clamp(1rem, 2.5vw, 1.5rem);
}

.easy-store__results .easy-store__cart-layout {
	grid-template-columns: minmax(0, 1fr);
}

.easy-store__cart-items-panel,
.easy-store__cart-summary,
.easy-store__cart-empty {
	background: var(--es-panel);
	border: 1px solid var(--es-line);
	border-radius: 14px;
}

.easy-store__cart-items {
	display: grid;
}

.easy-store__cart-item {
	align-items: center;
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 72px minmax(150px, 1fr) minmax(72px, 0.42fr) 82px minmax(82px, 0.48fr) 38px;
	padding: 1rem;
}

.easy-store__cart-item + .easy-store__cart-item {
	border-top: 1px solid var(--es-line);
}

.easy-store__cart-item--without-image {
	grid-template-columns: minmax(150px, 1fr) minmax(72px, 0.42fr) 82px minmax(82px, 0.48fr) 38px;
}

.easy-store__cart-item-image {
	background: var(--es-soft);
	border-radius: 10px;
	display: grid;
	height: 72px;
	overflow: hidden;
	place-items: center;
	width: 72px;
}

.easy-store__cart-item-image img {
	height: 100%;
	margin: 0;
	object-fit: contain;
	padding: 0.3rem;
	width: 100%;
}

.easy-store__cart-item-info {
	display: grid;
	gap: 0.28rem;
	min-width: 0;
}

.easy-store .easy-store__cart-item-name {
	color: var(--es-ink);
	font-size: 0.9rem;
	font-weight: 780;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.easy-store__cart-item-sku,
.easy-store__cart-item-info .variation {
	color: var(--es-muted);
	font-size: 0.72rem;
	margin: 0;
}

.easy-store__cart-item-info .variation dt,
.easy-store__cart-item-info .variation dd {
	display: inline;
	float: none;
	margin: 0 0.25rem 0 0;
}

.easy-store__cart-item-price,
.easy-store__cart-item-subtotal,
.easy-store__cart-item-quantity {
	display: grid;
	font-size: 0.78rem;
	gap: 0.28rem;
}

.easy-store__cart-item-price > span,
.easy-store__cart-item-subtotal > span,
.easy-store__cart-item-quantity > span {
	color: var(--es-muted);
	font-size: 0.66rem;
	font-weight: 750;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.easy-store__cart-item-quantity input {
	background: #fff;
	border: 1px solid #c8d1de;
	border-radius: 8px;
	color: var(--es-ink);
	font: inherit;
	height: 42px;
	padding: 0.35rem 0.5rem;
	width: 100%;
}

.easy-store__cart-item-remove {
	align-items: center;
	background: #fff;
	border: 1px solid #d6dde7;
	border-radius: 8px;
	color: #9b2c2c;
	cursor: pointer;
	display: inline-flex;
	font-size: 1.25rem;
	height: 38px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	text-decoration: none;
	width: 38px;
}

.easy-store__cart-item-remove:hover,
.easy-store__cart-item-remove:focus-visible {
	background: #fff1f1;
	border-color: #d92d20;
	color: #8f1d18;
}

.easy-store__cart-form-actions {
	border-top: 1px solid var(--es-line);
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: flex-end;
	padding: 0.85rem 1rem;
}

.easy-store .easy-store__cart-empty-button {
	background: #fff;
	border-color: #d92d20;
	color: #8f1d18;
}

.easy-store .easy-store__cart-empty-button:hover,
.easy-store .easy-store__cart-empty-button:focus-visible {
	background: #d92d20;
	border-color: #d92d20;
	color: #fff;
}

.easy-store__cart-summary {
	align-self: start;
	padding: 1rem;
}

.easy-store__cart-summary h3 {
	color: var(--es-ink);
	font-family: inherit;
	font-size: 1.12rem;
	margin: 0 0 0.85rem;
}

.easy-store__cart-totals {
	display: grid;
	margin: 0;
}

.easy-store__cart-totals > div {
	align-items: start;
	border-top: 1px solid var(--es-line);
	display: flex;
	font-size: 0.84rem;
	gap: 1rem;
	justify-content: space-between;
	padding: 0.7rem 0;
}

.easy-store__cart-totals > div:first-child {
	border-top: 0;
	padding-top: 0;
}

.easy-store__cart-totals dt {
	color: var(--es-muted);
}

.easy-store__cart-totals dd {
	color: var(--es-ink);
	font-weight: 750;
	margin: 0;
	text-align: right;
}

.easy-store__cart-totals .easy-store__cart-total {
	font-size: 1rem;
	padding-bottom: 0;
}

.easy-store__cart-totals .easy-store__cart-total dt,
.easy-store__cart-totals .easy-store__cart-total dd {
	color: var(--es-ink);
	font-weight: 800;
}

.easy-store__cart-coupon {
	border-top: 1px solid var(--es-line);
	margin-top: 1rem;
	padding-top: 1rem;
}

.easy-store__cart-coupon label {
	color: #526074;
	display: block;
	font-size: 0.72rem;
	font-weight: 750;
	margin-bottom: 0.4rem;
}

.easy-store__cart-coupon > div {
	display: grid;
	gap: 0.45rem;
	grid-template-columns: minmax(0, 1fr) auto;
}

.easy-store__cart-coupon input {
	border: 1px solid #c8d1de;
	border-radius: 8px;
	font: inherit;
	min-width: 0;
	padding: 0.55rem 0.65rem;
}

.easy-store__cart-coupon button,
.easy-store__cart-coupons button {
	background: #fff;
	border: 1px solid var(--es-accent);
	border-radius: 8px;
	color: var(--es-accent);
	cursor: pointer;
	font: inherit;
	font-size: 0.75rem;
	font-weight: 750;
	padding: 0.55rem 0.65rem;
}

.easy-store__cart-coupons {
	display: grid;
	gap: 0.4rem;
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
}

.easy-store__cart-coupons li {
	align-items: center;
	display: flex;
	font-size: 0.78rem;
	gap: 0.6rem;
	justify-content: space-between;
}

.easy-store__cart-checkout {
	align-items: center;
	background: var(--es-accent);
	border: 1px solid var(--es-accent);
	border-radius: 9px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 780;
	justify-content: center;
	margin-top: 1rem;
	min-height: 46px;
	padding: 0.65rem 0.9rem;
	text-align: center;
	width: 100%;
}

.easy-store__cart-checkout:hover,
.easy-store__cart-checkout:focus-visible {
	background: var(--es-accent-dark);
	border-color: var(--es-accent-dark);
	color: #fff;
}

.easy-store .easy-store__cart-secure-note {
	color: var(--es-muted);
	font-size: 0.7rem;
	line-height: 1.45;
	margin: 0.6rem 0 0;
	text-align: center;
}

.easy-store__cart-empty {
	margin: 0 clamp(1rem, 2.5vw, 1.5rem) clamp(1rem, 2.5vw, 1.5rem);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	text-align: center;
}

.easy-store__cart-empty-icon {
	font-size: 2rem;
	line-height: 1;
}

.easy-store__cart-empty h3 {
	color: var(--es-ink);
	font-family: inherit;
	font-size: 1.35rem;
	margin: 0.75rem 0 0;
}

.easy-store .easy-store__cart-empty p {
	color: var(--es-muted);
	margin: 0.45rem 0 0;
}

.easy-store__cart-empty .easy-store__cart-checkout {
	margin-left: auto;
	margin-right: auto;
	max-width: 240px;
}

.easy-store__product-detail-description img {
	height: auto;
	max-width: 100%;
}

.easy-store__mixed-section {
	margin-bottom: 1.75rem;
}

.easy-store__mixed-section > h4 {
	margin-bottom: 0.65rem;
}

.easy-store__product-list {
	display: grid;
	gap: 1.5rem;
}

.easy-store__list-group h4 {
	color: var(--es-ink);
	font-family: inherit;
	font-size: 1.08rem;
	font-weight: 750;
	line-height: 1.3;
	margin: 0 0 0.55rem;
}

.easy-store__list-group .easy-store__list-group-heading {
	align-items: center;
	display: flex;
	gap: 0.65rem;
}

.easy-store__list-table-wrap {
	border: 1px solid var(--es-line);
	border-radius: 14px;
	overflow: hidden;
}

.easy-store__list-table {
	background: var(--es-panel);
	border: 0;
	border-collapse: collapse;
	margin: 0;
	table-layout: fixed;
	width: 100%;
}

.easy-store__list-table th,
.easy-store__list-table td {
	border: 0;
	color: var(--es-ink);
	padding: 0.72rem;
	text-align: left;
	vertical-align: top;
}

.easy-store__list-table thead {
	background: #edf1f6;
}

.easy-store__list-table th {
	color: #526074;
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.easy-store__list-heading-image,
.easy-store__list-image {
	width: 94px;
}

.easy-store__list-table th:nth-child(2) {
	width: 14%;
}

.easy-store__list-table th:nth-child(4) {
	width: 12%;
}

.easy-store__list-table th:nth-child(5) {
	width: 13%;
}

.easy-store__list-table th:nth-child(6) {
	width: 174px;
}

.easy-store__list-product + .easy-store__list-product {
	border-top: 1px solid var(--es-line);
}

.easy-store__list-product:hover {
	background: #fbfcfd;
}

.easy-store__list-image {
	background: #f5f7fa;
	padding: 0.55rem !important;
	vertical-align: middle !important;
}

.easy-store__list-image a {
	display: block;
}

.easy-store__list-image img {
	display: block;
	height: 76px;
	margin: 0;
	object-fit: contain;
	width: 76px;
}

.easy-store__list-manufacturer {
	color: var(--es-accent) !important;
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.easy-store__list-name a {
	color: var(--es-ink);
	font-size: 0.88rem;
	font-weight: 750;
	line-height: 1.35;
}

.easy-store__list-sku {
	color: var(--es-muted) !important;
	font-size: 0.76rem;
	overflow-wrap: anywhere;
}

.easy-store__list-price {
	font-size: 0.84rem;
	font-weight: 750;
}

.easy-store__list-price del {
	color: var(--es-muted);
	display: block;
	font-size: 0.72rem;
}

.easy-store__list-actions {
	padding-left: 0.35rem !important;
}

.easy-store__list-button,
.easy-store__list-actions > a.added_to_cart {
	appearance: none;
	align-items: center;
	border: 1px solid var(--es-accent);
	border-radius: 8px;
	display: flex;
	font-size: 0.7rem;
	font-weight: 750;
	justify-content: center;
	line-height: 1.25;
	min-height: 34px;
	padding: 0.42rem 0.5rem;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

.easy-store__list-button + .easy-store__list-button,
.easy-store__list-actions > a.added_to_cart {
	margin-top: 0.38rem;
}

.easy-store__list-button--view,
.easy-store__list-actions > a.added_to_cart {
	background: #fff;
	color: var(--es-accent);
}

.easy-store__list-button--cart {
	background: var(--es-accent);
	color: #fff;
}

.easy-store__list-button:hover,
.easy-store__list-actions > a.added_to_cart:hover {
	background: var(--es-accent-dark);
	border-color: var(--es-accent-dark);
	color: #fff;
}

.easy-store__list-product-description td {
	padding-top: 0 !important;
}

.easy-store__list-product-description p {
	display: -webkit-box;
	color: var(--es-muted);
	font-size: 0.78rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-height: 1.5;
	margin: 0;
	overflow: hidden;
}

.easy-store__empty {
	background: var(--es-soft);
	border: 1px dashed #cbd3df;
	border-radius: var(--es-radius);
	padding: clamp(2rem, 7vw, 4.5rem) 1.5rem;
	text-align: center;
}

.easy-store__empty h4 {
	font-size: 1.2rem;
}

.easy-store__empty p {
	color: var(--es-muted);
	margin: 0.5rem 0 0;
}

.easy-store__pagination {
	margin-top: 1.5rem;
}

.easy-store__pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.easy-store__pagination a,
.easy-store__pagination span {
	align-items: center;
	border: 1px solid var(--es-line);
	border-radius: 8px;
	color: var(--es-ink);
	display: inline-flex;
	font-size: 0.84rem;
	font-weight: 650;
	justify-content: center;
	min-height: 2.35rem;
	min-width: 2.35rem;
	padding: 0.45rem 0.7rem;
}

.easy-store__pagination .current {
	background: var(--es-accent);
	border-color: var(--es-accent);
	color: #fff;
}

.easy-store--notice {
	background: #fff7e8;
	border: 1px solid #f4cc80;
	border-radius: 12px;
	padding: 1rem;
}

@media (min-width: 900px) {
	.easy-store--filters-desktop-first .easy-store__layout,
	.easy-store--filters-desktop-last .easy-store__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.easy-store--filters-desktop-first .easy-store__filters {
		order: 1;
		position: static;
	}

	.easy-store--filters-desktop-first .easy-store__results {
		order: 2;
	}

	.easy-store--filters-desktop-last .easy-store__filters {
		order: 2;
		position: static;
	}

	.easy-store--filters-desktop-last .easy-store__results {
		order: 1;
	}

	.easy-store--filters-desktop-right .easy-store__layout {
		grid-template-columns: minmax(0, 1fr) minmax(270px, var(--es-sidebar-width));
	}

	.easy-store--filters-desktop-right .easy-store__filters {
		order: 2;
	}

	.easy-store--filters-desktop-right .easy-store__results {
		order: 1;
	}
}

@media (max-width: 899px) {
	.easy-store__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.easy-store__list-button,
	.easy-store__list-actions > a.added_to_cart {
		min-height: 44px;
	}

	.easy-store__product-grid {
		grid-template-columns: repeat(var(--es-product-columns-tablet), minmax(0, 1fr));
	}

	.easy-store__featured-track {
		grid-auto-columns: var(--es-featured-card-width-tablet);
	}

	.easy-store__filters {
		position: static;
	}

	.easy-store__filters .easy-store__search {
		order: 1;
	}

	.easy-store__filters .easy-store__manufacturers {
		order: 2;
	}

	.easy-store__filters .easy-store__categories {
		order: 3;
	}

	.easy-store .easy-store__category-list--root {
		max-height: 420px;
	}
}

@media (min-width: 600px) and (max-width: 899px) {
	.easy-store--filters-tablet-first .easy-store__filters,
	.easy-store--filters-tablet-left .easy-store__filters {
		order: 1;
	}

	.easy-store--filters-tablet-first .easy-store__results,
	.easy-store--filters-tablet-left .easy-store__results {
		order: 2;
	}

	.easy-store--filters-tablet-last .easy-store__filters,
	.easy-store--filters-tablet-right .easy-store__filters {
		order: 2;
	}

	.easy-store--filters-tablet-last .easy-store__results,
	.easy-store--filters-tablet-right .easy-store__results {
		order: 1;
	}

	.easy-store--filters-tablet-left .easy-store__layout {
		gap: 1.25rem;
		grid-template-columns: minmax(230px, var(--es-sidebar-width)) minmax(0, 1fr);
	}

	.easy-store--filters-tablet-right .easy-store__layout {
		gap: 1.25rem;
		grid-template-columns: minmax(0, 1fr) minmax(230px, var(--es-sidebar-width));
	}
}

@media (max-width: 599px) {
	.easy-store__category-logo--browser {
		height: 28px;
		width: 28px;
	}

	.easy-store__category-logo--results {
		height: 36px;
		width: 36px;
	}

	.easy-store__product-grid {
		grid-template-columns: repeat(var(--es-product-columns-mobile), minmax(0, 1fr));
	}

	.easy-store__featured-track {
		grid-auto-columns: var(--es-featured-card-width-mobile);
	}

	.easy-store--filters-mobile-first .easy-store__filters,
	.easy-store--filters-mobile-left .easy-store__filters {
		order: 1;
	}

	.easy-store--filters-mobile-first .easy-store__results,
	.easy-store--filters-mobile-left .easy-store__results {
		order: 2;
	}

	.easy-store--filters-mobile-last .easy-store__filters,
	.easy-store--filters-mobile-right .easy-store__filters {
		order: 2;
	}

	.easy-store--filters-mobile-last .easy-store__results,
	.easy-store--filters-mobile-right .easy-store__results {
		order: 1;
	}

	.easy-store--filters-mobile-left .easy-store__layout {
		gap: 0.75rem;
		grid-template-columns: minmax(0, 48%) minmax(0, 1fr);
	}

	.easy-store--filters-mobile-right .easy-store__layout {
		gap: 0.75rem;
		grid-template-columns: minmax(0, 1fr) minmax(0, 48%);
	}

	.easy-store--filters-mobile-left .easy-store__filters,
	.easy-store--filters-mobile-right .easy-store__filters {
		gap: 0.65rem;
		padding: 0.65rem;
	}

	.easy-store--filters-mobile-left .easy-store__categories,
	.easy-store--filters-mobile-left .easy-store__manufacturers,
	.easy-store--filters-mobile-left .easy-store__search,
	.easy-store--filters-mobile-right .easy-store__categories,
	.easy-store--filters-mobile-right .easy-store__manufacturers,
	.easy-store--filters-mobile-right .easy-store__search {
		padding: 0.65rem;
	}
}

@media (max-width: 767px) {
	.easy-store__product-detail-main {
		gap: 1rem;
		grid-template-columns: minmax(0, 1fr);
		padding: 0.85rem;
	}

	.easy-store__product-detail-toolbar {
		padding: 0.35rem 0.55rem;
	}

	.easy-store__product-detail-image {
		aspect-ratio: 1 / 1;
	}

	.easy-store__product-detail-action,
	.easy-store__product-detail-purchase > a.added_to_cart {
		width: 100%;
	}

	.easy-store__product-detail-description {
		padding: 0.95rem;
	}

	.easy-store__product-detail-tabs {
		padding: 0.85rem;
	}

	.easy-store__product-detail-tabs ul.tabs li a,
	.easy-store__product-detail-tabs .wc-tabs li a {
		padding-left: 0.7rem;
		padding-right: 0.7rem;
	}

	.easy-store__cart-layout {
		grid-template-columns: minmax(0, 1fr);
		padding: 0 0.7rem 0.7rem;
	}

	.easy-store__cart-header {
		align-items: start;
		padding: 1rem 0.7rem;
	}

	.easy-store__cart-toolbar {
		padding: 0.55rem 0.7rem;
	}

	.easy-store__cart-toolbar .easy-store__nav-button {
		flex: 1 1 145px;
	}

	.easy-store__cart-toolbar-left {
		width: 100%;
	}

	.easy-store__cart-toolbar-checkout {
		margin-left: 0;
		width: 100%;
	}

	.easy-store__checkout-toolbar {
		padding: 0.55rem 0.7rem;
	}

	.easy-store__checkout-toolbar .easy-store__nav-button {
		flex: 1 1 145px;
	}

	.easy-store__checkout-header {
		padding: 1rem 0.85rem;
	}

	.easy-store__checkout-content {
		padding: 0.7rem;
	}

	.easy-store--checkout-page .wc-block-checkout__sidebar {
		position: static;
	}

	.easy-store--checkout-page .wc-block-components-checkout-step {
		padding: 0.85rem;
	}

	.easy-store__cart-item,
	.easy-store__cart-item--without-image {
		align-items: start;
		gap: 0.55rem 0.7rem;
		grid-template-columns: 64px minmax(0, 1fr) 40px;
		padding: 0.8rem;
	}

	.easy-store__cart-item-image {
		grid-column: 1;
		grid-row: 1 / span 4;
		height: 64px;
		width: 64px;
	}

	.easy-store__cart-item-info {
		grid-column: 2;
		grid-row: 1;
	}

	.easy-store__cart-item-remove {
		grid-column: 3;
		grid-row: 1;
	}

	.easy-store__cart-item-price,
	.easy-store__cart-item-subtotal,
	.easy-store__cart-item-quantity {
		align-items: center;
		display: flex;
		grid-column: 2 / 4;
		justify-content: space-between;
	}

	.easy-store__cart-item-price {
		grid-row: 2;
	}

	.easy-store__cart-item-quantity {
		grid-row: 3;
	}

	.easy-store__cart-item-quantity input {
		width: 88px;
	}

	.easy-store__cart-item-subtotal {
		grid-row: 4;
	}

	.easy-store__cart-item--without-image {
		grid-template-columns: minmax(0, 1fr) 40px;
	}

	.easy-store__cart-item--without-image .easy-store__cart-item-info {
		grid-column: 1;
	}

	.easy-store__cart-item--without-image .easy-store__cart-item-remove {
		grid-column: 2;
	}

	.easy-store__cart-item--without-image .easy-store__cart-item-price,
	.easy-store__cart-item--without-image .easy-store__cart-item-subtotal,
	.easy-store__cart-item--without-image .easy-store__cart-item-quantity {
		grid-column: 1 / 3;
	}

	.easy-store__cart-form-actions .easy-store__nav-button {
		flex: 1 1 130px;
	}

	.easy-store__cart-empty {
		margin: 0 0.7rem 0.7rem;
	}

	.easy-store__list-table-wrap {
		border: 0;
		border-radius: 0;
		overflow: visible;
	}

	.easy-store__list-table,
	.easy-store__list-table tbody,
	.easy-store__list-table tr,
	.easy-store__list-table td {
		display: block;
		width: 100%;
	}

	.easy-store__list-table thead {
		clip: rect(1px, 1px, 1px, 1px);
		clip-path: inset(50%);
		height: 1px;
		overflow: hidden;
		position: absolute;
		white-space: nowrap;
		width: 1px;
	}

	.easy-store__list-table .easy-store__list-product {
		background: var(--es-panel);
		border: 1px solid var(--es-line);
		border-radius: 13px;
		display: grid;
		gap: 0.3rem 0.7rem;
		grid-template-columns: 76px minmax(0, 1fr);
		padding: 0.75rem;
	}

	.easy-store__list-product + .easy-store__list-product {
		border-top: 1px solid var(--es-line);
		margin-top: 0.75rem;
	}

	.easy-store__list-table .easy-store__list-product tr {
		display: contents;
	}

	.easy-store__list-table .easy-store__list-product td {
		border: 0;
		padding: 0;
	}

	.easy-store__list-image {
		align-self: start;
		grid-column: 1;
		grid-row: 1 / span 4;
	}

	.easy-store__list-image img {
		height: 70px;
		width: 70px;
	}

	.easy-store__list-manufacturer,
	.easy-store__list-name,
	.easy-store__list-sku,
	.easy-store__list-price {
		grid-column: 2;
	}

	.easy-store__list-manufacturer {
		grid-row: 1;
	}

	.easy-store__list-name {
		grid-row: 2;
	}

	.easy-store__list-sku {
		grid-row: 3;
	}

	.easy-store__list-price {
		grid-row: 4;
	}

	.easy-store__list-sku::before,
	.easy-store__list-price::before {
		color: #526074;
		content: attr(data-label) ": ";
		font-size: 0.67rem;
		font-weight: 750;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}

	.easy-store__list-actions {
		display: grid !important;
		gap: 0.45rem;
		grid-column: 1 / -1;
		grid-row: 5;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-top: 0.45rem !important;
	}

	.easy-store__list-button + .easy-store__list-button,
	.easy-store__list-actions > a.added_to_cart {
		margin-top: 0;
	}

	.easy-store__list-button,
	.easy-store__list-actions > a.added_to_cart {
		min-height: 44px;
	}

	.easy-store__list-product-description td {
		border-top: 1px solid var(--es-line) !important;
		grid-column: 1 / -1;
		grid-row: 6;
		margin-top: 0.35rem;
		padding-top: 0.65rem !important;
	}

	.easy-store__list-product-description td::before {
		color: #526074;
		content: attr(data-label);
		display: block;
		font-size: 0.67rem;
		font-weight: 750;
		letter-spacing: 0.04em;
		margin-bottom: 0.25rem;
		text-transform: uppercase;
	}
}

@media (max-width: 520px) {
	.easy-store {
		margin: 1.25rem 0;
	}

	.easy-store__results-row {
		align-items: start;
		flex-direction: column;
		gap: 0.7rem;
	}

	.easy-store__results-actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 44px;
		justify-content: stretch;
		width: 100%;
	}

	.easy-store__results-actions .easy-store__result-count {
		grid-column: 1 / -1;
	}

	.easy-store__catalog-cart {
		grid-column: 1;
		width: 100%;
	}

	.easy-store__results-actions > .easy-store__checkout-shortcut {
		grid-column: 2;
	}

	.easy-store__product-detail-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.easy-store__product-detail-toolbar .easy-store__product-back {
		align-self: flex-start;
	}

	.easy-store__product-detail-toolbar-actions {
		margin-left: 0;
		width: 100%;
	}

	.easy-store__product-detail-toolbar-actions .easy-store__product-cart {
		flex: 1 1 auto;
	}

	.easy-store__checkout-toolbar .easy-store__nav-button {
		flex-basis: 100%;
		white-space: nowrap;
		width: 100%;
	}

	.easy-store__product-card {
		border-radius: 13px;
	}

	.easy-store__share-dialog {
		width: calc(100% - 1rem);
	}

	.easy-store__share-dialog-shell {
		border-radius: 13px;
		padding: 1rem;
	}

	.easy-store__share-options {
		grid-template-columns: minmax(0, 1fr);
	}

	.easy-store__category-list a,
	.easy-store__category-toggle,
	.easy-store__category-toggle-spacer {
		min-height: 44px;
	}

	.easy-store__category-toggle,
	.easy-store__category-toggle-spacer {
		flex-basis: 44px;
	}

	.easy-store__manufacturer-list label,
	.easy-store__manufacturer-actions button {
		min-height: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.easy-store *,
	.easy-store *::before,
	.easy-store *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

@media (forced-colors: active) {
	.easy-store :focus-visible {
		box-shadow: none !important;
		outline: 2px solid CanvasText !important;
		outline-offset: 2px !important;
	}

	.easy-store button,
	.easy-store a,
	.easy-store input,
	.easy-store select,
	.easy-store dialog {
		forced-color-adjust: auto;
	}
}
