:root {
	--lcs-success: #16a34a;
	--lcs-shadow-soft: 0 8px 20px rgba(17, 24, 39, 0.06);
	--lcs-radius: 8px;
	--lcs-radius-small: 6px;
	--lcs-space: 16px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	color: var(--lcs-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0;
}

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

a:hover,
a:focus {
	color: var(--lcs-secondary);
}

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

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.screen-reader-text:focus {
	background: #fff;
	border: 1px solid var(--lcs-border);
	clip: auto;
	clip-path: none;
	color: var(--lcs-text);
	height: auto;
	left: 12px;
	padding: 10px 12px;
	top: 12px;
	width: auto;
	z-index: 100000;
}

.lcs-container {
	margin: 0 auto;
	padding: 0 16px;
	width: 100%;
}

.lcs-narrow {
	max-width: 820px;
}

.lcs-section {
	padding: 42px 0;
}

.lcs-light-section {
	background: var(--lcs-light);
}

.lcs-site-main {
	min-height: 60vh;
}

.lcs-eyebrow {
	color: var(--lcs-secondary);
	font-size: 0.86rem;
	font-weight: 800;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.lcs-section-head {
	margin: 0 0 22px;
}

.lcs-section-head h2,
.lcs-page-header h1,
.lcs-landing-copy h1,
.lcs-hero-content h1 {
	line-height: 1.12;
	margin: 0;
}

.lcs-section-head h2 {
	font-size: 1.75rem;
}

.lcs-section-head-row {
	align-items: flex-end;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.lcs-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	align-items: center;
	border: 1px solid transparent;
	border-radius: var(--lcs-radius);
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 44px;
	padding: 11px 16px;
	text-align: center;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.lcs-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	transform: translateY(-1px);
}

.lcs-button-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background: var(--lcs-primary);
	color: #fff;
}

.lcs-button-primary:hover,
.lcs-button-primary:focus,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
	background: var(--lcs-secondary);
	color: #fff;
}

.lcs-button-secondary {
	background: #fff;
	border-color: var(--lcs-border);
	color: var(--lcs-text);
}

.lcs-button-secondary:hover,
.lcs-button-secondary:focus {
	background: var(--lcs-light);
	border-color: var(--lcs-primary);
}

.lcs-link-arrow {
	color: var(--lcs-secondary);
	font-weight: 800;
	white-space: nowrap;
}

.lcs-link-arrow::after {
	content: ">";
	margin-left: 6px;
}

.lcs-announcement {
	background: var(--lcs-secondary);
	color: #fff;
	font-size: 0.88rem;
	font-weight: 700;
	padding: 8px 0;
	text-align: center;
}

.lcs-site-header {
	background: #fff;
	border-bottom: 1px solid var(--lcs-border);
	position: sticky;
	top: 0;
	z-index: 50;
}

.admin-bar .lcs-site-header {
	top: 46px;
}

.lcs-header-inner {
	align-items: center;
	display: flex;
	gap: 12px;
	min-height: 70px;
	position: relative;
}

.lcs-brand {
	flex: 0 0 auto;
	min-width: 0;
}

.lcs-site-title {
	color: var(--lcs-text);
	display: inline-flex;
	font-size: 1.2rem;
	font-weight: 900;
	line-height: 1.1;
}

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

.lcs-search {
	align-items: center;
	background: var(--lcs-light);
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	display: flex;
	min-height: 44px;
	overflow: hidden;
}

.lcs-search input {
	background: transparent;
	border: 0;
	color: var(--lcs-text);
	flex: 1;
	min-width: 0;
	outline: 0;
	padding: 12px;
}

.lcs-search button {
	align-items: center;
	background: var(--lcs-primary);
	border: 0;
	color: #fff;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	width: 48px;
}

.lcs-search svg {
	fill: currentColor;
}

.lcs-search-desktop {
	display: none;
	flex: 1;
	max-width: 430px;
}

.lcs-search-mobile {
	margin-bottom: 12px;
}

.lcs-header-actions {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-left: auto;
}

.lcs-category-menu {
	position: static;
}

.lcs-category-toggle,
.lcs-mobile-toggle,
.lcs-cart-link {
	align-items: center;
	background: #fff;
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	color: var(--lcs-text);
	display: inline-flex;
	font-weight: 800;
	gap: 8px;
	min-height: 42px;
	padding: 9px 11px;
}

.lcs-category-toggle {
	display: inline-flex;
}

.lcs-icon-lines,
.lcs-icon-lines::before,
.lcs-icon-lines::after {
	background: currentColor;
	border-radius: 10px;
	display: block;
	height: 2px;
	width: 16px;
}

.lcs-icon-lines {
	position: relative;
}

.lcs-icon-lines::before,
.lcs-icon-lines::after {
	content: "";
	left: 0;
	position: absolute;
}

.lcs-icon-lines::before {
	top: -5px;
}

.lcs-icon-lines::after {
	top: 5px;
}

.lcs-contact-link {
	display: none;
}

.lcs-cart-link {
	padding: 9px 10px;
}

.lcs-cart-link svg {
	fill: currentColor;
}

.lcs-cart-link span {
	align-items: center;
	background: var(--lcs-sale);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 0.76rem;
	height: 20px;
	justify-content: center;
	min-width: 20px;
	padding: 0 5px;
}

.lcs-mobile-toggle {
	flex-direction: column;
	gap: 4px;
	width: 44px;
}

.lcs-mobile-toggle span {
	background: currentColor;
	border-radius: 10px;
	height: 2px;
	width: 18px;
}

.lcs-primary-nav {
	border-top: 1px solid var(--lcs-border);
	display: none;
}

.lcs-primary-nav.is-open {
	display: block;
}

.lcs-menu {
	display: flex;
	flex-direction: column;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 10px 0;
}

.lcs-menu a {
	border-radius: var(--lcs-radius-small);
	display: block;
	font-weight: 700;
	padding: 10px 0;
}

.lcs-mega-menu {
	background: #fff;
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	box-shadow: var(--lcs-shadow);
	left: 16px;
	max-height: min(74vh, 620px);
	overflow: auto;
	padding: 14px;
	position: absolute;
	right: 16px;
	top: calc(100% + 8px);
	z-index: 70;
}

.lcs-mega-grid {
	display: grid;
	gap: 12px;
}

.lcs-mega-group {
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	padding: 12px;
}

.lcs-mega-title {
	align-items: center;
	display: flex;
	font-weight: 900;
	gap: 8px;
	margin-bottom: 10px;
}

.lcs-mini-icon,
.lcs-category-card-icon,
.lcs-trust-icon {
	align-items: center;
	background: rgba(23, 181, 183, 0.12);
	border-radius: var(--lcs-radius-small);
	color: var(--lcs-secondary);
	display: inline-flex;
	flex: 0 0 auto;
	justify-content: center;
}

.lcs-mini-icon {
	height: 30px;
	width: 30px;
}

.lcs-mini-icon svg,
.lcs-category-card-icon svg,
.lcs-trust-icon svg {
	fill: currentColor;
}

.lcs-mega-links {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.lcs-mega-links a,
.lcs-tag-list a {
	background: var(--lcs-light);
	border: 1px solid transparent;
	border-radius: var(--lcs-radius-small);
	color: var(--lcs-muted);
	font-size: 0.88rem;
	font-weight: 700;
	padding: 7px 9px;
}

.lcs-mega-links a:hover,
.lcs-tag-list a:hover,
.lcs-mega-links a:focus,
.lcs-tag-list a:focus {
	background: #fff;
	border-color: var(--lcs-primary);
	color: var(--lcs-secondary);
}

.lcs-hero {
	background: var(--lcs-light);
	padding: 42px 0 28px;
}

.lcs-hero-grid,
.lcs-landing-hero-grid {
	display: grid;
	gap: 28px;
}

.lcs-hero-content h1,
.lcs-landing-copy h1 {
	font-size: 2.25rem;
	max-width: 680px;
}

.lcs-hero-text {
	color: var(--lcs-muted);
	font-size: 1.08rem;
	margin: 14px 0 0;
	max-width: 560px;
}

.lcs-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.lcs-hero-collage {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lcs-collage-card {
	background: #fff;
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	box-shadow: var(--lcs-shadow-soft);
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 190px;
	padding: 10px;
}

.lcs-collage-card img {
	aspect-ratio: 1 / 1;
	background: var(--lcs-light);
	border-radius: var(--lcs-radius-small);
	object-fit: cover;
	width: 100%;
}

.lcs-collage-card strong {
	font-size: 0.9rem;
	line-height: 1.25;
}

.lcs-collage-card span {
	color: var(--lcs-sale);
	font-weight: 900;
}

.lcs-trust-section {
	padding: 24px 0;
}

.lcs-trust-badges {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lcs-trust-badge {
	align-items: center;
	background: #fff;
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	display: flex;
	font-weight: 800;
	gap: 8px;
	padding: 12px;
}

.lcs-trust-icon {
	height: 32px;
	width: 32px;
}

.lcs-category-grid {
	display: grid;
	gap: 14px;
}

.lcs-category-card,
.lcs-product-card,
.lcs-review-card,
.lcs-info-card,
.lcs-benefit-card,
.lcs-policy-item,
.lcs-post-card,
.lcs-order-card {
	background: #fff;
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	box-shadow: var(--lcs-shadow-soft);
}

.lcs-category-card {
	padding: 16px;
}

.lcs-category-card-head {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.lcs-category-card-icon {
	height: 42px;
	width: 42px;
}

.lcs-category-card h3 {
	font-size: 1.08rem;
	margin: 0;
}

.lcs-category-card p {
	color: var(--lcs-muted);
	margin: 0 0 12px;
}

.lcs-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.lcs-products-section {
	background: var(--lcs-light);
}

.lcs-product-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lcs-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
}

.lcs-product-image {
	background: var(--lcs-light);
	display: block;
	position: relative;
}

.lcs-product-image img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
}

.lcs-discount-badge {
	background: var(--lcs-sale);
	border-radius: var(--lcs-radius-small);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 900;
	left: 8px;
	padding: 5px 7px;
	position: absolute;
	top: 8px;
}

.lcs-product-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 11px;
}

.lcs-product-category,
.lcs-product-trust {
	color: var(--lcs-muted);
	font-size: 0.78rem;
	margin: 0 0 6px;
}

.lcs-product-trust {
	color: var(--lcs-success);
	font-weight: 800;
}

.lcs-product-title {
	font-size: 0.96rem;
	line-height: 1.28;
	margin: 0 0 7px;
	min-height: 2.45em;
}

.lcs-product-price {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: auto 0 10px;
}

.lcs-product-price del,
.price del,
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	color: var(--lcs-muted);
	font-size: 0.88rem;
	opacity: 1;
	text-decoration: line-through;
}

.lcs-product-price ins,
.price ins,
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	color: var(--lcs-sale);
	font-size: 1.12rem;
	font-weight: 900;
	text-decoration: none;
}

.lcs-product-price > .woocommerce-Price-amount,
.lcs-product-price > span,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--lcs-sale);
	font-weight: 900;
}

.lcs-product-actions {
	display: grid;
	gap: 8px;
}

.lcs-product-actions .lcs-button {
	font-size: 0.88rem;
	min-height: 40px;
	padding: 9px 10px;
	width: 100%;
}

.lcs-order-section {
	background: #fff;
}

.lcs-order-grid {
	display: grid;
	gap: 20px;
}

.lcs-step-list {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.lcs-step {
	align-items: center;
	background: var(--lcs-light);
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	display: flex;
	gap: 10px;
	padding: 12px;
}

.lcs-step span {
	align-items: center;
	background: var(--lcs-primary);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	flex: 0 0 auto;
	font-weight: 900;
	height: 32px;
	justify-content: center;
	width: 32px;
}

.lcs-step p {
	font-weight: 800;
	margin: 0;
}

.lcs-order-card {
	padding: 18px;
}

.lcs-order-card h2,
.lcs-order-card h3 {
	margin: 0 0 14px;
}

.lcs-fast-order-form {
	display: grid;
	gap: 10px;
}

.lcs-fast-order-form label {
	font-weight: 800;
}

.lcs-fast-order-form input,
.lcs-search-form input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-input-wrapper .select2-selection {
	background: #fff;
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	color: var(--lcs-text);
	min-height: 46px;
	padding: 11px 12px;
	width: 100%;
}

.lcs-fast-order-form input:focus,
.lcs-search-form input:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
	border-color: var(--lcs-primary);
	box-shadow: 0 0 0 3px rgba(23, 181, 183, 0.14);
	outline: 0;
}

.lcs-form-product {
	background: var(--lcs-light);
	border-radius: var(--lcs-radius-small);
	font-weight: 800;
	margin: 0;
	padding: 8px 10px;
}

.lcs-form-help {
	color: var(--lcs-muted);
	font-size: 0.88rem;
	margin: 0;
}

.lcs-form-message {
	border-radius: var(--lcs-radius-small);
	padding: 10px;
}

.lcs-form-success {
	background: rgba(22, 163, 74, 0.1);
	color: var(--lcs-success);
}

.lcs-form-error {
	background: rgba(239, 68, 68, 0.1);
	color: var(--lcs-sale);
}

.lcs-review-grid,
.lcs-info-grid,
.lcs-benefit-grid,
.lcs-gallery-grid {
	display: grid;
	gap: 14px;
}

.lcs-review-card,
.lcs-info-card,
.lcs-benefit-card,
.lcs-policy-item {
	padding: 16px;
}

.lcs-stars {
	color: #f59e0b;
	font-size: 0.95rem;
	font-weight: 900;
	margin-bottom: 8px;
}

.lcs-review-card p {
	color: var(--lcs-muted);
	margin: 0 0 12px;
}

.lcs-faq-list {
	display: grid;
	gap: 10px;
}

.lcs-faq-item {
	background: #fff;
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	overflow: hidden;
}

.lcs-faq-question {
	align-items: center;
	background: #fff;
	border: 0;
	color: var(--lcs-text);
	display: flex;
	font-weight: 900;
	gap: 12px;
	justify-content: space-between;
	padding: 15px;
	text-align: left;
	width: 100%;
}

.lcs-faq-question span:last-child {
	align-items: center;
	background: var(--lcs-light);
	border-radius: 999px;
	color: var(--lcs-secondary);
	display: inline-flex;
	flex: 0 0 auto;
	height: 26px;
	justify-content: center;
	width: 26px;
}

.lcs-faq-answer {
	border-top: 1px solid var(--lcs-border);
	color: var(--lcs-muted);
	padding: 0 15px 15px;
}

.lcs-faq-answer p {
	margin: 12px 0 0;
}

.lcs-site-footer {
	color: #fff;
}

.lcs-footer-main {
	display: grid;
	gap: 24px;
	padding-bottom: 34px;
	padding-top: 38px;
}

.lcs-site-footer h2,
.lcs-site-footer h3 {
	margin: 0 0 12px;
}

.lcs-site-footer p,
.lcs-site-footer a {
	color: rgba(255, 255, 255, 0.78);
}

.lcs-footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lcs-footer-links li + li {
	margin-top: 8px;
}

.lcs-footer-whatsapp {
	color: #fff;
	font-weight: 800;
}

.lcs-socials {
	display: flex;
	gap: 8px;
	margin-top: 14px;
}

.lcs-socials a {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--lcs-radius-small);
	display: inline-flex;
	font-weight: 900;
	height: 36px;
	justify-content: center;
	width: 42px;
}

.lcs-footer-widgets {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: grid;
	gap: 20px;
	padding-bottom: 26px;
	padding-top: 26px;
}

.lcs-footer-bottom {
	background: rgba(0, 0, 0, 0.18);
	padding: 14px 0;
}

.lcs-footer-bottom p {
	font-size: 0.88rem;
	margin: 0;
}

.lcs-content-page {
	padding: 36px 0;
}

.lcs-page-header {
	margin-bottom: 24px;
}

.lcs-page-header p,
.lcs-entry-summary,
.lcs-entry-content {
	color: var(--lcs-muted);
}

.lcs-page-content,
.lcs-empty-state,
.lcs-callout {
	background: #fff;
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	box-shadow: var(--lcs-shadow-soft);
	padding: 18px;
}

.lcs-entry-content a {
	color: var(--lcs-secondary);
	font-weight: 800;
}

.lcs-entry-content img,
.lcs-single-thumb img {
	border-radius: var(--lcs-radius);
}

.lcs-post-list,
.lcs-policy-list {
	display: grid;
	gap: 16px;
}

.lcs-post-card {
	overflow: hidden;
}

.lcs-post-card-body {
	padding: 16px;
}

.lcs-post-card h2 {
	font-size: 1.25rem;
	margin: 0 0 8px;
}

.lcs-entry-meta {
	color: var(--lcs-muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.lcs-search-form {
	display: grid;
	gap: 10px;
}

.lcs-callout {
	background: var(--lcs-light);
	margin: 20px 0;
}

.lcs-two-column {
	display: grid;
	gap: 20px;
}

.lcs-two-column p,
.lcs-benefit-card p,
.lcs-policy-item p {
	color: var(--lcs-muted);
	margin-bottom: 0;
}

.lcs-benefit-card h3,
.lcs-info-card h2,
.lcs-policy-item h2 {
	font-size: 1.08rem;
	margin: 0 0 8px;
}

.lcs-gallery-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lcs-gallery-grid img {
	aspect-ratio: 1 / 1;
	background: var(--lcs-light);
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	object-fit: cover;
	width: 100%;
}

.lcs-landing-body {
	background: #fff;
}

.lcs-landing-header {
	background: #fff;
	border-bottom: 1px solid var(--lcs-border);
	position: sticky;
	top: 0;
	z-index: 50;
}

.admin-bar .lcs-landing-header {
	top: 46px;
}

.lcs-landing-header-inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 64px;
}

.lcs-landing-phone {
	color: var(--lcs-secondary);
	font-weight: 900;
}

.lcs-landing-hero {
	background: var(--lcs-light);
	padding: 34px 0;
}

.lcs-landing-media {
	background: #fff;
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	box-shadow: var(--lcs-shadow);
	padding: 16px;
	position: relative;
}

.lcs-landing-media img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
}

.lcs-landing-discount {
	left: 20px;
	top: 20px;
}

.lcs-benefit-list {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 18px 0;
	padding: 0;
}

.lcs-benefit-list li {
	align-items: center;
	display: flex;
	font-weight: 800;
	gap: 8px;
}

.lcs-benefit-list li::before {
	background: var(--lcs-success);
	border-radius: 999px;
	content: "";
	display: inline-block;
	height: 9px;
	width: 9px;
}

.lcs-price-block {
	align-items: baseline;
	display: flex;
	gap: 10px;
	margin: 18px 0;
}

.lcs-price-block del {
	color: var(--lcs-muted);
	font-size: 1.05rem;
}

.lcs-price-block ins {
	color: var(--lcs-sale);
	font-size: 2rem;
	font-weight: 900;
	text-decoration: none;
}

.lcs-sticky-cta {
	background: var(--lcs-sale);
	border: 0;
	border-radius: var(--lcs-radius);
	bottom: 12px;
	box-shadow: var(--lcs-shadow);
	color: #fff;
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
	left: 12px;
	min-height: 50px;
	padding: 14px 18px;
	position: fixed;
	right: 12px;
	transition: transform 0.18s ease, opacity 0.18s ease;
	z-index: 80;
}

.lcs-sticky-cta.is-hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(18px);
}

.lcs-landing-order {
	padding-bottom: 86px;
}

.woocommerce .woocommerce-breadcrumb {
	color: var(--lcs-muted);
	font-size: 0.9rem;
	margin: 20px 0;
}

.woocommerce .products ul,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: #fff;
	border: 1px solid var(--lcs-border);
	float: none;
	margin: 0;
	overflow: hidden;
	padding: 0 0 12px;
	width: auto;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 1;
	background: var(--lcs-light);
	margin: 0 0 10px;
	object-fit: cover;
	width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .star-rating {
	margin-left: 10px;
	margin-right: 10px;
}

.woocommerce span.onsale {
	background: var(--lcs-sale);
	border-radius: var(--lcs-radius-small);
	font-weight: 900;
	left: 8px;
	line-height: 1;
	min-height: 0;
	min-width: 0;
	padding: 7px 8px;
	top: 8px;
}

.woocommerce div.product {
	margin-top: 24px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: 100%;
}

.woocommerce div.product div.images img {
	background: var(--lcs-light);
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
}

.woocommerce div.product .product_title {
	font-size: 2rem;
	line-height: 1.14;
	margin-bottom: 10px;
}

.woocommerce div.product form.cart {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0;
}

.woocommerce .quantity .qty {
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	min-height: 44px;
	padding: 8px;
	width: 74px;
}

.lcs-product-order-box {
	display: grid;
	gap: 14px;
	margin-top: 18px;
}

.lcs-product-faq,
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
	clear: both;
}

.lcs-delivery-note {
	background: var(--lcs-light);
	border-radius: var(--lcs-radius);
	padding: 14px;
}

.lcs-delivery-note p {
	color: var(--lcs-muted);
	margin: 6px 0 0;
}

.woocommerce table.shop_table {
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	overflow: hidden;
}

.woocommerce table.shop_table th {
	background: var(--lcs-light);
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details {
	background: #fff;
	border: 1px solid var(--lcs-border);
	border-radius: var(--lcs-radius);
	box-shadow: var(--lcs-shadow-soft);
	padding: 16px;
}

.woocommerce-checkout #payment {
	background: var(--lcs-light);
	border-radius: var(--lcs-radius);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--lcs-primary);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--lcs-secondary);
}

.woocommerce-error::before {
	color: var(--lcs-sale);
}

@media (min-width: 640px) {
	.lcs-trust-badges,
	.lcs-review-grid,
	.lcs-info-grid,
	.lcs-benefit-grid,
	.lcs-footer-widgets {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcs-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcs-step-list-horizontal {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 783px) {
	.admin-bar .lcs-site-header,
	.admin-bar .lcs-landing-header {
		top: 32px;
	}
}

@media (min-width: 860px) {
	.lcs-section {
		padding: 58px 0;
	}

	.lcs-search-desktop {
		display: flex;
	}

	.lcs-search-mobile {
		display: none;
	}

	.lcs-category-toggle {
		display: inline-flex;
	}

	.lcs-contact-link {
		display: block;
		font-size: 0.8rem;
		line-height: 1.15;
		min-width: 130px;
	}

	.lcs-contact-link span {
		color: var(--lcs-muted);
		display: block;
	}

	.lcs-contact-link strong {
		color: var(--lcs-text);
		display: block;
	}

	.lcs-mobile-toggle {
		display: none;
	}

	.lcs-primary-nav {
		display: block;
	}

	.lcs-menu {
		align-items: center;
		flex-direction: row;
		gap: 22px;
		padding: 0;
	}

	.lcs-menu a {
		padding: 12px 0;
	}

	.lcs-mega-menu {
		left: 50%;
		max-width: 1120px;
		right: auto;
		transform: translateX(-50%);
		width: calc(100vw - 32px);
	}

	.lcs-mega-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.lcs-hero-grid,
	.lcs-landing-hero-grid,
	.lcs-order-grid,
	.lcs-two-column {
		align-items: center;
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	}

	.lcs-hero-content h1,
	.lcs-landing-copy h1 {
		font-size: 3.25rem;
	}

	.lcs-trust-badges {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.lcs-category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.lcs-product-grid,
	.woocommerce .products ul,
	.woocommerce ul.products {
		gap: 16px;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.lcs-review-grid,
	.lcs-info-grid,
	.lcs-benefit-grid,
	.lcs-footer-main,
	.lcs-footer-widgets {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.lcs-step-list-horizontal {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.lcs-gallery-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.lcs-post-card {
		display: grid;
		grid-template-columns: 280px 1fr;
	}

	.woocommerce div.product div.images {
		float: left;
		width: 48%;
	}

	.woocommerce div.product div.summary {
		float: right;
		width: 48%;
	}

	.lcs-sticky-cta {
		display: none;
	}
}

@media (min-width: 1080px) {
	.lcs-mega-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* Marketplace homepage redesign. */
:root {
	--lcs-black-1: #18232e;
	--lcs-black-2: #131d28;
	--lcs-yellow: #f9c64d;
	--lcs-yellow-dark: #e9b63c;
	--lcs-primary: #13b7bd;
	--lcs-secondary: #0a818f;
	--lcs-card: #ffffff;
	--lcs-text: #1c2332;
	--lcs-muted: #667085;
	--lcs-border: #e4e8ee;
	--lcs-sale: #ef2b7a;
	--lcs-shadow: 0 16px 38px rgba(17, 24, 39, 0.08);
	--lcs-market-max: 1320px;
	--lcs-navy: #1b2342;
	--lcs-header-line: #e5ebf2;
}

body {
	background: var(--lcs-bg);
}

.lcs-container {
	max-width: var(--lcs-market-max);
}

.lcs-market-header {
	background: transparent;
	border-bottom: 0;
	position: relative;
	top: auto;
	z-index: 40;
}

.top-header {
	background: #fafcfe;
	border-bottom: 1px solid var(--lcs-header-line);
	color: var(--lcs-muted);
	padding: 0 18px;
}

.top-inner {
	align-items: center;
	display: grid;
	gap: 18px;
	grid-template-columns: auto auto auto auto minmax(0, 1fr);
	height: 36px;
	margin: 0 auto;
	max-width: var(--lcs-market-max);
}

.brand,
.brand-wrap .custom-logo-link {
	align-items: center;
	display: flex;
	gap: 7px;
	min-width: 94px;
}

.brand-mark {
	align-items: center;
	background: rgba(19, 183, 189, 0.1);
	border-radius: 7px;
	display: inline-flex;
	height: 24px;
	justify-content: center;
	width: 24px;
}

.brand-dot {
	background: var(--lcs-primary);
	border-radius: 50%;
	height: 12px;
	width: 12px;
}

.brand-name {
	color: var(--lcs-primary);
	font-size: 23px;
	font-weight: 900;
	letter-spacing: -1.6px;
	line-height: 1;
}

.brand-wrap .custom-logo {
	max-height: 25px;
	width: auto;
}

.top-link {
	color: #5f6f84;
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0;
	opacity: 1;
	white-space: nowrap;
}

.top-link:hover,
.top-link:focus {
	color: var(--lcs-primary);
}

.top-phone {
	align-items: center;
	color: var(--lcs-navy);
	display: inline-flex;
	font-size: 12.5px;
	font-weight: 700;
	gap: 7px;
	justify-self: end;
	white-space: nowrap;
}

.top-phone-icon {
	color: var(--lcs-primary);
	display: inline-flex;
	height: 17px;
	width: 17px;
}

.top-phone-icon svg,
.search-loupe,
.favorite-icon svg,
.account-icon svg,
.cart-icon svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.nav-bar {
	background: #ffffff;
	border-bottom: 1px solid var(--lcs-header-line);
	box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
	color: var(--lcs-navy);
	padding: 10px 18px;
	position: sticky;
	top: 0;
	z-index: 60;
}

.admin-bar .nav-bar {
	top: 46px;
}

.nav-inner {
	align-items: center;
	display: grid;
	gap: 12px;
	grid-template-columns: 206px minmax(280px, 1fr) 96px 80px 80px;
	height: 44px;
	margin: 0 auto;
	max-width: var(--lcs-market-max);
	position: relative;
}

.lcs-market-category-menu {
	position: static;
}

.nav-all {
	align-items: center;
	background: var(--lcs-primary);
	border: 0;
	border-radius: 9px;
	color: #ffffff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	height: 42px;
	justify-content: center;
	padding: 0 13px;
	white-space: nowrap;
	width: 100%;
}

.nav-all:hover,
.nav-all:focus {
	background: var(--lcs-secondary);
	color: #ffffff;
}

.nav-all-icon {
	align-items: center;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 7px;
	display: inline-flex;
	height: 26px;
	justify-content: center;
	width: 26px;
}

.nav-all .lcs-icon-lines,
.nav-all .lcs-icon-lines::before,
.nav-all .lcs-icon-lines::after {
	background: #ffffff;
	height: 1.6px;
	width: 16px;
}

.lcs-market-search {
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	min-height: 0;
}

.lcs-market-search:focus-within {
	box-shadow: 0 0 0 2px rgba(19, 183, 189, 0.18);
}

.lcs-market-search input {
	background: #fff;
	border: 0;
	color: #111827;
	font-size: 14px;
	min-width: 0;
	outline: none;
	padding: 0 15px;
}

.lcs-market-search button {
	align-items: center;
	background: var(--lcs-primary);
	border: 0;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 7px;
	height: auto;
	justify-content: center;
	letter-spacing: 0;
	width: auto;
}

.lcs-market-search button:hover,
.lcs-market-search button:focus {
	background: var(--lcs-secondary);
	color: #ffffff;
}

.search-loupe {
	display: block;
	flex: 0 0 18px;
	height: 18px;
	width: 18px;
}

.favorite,
.account,
.cart {
	align-items: center;
	border-radius: 9px;
	color: var(--lcs-navy);
	display: flex;
	font-size: 12.5px;
	font-weight: 500;
	gap: 7px;
	height: 40px;
	justify-content: center;
	padding: 0 4px;
	position: relative;
	transition: background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.favorite:hover,
.favorite:focus,
.account:hover,
.account:focus,
.cart:hover,
.cart:focus {
	background: #f4f8fb;
	color: var(--lcs-primary);
}

.favorite-icon,
.account-icon,
.cart-icon {
	color: var(--lcs-navy);
	display: inline-flex;
	height: 22px;
	line-height: 1;
	width: 22px;
}

.favorite-icon svg,
.account-icon svg,
.cart-icon svg {
	height: 100%;
	width: 100%;
}

.favorite strong,
.account strong,
.cart strong {
	color: currentColor;
	display: block;
	font-size: 12.8px;
	font-weight: 600;
	letter-spacing: 0;
	margin-top: 0;
}

.cart {
	justify-content: center;
}

.cart-count {
	align-items: center;
	background: var(--lcs-primary);
	border: 2px solid #ffffff;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	height: 18px;
	justify-content: center;
	left: 18px;
	min-width: 18px;
	padding: 0 5px;
	position: absolute;
	top: -5px;
}

.lcs-market-header .lcs-mega-menu {
	border-radius: 12px;
	left: 0;
	max-height: min(72vh, 620px);
	padding: 14px;
	right: 0;
	top: calc(100% + 10px);
	transform: none;
	width: auto;
}

.lcs-market-header .lcs-mega-grid {
	gap: 12px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lcs-market-header .lcs-mega-group {
	border-color: var(--lcs-border);
	box-shadow: none;
}

.lcs-market-main {
	--lcs-hero-pull: 0;
	background: #f6f8fb;
	padding-top: 0;
	transition: background 0.45s ease;
}

.hero-banner {
	background: #f6fbf8;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	height: clamp(340px, 33.41vw, 560px);
	margin: 0;
	max-width: none;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.hero-banner::before {
	display: none;
}

.hero-banner::after {
	display: none;
}

.hero-banner-image {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.hero-inner {
	display: grid;
	gap: 18px;
	height: 100%;
	margin: 0 auto;
	max-width: var(--lcs-market-max);
	position: relative;
	text-align: left;
	z-index: 4;
}

.hero-accent {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
}

.hero-accent span {
	border-radius: 999px;
	display: block;
	height: 6px;
}

.hero-accent span:first-child {
	background: #ffffff;
	width: 82px;
}

.hero-accent span:last-child {
	background: #14c9d4;
	width: 46px;
}

.hero-copy h1 {
	color: #ffffff;
	font-size: clamp(44px, 4.1vw, 64px);
	line-height: 1.02;
	margin: 0 0 12px;
}

.hero-copy p {
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(18px, 1.6vw, 25px);
	font-weight: 500;
	line-height: 1.35;
	margin: 0;
}

.hero-cta {
	background: #111827;
	border-left: 6px solid #14c9d4;
	border-radius: 8px;
	box-shadow: 0 14px 28px rgba(91, 38, 0, 0.24);
	color: #ffffff;
	display: inline-flex;
	font-size: 17px;
	font-weight: 950;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1;
	min-height: 48px;
	min-width: 220px;
	padding: 15px 20px;
	transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-cta:hover,
.hero-cta:focus {
	background: #020617;
	box-shadow: 0 17px 32px rgba(91, 38, 0, 0.3);
	color: #ffffff;
	transform: translateY(-2px);
}

.hero-visuals {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
}

.summer-card,
.travel-card,
.auto-card {
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.summer-card {
	background: #fffdf3;
	border-radius: 18px;
	height: 108px;
	overflow: hidden;
	position: relative;
	transform: rotate(-6deg);
	width: 92px;
}

.summer-card::before {
	background: linear-gradient(135deg, #ffd36a, #ff9f3f);
	border-radius: 15px;
	content: "";
	height: 54px;
	left: 19px;
	position: absolute;
	top: 17px;
	width: 54px;
}

.summer-card::after {
	bottom: 11px;
	color: #26323c;
	content: "Bağ & Yay";
	font-size: 10.5px;
	font-weight: 900;
	left: 11px;
	position: absolute;
}

.travel-card {
	background: #fff;
	border-radius: 18px;
	height: 66px;
	position: relative;
	transform: rotate(-3deg);
	width: 126px;
}

.travel-card::before {
	background: linear-gradient(135deg, var(--lcs-primary), var(--lcs-secondary));
	border-radius: 13px;
	content: "";
	height: 40px;
	left: 13px;
	position: absolute;
	top: 13px;
	width: 40px;
}

.travel-card::after {
	bottom: 12px;
	color: #26323c;
	content: "Səyahət";
	font-size: 10.5px;
	font-weight: 900;
	position: absolute;
	right: 12px;
	text-align: right;
}

.auto-card {
	background: #fff;
	border-radius: 22px;
	height: 88px;
	justify-self: center;
	overflow: hidden;
	position: relative;
	width: 160px;
}

.auto-card::before {
	background: linear-gradient(135deg, #7ddf9a, #31a866);
	border-radius: 14px;
	content: "";
	height: 48px;
	left: 18px;
	position: absolute;
	top: 18px;
	width: 48px;
}

.auto-card::after {
	bottom: 16px;
	color: #26323c;
	content: "Avto yay";
	font-size: 11px;
	font-weight: 900;
	line-height: 1.08;
	position: absolute;
	right: 14px;
	text-align: right;
	width: 70px;
}

.main-wrap {
	margin: var(--lcs-hero-pull) auto 0;
	max-width: var(--lcs-market-max);
	padding: 0 16px 56px;
	position: relative;
	z-index: 6;
}

.wide-strip {
	background: var(--lcs-card);
	border: 1px solid rgba(226, 232, 240, 0.82);
	border-radius: 10px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
	margin-bottom: 24px;
	overflow: hidden;
	padding: 16px;
}

.category-section {
	background: #ffffff;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin: 0 calc(50% - 50vw) 32px;
	overflow: visible;
	padding: 34px max(16px, calc((100vw - var(--lcs-market-max)) / 2 + 16px)) 32px;
}

.lcs-collection-section {
	margin-bottom: 18px;
}

.section-head,
.strip-head {
	align-items: center;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin-bottom: 14px;
}

.section-head h2,
.strip-head h2 {
	color: #111827;
	font-size: 22px;
	letter-spacing: -0.4px;
	line-height: 1.15;
	margin: 0;
}

.section-head a,
.strip-head a {
	color: var(--lcs-secondary);
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
}

.lcs-benefit-icon svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.lcs-benefits-row {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 18px;
}

.lcs-benefit-card {
	align-items: center;
	background: #ffffff;
	border: 1px solid #e4ebf1;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
	display: flex;
	gap: 13px;
	min-width: 0;
	padding: 15px 16px;
}

.lcs-benefit-icon {
	align-items: center;
	background: linear-gradient(135deg, #e9fbfb 0%, #d9f8f8 100%);
	border-radius: 14px;
	color: var(--lcs-secondary);
	display: inline-flex;
	flex: 0 0 46px;
	height: 46px;
	justify-content: center;
	width: 46px;
}

.lcs-benefit-icon svg {
	height: 22px;
	width: 22px;
}

.lcs-benefit-copy {
	display: block;
	min-width: 0;
}

.lcs-benefit-copy strong,
.lcs-benefit-copy small {
	display: block;
}

.lcs-benefit-copy strong {
	color: #1f2937;
	font-size: 14.5px;
	font-weight: 900;
	line-height: 1.25;
}

.lcs-benefit-copy small {
	color: #64748b;
	font-size: 12.5px;
	font-weight: 650;
	line-height: 1.35;
	margin-top: 4px;
}

.product-row {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.lcs-product-card {
	position: relative;
}

.product-row .lcs-product-card {
	display: block;
	min-width: 0;
	overflow: hidden;
	position: relative;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-row .lcs-discount-badge {
	display: inline-flex;
	position: absolute;
	z-index: 4;
}

.product-row .lcs-product-image {
	align-items: center;
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.product-row .lcs-product-image img {
	background: transparent;
	border-radius: 0;
	transition: transform 0.22s ease;
}

.product-row .lcs-product-body {
	display: block;
}

.product-row .lcs-product-category,
.product-row .lcs-product-actions {
	display: none;
}
.product-row .lcs-product-title a:focus {
	color: var(--lcs-secondary);
}

.product-row .lcs-product-rating {
	align-items: center;
	display: flex;
	line-height: 1;
}

.product-row .lcs-rating-stars {
	white-space: nowrap;
}

.product-row .lcs-rating-count {
	white-space: nowrap;
}

.product-row .lcs-product-price {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}

.product-row .lcs-product-price ins,
.product-row .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-price > span {
	text-decoration: none;
}

.product-row .lcs-product-price del {
	margin-left: 0;
}

.lcs-site-footer {
	background: var(--lcs-black-1);
	margin-top: 0;
}

.woocommerce .products ul,
.woocommerce ul.products {
	gap: 12px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	border-radius: 12px;
	box-shadow: var(--lcs-shadow);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.lcs-button-primary {
	background: var(--lcs-primary);
	color: #ffffff;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.lcs-button-primary:hover,
.lcs-button-primary:focus {
	background: var(--lcs-secondary);
	color: #ffffff;
}

@media (min-width: 783px) {
	.admin-bar .nav-bar {
		top: 32px;
	}
}

@media (max-width: 1180px) {
	.lcs-market-main {
		--lcs-hero-pull: 0;
		padding-top: 0;
	}

	.top-inner {
		gap: 8px 14px;
		grid-template-columns: 1fr auto;
		height: auto;
		padding: 8px 0;
	}

	.brand-wrap {
		grid-column: 1 / 2;
	}

	.brand-name {
		font-size: 26px;
	}

	.top-phone {
		grid-column: 2;
		grid-row: 1;
	}

	.top-link {
		font-size: 12px;
		grid-column: 1 / -1;
	}

	.nav-inner {
		gap: 8px;
		grid-template-columns: 1fr 42px 42px 46px;
		height: auto;
	}

	.lcs-market-category-menu {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.nav-all {
		height: 42px;
		justify-content: flex-start;
	}

	.lcs-market-search {
		grid-column: 1 / -1;
		grid-row: 2;
		grid-template-columns: minmax(0, 1fr) 82px;
		height: 42px;
	}

	.favorite {
		grid-column: 2;
		grid-row: 3;
	}

	.account {
		grid-column: 3;
		grid-row: 3;
	}

	.cart {
		grid-column: 4;
		grid-row: 3;
	}

	.favorite strong,
	.account strong,
	.cart strong {
		display: none;
	}

	.cart-count {
		left: 6px;
	}

	.lcs-market-header .lcs-mega-menu {
		top: calc(100% + 8px);
	}

	.lcs-market-header .lcs-mega-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-banner {
		height: clamp(340px, 33.41vw, 500px);
		width: 100%;
	}

	.hero-banner::before {
		display: none;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		padding: 34px 28px 74px;
		text-align: left;
	}

	.hero-visuals,
	.auto-card {
		display: none;
	}

	.hero-copy h1,
	.hero-copy p {
		margin-left: 0;
		margin-right: 0;
	}

	.hero-copy h1 {
		font-size: clamp(40px, 5.4vw, 50px);
	}

	.hero-copy p {
		font-size: 21px;
	}

	.product-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media (max-width: 1023px) {
	.hero-banner {
		display: none;
	}
}

@media (max-width: 900px) {
	.lcs-benefits-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.lcs-market-main {
		--lcs-hero-pull: 0;
		padding-top: 0;
	}

	.top-header,
	.nav-bar {
		padding-left: 12px;
		padding-right: 12px;
	}

	.top-link {
		display: none;
	}

	.brand-name {
		font-size: 24px;
	}

	.top-phone {
		font-size: 12px;
	}

	.lcs-market-search button span {
		display: none;
	}

	.lcs-market-search {
		grid-template-columns: minmax(0, 1fr) 54px;
	}

	.main-wrap {
		padding: 0 12px 34px;
	}

	.wide-strip {
		border-radius: 12px;
		padding: 10px;
	}

	.hero-banner {
		display: none;
	}

	.hero-banner::before {
		display: none;
	}

	.hero-banner::after {
		display: none;
	}

	.hero-inner {
		padding: 30px 22px 56px;
	}

	.hero-accent {
		gap: 8px;
		margin-bottom: 12px;
	}

	.hero-accent span {
		height: 6px;
	}

	.hero-accent span:first-child {
		width: 66px;
	}

	.hero-accent span:last-child {
		width: 36px;
	}

	.hero-copy h1 {
		font-size: 34px;
		max-width: 260px;
	}

	.hero-copy p {
		font-size: 16px;
		max-width: 300px;
		margin-bottom: 0;
	}

	.hero-cta {
		font-size: 14px;
		min-height: 42px;
		min-width: 188px;
		padding: 13px 16px;
	}

	.lcs-benefits-row {
		grid-template-columns: 1fr;
	}

	.lcs-benefit-card {
		padding: 13px;
	}

	.product-row {
		gap: 10px;
	}

	.product-row .lcs-product-card {
		padding: 9px;
	}

	.product-row .lcs-product-image img {
		aspect-ratio: 1 / 1;
		height: auto;
	}

	.strip-head h2 {
		font-size: 20px;
	}

	.lcs-market-header .lcs-mega-menu {
		left: -4px;
		right: -4px;
	}

	.lcs-market-header .lcs-mega-grid {
		grid-template-columns: 1fr;
	}
}

/* Mobile header follows scroll direction on every theme page. */
@media (max-width: 859px) {
	.lcs-site-header,
	.lcs-landing-header {
		transition: transform .22s ease;
		will-change: transform;
	}

	.lcs-site-header.is-scroll-hidden,
	.lcs-landing-header.is-scroll-hidden {
		transform: translate3d(0, calc(-100% - 48px), 0);
	}
}

@media (max-width: 859px) and (prefers-reduced-motion: reduce) {
	.lcs-site-header,
	.lcs-landing-header {
		transition: none;
	}
}

.single-product .woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product form.cart .single_add_to_cart_button,
.single-product .single_add_to_cart_button.button,
.single-product .single_add_to_cart_button.button.alt {
	background: var(--lcs-primary);
	border-color: var(--lcs-primary);
	color: #fff;
}
.single-product .single_add_to_cart_button.button:focus,
.single-product .single_add_to_cart_button.button.alt:focus {
	background: var(--lcs-secondary);
	border-color: var(--lcs-secondary);
	color: #fff;
}

.lcs-cart-drawer {
	box-shadow: -18px 0 40px rgba(15, 23, 42, 0.2);
	right: 0;
	top: 0;
}

.admin-bar .lcs-cart-drawer {
	height: calc(100vh - 32px);
	top: 32px;
}

.lcs-cart-drawer.is-open {
	transform: translateX(0);
}

.lcs-cart-drawer-head {
	align-items: center;
	border-bottom: 1px solid var(--lcs-border);
	display: flex;
	justify-content: space-between;
	padding: 18px 18px 14px;
}

.lcs-cart-drawer-head h2 {
	font-size: 1.25rem;
	margin: 0;
}

.lcs-cart-drawer-close {
	align-items: center;
	background: #0f0f0f;
	border: 0;
	border-radius: 8px;
	color: #fff;
	display: inline-flex;
	font-size: 24px;
	height: 38px;
	justify-content: center;
	line-height: 1;
	width: 38px;
}

.lcs-cart-drawer-notice {
	background: rgba(22, 163, 74, 0.1);
	border: 1px solid rgba(22, 163, 74, 0.18);
	border-radius: 8px;
	color: var(--lcs-success);
	font-weight: 800;
	margin: 14px 18px 0;
	padding: 10px 12px;
}

.lcs-cart-drawer .widget_shopping_cart_content {
	flex: 1;
	overflow: auto;
}

.lcs-cart-drawer .woocommerce-mini-cart {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lcs-cart-drawer .woocommerce-mini-cart-item img {
	background: var(--lcs-light);
}

.lcs-cart-drawer .woocommerce-mini-cart-item a {
	font-weight: 800;
}

.lcs-cart-drawer .woocommerce-mini-cart-item .remove {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
}

.lcs-cart-drawer .quantity,
.lcs-cart-drawer .total {
	color: var(--lcs-muted);
	font-weight: 700;
}

.lcs-cart-drawer .total {
	border-top: 1px solid var(--lcs-border);
	padding-top: 14px;
}

.lcs-cart-drawer .buttons {
	display: grid;
	gap: 10px;
	margin: 0;
}

.lcs-cart-drawer .buttons .button {
	background: var(--lcs-navy);
	color: #fff;
	text-align: center;
}

.lcs-cart-drawer .buttons .button.checkout {
	background: var(--lcs-primary);
	color: #ffffff;
}

.lcs-cart-toast {
	border-radius: 8px;
	font-weight: 800;
	left: 50%;
	opacity: 0;
	padding: 12px 16px;
	pointer-events: none;
	position: fixed;
	top: 18px;
	transform: translate(-50%, -10px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.lcs-cart-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

@media (max-width: 782px) {
	.admin-bar .lcs-cart-drawer {
		height: calc(100vh - 46px);
		top: 46px;
	}
}

.hero-inner {
	align-items: center;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
	justify-items: stretch;
	padding: clamp(28px, 3vw, 42px) clamp(24px, 4vw, 58px);
}

.hero-copy {
	margin-left: clamp(12px, 2.5vw, 40px);
	margin-top: 0;
	max-width: 560px;
}

.hero-copy h1 {
	font-weight: 800;
	letter-spacing: -0.02em;
	text-shadow: 0 8px 22px rgba(4, 42, 58, 0.16);
}

.hero-copy p {
	text-shadow: 0 6px 18px rgba(4, 42, 58, 0.12);
}

.hero-benefits {
	display: grid;
	gap: 12px;
	justify-self: end;
	max-width: 370px;
	position: relative;
	width: 100%;
	z-index: 4;
}

.hero-benefit-card {
	align-items: center;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 18px;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
	display: flex;
	gap: 13px;
	padding: 14px 15px;
}

.hero-benefit-icon {
	align-items: center;
	background: linear-gradient(135deg, #f0fcfd 0%, #def7f8 100%);
	border-radius: 14px;
	color: var(--lcs-secondary);
	display: inline-flex;
	flex: 0 0 46px;
	height: 46px;
	justify-content: center;
	width: 46px;
}

.hero-benefit-icon svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	height: 22px;
	width: 22px;
}

.hero-benefit-copy {
	display: block;
	min-width: 0;
}

.hero-benefit-copy strong,
.hero-benefit-copy small {
	display: block;
}

.hero-benefit-copy strong {
	color: #17324a;
	font-size: 14.5px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
}

.hero-benefit-copy small {
	color: #607389;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.35;
	margin-top: 4px;
}

.lcs-benefits-mobile {
	display: none;
}

@media (max-width: 1279px) {
	.hero-inner {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	}

	.hero-copy {
		max-width: 500px;
	}
}

@media (max-width: 1023px) {
	.hero-benefits {
		display: none;
	}

	.lcs-benefits-mobile {
		display: grid;
		grid-template-columns: 1fr;
		margin-top: 16px;
	}
}

.product-row {
	gap: 18px;
}

.product-row .lcs-product-card {
	background: #ffffff;
	border: 1px solid #e3eaf1;
	border-radius: 18px;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.045);
	padding: 14px;
}

.product-row .lcs-discount-badge {
	background: linear-gradient(135deg, #ffe36d 0%, #ffd43b 100%);
	border: 1px solid rgba(180, 121, 0, 0.12);
	border-radius: 999px;
	box-shadow: 0 5px 12px rgba(255, 212, 59, 0.28);
	color: #111827;
	font-size: 13px;
	font-weight: 800;
	left: 22px;
	letter-spacing: 0;
	line-height: 1;
	min-width: 68px;
	padding: 9px 13px;
	text-align: center;
	top: 20px;
}

.product-row .lcs-product-image {
	background: #f7f9fb;
	border-radius: 14px;
	box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.7);
	height: 190px;
	margin-bottom: 15px;
}

.product-row .lcs-product-image img {
	aspect-ratio: auto;
	height: 100%;
	object-fit: cover;
	object-position: center;
	padding: 0;
	width: 100%;
}

.product-row .lcs-product-body {
	padding: 0 4px 4px;
}

.product-row .lcs-product-title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: #202938;
	display: -webkit-box;
	font-size: 15.5px;
	font-weight: 750;
	letter-spacing: 0;
	line-height: 1.24;
	margin: 0 0 12px;
	min-height: 58px;
	overflow: hidden;
}

.product-row .lcs-product-title a {
	color: inherit;
}

.product-row .lcs-product-rating {
	gap: 6px;
	margin: -4px 0 10px;
	min-height: 16px;
}

.product-row .lcs-rating-stars {
	color: #f5b301;
	font-size: 13px;
	letter-spacing: -0.2px;
}

.product-row .lcs-rating-count {
	color: #667085;
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0;
}

.product-row .lcs-product-price {
	align-items: baseline;
	gap: 8px;
	min-height: 28px;
}

.product-row .lcs-product-price ins,
.product-row .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-price > span {
	color: #111827;
	font-size: 24px;
	font-weight: 850;
	letter-spacing: -0.25px;
	line-height: 1;
}

.product-row .lcs-product-price del {
	color: #98a2b3;
	font-size: 14.5px;
	font-weight: 650;
	letter-spacing: 0;
	line-height: 1;
	text-decoration-thickness: 1.4px;
}

@media (max-width: 1279px) {
	.product-row .lcs-product-image {
		height: 170px;
	}

	.product-row .lcs-product-title {
		font-size: 14.5px;
		min-height: 54px;
	}

	.product-row .lcs-product-price ins,
	.product-row .lcs-product-price > .woocommerce-Price-amount,
	.product-row .lcs-product-price > span {
		font-size: 22px;
	}
}

@media (max-width: 640px) {
	.product-row {
		gap: 12px;
	}

	.product-row .lcs-product-card {
		border-radius: 15px;
		padding: 10px;
	}

	.product-row .lcs-discount-badge {
		font-size: 11px;
		left: 14px;
		min-width: 54px;
		padding: 7px 10px;
		top: 14px;
	}

	.product-row .lcs-product-image {
		height: 138px;
		margin-bottom: 11px;
	}

	.product-row .lcs-product-title {
		font-size: 13.5px;
		line-height: 1.22;
		margin-bottom: 9px;
		min-height: 50px;
	}

	.product-row .lcs-product-price {
		gap: 5px;
	}

	.product-row .lcs-product-price ins,
	.product-row .lcs-product-price > .woocommerce-Price-amount,
	.product-row .lcs-product-price > span {
		font-size: 20px;
	}

	.product-row .lcs-product-price del {
		font-size: 12px;
	}
}

.lcs-order-success-popup {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 18px;
	position: fixed;
	z-index: 99999;
}

.lcs-order-success-popup[hidden] {
	display: none;
}

.lcs-order-success-popup__backdrop {
	background: rgba(5, 18, 24, 0.58);
	inset: 0;
	position: absolute;
}

.lcs-order-success-popup__box {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 24px 70px rgba(5, 18, 24, 0.24);
	max-width: 420px;
	padding: 30px 24px 24px;
	position: relative;
	text-align: center;
	width: min(100%, 420px);
}

.lcs-order-success-popup__close {
	align-items: center;
	background: var(--lcs-light);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-size: 24px;
	height: 36px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 14px;
	top: 14px;
	width: 36px;
}

.lcs-order-success-popup__icon {
	align-items: center;
	background: rgba(22, 163, 74, 0.12);
	border-radius: 999px;
	color: var(--lcs-success);
	display: inline-flex;
	font-size: 34px;
	font-weight: 900;
	height: 72px;
	justify-content: center;
	margin-bottom: 14px;
	width: 72px;
}

.lcs-order-success-popup h3 {
	font-size: 1.35rem;
	margin: 0 0 8px;
}

.lcs-order-success-popup p {
	color: var(--lcs-muted);
	font-size: 1rem;
	line-height: 1.55;
	margin: 0 0 18px;
}

.lcs-product-grid,
.product-row,
.woocommerce ul.products {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.lcs-product-loop-item {
	float: none;
	margin: 0;
	padding: 0;	
	width: auto;
}

.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card {
	border-radius: 18px;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 376px;
	min-width: 0;
	padding: 0;
	position: relative;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.lcs-product-image,
.product-row .lcs-product-image,
.lcs-product-grid .lcs-product-image,
.woocommerce ul.products .lcs-product-image {
	border-radius: 0;
	height: auto;
	margin: 0;
	position: relative;
}

.lcs-product-image .lcs-product-img,
.product-row .lcs-product-image img,
.lcs-product-grid .lcs-product-image img,
.woocommerce ul.products .lcs-product-image img {
	aspect-ratio: auto;
	left: 0;
	position: absolute;
	top: 0;
	transition: opacity .2s ease, transform .22s ease;
}

.lcs-product-img-primary {
	opacity: 1;
	z-index: 1;
}

.lcs-discount-badge,
.product-row .lcs-discount-badge,
.lcs-product-grid .lcs-discount-badge,
.woocommerce ul.products .lcs-discount-badge {
	align-items: center;
	background: #ffcf35;
	border: 0;
	border-radius: 999px;
	box-shadow: 0 5px 12px rgba(255, 207, 53, .22);
	color: #111827;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	height: 27px;
	justify-content: center;
	left: 12px;
	letter-spacing: -0.02em;
	line-height: 1;
	min-width: 52px;
	padding: 0 10px;
	position: absolute;
	text-align: center;
	top: 12px;
	z-index: 5;
}

.lcs-wishlist-icon {
	align-items: center;
	background: rgba(255, 255, 255, .92);
	border: 1px solid rgba(23, 181, 183, .18);
	border-radius: 999px;
	color: var(--lcs-secondary);
	display: inline-flex;
	font-size: 18px;
	height: 34px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 12px;
	top: 12px;
	width: 34px;
	z-index: 5;
}

.lcs-product-body,
.product-row .lcs-product-body,
.lcs-product-grid .lcs-product-body,
.woocommerce ul.products .lcs-product-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 12px 14px 14px;
}

.lcs-product-category,
.product-row .lcs-product-category,
.lcs-product-trust {
	display: none;
}

.lcs-product-price,
.product-row .lcs-product-price,
.lcs-product-grid .lcs-product-price,
.woocommerce ul.products .lcs-product-price {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 8px;
	min-height: 22px;
	order: 1;
}

.lcs-product-price ins,
.lcs-product-price > .woocommerce-Price-amount,
.lcs-product-price > span,
.product-row .lcs-product-price ins,
.product-row .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-price > span,
.woocommerce ul.products .lcs-product-price ins,
.woocommerce ul.products .lcs-product-price > .woocommerce-Price-amount,
.woocommerce ul.products .lcs-product-price > span {
	color: var(--lcs-secondary);
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.2;
	text-decoration: none;
}

.lcs-product-price del,
.product-row .lcs-product-price del,
.woocommerce ul.products .lcs-product-price del {
	color: #9ca3af;
	font-size: 10.5px;
	font-weight: 650;
	letter-spacing: 0;
	line-height: 1.2;
	opacity: 1;
	text-decoration: line-through;
	text-decoration-thickness: 1px;
}

.lcs-product-title,
.product-row .lcs-product-title,
.lcs-product-grid .lcs-product-title,
.woocommerce ul.products .lcs-product-title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #1f2940;
	display: -webkit-box;
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.4;
	margin: 0;
	min-height: 40px;
	overflow: hidden;
	order: 2;
}

.lcs-product-title a,
.product-row .lcs-product-title a {
	color: inherit;
}

.lcs-product-rating,
.product-row .lcs-product-rating,
.lcs-product-grid .lcs-product-rating,
.woocommerce ul.products .lcs-product-rating {
	align-items: center;
	display: flex;
	gap: 5px;
	margin: 8px 0 0;
	min-height: 18px;
	order: 3;
}

.lcs-rating-stars,
.product-row .lcs-rating-stars,
.woocommerce ul.products .lcs-rating-stars {
	color: #ff9f1a;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1;
}

.lcs-rating-count,
.product-row .lcs-rating-count,
.woocommerce ul.products .lcs-rating-count {
	color: #7b8494;
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
}

.lcs-product-actions,
.product-row .lcs-product-actions,
.lcs-product-grid .lcs-product-actions,
.woocommerce ul.products .lcs-product-actions {
	display: block;
	margin-top: auto;
	order: 4;
	padding-top: 12px;
}

.lcs-card-add,
.product-row .lcs-card-add,
.lcs-product-grid .lcs-card-add,
.woocommerce ul.products .lcs-card-add {
	align-items: center;
	background: rgba(23, 181, 183, .10);
	border: 0;
	border-radius: 8px;
	box-shadow: none;
	color: var(--lcs-secondary);
	display: inline-flex;
	font-size: 12.5px;
	font-weight: 700;
	gap: 9px;
	height: 36px;
	justify-content: center;
	line-height: 1;
	padding: 0 12px;
	text-align: center;
	transition: background .15s ease, color .15s ease, transform .15s ease;
	width: 100%;
}

.lcs-card-add::before {
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 15px;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7.2 18.4a1.8 1.8 0 1 0 0 3.6 1.8 1.8 0 0 0 0-3.6Zm10.1 0a1.8 1.8 0 1 0 0 3.6 1.8 1.8 0 0 0 0-3.6ZM5.1 4.6 4.7 2.8A2.2 2.2 0 0 0 2.5 1H1.4a1.2 1.2 0 0 0 0 2.4h1.1l2.4 11.1a3 3 0 0 0 2.9 2.3h8.9a3 3 0 0 0 2.9-2.2l1.7-6.4A2.1 2.1 0 0 0 19.3 5.5H6.1c-.4 0-.8-.3-1-.9Zm1.6 3.3h12.2l-1.5 5.9a.8.8 0 0 1-.8.6H7.8a.8.8 0 0 1-.8-.6L5.8 7.9h.9Z'/%3E%3C/svg%3E") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7.2 18.4a1.8 1.8 0 1 0 0 3.6 1.8 1.8 0 0 0 0-3.6Zm10.1 0a1.8 1.8 0 1 0 0 3.6 1.8 1.8 0 0 0 0-3.6ZM5.1 4.6 4.7 2.8A2.2 2.2 0 0 0 2.5 1H1.4a1.2 1.2 0 0 0 0 2.4h1.1l2.4 11.1a3 3 0 0 0 2.9 2.3h8.9a3 3 0 0 0 2.9-2.2l1.7-6.4A2.1 2.1 0 0 0 19.3 5.5H6.1c-.4 0-.8-.3-1-.9Zm1.6 3.3h12.2l-1.5 5.9a.8.8 0 0 1-.8.6H7.8a.8.8 0 0 1-.8-.6L5.8 7.9h.9Z'/%3E%3C/svg%3E") center / contain no-repeat;
	width: 15px;
}

@media (max-width: 1279px) {
	.lcs-product-grid,
	.product-row,
	.woocommerce ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.lcs-product-grid,
	.product-row,
	.woocommerce ul.products {
		gap: 12px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcs-product-card,
	.product-row .lcs-product-card,
	.lcs-product-grid .lcs-product-card,
	.woocommerce ul.products .lcs-product-card {
		border-radius: 15px;
		min-height: 332px;
	}

	.lcs-product-body,
	.product-row .lcs-product-body,
	.lcs-product-grid .lcs-product-body,
	.woocommerce ul.products .lcs-product-body {
		padding: 10px 11px 12px;
	}

	.lcs-product-price ins,
	.lcs-product-price > .woocommerce-Price-amount,
	.lcs-product-price > span,
	.product-row .lcs-product-price ins,
	.product-row .lcs-product-price > .woocommerce-Price-amount,
	.product-row .lcs-product-price > span,
	.woocommerce ul.products .lcs-product-price ins,
	.woocommerce ul.products .lcs-product-price > .woocommerce-Price-amount,
	.woocommerce ul.products .lcs-product-price > span {
		font-size: 13.5px;
	}

	.lcs-product-price del,
	.product-row .lcs-product-price del,
	.woocommerce ul.products .lcs-product-price del {
		font-size: 10px;
	}

	.lcs-product-title,
	.product-row .lcs-product-title,
	.lcs-product-grid .lcs-product-title,
	.woocommerce ul.products .lcs-product-title {
		font-size: 12.5px;
		font-weight: 500;
		min-height: 36px;
	}

	.lcs-product-rating,
	.product-row .lcs-product-rating,
	.lcs-product-grid .lcs-product-rating,
	.woocommerce ul.products .lcs-product-rating {
		font-size: 11px;
	}

	.lcs-rating-stars,
	.product-row .lcs-rating-stars,
	.woocommerce ul.products .lcs-rating-stars {
		font-size: 12.5px;
	}

	.lcs-card-add,
	.product-row .lcs-card-add,
	.lcs-product-grid .lcs-card-add,
	.woocommerce ul.products .lcs-card-add {
		border-radius: 9px;
		font-size: 12px;
		height: 34px;
	}

	.lcs-card-add::before {
		height: 14px;
		width: 14px;
	}

	.lcs-discount-badge,
	.product-row .lcs-discount-badge,
	.lcs-product-grid .lcs-discount-badge,
	.woocommerce ul.products .lcs-discount-badge {
		height: 27px;
		min-width: 52px;
		font-size: 12px;
	}

	.lcs-wishlist-icon {
		height: 31px;
		width: 31px;
	}
}

.lcs-home-carousel {
	position: relative;
}

.lcs-home-carousel .product-row {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 2px 6px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.lcs-home-carousel .product-row::-webkit-scrollbar {
	display: none;
}

.lcs-home-carousel .product-row .lcs-product-card {
	flex: 0 0 calc((100% - 64px) / 5);
	scroll-snap-align: start;
}

.lcs-carousel-arrow {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(10, 129, 143, 0.16);
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(12, 32, 46, 0.12);
	color: var(--lcs-secondary);
	cursor: pointer;
	display: inline-flex;
	height: 38px;
	justify-content: center;
	opacity: 1;
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	transition: opacity .15s ease, transform .15s ease, background .15s ease, color .15s ease;
	width: 38px;
	z-index: 8;
}

.lcs-carousel-arrow svg {
	height: 20px;
	width: 20px;
}

.lcs-carousel-arrow path {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.7;
}

.lcs-carousel-prev {
	left: -14px;
}

.lcs-carousel-next {
	right: -14px;
}

.lcs-carousel-arrow:hover,
.lcs-carousel-arrow:focus {
	background: var(--lcs-secondary);
	color: #ffffff;
	transform: translateY(-50%) scale(1.04);
}

.lcs-carousel-arrow[disabled],
.lcs-carousel-arrow.is-disabled,
.lcs-carousel-arrow.is-hidden {
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 1279px) {
	.lcs-home-carousel .product-row .lcs-product-card {
		flex-basis: calc((100% - 48px) / 4);
	}
}

@media (max-width: 768px) {
	.lcs-home-carousel .product-row {
		gap: 12px;
		padding-bottom: 4px;
	}

	.lcs-home-carousel .product-row .lcs-product-card {
		flex-basis: calc((100% - 12px) / 2);
	}

	.lcs-carousel-arrow {
		display: none;
	}
}

.lcs-single-product-page {
	background: #f5f8fa;
}

.lcs-single-product-container {
	padding-bottom: 56px;
}

.lcs-product-breadcrumb {
	color: #8792a3;
	font-size: 12px;
	margin: 18px 0 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lcs-product-breadcrumb a {
	color: #8792a3;
	text-decoration: none;
}

.lcs-single-product-shell {
	display: grid;
	grid-template-columns: 1.02fr .98fr;
	gap: 22px;
	align-items: start;
}

.lcs-single-gallery-card,
.lcs-single-info-card,
.lcs-single-delivery-card,
.lcs-single-description-card {
	background: #fff;
	border: 1px solid #e7edf2;
	border-radius: 20px;
	box-shadow: 0 10px 28px rgba(12, 32, 46, 0.04);
}

.lcs-single-gallery-card {
	padding: 14px;
	position: sticky;
	top: 18px;
}

.admin-bar .lcs-single-gallery-card {
	top: 50px;
}

.lcs-single-main-image {
	align-items: center;
	aspect-ratio: 1 / .86;
	background: #f7fbfb;
	border: 1px solid #edf2f5;
	border-radius: 16px;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 22px;
	position: relative;
}

.lcs-single-main-image img {
	display: block;
	height: 100%;
	object-fit: contain;
	transition: transform .22s ease, opacity .18s ease;
	width: 100%;
}

.lcs-single-sale-badge {
	align-items: center;
	background: #ffcf35;
	border-radius: 999px;
	box-shadow: 0 5px 12px rgba(255, 207, 53, .22);
	color: #111827;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	height: 28px;
	justify-content: center;
	left: 14px;
	padding: 0 12px;
	position: absolute;
	top: 14px;
	z-index: 2;
}

.lcs-single-zoom-btn {
	align-items: center;
	background: rgba(255, 255, 255, .92);
	border: 1px solid rgba(10, 129, 143, .14);
	border-radius: 50%;
	color: var(--lcs-secondary);
	display: grid;
	font-size: 16px;
	height: 34px;
	justify-items: center;
	line-height: 1;
	place-items: center;
	position: absolute;
	right: 14px;
	text-decoration: none;
	top: 14px;
	width: 34px;
	z-index: 2;
}

.lcs-single-thumbs {
	display: grid;
	gap: 9px;
	grid-template-columns: repeat(5, 1fr);
	margin-top: 12px;
}

.lcs-single-thumb {
	background: #f7fbfb;
	border: 1px solid #e7edf2;
	border-radius: 12px;
	cursor: pointer;
	height: 72px;
	opacity: .72;
	overflow: hidden;
	padding: 5px;
	transition: border-color .15s ease, opacity .15s ease, transform .15s ease;
}

.lcs-single-thumb img {
	border-radius: 8px;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.lcs-single-info-card {
	padding: 22px;
}

.lcs-single-topline {
	align-items: center;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin-bottom: 8px;
}

.lcs-single-sku {
	color: #8792a3;
	font-size: 12px;
}

.lcs-single-wishlist {
	align-items: center;
	background: #fff;
	border: 1px solid #e7edf2;
	border-radius: 999px;
	color: #526071;
	cursor: pointer;
	display: inline-flex;
	font-size: 12px;
	font-weight: 650;
	gap: 6px;
	height: 34px;
	padding: 0 11px;
	white-space: nowrap;
}

.lcs-single-wishlist span {
	color: var(--lcs-secondary);
	font-size: 16px;
	line-height: 1;
}

.lcs-single-title {
	color: #172033;
	font-size: 27px;
	font-weight: 750;
	letter-spacing: -0.025em;
	line-height: 1.18;
	margin: 0;
	max-width: 620px;
}

.lcs-single-rating-line {
	align-items: center;
	color: #8792a3;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	gap: 8px;
	margin-top: 12px;
	min-height: 20px;
}

.lcs-single-stars {
	color: #ff9f1a;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -1px;
}

.lcs-single-review-link {
	color: #8792a3;
	text-decoration: none;
}

.lcs-single-price-box {
	background: linear-gradient(180deg, rgba(23, 181, 183, .08), rgba(23, 181, 183, .035));
	border: 1px solid rgba(23, 181, 183, .12);
	border-radius: 16px;
	margin-top: 18px;
	padding: 16px;
}

.lcs-single-price-row {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.lcs-single-price-row .price,
.lcs-single-price-row > .amount,
.lcs-single-price-row ins,
.lcs-single-price-row ins .amount {
	color: var(--lcs-secondary);
	font-size: 25px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	text-decoration: none;
}

.lcs-single-price-row del,
.lcs-single-price-row del .amount {
	color: #9ca3af;
	font-size: 15px;
	font-weight: 650;
	opacity: 1;
}

.lcs-single-discount-chip {
	align-items: center;
	background: #ffcf35;
	border-radius: 999px;
	color: #172033;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	height: 24px;
	padding: 0 9px;
}

.lcs-single-stock-line {
	align-items: center;
	color: #526071;
	display: flex;
	font-size: 13px;
	gap: 8px;
	line-height: 1.45;
	margin-top: 12px;
}

.lcs-single-stock-dot {
	background: #21b56f;
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(33, 181, 111, .12);
	flex: 0 0 auto;
	height: 8px;
	width: 8px;
}

.lcs-single-cart-area {
	margin-top: 18px;
}

.lcs-single-cart-area form.cart {
	display: grid;
	gap: 10px;
	grid-template-columns: 94px 1fr;
	margin: 0;
}

.lcs-single-cart-area form.cart .quantity {
	align-items: center;
	background: #fff;
	border: 1px solid #e7edf2;
	border-radius: 12px;
	display: flex;
	height: 44px;
	overflow: hidden;
	width: 94px;
}

.lcs-single-cart-area form.cart .quantity input.qty {
	appearance: textfield;
	border: 0;
	box-shadow: none;
	color: #182235;
	font-size: 14px;
	font-weight: 650;
	height: 100%;
	outline: none;
	text-align: center;
	width: 100%;
}

.lcs-single-cart-area form.cart .single_add_to_cart_button,
.lcs-single-cart-area .single_add_to_cart_button.button,
.lcs-single-cart-area .single_add_to_cart_button.button.alt {
	align-items: center;
	background: rgba(23, 181, 183, .11);
	border: 0;
	border-radius: 12px;
	box-shadow: none;
	color: var(--lcs-secondary);
	display: inline-flex;
	font-size: 14px;
	font-weight: 750;
	gap: 9px;
	height: 44px;
	justify-content: center;
	line-height: 1;
	padding: 0 16px;
	transition: transform .15s ease, background .15s ease, color .15s ease;
	width: 100%;
}

.lcs-single-cart-area form.cart .single_add_to_cart_button::before {
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 15px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7.2 18.4a1.8 1.8 0 1 0 0 3.6 1.8 1.8 0 0 0 0-3.6Zm10.1 0a1.8 1.8 0 1 0 0 3.6 1.8 1.8 0 0 0 0-3.6ZM5.1 4.6 4.7 2.8A2.2 2.2 0 0 0 2.5 1H1.4a1.2 1.2 0 0 0 0 2.4h1.1l2.4 11.1a3 3 0 0 0 2.9 2.3h8.9a3 3 0 0 0 2.9-2.2l1.7-6.4A2.1 2.1 0 0 0 19.3 5.5H6.1c-.4 0-.8-.3-1-.9Zm1.6 3.3h12.2l-1.5 5.9a.8.8 0 0 1-.8.6H7.8a.8.8 0 0 1-.8-.6L5.8 7.9h.9Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7.2 18.4a1.8 1.8 0 1 0 0 3.6 1.8 1.8 0 0 0 0-3.6Zm10.1 0a1.8 1.8 0 1 0 0 3.6 1.8 1.8 0 0 0 0-3.6ZM5.1 4.6 4.7 2.8A2.2 2.2 0 0 0 2.5 1H1.4a1.2 1.2 0 0 0 0 2.4h1.1l2.4 11.1a3 3 0 0 0 2.9 2.3h8.9a3 3 0 0 0 2.9-2.2l1.7-6.4A2.1 2.1 0 0 0 19.3 5.5H6.1c-.4 0-.8-.3-1-.9Zm1.6 3.3h12.2l-1.5 5.9a.8.8 0 0 1-.8.6H7.8a.8.8 0 0 1-.8-.6L5.8 7.9h.9Z'/%3E%3C/svg%3E") center / contain no-repeat;
	width: 15px;
}

.lcs-single-cart-area form.variations_form {
	display: block;
}

.lcs-single-cart-area form.variations_form table.variations {
	margin: 0 0 12px;
	width: 100%;
}

.lcs-single-cart-area form.variations_form table.variations th,
.lcs-single-cart-area form.variations_form table.variations td {
	border: 0;
	padding: 4px 0;
	text-align: left;
}

.lcs-single-cart-area form.variations_form select {
	border: 1px solid #e7edf2;
	border-radius: 10px;
	height: 40px;
	padding: 0 10px;
	width: 100%;
}

.lcs-single-cart-area .woocommerce-variation-add-to-cart {
	display: grid;
	gap: 10px;
	grid-template-columns: 94px 1fr;
}

.lcs-single-quick-order {
	border-top: 1px solid #e7edf2;
	padding-top: 16px;
}

.lcs-single-quick-order .lcs-fast-order-form {
	display: block;
	margin: 0;
}

.lcs-single-quick-order .lcs-form-product {
	display: none;
}

.lcs-single-quick-order .lcs-fast-order-form label {
	color: #273247;
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 7px;
}

.lcs-single-quick-order .lcs-phone-input {
	background: #fff;
	border: 1px solid #e7edf2;
	border-radius: 12px;
	box-shadow: none;
	color: #182235;
	font-size: 13px;
	height: 44px;
	outline: none;
	padding: 0 13px;
	width: calc(100% - 180px);
}

.lcs-single-quick-order .lcs-phone-input:focus {
	border-color: rgba(23, 181, 183, .65);
	box-shadow: 0 0 0 4px rgba(23, 181, 183, .10);
}

.lcs-single-quick-order .lcs-button-primary {
	background: var(--lcs-primary);
	border: 0;
	border-radius: 12px;
	box-shadow: none;
	color: #fff;
	float: right;
	font-size: 13.5px;
	font-weight: 750;
	height: 44px;
	margin: 0;
	padding: 0 15px;
	transition: transform .15s ease, background .15s ease;
	width: 170px;
}

.lcs-single-quick-order .lcs-form-help {
	clear: both;
	color: #8792a3;
	font-size: 12px;
	line-height: 1.45;
	margin: 8px 0 0;
}

.lcs-single-quick-order .lcs-form-message {
	clear: both;
	font-size: 12px;
	margin-top: 9px;
}

.lcs-single-trust-row {
	display: grid;
	gap: 9px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 16px;
}

.lcs-single-trust-item {
	align-items: flex-start;
	background: #fff;
	border: 1px solid #e7edf2;
	border-radius: 13px;
	display: flex;
	gap: 8px;
	min-height: 62px;
	padding: 10px;
}

.lcs-single-trust-icon {
	align-items: center;
	background: rgba(23, 181, 183, .10);
	border-radius: 9px;
	color: var(--lcs-secondary);
	display: grid;
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 800;
	height: 28px;
	justify-items: center;
	place-items: center;
	width: 28px;
}

.lcs-single-trust-title {
	color: #273247;
	font-size: 12px;
	font-weight: 750;
	line-height: 1.22;
	margin: 0;
}

.lcs-single-trust-text {
	color: #8792a3;
	font-size: 11px;
	line-height: 1.3;
	margin: 2px 0 0;
}

.lcs-single-delivery-card {
	margin-top: 14px;
	padding: 16px;
}

.lcs-single-delivery-card h3,
.lcs-single-description-card h2 {
	font-size: 16px;
	letter-spacing: -0.015em;
	margin: 0 0 12px;
}

.lcs-single-delivery-card ul {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lcs-single-delivery-card li {
	align-items: flex-start;
	color: #526071;
	display: flex;
	font-size: 13px;
	gap: 10px;
	line-height: 1.45;
}

.lcs-single-delivery-card b {
	color: #273247;
	font-weight: 750;
}

.lcs-single-description-card {
	margin-top: 18px;
	padding: 20px;
}

.lcs-single-tabs {
	border-bottom: 1px solid #e7edf2;
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
}

.lcs-single-tab {
	border-bottom: 2px solid transparent;
	color: #8792a3;
	font-size: 13px;
	font-weight: 700;
	padding: 0 4px 11px;
	text-decoration: none;
}

.lcs-single-tab.active {
	border-color: var(--lcs-primary);
	color: var(--lcs-secondary);
}

.lcs-single-description-text,
.lcs-single-description-text p,
.lcs-single-description-text li {
	color: #344055;
	font-size: 14px;
	line-height: 1.7;
}

.lcs-single-description-text p:first-child {
	margin-top: 0;
}

.single-product #reviews,
.single-product .woocommerce-Reviews {
	background: #fff;
	border: 1px solid #e7edf2;
	border-radius: 20px;
	box-shadow: 0 10px 28px rgba(12, 32, 46, 0.04);
	margin-top: 18px;
	padding: 20px;
}

@media (max-width: 980px) {
	.lcs-single-product-shell {
		grid-template-columns: 1fr;
	}

	.lcs-single-gallery-card {
		position: static;
	}

	.lcs-single-title {
		font-size: 24px;
	}
}

@media (max-width: 640px) {
	.lcs-single-product-container {
		padding-left: 10px;
		padding-right: 10px;
	}

	.lcs-single-gallery-card,
	.lcs-single-info-card,
	.lcs-single-delivery-card,
	.lcs-single-description-card,
	.single-product #reviews,
	.single-product .woocommerce-Reviews {
		border-radius: 16px;
	}

	.lcs-single-info-card {
		padding: 16px;
	}

	.lcs-single-topline {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.lcs-single-title {
		font-size: 21px;
	}

	.lcs-single-main-image {
		aspect-ratio: 1 / .92;
		padding: 16px;
	}

	.lcs-single-thumbs {
		grid-template-columns: repeat(4, 1fr);
	}

	.lcs-single-thumb {
		height: 58px;
	}

	.lcs-single-price-row .price,
	.lcs-single-price-row > .amount,
	.lcs-single-price-row ins,
	.lcs-single-price-row ins .amount {
		font-size: 21px;
	}

	.lcs-single-cart-area form.cart,
	.lcs-single-cart-area .woocommerce-variation-add-to-cart {
		grid-template-columns: 82px 1fr;
	}

	.lcs-single-cart-area form.cart .quantity {
		width: 82px;
	}

	.lcs-single-quick-order .lcs-phone-input,
	.lcs-single-quick-order .lcs-button-primary {
		float: none;
		width: 100%;
	}

	.lcs-single-quick-order .lcs-button-primary {
		margin-top: 10px;
	}

	.lcs-single-trust-row {
		grid-template-columns: 1fr;
	}
}

.woocommerce-cart .lcs-site-main {
	background: #f5f8fa;
}

.woocommerce-cart .lcs-narrow,
.woocommerce-cart .lcs-container {
	max-width: 1180px;
}

.woocommerce-cart .lcs-page-header {
	display: none;
}

.woocommerce-cart .lcs-entry-content {
	margin: 0;
}

.woocommerce-cart .lcs-page-content {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}

.lcs-cart-page {
	padding: 22px 0 48px;
	font-family: var(--lcs-font, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.lcs-cart-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.lcs-cart-head h1 {
	margin: 0;
	font-size: 30px;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: #172033;
	font-weight: 750;
}

.lcs-cart-head p {
	margin: 6px 0 0;
	font-size: 13.5px;
	color: #8792a3;
}

.lcs-cart-continue {
	font-size: 13px;
	font-weight: 700;
	color: var(--lcs-secondary, #0a818f);
	text-decoration: none;
	white-space: nowrap;
}

.lcs-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 18px;
	align-items: start;
}

.lcs-cart-items,
.lcs-cart-summary,
.lcs-cart-empty {
	background: #fff;
	border: 1px solid #e7edf2;
	border-radius: 0;
	box-shadow: 0 10px 28px rgba(12, 32, 46, 0.035);
}

.lcs-cart-table-head {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) 132px 150px;
	gap: 0;
	padding: 14px 18px;
	border-bottom: 1px solid #e7edf2;
	background: #f8fbfc;
	color: #182235;
	font-size: 12.5px;
	font-weight: 750;
}

.lcs-cart-item {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) 132px 150px;
	gap: 0;
	align-items: center;
	padding: 16px 18px;
	border-bottom: 1px solid #edf2f5;
}

.lcs-cart-item:last-of-type {
	border-bottom: 0;
}

.lcs-cart-product {
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 0;
}

.lcs-cart-thumb {
	width: 76px;
	height: 76px;
	border: 1px solid #e7edf2;
	background: #f7fbfb;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	overflow: hidden;
}

.lcs-cart-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.lcs-cart-product-meta {
	min-width: 0;
}

.lcs-cart-product-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
	color: #182235;
	text-decoration: none;
}

.lcs-cart-product-title:hover {
	color: var(--lcs-secondary, #0a818f);
}

.lcs-cart-remove {
	display: inline-flex;
	margin-top: 8px;
	font-size: 12px;
	line-height: 1;
	font-weight: 650;
	color: #8792a3;
	text-decoration: none;
	width: auto;
	height: auto;
	background: transparent;
	border: 0;
}

.lcs-cart-remove:hover {
	color: #111827;
	background: transparent;
}

.lcs-cart-amount {
	font-size: 14px;
	font-weight: 750;
	color: #0a818f;
}

.lcs-cart-quantity .quantity {
	width: 94px;
	height: 38px;
	border: 1px solid #e7edf2;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}

.lcs-cart-quantity .qty {
	width: 100%;
	height: 36px;
	border: 0;
	box-shadow: none;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: #182235;
	padding: 0;
	background: transparent;
}

.lcs-cart-coupon {
	display: flex;
	gap: 8px;
	align-items: center;
	min-width: 0;
}

.lcs-cart-coupon input {
	height: 40px;
	width: min(260px, 46vw);
	border: 1px solid #e7edf2;
	padding: 0 12px;
	font-size: 13px;
	outline: none;
	background: #fff;
}

.lcs-cart-coupon input:focus {
	border-color: rgba(23,181,183,.6);
}

.lcs-cart-summary {
	padding: 18px;
	position: sticky;
	top: 18px;
}

.lcs-cart-summary h2 {
	margin: 0 0 16px;
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: -0.02em;
	font-weight: 750;
	color: #172033;
}

.lcs-cart-summary-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid #edf2f5;
	font-size: 13.5px;
	color: #526071;
}

.lcs-cart-summary-row strong {
	font-size: 14px;
	font-weight: 750;
	color: #182235;
	text-align: right;
}

.lcs-cart-total-row {
	border-bottom: 0;
	padding-top: 16px;
	margin-top: 2px;
}

.lcs-cart-total-row span,
.lcs-cart-total-row strong {
	font-size: 17px;
	font-weight: 800;
	color: #172033;
}

.lcs-cart-total-row .includes_tax {
	display: none;
}

.lcs-cart-summary-note {
	margin: 0 0 8px;
	font-size: 12px;
	line-height: 1.45;
	color: #8792a3;
}

.lcs-cart-free-shipping-note {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 6px;
	color: #15803d;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.35;
	margin: 8px 20px 12px;
	padding: 9px 10px;
}

.lcs-cart-free-shipping-note.is-qualified,
.lcs-free-shipping-total {
	color: #15803d;
}

.lcs-cart-checkout,
.woocommerce .lcs-cart-checkout.button.alt {
	width: 100%;
	height: 48px;
	margin-top: 16px;
	border: 0;
	border-radius: 0;
	background: var(--lcs-primary, #17b5b7);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
	line-height: 48px;
}

.lcs-cart-checkout:hover,
.woocommerce .lcs-cart-checkout.button.alt:hover {
	background: var(--lcs-secondary, #0a818f);
}

.lcs-cart-summary-trust {
	display: grid;
	gap: 8px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #edf2f5;
}

.lcs-cart-summary-trust span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	color: #526071;
}

.lcs-cart-empty {
	padding: 42px 24px;
	text-align: center;
}

.lcs-cart-empty h1 {
	margin: 0;
	font-size: 28px;
	color: #172033;
}

.lcs-cart-empty p {
	margin: 10px auto 22px;
	max-width: 460px;
	color: #8792a3;
	font-size: 14px;
}

.lcs-cart-empty .button {
	background: var(--lcs-primary, #17b5b7);
	color: #fff;
	border-radius: 0;
	padding: 12px 20px;
	font-weight: 800;
}

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error {
	max-width: 1180px;
	margin: 14px auto;
	border-top-color: var(--lcs-primary, #17b5b7);
	background: #fff;
	box-shadow: none;
	border-radius: 0;
	font-size: 13px;
}

@media (max-width: 980px) {
	.lcs-cart-layout {
		grid-template-columns: 1fr;
	}

	.lcs-cart-summary {
		position: static;
	}
}

@media (max-width: 760px) {
	.lcs-cart-page {
		padding-top: 14px;
	}

	.lcs-cart-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.lcs-cart-head h1 {
		font-size: 25px;
	}

	.lcs-cart-table-head {
		display: none;
	}

	.lcs-cart-item {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 14px;
	}

	.lcs-cart-product {
		align-items: flex-start;
	}

	.lcs-cart-thumb {
		width: 72px;
		height: 72px;
	}

	.lcs-cart-quantity,
	.lcs-cart-amount {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding-top: 10px;
		border-top: 1px solid #edf2f5;
	}

	.lcs-cart-quantity::before,
	.lcs-cart-amount::before {
		content: attr(data-title);
		font-size: 12.5px;
		font-weight: 700;
		color: #8792a3;
	}

	.lcs-cart-coupon {
		width: 100%;
	}

	.lcs-cart-coupon input {
		width: 100%;
		flex: 1;
	}

}

/* LCS checkout redesign */
.woocommerce-checkout .entry-title,
.woocommerce-checkout .page-title,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout form.checkout_coupon,
.woocommerce-cart .coupon,
.woocommerce-cart .lcs-cart-coupon {
	display: none;
}

.lcs-checkout-page {
	max-width: 1180px;
	margin: 0 auto;
	padding: 24px 18px 56px;
}

.lcs-checkout-head {
	margin-bottom: 18px;
}

.lcs-checkout-head h1 {
	margin: 0;
	font-size: 30px;
	line-height: 1.15;
	letter-spacing: -0.025em;
	font-weight: 800;
	color: #172033;
}

.lcs-checkout-head p {
	margin: 8px 0 0;
	font-size: 14px;
	color: #8792a3;
}

.lcs-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	gap: 18px;
	align-items: start;
}

.lcs-checkout-panel {
	background: #fff;
	border: 1px solid #e7edf2;
	box-shadow: 0 10px 28px rgba(12,32,46,.04);
	padding: 22px;
}

.lcs-checkout-summary .lcs-checkout-panel {
	position: sticky;
	top: 18px;
}

.lcs-checkout-panel-head {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid #edf2f5;
}

.lcs-checkout-step {
	width: 30px;
	height: 30px;
	background: rgba(23,181,183,.10);
	color: var(--lcs-secondary, #0a818f);
	display: grid;
	place-items: center;
	font-size: 13px;
	font-weight: 800;
	flex: 0 0 auto;
}

.lcs-checkout-panel-head h2 {
	margin: 0;
	font-size: 21px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	font-weight: 800;
	color: #172033;
}

.lcs-checkout-panel-head p {
	margin: 5px 0 0;
	font-size: 13px;
	line-height: 1.45;
	color: #8792a3;
}

.lcs-checkout-field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.lcs-checkout-field-grid .form-row,
.woocommerce .lcs-checkout-field-grid .form-row {
	float: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

.lcs-checkout-field-grid #billing_address_1_field {
	grid-column: 1 / -1;
}

.lcs-checkout-field-grid label {
	display: block;
	margin-bottom: 7px;
	font-size: 13px;
	font-weight: 750;
	color: #273247;
}

.lcs-checkout-field-grid .required {
	color: var(--lcs-secondary, #0a818f);
}

.lcs-checkout-field-grid input.input-text,
.lcs-checkout-field-grid textarea,
.lcs-checkout-field-grid select {
	width: 100%;
	height: 46px;
	border: 1px solid #e7edf2;
	background: #fff;
	padding: 0 13px;
	font-size: 14px;
	color: #182235;
	outline: none;
	box-shadow: none;
	border-radius: 0;
}

.lcs-checkout-field-grid input.input-text:focus,
.lcs-checkout-field-grid textarea:focus,
.lcs-checkout-field-grid select:focus {
	border-color: rgba(23,181,183,.75);
	box-shadow: 0 0 0 3px rgba(23,181,183,.09);
}

.lcs-checkout-trust {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px;
}

.lcs-checkout-trust div {
	background: #fff;
	border: 1px solid #e7edf2;
	padding: 12px;
	display: grid;
	grid-template-columns: 30px 1fr;
	column-gap: 10px;
	align-items: center;
}

.lcs-checkout-trust span {
	grid-row: span 2;
	width: 30px;
	height: 30px;
	background: rgba(23,181,183,.10);
	color: var(--lcs-secondary, #0a818f);
	display: grid;
	place-items: center;
	font-weight: 800;
}

.lcs-checkout-trust strong {
	font-size: 13px;
	line-height: 1.25;
	color: #273247;
}

.lcs-checkout-trust small {
	font-size: 12px;
	line-height: 1.3;
	color: #8792a3;
}

.lcs-checkout-review table.shop_table,
.woocommerce-checkout-review-order-table {
	width: 100%;
	border: 0;
	margin: 0;
	border-collapse: collapse;
}

.lcs-checkout-review table.shop_table th,
.lcs-checkout-review table.shop_table td {
	border: 0;
	border-bottom: 1px solid #edf2f5;
	padding: 12px 0;
	font-size: 13.5px;
	color: #526071;
	vertical-align: top;
}

.lcs-checkout-review table.shop_table th:last-child,
.lcs-checkout-review table.shop_table td:last-child {
	text-align: right;
	font-weight: 750;
	color: #182235;
}

.lcs-checkout-review table.shop_table thead th {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #8792a3;
}

.lcs-checkout-review .order-total th,
.lcs-checkout-review .order-total td,
.lcs-checkout-review .order-total strong,
.lcs-checkout-review .order-total .amount {
	font-size: 17px;
	font-weight: 850;
	color: #172033;
}

.lcs-checkout-review .includes_tax,
.lcs-checkout-review .woocommerce-shipping-destination,
.lcs-checkout-review .woocommerce-shipping-calculator,
.lcs-checkout-review .woocommerce-privacy-policy-text {
	display: none;
}

.lcs-checkout-review #payment,
.woocommerce-checkout #payment {
	background: transparent;
	border-radius: 0;
	margin-top: 16px;
}

.lcs-checkout-review #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
	border: 1px solid #e7edf2;
	padding: 0;
	margin: 0 0 14px;
	background: #fff;
}

.lcs-checkout-review #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
	padding: 12px 14px;
	border-bottom: 1px solid #edf2f5;
	font-size: 13px;
	color: #526071;
}

.lcs-checkout-review #payment ul.payment_methods li:last-child,
.woocommerce-checkout #payment ul.payment_methods li:last-child {
	border-bottom: 0;
}

.lcs-checkout-review #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
	background: rgba(23,181,183,.06);
	color: #526071;
	font-size: 12.5px;
	line-height: 1.45;
	margin: 10px 0 0;
	padding: 10px 12px;
	border-radius: 0;
}

.lcs-checkout-review #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
	display: none;
}

.lcs-checkout-review #payment .place-order,
.woocommerce-checkout #payment .place-order {
	padding: 0;
	margin: 0;
}

.lcs-checkout-review #place_order,
.woocommerce-checkout #payment #place_order {
	width: 100%;
	height: 50px;
	border: 0;
	border-radius: 0;
	background: var(--lcs-primary, #17b5b7);
	color: #fff;
	font-size: 15px;
	font-weight: 850;
	line-height: 50px;
	padding: 0 18px;
	box-shadow: none;
}

.lcs-checkout-review #place_order:hover,
.woocommerce-checkout #payment #place_order:hover {
	background: var(--lcs-secondary, #0a818f);
}

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
	max-width: 1180px;
	margin: 14px auto;
	border-top-color: var(--lcs-primary, #17b5b7);
	background: #fff;
	border-radius: 0;
	font-size: 13px;
}

@media (max-width: 980px) {
	.lcs-checkout-layout {
		grid-template-columns: 1fr;
	}

	.lcs-checkout-summary .lcs-checkout-panel {
		position: static;
	}
}

@media (max-width: 640px) {
	.lcs-checkout-page {
		padding: 16px 10px 42px;
	}

	.lcs-checkout-head h1 {
		font-size: 25px;
	}

	.lcs-checkout-panel {
		padding: 16px;
	}

	.lcs-checkout-field-grid,
	.lcs-checkout-trust {
		grid-template-columns: 1fr;
	}
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-breadcrumb,
.lcs-shop-archive .woocommerce-breadcrumb,
.lcs-shop-archive nav.woocommerce-breadcrumb,
.lcs-shop-archive .breadcrumbs,
.lcs-shop-archive .breadcrumb,
.lcs-shop-archive .woocommerce-result-count,
.lcs-shop-archive .woocommerce-ordering,
.lcs-shop-archive .wp-block-search,
.lcs-shop-archive .widget,
.lcs-shop-archive aside,
.tax-product_cat .woocommerce-result-count,
.tax-product_cat .woocommerce-ordering,
.tax-product_cat .woocommerce-breadcrumb,
.post-type-archive-product .woocommerce-result-count,
.post-type-archive-product .woocommerce-ordering,
.post-type-archive-product .woocommerce-breadcrumb {
	display: none;
}

.lcs-shop-archive {
	background: #f5f8fa;
	padding: 28px 0 52px;
}

.lcs-shop-archive-container {
	max-width: 1180px;
}

.lcs-shop-archive-header {
	margin: 0 0 18px;
	padding: 0;
}

.lcs-shop-archive-title {
	color: #182235;
	font-size: clamp(24px, 2.2vw, 34px);
	font-weight: 750;
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin: 0;
}

.lcs-shop-archive-description {
	color: #526071;
	font-size: 14px;
	line-height: 1.6;
	margin-top: 8px;
	max-width: 760px;
}

.woocommerce .products ul.lcs-shop-products,
.woocommerce ul.products.lcs-shop-products,
ul.products.lcs-shop-products {
	align-items: stretch;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	justify-content: stretch;
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce ul.products.lcs-shop-products li.product,
.woocommerce-page ul.products.lcs-shop-products li.product,
ul.products.lcs-shop-products li.product,
ul.products.lcs-shop-products .lcs-product-loop-item {
	float: none;
	margin: 0;
	max-width: none;
	min-width: 0;
	padding: 0;
	width: 100%;
}

@media (max-width: 1200px) {
	.woocommerce ul.products.lcs-shop-products,
	ul.products.lcs-shop-products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.woocommerce ul.products.lcs-shop-products,
	ul.products.lcs-shop-products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.woocommerce ul.products.lcs-shop-products,
	ul.products.lcs-shop-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
}

.lcs-shop-products .lcs-product-card {
	border-radius: 14px;
	min-height: 344px;
}

.lcs-shop-products .lcs-product-image {
	padding: 10px;
}

.lcs-shop-products .lcs-product-body {
	padding: 10px 12px 12px;
}

.lcs-shop-products .lcs-product-price {
	margin-bottom: 7px;
}

.lcs-shop-products .lcs-product-price ins,
.lcs-shop-products .lcs-product-price .lcs-current-price,
.lcs-shop-products .lcs-product-price > .woocommerce-Price-amount {
	font-size: 14px;
	font-weight: 700;
}

.lcs-shop-products .lcs-product-price del {
	font-size: 10.5px;
}

.lcs-shop-products .lcs-product-title {
	font-size: 13px;
	line-height: 1.38;
	min-height: 36px;
}

.lcs-shop-products .lcs-card-add {
	height: 34px;
	font-size: 12px;
}

.lcs-shop-products .lcs-discount-badge {
	height: 25px;
	min-width: 49px;
	font-size: 11.5px;
}

.lcs-shop-products .lcs-wishlist-icon {
	height: 30px;
	width: 30px;
	font-size: 16px;
}

.lcs-shop-empty {
	background: #fff;
	border: 1px solid #e7edf2;
	padding: 28px;
}

.lcs-shop-empty h2 {
	font-size: 22px;
	margin: 0 0 8px;
}

.lcs-shop-empty p {
	color: #526071;
	margin: 0;
}

/* Remove default footer widgets that created Search/Pages/Archives/Categories blocks. */
.lcs-footer-widgets,
footer .widget_search,
footer .widget_pages,
footer .widget_archive,
footer .widget_categories,
footer .wp-block-search,
footer .wp-block-page-list,
footer .wp-block-archives,
footer .wp-block-categories {
	display: none;
}

@media (min-width: 1180px) {
	.woocommerce ul.products.lcs-shop-products:has(li.product:only-child),
	ul.products.lcs-shop-products:has(li.product:only-child) {
		grid-template-columns: 220px;
	}
}

@media (max-width: 768px) {
	.lcs-shop-archive {
		padding: 18px 0 40px;
	}

	.woocommerce ul.products.lcs-shop-products,
	ul.products.lcs-shop-products {
		gap: 12px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce ul.products.lcs-shop-products li.product,
	ul.products.lcs-shop-products li.product {
		max-width: none;
	}

	.lcs-shop-products .lcs-product-card {
		min-height: 318px;
	}
}

.lcs-shop-archive {
	padding-top: 72px;
}
.lcs-shop-archive-container {
	padding-top: 0;
}
.lcs-shop-archive-header {
	margin-top: 0;
	margin-bottom: 20px;
}
body.tax-product_cat .lcs-shop-archive,
body.post-type-archive-product .lcs-shop-archive,
body.woocommerce-shop .lcs-shop-archive {
	padding-top: 72px;
}
@media (max-width: 768px) {
	.lcs-shop-archive,
	body.tax-product_cat .lcs-shop-archive,
	body.post-type-archive-product .lcs-shop-archive,
	body.woocommerce-shop .lcs-shop-archive {
		padding-top: 54px;
	}
}

/* Clean minimal product review form: rating, review and name only. */
.single-product .lcs-clean-reviews,
.single-product #reviews.lcs-clean-reviews,
.single-product .woocommerce-Reviews.lcs-clean-reviews {
	margin-top: 18px;
	padding: 20px;
	background: #fff;
	border: 1px solid #e7edf2;
	border-radius: 0;
	box-shadow: none;
}
.single-product .lcs-clean-reviews-title {
	margin: 0 0 14px;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 750;
	color: #172033;
}
.single-product .lcs-clean-review-form .comment-notes,
.single-product .lcs-clean-review-form .comment-form-email,
.single-product .lcs-clean-review-form .comment-form-url,
.single-product .lcs-clean-review-form .comment-form-cookies-consent,
.single-product .lcs-clean-review-form .required-field-message,
.single-product .lcs-clean-review-form .comment-reply-title,
.single-product .lcs-clean-review-form-wrap .comment-reply-title,
.single-product .lcs-clean-reviews .woocommerce-noreviews {
	display: none;
}
.single-product .lcs-clean-review-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
	gap: 14px 16px;
	max-width: 920px;
}
.single-product .lcs-clean-review-form .comment-form-rating,
.single-product .lcs-clean-review-form .comment-form-comment,
.single-product .lcs-clean-review-form .form-submit {
	grid-column: 1 / -1;
}
.single-product .lcs-clean-review-field {
	margin: 0;
}
.single-product .lcs-clean-review-field label {
	display: block;
	margin: 0 0 7px;
	font-size: 13px;
	font-weight: 700;
	color: #273247;
}
.single-product .lcs-clean-review-form textarea,
.single-product .lcs-clean-review-form input[type="text"],
.single-product .lcs-clean-review-form select {
	width: 100%;
	border: 1px solid #e7edf2;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	outline: none;
	color: #182235;
	font-size: 14px;
}
.single-product .lcs-clean-review-form textarea {
	min-height: 118px;
	padding: 12px;
	resize: vertical;
}
.single-product .lcs-clean-review-form input[type="text"],
.single-product .lcs-clean-review-form select {
	height: 42px;
	padding: 0 12px;
}
.single-product .lcs-clean-review-form textarea:focus,
.single-product .lcs-clean-review-form input[type="text"]:focus,
.single-product .lcs-clean-review-form select:focus {
	border-color: #17b5b7;
}
.single-product .lcs-clean-review-form p.stars {
	margin: 2px 0 0;
}
.single-product .lcs-clean-review-form p.stars a {
	color: #ff9f1a;
	font-size: 24px;
	line-height: 1;
	text-decoration: none;
}
.single-product .lcs-clean-review-form .form-submit {
	margin: 0;
}
.single-product .lcs-clean-review-submit,
.single-product .lcs-clean-review-form #submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	height: 42px;
	border: 0;
	border-radius: 0;
	background: #17b5b7;
	color: #fff;
	font-size: 14px;
	font-weight: 750;
	box-shadow: none;
	cursor: pointer;
}
@media (max-width: 760px) {
	.single-product .lcs-clean-reviews,
	.single-product #reviews.lcs-clean-reviews,
	.single-product .woocommerce-Reviews.lcs-clean-reviews {
		padding: 16px 12px;
		margin-top: 14px;
	}
	.single-product .lcs-clean-review-form {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.single-product .lcs-clean-review-form textarea {
		min-height: 104px;
	}
	.single-product .lcs-clean-review-submit,
	.single-product .lcs-clean-review-form #submit {
		width: 100%;
	}
}

.single-product #reviews .comment-form-email,
.single-product #reviews .comment-form-url,
.single-product #reviews .comment-form-cookies-consent,
.single-product #review_form_wrapper .comment-form-email,
.single-product #review_form_wrapper .comment-form-url,
.single-product #review_form_wrapper .comment-form-cookies-consent,
.single-product .lcs-clean-review-form .comment-form-email,
.single-product .lcs-clean-review-form .comment-form-url,
.single-product .lcs-clean-review-form .comment-form-cookies-consent {
	display: none;
}

.single-product #reviews.lcs-clean-reviews,
.single-product .woocommerce-Reviews.lcs-clean-reviews {
	clear: both;
	display: block;
	max-width: 100%;
	padding: clamp(18px, 2vw, 28px);
	width: 100%;
}

.single-product #reviews .lcs-clean-review-list-wrap {
	clear: both;
	display: block;
	width: 100%;
}

.single-product #reviews ol.commentlist.lcs-clean-review-list,
.single-product #reviews .commentlist.lcs-clean-review-list {
	align-items: stretch;
	display: grid !important;
	gap: 14px 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.single-product #reviews ol.commentlist.lcs-clean-review-list > li.lcs-review-card,
.single-product #reviews .commentlist.lcs-clean-review-list > li.lcs-review-card {
	background: #fbfcfd;
	border: 1px solid #e7edf2;
	border-radius: 14px;
	box-shadow: none;
	clear: none !important;
	display: block !important;
	float: none !important;
	margin: 0 !important;
	min-width: 0;
	padding: 16px !important;
	position: static !important;
	transform: none !important;
	width: 100% !important;
}

.single-product #reviews .lcs-review-card__header {
	grid-template-columns: 40px minmax(0, 1fr) auto;
}

.single-product #reviews .lcs-review-card__stars {
	justify-self: end;
}

@media (max-width: 760px) {
	.single-product #reviews ol.commentlist.lcs-clean-review-list,
	.single-product #reviews .commentlist.lcs-clean-review-list {
		grid-template-columns: 1fr;
	}

	.single-product #reviews .lcs-review-card__stars {
		grid-column: 2;
		justify-self: start;
	}
}

.lcs-whatsapp-float {
	position: fixed;
	left: 18px;
	bottom: 18px;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9998;
	box-shadow: 0 12px 28px rgba(0,0,0,.18);
	text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease;
}
.lcs-whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,.22); }
.lcs-whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }
.lcs-socials a svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.lcs-socials a { font-size: 0; }
.lcs-mini-cart-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.lcs-mini-cart-item { position: relative; display: grid; grid-template-columns: 64px 1fr 22px; gap: 10px; align-items: center; padding: 0 0 12px; border-bottom: 1px solid #edf2f5; }
.lcs-mini-cart-thumb { width: 64px; height: 64px; border: 1px solid #e7edf2; background: #f7fbfb; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.lcs-mini-cart-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lcs-mini-cart-title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 13px; font-weight: 700; line-height: 1.35; color: #182235; text-decoration: none; }
.lcs-mini-cart-qty { display: block; margin-top: 5px; color: #0a818f; font-size: 12.5px; font-weight: 750; }
.lcs-mini-cart-remove { width: 22px; height: 22px; border: 0; background: rgba(239,63,107,.08); color: #ef3f6b; display: grid; place-items: center; border-radius: 0; text-decoration: none; font-size: 16px; line-height: 22px; }
.lcs-mini-cart-total { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 16px 0 12px; padding-top: 14px; border-top: 1px solid #edf2f5; color: #526071; font-size: 14px; }
.lcs-mini-cart-total span { color: #182235; font-weight: 800; }
.lcs-mini-cart-buttons { display: grid; gap: 10px; margin: 0; }
.lcs-mini-cart-buttons .button { width: 100%; height: 46px; border: 0; border-radius: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; line-height: 46px; text-decoration: none; padding: 0 16px; }
.lcs-mini-cart-view { background: #182235; color: #fff; }
.lcs-mini-cart-checkout { background: var(--lcs-primary, #17b5b7); color: #fff; }
.lcs-mini-cart-empty { padding: 18px; margin: 0; color: #526071; }

.lcs-single-quick-order {
	margin-top: 18px;
	padding: 14px;
	background: rgba(23,181,183,.055);
	border: 1px solid rgba(23,181,183,.20);
}
.single-product .lcs-single-quick-order .lcs-fast-order-form label {
	font-size: 15px;
	font-weight: 850;
	color: #172033;
}
.single-product .lcs-single-quick-order .lcs-phone-input {
	background: #fff;
	border-color: rgba(23,181,183,.24);
}
.single-product .lcs-single-quick-order .lcs-button-primary {
	font-size: 14px;
	font-weight: 850;
	background: var(--lcs-primary, #17b5b7);
	color: #fff;
}

.lcs-wishlist-icon.lcs-favorite-toggle { cursor: pointer; border: 1px solid rgba(10,129,143,.12); font: inherit; }
.lcs-wishlist-icon.lcs-favorite-toggle.is-active { color: #ef3f6b; background: rgba(239,63,107,.08); border-color: rgba(239,63,107,.14); }
.lcs-single-wishlist.lcs-favorite-toggle.is-active { color: #ef3f6b; }
.lcs-favorites-page { padding: 34px 0 58px; background: #f5f8fa; min-height: 55vh; }
.lcs-favorites-head { margin-bottom: 20px; }
.lcs-favorites-head h1 { margin: 0; color: #172033; font-size: 32px; line-height: 1.15; letter-spacing: -.025em; }
.lcs-favorites-head p { margin: 8px 0 0; color: #8792a3; font-size: 14px; }
.lcs-favorites-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; }
.lcs-favorite-product-cell { min-width: 0; }
.lcs-favorites-empty { background: #fff; border: 1px solid #e7edf2; padding: 28px; text-align: center; }
.lcs-favorites-empty h2 { margin: 0; font-size: 24px; color: #172033; }
.lcs-favorites-empty p, .lcs-favorites-loading { color: #8792a3; }

.woocommerce-cart .woocommerce > .cart-empty,
.woocommerce-cart .woocommerce > .return-to-shop,
.woocommerce-cart .coupon,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .checkout_coupon { display: none; }

.lcs-thankyou-page { max-width: 760px; margin: 0 auto; padding: 34px 18px 58px; }
.lcs-thankyou-card { background: #fff; border: 1px solid #e7edf2; padding: 28px; text-align: center; box-shadow: 0 10px 28px rgba(12,32,46,.04); }
.lcs-thankyou-icon { width: 54px; height: 54px; margin: 0 auto 14px; display: grid; place-items: center; background: rgba(23,181,183,.10); color: #0a818f; font-size: 26px; font-weight: 900; }
.lcs-thankyou-card h1 { margin: 0; color: #172033; font-size: 28px; line-height: 1.2; }
.lcs-thankyou-card p { margin: 9px 0 20px; color: #526071; }
.lcs-thankyou-details { display: grid; gap: 0; border: 1px solid #edf2f5; margin: 18px 0; text-align: left; }
.lcs-thankyou-details div { display: flex; justify-content: space-between; gap: 14px; padding: 12px 14px; border-bottom: 1px solid #edf2f5; color: #526071; }
.lcs-thankyou-details div:last-child { border-bottom: 0; }
.lcs-thankyou-details strong { color: #182235; }
.lcs-thankyou-home, .lcs-thankyou-card .button { background: var(--lcs-primary, #17b5b7); color: #fff; border: 0; border-radius: 0; padding: 13px 22px; font-weight: 800; text-decoration: none; display: inline-flex; }

@media (max-width: 980px) {
	.lcs-favorites-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 760px) {
	.lcs-whatsapp-float { left: 14px; bottom: 14px; width: 50px; height: 50px; }
	.lcs-whatsapp-float svg { width: 28px; height: 28px; }
	.lcs-cart-drawer { width: min(92vw, 390px); }
	.lcs-cart-page { padding: 16px 10px 42px; }
	.lcs-cart-head p { display: none; }
	.lcs-cart-layout { gap: 12px; }
	.lcs-cart-items, .lcs-cart-summary, .lcs-cart-empty { box-shadow: none; }
	.lcs-cart-product-title { font-size: 13px; }
	.lcs-cart-summary { padding: 15px; }
	.lcs-cart-summary h2 { font-size: 18px; }
	.lcs-cart-checkout, .woocommerce .lcs-cart-checkout.button.alt { height: 48px; line-height: 48px; }
	.lcs-checkout-page { padding: 16px 10px 42px; }
	.lcs-checkout-head p { display: none; }
	.lcs-checkout-layout { gap: 12px; }
	.lcs-checkout-panel { padding: 15px; box-shadow: none; }
	.lcs-checkout-panel-head { margin-bottom: 14px; padding-bottom: 14px; }
	.lcs-checkout-panel-head h2 { font-size: 19px; }
	.lcs-checkout-field-grid input.input-text, .lcs-checkout-field-grid textarea, .lcs-checkout-field-grid select { height: 48px; font-size: 15px; }
	.lcs-checkout-review table.shop_table th, .lcs-checkout-review table.shop_table td { font-size: 13px; }
	.lcs-checkout-review #place_order, .woocommerce-checkout #payment #place_order { height: 52px; line-height: 52px; font-size: 15px; }
	.single-product .lcs-single-quick-order { padding: 12px; margin-top: 14px; }
	.single-product .lcs-single-quick-order .lcs-fast-order-form label { font-size: 14px; }
	.lcs-favorites-page { padding: 24px 10px 46px; }
	.lcs-favorites-head h1 { font-size: 26px; }
	.lcs-favorites-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
	.lcs-thankyou-page { padding: 22px 10px 44px; }
	.lcs-thankyou-card { padding: 22px 15px; box-shadow: none; }
	.lcs-thankyou-card h1 { font-size: 24px; }
	.lcs-thankyou-details div { display: grid; gap: 4px; }
}

.single-product .lcs-single-cart-area form.cart .quantity.lcs-qty-ready {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  overflow: hidden;
  width: 108px;
  min-width: 108px;
  height: 44px;
  border: 1px solid #e4ebf1;
  background: #fff;
}
.single-product .lcs-single-cart-area form.cart .quantity.lcs-qty-ready input.qty {
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: none;
  text-align: center;
  background: transparent;
  font-weight: 700;
  color: #182235;
  -moz-appearance: textfield;
}
.single-product .lcs-single-cart-area form.cart .quantity.lcs-qty-ready input.qty::-webkit-outer-spin-button,
.single-product .lcs-single-cart-area form.cart .quantity.lcs-qty-ready input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-product .lcs-qty-btn {
  width: 34px;
  height: 44px;
  border: 0;
  background: #f5fafb;
  color: #0a818f;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}
.single-product .lcs-fast-selected-quantity {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: #0a818f;
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 760px) {
  .single-product .lcs-single-cart-area form.cart .quantity.lcs-qty-ready {
    width: 100%;
    min-width: 0;
    height: 42px;
    grid-template-columns: 40px 1fr 40px;
  }
  .single-product .lcs-qty-btn { width: 40px; height: 42px; }
}
body.search .lcs-search-archive,
body.search-results .lcs-search-archive,
body.search-no-results .lcs-search-archive {
	padding-top: 72px;
}
body.search .lcs-search-archive-container,
body.search-results .lcs-search-archive-container,
body.search-no-results .lcs-search-archive-container,
body.search .lcs-content-page > .lcs-container,
body.search-results .lcs-content-page > .lcs-container,
body.search-no-results .lcs-content-page > .lcs-container {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}
body.search .lcs-shop-archive-title,
body.search-results .lcs-shop-archive-title,
body.search-no-results .lcs-shop-archive-title,
body.search .lcs-page-header h1,
body.search-results .lcs-page-header h1,
body.search-no-results .lcs-page-header h1 {
	max-width: 100%;
	overflow-wrap: anywhere;
	text-align: left;
}
body.search .lcs-search-products,
body.search-results .lcs-search-products {
	width: 100%;
}
body.search .lcs-shop-empty .lcs-search-form,
body.search-no-results .lcs-shop-empty .lcs-search-form,
body.search .lcs-empty-state .lcs-search-form,
body.search-no-results .lcs-empty-state .lcs-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 140px;
	gap: 10px;
	max-width: 720px;
	width: 100%;
}
body.search .lcs-shop-empty .lcs-search-form input,
body.search-no-results .lcs-shop-empty .lcs-search-form input,
body.search .lcs-empty-state .lcs-search-form input,
body.search-no-results .lcs-empty-state .lcs-search-form input {
	min-width: 0;
}
@media (max-width: 1180px) {
	.nav-bar { padding-left: 12px; padding-right: 12px; }
	.nav-inner { width: 100%; }
	.lcs-market-search { min-width: 0; }
}
@media (max-width: 640px) {
	body.search .lcs-search-archive,
	body.search-results .lcs-search-archive,
	body.search-no-results .lcs-search-archive {
		padding-top: 42px;
	}
	body.search .lcs-shop-archive-title,
	body.search-results .lcs-shop-archive-title,
	body.search-no-results .lcs-shop-archive-title,
	body.search .lcs-page-header h1,
	body.search-results .lcs-page-header h1,
	body.search-no-results .lcs-page-header h1 {
		font-size: 23px;
		line-height: 1.18;
	}
	body.search .lcs-shop-empty .lcs-search-form,
	body.search-no-results .lcs-shop-empty .lcs-search-form,
	body.search .lcs-empty-state .lcs-search-form,
	body.search-no-results .lcs-empty-state .lcs-search-form {
		grid-template-columns: 1fr;
	}
	.lcs-market-search {
		grid-template-columns: minmax(0, 1fr) 76px;
	}
}

.single-product .lcs-single-quick-order .lcs-fast-order-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 9px;
	width: 100%;
}
.single-product .lcs-single-quick-order .lcs-fast-order-form label,
.single-product .lcs-single-quick-order .lcs-phone-input,
.single-product .lcs-single-quick-order .lcs-button-primary,
.single-product .lcs-single-quick-order .lcs-form-help,
.single-product .lcs-single-quick-order .lcs-form-message,
.single-product .lcs-single-quick-order .lcs-fast-selected-quantity {
	grid-column: 1 / -1;
	width: 100%;
	max-width: none;
}
.single-product .lcs-single-quick-order .lcs-button-primary {
	margin: 0;
}

@media (max-width: 760px) {
	.single-product .lcs-single-cart-area form.cart {
		display: grid;
		grid-template-columns: 1fr;
		gap: 9px;
		width: 100%;
	}
	.single-product .lcs-single-cart-area form.cart .quantity,
	.single-product .lcs-single-cart-area form.cart .quantity.lcs-qty-ready {
		grid-column: 1 / -1;
		width: 100%;
		min-width: 0;
		height: 44px;
		grid-template-columns: 46px minmax(0,1fr) 46px;
	}
	.single-product .lcs-single-cart-area form.cart .quantity input.qty,
	.single-product .lcs-single-cart-area form.cart .quantity.lcs-qty-ready input.qty {
		font-size: 15px;
		font-weight: 800;
		padding: 0;
	}
	.single-product .lcs-qty-btn {
		width: 46px;
		height: 44px;
		font-size: 19px;
	}
	.single-product .lcs-single-cart-area form.cart .single_add_to_cart_button,
	.single-product .lcs-single-cart-area .single_add_to_cart_button.button,
	.single-product .lcs-single-cart-area .single_add_to_cart_button.button.alt {
		grid-column: 1 / -1;
		width: 100%;
		height: 44px;
	}
}

body.search,
body.search-results,
body.search-no-results {
  display: block;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
body.search .site,
body.search-results .site,
body.search-no-results .site,
body.search .lcs-site,
body.search-results .lcs-site,
body.search-no-results .lcs-site {
  width: 100%;
  max-width: none;
  overflow-x: hidden;
}
body.search .lcs-site-main,
body.search-results .lcs-site-main,
body.search-no-results .lcs-site-main {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 52vh;
  clear: both;
  overflow: visible;
  background: #f5f8fa;
}
body.search .lcs-content-page,
body.search-results .lcs-content-page,
body.search-no-results .lcs-content-page {
  padding: 34px 0 52px;
}
body.search .lcs-content-page > .lcs-container,
body.search-results .lcs-content-page > .lcs-container,
body.search-no-results .lcs-content-page > .lcs-container,
body.search .lcs-container,
body.search-results .lcs-container,
body.search-no-results .lcs-container {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  float: none;
  transform: none;
}
body.search .lcs-page-header,
body.search-results .lcs-page-header,
body.search-no-results .lcs-page-header {
  margin: 0 0 22px;
  padding: 0;
}
body.search .lcs-page-header h1,
body.search-results .lcs-page-header h1,
body.search-no-results .lcs-page-header h1 {
  max-width: 100%;
  margin: 0;
  color: #182235;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.14;
  overflow-wrap: anywhere;
  text-align: left;
}
body.search .lcs-product-grid,
body.search-results .lcs-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.search .lcs-product-grid > *,
body.search-results .lcs-product-grid > * {
  min-width: 0;
  max-width: 100%;
}
body.search .lcs-post-list,
body.search-results .lcs-post-list,
body.search-no-results .lcs-post-list {
  width: 100%;
  max-width: 100%;
}
body.search .lcs-empty-state .lcs-search-form,
body.search-no-results .lcs-empty-state .lcs-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 10px;
  width: 100%;
  max-width: 720px;
}
body.search .lcs-empty-state .lcs-search-form input,
body.search-no-results .lcs-empty-state .lcs-search-form input {
  min-width: 0;
}
.lcs-market-search {
  background: #fff;
  border: 1px solid #dbe4ef;
  border-radius: 9px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 98px;
  height: 42px;
  overflow: hidden;
  min-width: 0;
  width: 100%;
}
.lcs-market-search input[type="search"] {
  min-width: 0;
  width: 100%;
}
@media (max-width: 1180px) {
  .nav-bar { padding-left: 12px; padding-right: 12px; }
  .nav-inner { width: 100%; }
}
@media (max-width: 1024px) {
  body.search .lcs-product-grid,
  body.search-results .lcs-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  body.search .lcs-content-page,
  body.search-results .lcs-content-page,
  body.search-no-results .lcs-content-page { padding: 24px 0 40px; }
  body.search .lcs-content-page > .lcs-container,
  body.search-results .lcs-content-page > .lcs-container,
  body.search-no-results .lcs-content-page > .lcs-container,
  body.search .lcs-container,
  body.search-results .lcs-container,
  body.search-no-results .lcs-container { width: min(100% - 20px, 1180px); }
  body.search .lcs-product-grid,
  body.search-results .lcs-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .lcs-market-search { grid-template-columns: minmax(0, 1fr) 76px; height: 40px; }
}
@media (max-width: 420px) {
  body.search .lcs-page-header h1,
  body.search-results .lcs-page-header h1,
  body.search-no-results .lcs-page-header h1 { font-size: 22px; }
}

@media (max-width: 760px) {
  .single-product .lcs-single-cart-area {
    order: 6;
    display: block;
    width: 100%;
    margin: 12px 0 0;
    padding: 12px 0 14px;
    border-top: 1px solid #eef3f5;
    border-bottom: 1px solid #eef3f5;
    position: relative;
    z-index: 1;
    clear: both;
    overflow: visible;
  }
  .single-product .lcs-single-cart-area form.cart {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: both;
    overflow: visible;
    position: static;
  }
  .single-product .lcs-single-cart-area form.cart .quantity,
  .single-product .lcs-single-cart-area form.cart .quantity.lcs-qty-ready {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    height: 44px;
    margin: 0;
    position: static;
  }
  .single-product .lcs-single-cart-area form.cart .single_add_to_cart_button,
  .single-product .lcs-single-cart-area .single_add_to_cart_button.button,
  .single-product .lcs-single-cart-area .single_add_to_cart_button.button.alt {
    grid-column: 1 / -1;
    width: 100%;
    height: 44px;
    min-height: 44px;
    margin: 0;
    position: static;
    inset: auto;
    transform: none;
    z-index: auto;
    display: inline-flex;
  }
  .single-product .lcs-single-side-col {
    order: 7;
    display: block;
    width: 100%;
    margin: 10px 0 0;
    padding: 0;
    position: relative;
    z-index: 0;
    clear: both;
  }
  .single-product .lcs-single-side-trust-card {
    display: block;
    width: 100%;
    margin: 0;
    padding: 14px 14px 12px;
    border: 1px solid #e7edf2;
    background: #fff;
    position: static;
    clear: both;
    overflow: visible;
  }
  .single-product .lcs-single-side-trust-title {
    display: block;
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    color: #172033;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
    position: static;
    clear: both;
  }
  .single-product .lcs-single-trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .single-product .lcs-single-trust-item {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    width: 100%;
    min-height: 0;
    padding: 10px 0;
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid #eef3f5;
    background: transparent;
    overflow: visible;
  }
  .single-product .lcs-single-trust-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .single-product .lcs-single-trust-title,
  .single-product .lcs-single-trust-text {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

:root {
  --lcs-bg: #fbfcfd;
  --lcs-light: #fafcfd;
}

body,
.lcs-site-main,
.lcs-light-section,
.lcs-content-page,
.lcs-shop-archive,
.single-product .lcs-single-product-page,
.woocommerce-cart .lcs-site-main,
.woocommerce-checkout .lcs-site-main,
.lcs-favorites-page,
body.search .lcs-site-main,
body.search-results .lcs-site-main,
body.search-no-results .lcs-site-main {
  background: #fbfcfd;
}

.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card {
  background: #ffffff;
  border: 0;
  outline: 0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.lcs-product-image,
.product-row .lcs-product-image,
.lcs-product-grid .lcs-product-image,
.woocommerce ul.products .lcs-product-image {
  background: #ffffff;
  border: 0;
  outline: 0;
  box-shadow: none;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}

.lcs-product-image-stack {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.lcs-product-image .lcs-product-img,
.product-row .lcs-product-image img,
.lcs-product-grid .lcs-product-image img,
.woocommerce ul.products .lcs-product-image img {
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .lcs-product-image,
  .product-row .lcs-product-image,
  .lcs-product-grid .lcs-product-image,
  .woocommerce ul.products .lcs-product-image {
    padding: 8px;
  }
}

.lcs-store-category-icon {
	background: rgba(10, 129, 143, 0.07);
	border-radius: 12px;
	color: var(--lcs-primary);
	height: 30px;
	width: 30px;
}

.lcs-store-category-icon svg {
	fill: none;
	height: 20px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.85;
	width: 20px;
}

.lcs-store-category-icon svg * {
	fill: none;
	stroke: currentColor;
	vector-effect: non-scaling-stroke;
}

.lcs-market-header .lcs-mega-menu.lcs-cascade-wrap {
	background: #ffffff;
	border: 1px solid rgba(219, 228, 239, 0.96);
	border-radius: 16px;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
	left: 0;
	max-height: min(72vh, 560px);
	max-width: none;
	overflow: visible;
	padding: 0;
	right: auto;
	top: calc(100% + 8px);
	transform: none;
	width: min(760px, calc(100vw - 32px));
	z-index: 110;
}

.lcs-cascade-menu {
	background: #ffffff;
	border-radius: inherit;
	display: grid;
	grid-template-columns: 286px minmax(0, 1fr);
	min-height: 382px;
	overflow: hidden;
	position: relative;
}

.lcs-cascade-main {
	background: #fbfcfd;
	border-right: 1px solid rgba(219, 228, 239, 0.85);
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-height: min(72vh, 560px);
	overflow: auto;
	padding: 10px;
}

.lcs-cascade-item {
	position: static;
}

.lcs-cascade-main-link {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 12px;
	color: #20273a;
	display: grid;
	font-size: 14px;
	font-weight: 500;
	gap: 10px;
	min-height: 48px;
	padding: 7px 8px;
	text-decoration: none;
	transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.lcs-cascade-main-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lcs-cascade-chevron {
	color: #9aa6b5;
	font-size: 22px;
	line-height: 1;
	text-align: right;
	transition: color 0.16s ease, transform 0.16s ease;
}

.lcs-cascade-item:hover .lcs-cascade-main-link,
.lcs-cascade-item:focus-within .lcs-cascade-main-link,
.lcs-cascade-item.is-active .lcs-cascade-main-link {
	background: #ffffff;
	border-color: rgba(10, 129, 143, 0.16);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
	color: var(--lcs-primary);
}

.lcs-cascade-item:hover .lcs-cascade-chevron,
.lcs-cascade-item:focus-within .lcs-cascade-chevron,
.lcs-cascade-item.is-active .lcs-cascade-chevron {
	color: var(--lcs-primary);
	transform: translateX(2px);
}

.lcs-cascade-subpanel {
	background: #ffffff;
	bottom: 0;
	display: none;
	left: 286px;
	overflow: auto;
	padding: 18px;
	position: absolute;
	right: 0;
	top: 0;
}

.lcs-cascade-item:hover .lcs-cascade-subpanel,
.lcs-cascade-item:focus-within .lcs-cascade-subpanel,
.lcs-cascade-item.is-active .lcs-cascade-subpanel {
	display: block;
}

.lcs-cascade-panel-title {
	align-items: center;
	border-bottom: 1px solid rgba(219, 228, 239, 0.75);
	color: #20273a;
	display: flex;
	font-size: 18px;
	font-weight: 500;
	gap: 10px;
	margin: 0 0 14px;
	padding: 0 0 14px;
	text-decoration: none;
}

.lcs-cascade-panel-title:hover,
.lcs-cascade-panel-title:focus {
	color: var(--lcs-primary);
}

.lcs-cascade-subgrid {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lcs-cascade-sub-link {
	align-items: center;
	background: #fbfcfd;
	border: 1px solid rgba(219, 228, 239, 0.72);
	border-radius: 12px;
	color: #586174;
	display: flex;
	font-size: 13.5px;
	font-weight: 500;
	gap: 9px;
	min-height: 44px;
	padding: 7px 9px;
	text-decoration: none;
	transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.lcs-cascade-sub-link:hover,
.lcs-cascade-sub-link:focus {
	background: #ffffff;
	border-color: rgba(10, 129, 143, 0.32);
	color: var(--lcs-primary);
	transform: translateY(-1px);
}

.lcs-cascade-all-link {
	background: rgba(10, 129, 143, 0.07);
	border-color: rgba(10, 129, 143, 0.16);
	color: var(--lcs-primary);
}

.lcs-cascade-menu .lcs-store-category-icon {
	background: rgba(10, 129, 143, 0.07);
	border-radius: 12px;
	color: var(--lcs-primary);
	height: 30px;
	width: 30px;
}

.lcs-cascade-menu .lcs-store-category-icon svg {
	fill: none;
	height: 20px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.85;
	width: 20px;
}

.lcs-cascade-menu .lcs-store-category-icon svg * {
	fill: none;
	stroke: currentColor;
	vector-effect: non-scaling-stroke;
}

@media (max-width: 1180px) {
	.lcs-market-header .lcs-mega-menu.lcs-cascade-wrap {
		left: 0;
		right: 0;
		width: 100%;
	}
}

@media (max-width: 900px) {
	.lcs-market-header .lcs-mega-menu.lcs-cascade-wrap {
		max-height: min(74vh, 620px);
		overflow: auto;
	}

	.lcs-cascade-menu {
		display: block;
		min-height: auto;
		overflow: visible;
	}

	.lcs-cascade-main {
		background: #ffffff;
		border-right: 0;
		max-height: none;
		overflow: visible;
		padding: 8px;
	}

	.lcs-cascade-main-link {
		grid-template-columns: 34px minmax(0, 1fr) 18px;
		min-height: 46px;
	}

	.lcs-cascade-subpanel {
		background: #f8fbfc;
		border: 1px solid rgba(219, 228, 239, 0.72);
		border-radius: 12px;
		bottom: auto;
		left: auto;
		margin: 6px 0 8px 44px;
		overflow: visible;
		padding: 8px;
		position: static;
		right: auto;
		top: auto;
	}

	.lcs-cascade-item:hover .lcs-cascade-subpanel,
	.lcs-cascade-item:focus-within .lcs-cascade-subpanel,
	.lcs-cascade-item.is-active .lcs-cascade-subpanel {
		display: block;
	}

	.lcs-cascade-panel-title {
		display: none;
	}

	.lcs-cascade-subgrid {
		grid-template-columns: 1fr;
	}

	.lcs-cascade-sub-link {
		background: #ffffff;
		font-size: 13px;
		min-height: 42px;
	}
}

.lcs-cascade-main-link,
.lcs-cascade-panel-title,
.lcs-cascade-sub-link {
	font-weight: 500;
}

.lcs-cascade-chevron {
	font-weight: 400;
}

.lcs-store-category-icon,
.lcs-cascade-menu .lcs-store-category-icon {
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	color: var(--lcs-primary);
	height: 24px;
	width: 24px;
}

.lcs-store-category-icon svg,
.lcs-cascade-menu .lcs-store-category-icon svg {
	height: 21px;
	width: 21px;
}

.lcs-cascade-main-link {
	grid-template-columns: 28px minmax(0, 1fr) 16px;
}

@media (max-width: 900px) {
	.lcs-cascade-main-link {
		grid-template-columns: 28px minmax(0, 1fr) 16px;
	}
}

.lcs-linked-products {
	clear: both;
	margin: 22px 0 0;
	padding: 20px 0 0;
}

.single-product .lcs-linked-products,
.woocommerce-cart .lcs-linked-products,
.lcs-cart-page .lcs-linked-products {
	background: #ffffff;
	border: 1px solid #e7edf2;
	border-radius: 0;
	box-shadow: none;
	padding: 18px;
}

.lcs-linked-products__head {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 0 0 14px;
}

.lcs-linked-products__head h2 {
	color: #172033;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0;
}

.lcs-linked-products__head p {
	color: #64748b;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

.woocommerce ul.products.lcs-linked-products__grid li.product,
.woocommerce-page ul.products.lcs-linked-products__grid li.product,
ul.products.lcs-linked-products__grid li.product,
.lcs-linked-products__grid .lcs-product-loop-item {
	float: none;
	margin: 0;
	padding: 0;
}

.lcs-linked-products .lcs-product-body {
	padding: 11px 12px 13px;
}

.lcs-linked-products .lcs-product-title {
	font-size: 13px;
	line-height: 1.35;
}

.lcs-linked-products .lcs-card-add {
	min-height: 38px;
	padding: 9px 10px;
}

@media (max-width: 1100px) {
	.woocommerce ul.products.lcs-linked-products__grid,
	ul.products.lcs-linked-products__grid,
	.lcs-linked-products__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 780px) {
	.single-product .lcs-linked-products,
	.woocommerce-cart .lcs-linked-products,
	.lcs-cart-page .lcs-linked-products {
		margin-top: 16px;
		padding: 14px 10px;
	}

	.lcs-linked-products__head h2 {
		font-size: 17px;
	}

	.lcs-linked-products__head p {
		font-size: 13px;
	}

	.woocommerce ul.products.lcs-linked-products__grid,
	ul.products.lcs-linked-products__grid,
	.lcs-linked-products__grid {
		gap: 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcs-linked-products .lcs-product-card {
		min-height: 300px;
	}
}

@media (max-width: 390px) {
	.woocommerce ul.products.lcs-linked-products__grid,
	ul.products.lcs-linked-products__grid,
	.lcs-linked-products__grid {
		grid-template-columns: 1fr;
	}
}

.lcs-mobile-header-actions {
	display: none;
}

.lcs-market-main .hero-benefits,
.lcs-market-main .lcs-benefits-mobile {
	display: none;
}

.lcs-market-main .hero-inner {
	grid-template-columns: minmax(0, 1fr);
}

.lcs-market-main .wide-strip.lcs-home-products {
	background: transparent;
	border: 0;
	border-bottom: 1px solid #e6ebf1;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	overflow: visible;
	padding: 22px 0 24px;
}

.lcs-market-main .wide-strip.lcs-home-products:last-of-type {
	border-bottom: 0;
}

.lcs-market-main .wide-strip.lcs-home-products .strip-head {
	margin-bottom: 16px;
	padding: 0 2px;
}

.lcs-home-carousel .product-row {
	padding-left: 0;
	padding-right: 0;
}

.lcs-home-carousel .product-row .lcs-product-card {
	flex-basis: calc((100% - 80px) / 6);
}

.woocommerce-cart .lcs-page-content,
.woocommerce-checkout .lcs-page-content,
.woocommerce-cart .lcs-cart-items,
.woocommerce-cart .lcs-cart-summary,
.woocommerce-cart .lcs-cart-empty,
.woocommerce-checkout .lcs-checkout-panel {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.woocommerce-cart .lcs-cart-items,
.woocommerce-cart .lcs-cart-summary,
.woocommerce-checkout .lcs-checkout-panel {
	border-top: 1px solid #e7edf2;
}

.woocommerce-cart .lcs-cart-summary,
.woocommerce-checkout .lcs-checkout-panel {
	padding-left: 0;
	padding-right: 0;
}

.woocommerce-cart .lcs-cart-table-head,
.woocommerce-checkout .lcs-checkout-review #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
	background: transparent;
}

@media (max-width: 1279px) {
	.lcs-home-carousel .product-row .lcs-product-card {
		flex-basis: calc((100% - 48px) / 4);
	}
}

@media (max-width: 768px) {
	.top-header {
		padding: 7px 12px;
	}

	.top-inner {
		display: grid;
		gap: 10px;
		grid-template-columns: minmax(0, 1fr) auto;
		height: 44px;
		padding: 0;
	}

	.top-inner .top-link,
	.top-inner .top-phone {
		display: none;
	}

	.brand-wrap {
		grid-column: 1;
		grid-row: 1;
		min-width: 0;
	}

	.brand,
	.brand-wrap .custom-logo-link {
		min-width: 0;
	}

	.brand-wrap .custom-logo {
		max-height: 28px;
	}

	.lcs-mobile-header-actions {
		align-items: center;
		display: flex;
		gap: 6px;
		grid-column: 2;
		grid-row: 1;
		justify-content: flex-end;
	}

	.lcs-mobile-header-actions .favorite,
	.lcs-mobile-header-actions .account {
		background: transparent;
		border-radius: 10px;
		height: 34px;
		padding: 0;
		width: 34px;
	}

	.lcs-mobile-header-actions .favorite strong,
	.lcs-mobile-header-actions .account strong {
		display: none;
	}

	.nav-bar {
		padding: 8px 12px;
	}

	.nav-inner {
		display: grid;
		gap: 8px;
		grid-template-columns: 42px minmax(0, 1fr) 42px;
		height: 40px;
		min-height: 40px;
	}

	.lcs-market-category-menu {
		grid-column: 1;
		grid-row: 1;
		position: relative;
	}

	.nav-all {
		border-radius: 10px;
		font-size: 0;
		height: 40px;
		padding: 0;
		width: 42px;
	}

	.nav-all-icon {
		background: transparent;
		border-radius: 0;
		height: 24px;
		width: 24px;
	}

	.lcs-market-search {
		grid-column: 2;
		grid-row: 1;
		grid-template-columns: minmax(0, 1fr) 42px;
		height: 40px;
	}

	.lcs-market-search input {
		font-size: 13px;
		padding: 0 10px;
	}

	.lcs-market-search button {
		padding: 0;
	}

	.lcs-market-search button span {
		display: none;
	}

	.nav-inner > .favorite,
	.nav-inner > .account {
		display: none;
	}

	.nav-inner > .cart {
		grid-column: 3;
		grid-row: 1;
		height: 40px;
		padding: 0;
		width: 42px;
	}

	.nav-inner > .cart strong {
		display: none;
	}

	.nav-inner > .cart .cart-count {
		left: 21px;
		top: -5px;
	}

	.lcs-market-header .lcs-market-category-menu .lcs-mega-menu {
		left: 0;
		right: auto;
		top: calc(100% + 8px);
		width: min(92vw, 360px);
	}

	.lcs-home-carousel .product-row {
		gap: 8px;
		padding-bottom: 4px;
		padding-right: 18px;
	}

	.lcs-home-carousel .product-row .lcs-product-card {
		flex-basis: calc((100% - 30px) / 3.5);
		min-width: 104px;
	}

	.lcs-market-main .wide-strip.lcs-home-products {
		padding: 18px 0 20px;
	}

	.woocommerce-cart .lcs-cart-page,
	.lcs-checkout-page {
		padding-left: 10px;
		padding-right: 10px;
	}

	.woocommerce-cart .lcs-cart-layout,
	.lcs-checkout-layout {
		gap: 10px;
	}

	.woocommerce-cart .lcs-cart-items,
	.woocommerce-cart .lcs-cart-summary,
	.woocommerce-checkout .lcs-checkout-panel {
		padding-left: 0;
		padding-right: 0;
	}

	.lcs-content-page .lcs-page-content {
		border-radius: 0;
		box-shadow: none;
	}
}

@media (max-width: 768px) {
  .lcs-market-header .top-header {
    padding: 7px 12px 5px;
  }

  .lcs-market-header .top-inner {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    height: 38px;
    min-height: 38px;
  }

  .lcs-market-header .brand,
  .lcs-market-header .custom-logo-link {
    align-items: center;
    display: inline-flex;
    height: 34px;
  }

  .lcs-market-header .brand-name {
    font-size: 22px;
    line-height: 1;
  }

  .lcs-mobile-header-actions .favorite,
  .lcs-mobile-header-actions .account,
  .nav-inner > .cart,
  .nav-all {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    min-width: 0;
    flex: 0 0 auto;
  }

  .lcs-mobile-header-actions .favorite-icon,
  .lcs-mobile-header-actions .account-icon,
  .nav-inner > .cart .cart-icon {
    align-items: center;
    display: inline-flex;
    height: 21px;
    justify-content: center;
    width: 21px;
  }

  .lcs-mobile-header-actions svg,
  .nav-inner > .cart svg {
    display: block;
    height: 21px;
    width: 21px;
  }

  .nav-all-icon {
    align-items: center;
    display: inline-flex;
    flex: 0 0 24px;
    height: 24px;
    justify-content: center;
    width: 24px;
  }

  .nav-all .lcs-icon-lines,
  .nav-all .lcs-icon-lines::before,
  .nav-all .lcs-icon-lines::after {
    height: 2px;
    width: 17px;
  }

  .nav-all .lcs-icon-lines::before { top: -6px; }
  .nav-all .lcs-icon-lines::after { top: 6px; }

  .lcs-market-search {
    min-width: 0;
    overflow: hidden;
  }

  .lcs-market-search input[type="search"] {
    min-width: 0;
    width: 100%;
  }

  .lcs-market-main .wide-strip.lcs-home-products {
    overflow: hidden;
    padding: 18px 0 22px;
  }

  .lcs-home-carousel {
    margin-left: -1px;
    overflow: visible;
  }

  .lcs-home-carousel .product-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    grid-template-columns: none;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    padding-left: 1px;
    padding-right: 62px;
    scroll-padding-left: 1px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .lcs-home-carousel .product-row::-webkit-scrollbar,
  .lcs-linked-products__grid::-webkit-scrollbar {
    display: none;
  }

  .lcs-home-carousel .product-row,
  .lcs-linked-products__grid {
    scrollbar-width: none;
  }

  .lcs-home-carousel .product-row .lcs-product-card {
    flex: 0 0 calc((100% - 18px) / 2.22);
    max-width: none;
    min-width: 158px;
    scroll-snap-align: start;
  }

  .lcs-home-carousel .lcs-product-card,
  .lcs-home-carousel .product-row .lcs-product-card {
    min-height: 328px;
  }

  .lcs-home-carousel .lcs-product-image,
  .lcs-home-carousel .product-row .lcs-product-image {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }
}

/* Cart page: cleaner and less cramped */
.woocommerce-cart .lcs-cart-page {
  max-width: 1120px;
}

.woocommerce-cart .lcs-cart-items,
.woocommerce-cart .lcs-cart-summary {
  background: #ffffff;
  border: 1px solid #e7edf2;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.woocommerce-cart .lcs-cart-summary-trust,
.woocommerce-checkout .lcs-checkout-trust {
  display: none;
}

@media (max-width: 760px) {
  .woocommerce-cart .lcs-cart-page {
    padding: 14px 12px 42px;
  }

  .woocommerce-cart .lcs-cart-head {
    margin-bottom: 12px;
  }

  .woocommerce-cart .lcs-cart-head h1 {
    font-size: 24px;
  }

  .woocommerce-cart .lcs-cart-continue {
    font-size: 12.5px;
  }

  .woocommerce-cart .lcs-cart-layout {
    gap: 14px;
  }

  .woocommerce-cart .lcs-cart-items,
  .woocommerce-cart .lcs-cart-summary {
    border: 1px solid #e7edf2;
    padding: 0;
  }

  .woocommerce-cart .lcs-cart-item {
    align-items: start;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .woocommerce-cart .lcs-cart-product {
    display: grid;
    gap: 10px;
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .woocommerce-cart .lcs-cart-thumb {
    height: 74px;
    width: 74px;
  }

  .woocommerce-cart .lcs-cart-product-title {
    font-size: 13.5px;
    line-height: 1.35;
    -webkit-line-clamp: 3;
  }

  .woocommerce-cart .lcs-cart-quantity,
  .woocommerce-cart .lcs-cart-amount {
    border-top: 1px solid #edf2f5;
    display: grid;
    gap: 8px;
    grid-template-columns: 86px minmax(0, 1fr);
    justify-content: initial;
    padding-top: 9px;
  }

  .woocommerce-cart .lcs-cart-quantity::before,
  .woocommerce-cart .lcs-cart-amount::before {
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
  }

  .woocommerce-cart .lcs-cart-quantity .quantity {
    justify-self: end;
  }

  .woocommerce-cart .lcs-cart-amount {
    text-align: right;
  }

  .woocommerce-cart .lcs-cart-summary {
    padding: 14px;
  }

  .woocommerce-cart .lcs-cart-summary h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .woocommerce-cart .lcs-cart-checkout,
  .woocommerce .lcs-cart-checkout.button.alt {
    height: 50px;
    line-height: 50px;
  }
}

/* Cart drawer: readable mobile mini-cart */
.lcs-cart-drawer .widget_shopping_cart_content {
  padding: 12px 16px 18px;
}

.lcs-cart-drawer .woocommerce-mini-cart-item {
  align-items: start;
  border-bottom: 1px solid #edf2f5;
  gap: 4px 11px;
  grid-template-columns: 72px minmax(0, 1fr) 26px;
}

.lcs-cart-drawer .woocommerce-mini-cart-item img {
  border: 1px solid #e7edf2;
  border-radius: 0;
  grid-column: 1;
  grid-row: 1 / span 3;
  height: 72px;
  object-fit: contain;
  width: 72px;
}

.lcs-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) {
  grid-column: 2;
  min-width: 0;
  padding-right: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lcs-cart-drawer .woocommerce-mini-cart-item .remove {
  background: #fff4f4;
  border: 1px solid #fee2e2;
  color: #ef4444;
  font-size: 16px;
  grid-column: 3;
  grid-row: 1;
  height: 24px;
  line-height: 20px;
  width: 24px;
}

.lcs-cart-drawer .woocommerce-mini-cart-item .quantity {
  color: #0a818f;
  font-size: 13px;
  font-weight: 800;
  grid-column: 2 / 4;
  line-height: 1.35;
}

.lcs-cart-drawer .total {
  align-items: center;
  color: #172033;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin: 12px 0;
}

.lcs-cart-drawer .buttons .button {
  border-radius: 0;
  font-size: 14px;
  font-weight: 850;
  min-height: 46px;
  padding: 13px 14px;
}

@media (max-width: 760px) {
  .lcs-cart-drawer {
    width: 100vw;
    max-width: none;
  }

  .lcs-cart-drawer-head {
    padding: 14px 14px 12px;
  }

  .lcs-cart-drawer .widget_shopping_cart_content {
    padding: 8px 14px 16px;
  }
}

/* Product-page and cart linked products: one row, horizontal swipe, auto-scroll target */

.woocommerce ul.products.lcs-linked-products__grid,
ul.products.lcs-linked-products__grid,
.lcs-linked-products__grid {
  list-style: none;
  margin: 0;
  scroll-padding-left: 0;
}

@media (max-width: 1100px) {
  .woocommerce ul.products.lcs-linked-products__grid li.product,
  .woocommerce-page ul.products.lcs-linked-products__grid li.product,
  ul.products.lcs-linked-products__grid li.product,
  .lcs-linked-products__grid .lcs-product-loop-item {
    flex-basis: calc((100% - 24px) / 3);
  }
}

@media (max-width: 780px) {
  .single-product .lcs-linked-products,
  .woocommerce-cart .lcs-linked-products,
  .lcs-cart-page .lcs-linked-products {
    padding: 14px 0 14px 10px;
  }

  .woocommerce ul.products.lcs-linked-products__grid,
  ul.products.lcs-linked-products__grid,
  .lcs-linked-products__grid {
    gap: 10px;
    padding-right: 64px;
  }

  .woocommerce ul.products.lcs-linked-products__grid li.product,
  .woocommerce-page ul.products.lcs-linked-products__grid li.product,
  ul.products.lcs-linked-products__grid li.product,
  .lcs-linked-products__grid .lcs-product-loop-item {
    flex: 0 0 calc((100% - 18px) / 2.15);
    min-width: 0;
  }
}

.single-product .lcs-product-delivery-info .lcs-single-trust-item:first-child .lcs-single-trust-icon {
  background: rgba(23, 181, 183, .14);
  color: #0a818f;
}

.single-product .lcs-product-delivery-info .lcs-single-trust-text {
  line-height: 1.45;
}

.lcs-cart-drawer .woocommerce-mini-cart-item {
  display: block;
  min-height: 102px;
  padding: 14px 34px 14px 0;
  position: relative;
}

.lcs-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) {
  color: #172033;
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.28;
  min-height: 74px;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
}

.lcs-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) img {
  background: #f7fbfb;
  border: 1px solid #e7edf2;
  border-radius: 0;
  float: left;
  height: 72px;
  margin: 0 11px 6px 0;
  object-fit: contain;
  position: static;
  width: 72px;
}

.lcs-cart-drawer .woocommerce-mini-cart-item .remove {
  position: absolute;
  right: 0;
  top: 14px;
}

.lcs-cart-drawer .woocommerce-mini-cart-item .quantity {
  clear: none;
  display: block;
  margin: 4px 0 0 83px;
}

@media (max-width: 768px) {
  /* Keep category/hamburger icon optically centered inside the teal square. */
  .lcs-market-header .nav-all {
    align-items: center;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 0;
    width: 42px;
  }

  .lcs-market-header .nav-all-icon {
    align-items: center;
    display: flex;
    height: 40px;
    justify-content: center;
    margin: 0;
    position: relative;
    width: 42px;
  }

  .lcs-market-header .nav-all .lcs-icon-lines {
    left: 50%;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .lcs-market-header .nav-all .lcs-icon-lines,
  .lcs-market-header .nav-all .lcs-icon-lines::before,
  .lcs-market-header .nav-all .lcs-icon-lines::after {
    height: 2px;
    width: 17px;
  }

  .lcs-market-header .nav-all .lcs-icon-lines::before { top: -6px; }
  .lcs-market-header .nav-all .lcs-icon-lines::after { top: 6px; }

  /* Home collections: 2 full cards + a visible part of the 3rd; no text/button over image. */
  .lcs-home-carousel .product-row {
    gap: 10px;
    padding-right: 76px;
  }

  .lcs-home-carousel .product-row .lcs-product-card {
    display: flex;
    flex: 0 0 calc((100% - 10px) / 2.18);
    flex-direction: column;
    min-height: 358px;
    min-width: 164px;
    overflow: hidden;
  }

  .lcs-home-carousel .product-row .lcs-product-image {
    aspect-ratio: 1 / 1;
    display: flex;
    flex: 0 0 auto;
    min-height: 0;
    padding: 8px;
  }

  .lcs-home-carousel .product-row .lcs-product-body {
    background: #fff;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 148px;
    padding: 10px 10px 11px;
    position: relative;
    z-index: 2;
  }

  .lcs-home-carousel .product-row .lcs-product-title {
    -webkit-line-clamp: 2;
    font-size: 12.5px;
    line-height: 1.32;
    min-height: 34px;
  }

  .lcs-home-carousel .product-row .lcs-product-actions {
    margin-top: auto;
    padding-top: 10px;
  }

  .lcs-home-carousel .product-row .lcs-card-add {
    font-size: 11.5px;
    height: 34px;
    line-height: 1.1;
    min-height: 34px;
    padding: 0 8px;
    white-space: normal;
  }

  .lcs-home-carousel .product-row .lcs-card-add::before {
    flex: 0 0 14px;
  }

  /* Cart drawer must stay a side drawer, not full-screen. */
  .lcs-cart-drawer {
    left: auto;
    max-width: 390px;
    right: 0;
    width: min(88vw, 390px);
  }
}

@media (max-width: 380px) {
  .lcs-home-carousel .product-row .lcs-product-card {
    flex-basis: 47%;
    min-width: 154px;
  }

  .lcs-cart-drawer {
    width: min(90vw, 360px);
  }
}

/* Linked upsell/cross-sell sliders: larger cards, single row, swipeable without squeezed content. */
.single-product .lcs-linked-products,
.woocommerce-cart .lcs-linked-products,
.lcs-cart-page .lcs-linked-products {
  overflow: hidden;
}

.woocommerce ul.products.lcs-linked-products__grid,
ul.products.lcs-linked-products__grid,
.lcs-linked-products__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 70px 10px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.woocommerce ul.products.lcs-linked-products__grid::-webkit-scrollbar,
ul.products.lcs-linked-products__grid::-webkit-scrollbar,
.lcs-linked-products__grid::-webkit-scrollbar {
  display: none;
}

.woocommerce ul.products.lcs-linked-products__grid li.product,
.woocommerce-page ul.products.lcs-linked-products__grid li.product,
ul.products.lcs-linked-products__grid li.product,
.lcs-linked-products__grid .lcs-product-loop-item {
  flex: 0 0 214px;
  max-width: 214px;
  min-width: 214px;
  width: 214px;
  scroll-snap-align: start;
}

.lcs-linked-products .lcs-product-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  overflow: hidden;
}

.lcs-linked-products .lcs-product-image {
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
}

.lcs-linked-products .lcs-product-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 142px;
  position: relative;
  z-index: 2;
}

.lcs-linked-products .lcs-product-actions {
  margin-top: auto;
}

@media (max-width: 780px) {
  .single-product .lcs-linked-products,
  .woocommerce-cart .lcs-linked-products,
  .lcs-cart-page .lcs-linked-products {
    padding: 14px 0 14px 10px;
  }

  .woocommerce ul.products.lcs-linked-products__grid,
  ul.products.lcs-linked-products__grid,
  .lcs-linked-products__grid {
    gap: 10px;
    padding-right: 78px;
  }

  .woocommerce ul.products.lcs-linked-products__grid li.product,
  .woocommerce-page ul.products.lcs-linked-products__grid li.product,
  ul.products.lcs-linked-products__grid li.product,
  .lcs-linked-products__grid .lcs-product-loop-item {
    flex: 0 0 calc((100% - 10px) / 2.05);
    max-width: none;
    min-width: 174px;
    width: auto;
  }

  .lcs-linked-products .lcs-product-card {
    min-height: 346px;
  }

  .lcs-linked-products .lcs-product-title {
    -webkit-line-clamp: 2;
    min-height: 34px;
  }
}

@media (max-width: 380px) {
  .woocommerce ul.products.lcs-linked-products__grid li.product,
  .woocommerce-page ul.products.lcs-linked-products__grid li.product,
  ul.products.lcs-linked-products__grid li.product,
  .lcs-linked-products__grid .lcs-product-loop-item {
    flex-basis: 48%;
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  /* Header row: hamburger + search + cart must stay inside one clean line. */
  .lcs-market-header .nav-bar {
    padding: 7px 12px 8px;
  }

  .lcs-market-header .nav-inner {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: 42px minmax(0, 1fr) 36px;
    height: 40px;
    min-height: 40px;
    max-width: none;
    width: 100%;
  }

  .lcs-market-header .lcs-market-category-menu {
    grid-column: 1;
    grid-row: 1;
    height: 40px;
    min-width: 0;
    width: 42px;
  }

  .lcs-market-header .nav-all {
    align-items: center;
    border-radius: 9px;
    display: flex;
    font-size: 0;
    gap: 0;
    height: 40px;
    justify-content: center;
    line-height: 0;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-indent: -9999px;
    width: 42px;
  }

  .lcs-market-header .nav-all-icon {
    align-items: center;
    display: flex;
    height: 40px;
    inset: 0;
    justify-content: center;
    margin: 0;
    position: absolute;
    text-indent: 0;
    width: 42px;
  }

  .lcs-market-header .nav-all .lcs-icon-lines {
    background: #fff;
    height: 2px;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 17px;
  }

  .lcs-market-header .nav-all .lcs-icon-lines::before,
  .lcs-market-header .nav-all .lcs-icon-lines::after {
    background: #fff;
    height: 2px;
    left: 0;
    width: 17px;
  }

  .lcs-market-header .nav-all .lcs-icon-lines::before { top: -6px; }
  .lcs-market-header .nav-all .lcs-icon-lines::after { top: 6px; }

  .lcs-market-header .lcs-market-search {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: minmax(0, 1fr) 40px;
    height: 40px;
    min-width: 0;
    overflow: hidden;
    width: 100%;
  }

  .lcs-market-header .lcs-market-search input[type="search"] {
    font-size: 13px;
    min-width: 0;
    padding: 0 10px;
    width: 100%;
  }

  .lcs-market-header .lcs-market-search button {
    align-items: center;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 0;
    width: 40px;
  }

  .lcs-market-header .nav-inner > .cart {
    align-items: center;
    background: transparent;
    border: 0;
    display: flex;
    grid-column: 3;
    grid-row: 1;
    height: 40px;
    justify-content: center;
    min-width: 0;
    padding: 0;
    position: relative;
    width: 36px;
  }

  .lcs-market-header .nav-inner > .cart .cart-icon {
    align-items: center;
    display: flex;
    height: 22px;
    justify-content: center;
    width: 22px;
  }

  .lcs-market-header .nav-inner > .cart svg {
    display: block;
    height: 22px;
    width: 22px;
  }

  .lcs-market-header .nav-inner > .cart .cart-count {
    border-width: 2px;
    font-size: 10px;
    height: 17px;
    left: auto;
    line-height: 1;
    min-width: 17px;
    padding: 0 4px;
    right: -2px;
    top: 0;
  }

  /* Home collection cards: keep image and text as separate blocks, never overlap. */
  .lcs-home-carousel .product-row {
    align-items: stretch;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    padding-right: 72px;
    scroll-snap-type: x proximity;
  }

  .lcs-home-carousel .product-row .lcs-product-card {
    display: flex;
    flex: 0 0 calc((100% - 10px) / 2.08);
    flex-direction: column;
    height: auto;
    min-height: 372px;
    min-width: 162px;
    overflow: hidden;
    scroll-snap-align: start;
  }

  .lcs-home-carousel .product-row .lcs-product-image {
    aspect-ratio: 1 / 1;
    display: flex;
    flex: 0 0 auto;
    height: auto;
    min-height: 0;
    padding: 8px;
    position: relative;
  }

  .lcs-home-carousel .product-row .lcs-product-body {
    background: #ffffff;
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    min-height: 162px;
    padding: 10px 10px 11px;
    position: static;
    z-index: auto;
  }

  .lcs-home-carousel .product-row .lcs-product-price {
    margin-bottom: 7px;
    min-height: 20px;
  }

  .lcs-home-carousel .product-row .lcs-product-title {
    -webkit-line-clamp: 2;
    font-size: 12.5px;
    line-height: 1.33;
    min-height: 34px;
  }

  .lcs-home-carousel .product-row .lcs-product-rating {
    min-height: 16px;
  }

  .lcs-home-carousel .product-row .lcs-product-actions {
    margin-top: auto;
    padding-top: 9px;
  }

  .lcs-home-carousel .product-row .lcs-card-add {
    align-items: center;
    display: inline-flex;
    font-size: 11.5px;
    height: 36px;
    justify-content: center;
    min-height: 36px;
    padding: 0 7px;
    position: static;
    white-space: normal;
  }

  /* Product upsell/cross-sell cards: wider and readable, one-row swipe. */
  .single-product .lcs-linked-products,
  .woocommerce-cart .lcs-linked-products,
  .lcs-cart-page .lcs-linked-products {
    overflow: hidden;
    padding: 14px 0 15px 10px;
  }

  .woocommerce ul.products.lcs-linked-products__grid,
  ul.products.lcs-linked-products__grid,
  .lcs-linked-products__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 72px 10px 0;
    scroll-snap-type: x proximity;
  }

  .woocommerce ul.products.lcs-linked-products__grid li.product,
  .woocommerce-page ul.products.lcs-linked-products__grid li.product,
  ul.products.lcs-linked-products__grid li.product,
  .lcs-linked-products__grid .lcs-product-loop-item {
    flex: 0 0 calc((100% - 10px) / 2.05);
    max-width: none;
    min-width: 168px;
    scroll-snap-align: start;
    width: auto;
  }

  .lcs-linked-products .lcs-product-card {
    height: auto;
    min-height: 360px;
  }

  .lcs-linked-products .lcs-product-image {
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    padding: 8px;
  }

  .lcs-linked-products .lcs-product-body {
    min-height: 158px;
    padding: 10px 10px 11px;
  }

  .lcs-linked-products .lcs-product-title {
    font-size: 12.5px;
    line-height: 1.33;
    min-height: 34px;
  }

  .lcs-linked-products .lcs-card-add {
    font-size: 11.5px;
    height: 36px;
    min-height: 36px;
    white-space: normal;
  }

  /* Side cart: not full-screen; keep visible page overlay on the left. */
  .lcs-cart-drawer {
    left: auto;
    max-width: 360px;
    right: 0;
    width: min(78vw, 360px);
  }
}

@media (max-width: 380px) {
  .lcs-cart-drawer {
    width: min(84vw, 340px);
  }

  .lcs-home-carousel .product-row .lcs-product-card,
  .woocommerce ul.products.lcs-linked-products__grid li.product,
  .woocommerce-page ul.products.lcs-linked-products__grid li.product,
  ul.products.lcs-linked-products__grid li.product,
  .lcs-linked-products__grid .lcs-product-loop-item {
    min-width: 158px;
  }
}

.lcs-product-card .added_to_cart,
.product-row .added_to_cart,
.lcs-product-grid .added_to_cart,
.woocommerce ul.products .added_to_cart,
.lcs-linked-products .added_to_cart {
  display: none;
}

.lcs-no-rating {
  display: none;
  margin: 0;
  min-height: 0;
  visibility: hidden;
}

@media (max-width: 768px) {
  .lcs-home-carousel .product-row {
    align-items: flex-start;
  }

  .lcs-home-carousel .product-row .lcs-product-card {
    min-height: 0;
  }

  .lcs-home-carousel .product-row .lcs-product-image {
    padding: 7px;
  }

  .lcs-home-carousel .product-row .lcs-product-body {
    flex: 0 0 auto;
    min-height: 0;
    padding: 9px 10px 10px;
  }

  .lcs-home-carousel .product-row .lcs-product-price {
    margin-bottom: 6px;
    min-height: 18px;
  }

  .lcs-home-carousel .product-row .lcs-product-title {
    min-height: 34px;
  }

  .lcs-home-carousel .product-row .lcs-product-rating {
    margin-top: 6px;
    min-height: 16px;
  }

  .lcs-home-carousel .product-row .lcs-product-rating.lcs-no-rating {
    display: none;
    margin: 0;
    min-height: 0;
  }

  .lcs-home-carousel .product-row .lcs-product-actions {
    margin-top: 10px;
    padding-top: 0;
  }

  .lcs-home-carousel .product-row .lcs-card-add {
    height: 34px;
    min-height: 34px;
  }

  .lcs-linked-products .lcs-product-card {
    min-height: 0;
  }

  .lcs-linked-products .lcs-product-body {
    flex: 0 0 auto;
    min-height: 0;
    padding: 9px 10px 10px;
  }

  .lcs-linked-products .lcs-product-rating.lcs-no-rating {
    display: none;
    margin: 0;
    min-height: 0;
  }

  .lcs-linked-products .lcs-product-actions {
    margin-top: 10px;
    padding-top: 0;
  }

  .lcs-linked-products .lcs-card-add {
    height: 34px;
    min-height: 34px;
  }
}

.woocommerce-notices-wrapper .woocommerce-message,
.single-product .woocommerce-message,
.post-type-archive-product .woocommerce-message,
.tax-product_cat .woocommerce-message,
.home .woocommerce-message,
.lcs-site-main > .woocommerce-message {
  display: none;
  visibility: hidden;
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

.lcs-cart-toast {
  background: #16a34a;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 12px 28px rgba(22, 163, 74, .28);
  color: #ffffff;
}

.lcs-product-rating.lcs-no-rating,
.product-row .lcs-product-rating.lcs-no-rating,
.lcs-product-grid .lcs-product-rating.lcs-no-rating,
.woocommerce ul.products .lcs-product-rating.lcs-no-rating,
.lcs-linked-products .lcs-product-rating.lcs-no-rating {
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  min-height: 18px;
  height: 18px;
  margin: 8px 0 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .lcs-home-carousel .product-row .lcs-product-rating.lcs-no-rating,
  .lcs-linked-products .lcs-product-rating.lcs-no-rating {
    display: flex;
    min-height: 16px;
    height: 16px;
    margin-top: 6px;
  }
}

.lcs-cart-drawer-notice,
.lcs-cart-drawer .lcs-cart-drawer-notice,
.woocommerce-notices-wrapper:empty {
  display: none;
  visibility: hidden;
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-message[role="alert"],
.woocommerce-message[role="status"] {
  border: 0;
}

@media (max-width: 768px) {
  .lcs-market-header .top-header {
    padding: 7px 12px 5px;
  }

  .lcs-market-header .top-inner {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    height: 38px;
    min-height: 38px;
    padding: 0;
    width: 100%;
  }

  .lcs-market-header .brand-wrap {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .lcs-market-header .brand,
  .lcs-market-header .custom-logo-link {
    align-items: center;
    display: inline-flex;
    height: 34px;
    min-width: 0;
  }

  .lcs-market-header .brand-wrap .custom-logo {
    max-height: 28px;
    width: auto;
  }

  .lcs-market-header .top-inner .top-link {
    display: none;
  }

  .lcs-market-header .top-inner .top-phone {
    align-items: center;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    gap: 5px;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    line-height: 1;
    max-width: 185px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lcs-market-header .top-phone-icon {
    flex: 0 0 16px;
    height: 16px;
    width: 16px;
  }

  .lcs-market-header .lcs-mobile-header-actions {
    display: none;
  }

  .lcs-market-header .nav-bar {
    padding: 7px 12px 8px;
  }

  .lcs-market-header .nav-inner {
    align-items: center;
    display: grid;
    gap: 6px;
    grid-template-columns: 42px minmax(0, 1fr) 30px 30px 34px;
    height: 40px;
    min-height: 40px;
    max-width: none;
    width: 100%;
  }

  .lcs-market-header .lcs-market-category-menu {
    grid-column: 1;
    grid-row: 1;
    height: 40px;
    width: 42px;
  }

  .lcs-market-header .lcs-market-search {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: minmax(0, 1fr) 40px;
    height: 40px;
    min-width: 0;
    overflow: hidden;
    width: 100%;
  }

  .lcs-market-header .nav-inner > .favorite,
  .lcs-market-header .nav-inner > .account,
  .lcs-market-header .nav-inner > .cart {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 9px;
    color: var(--lcs-navy);
    display: flex;
    grid-row: 1;
    height: 40px;
    justify-content: center;
    min-width: 0;
    padding: 0;
    position: relative;
  }

  .lcs-market-header .nav-inner > .favorite {
    grid-column: 3;
    width: 30px;
  }

  .lcs-market-header .nav-inner > .account {
    grid-column: 4;
    width: 30px;
  }

  .lcs-market-header .nav-inner > .cart {
    grid-column: 5;
    width: 34px;
  }

  .lcs-market-header .nav-inner > .favorite strong,
  .lcs-market-header .nav-inner > .account strong,
  .lcs-market-header .nav-inner > .cart strong {
    display: none;
  }

  .lcs-market-header .nav-inner > .favorite .favorite-icon,
  .lcs-market-header .nav-inner > .account .account-icon,
  .lcs-market-header .nav-inner > .cart .cart-icon {
    align-items: center;
    display: flex;
    height: 21px;
    justify-content: center;
    width: 21px;
  }

  .lcs-market-header .nav-inner > .favorite svg,
  .lcs-market-header .nav-inner > .account svg,
  .lcs-market-header .nav-inner > .cart svg {
    display: block;
    height: 21px;
    width: 21px;
  }

  .lcs-market-header .nav-inner > .cart .cart-count {
    align-items: center;
    border-width: 2px;
    display: inline-flex;
    font-size: 10px;
    height: 17px;
    justify-content: center;
    left: auto;
    line-height: 1;
    min-width: 17px;
    padding: 0 4px;
    right: -4px;
    top: 0;
  }
}

@media (max-width: 370px) {
  .lcs-market-header .top-inner .top-phone {
    font-size: 11px;
    max-width: 154px;
  }

  .lcs-market-header .nav-inner {
    gap: 5px;
    grid-template-columns: 40px minmax(0, 1fr) 28px 28px 32px;
  }

  .lcs-market-header .lcs-market-category-menu,
  .lcs-market-header .nav-all {
    width: 40px;
  }

  .lcs-market-header .nav-inner > .favorite,
  .lcs-market-header .nav-inner > .account {
    width: 28px;
  }

  .lcs-market-header .nav-inner > .cart {
    width: 32px;
  }
}

.lcs-cart-toast {
	z-index: 10000;
}

.added_to_cart.wc-forward {
  display: none;
  visibility: hidden;
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

/* Stable cart drawer state. */
.lcs-cart-overlay[hidden] {
	display: none;
}

.lcs-cart-overlay {
	background: rgba(15, 23, 42, .48);
	inset: 0;
	position: fixed;
	z-index: 9998;
}

.lcs-cart-drawer {
	background: #fff;
	display: flex;
	flex-direction: column;
	height: 100dvh;
	inset: 0 0 0 auto;
	max-width: 420px;
	opacity: 1;
	position: fixed;
	transform: translate3d(105%, 0, 0);
	transition: transform .22s ease;
	visibility: visible;
	width: min(92vw, 420px);
	z-index: 9999;
}

.lcs-cart-drawer.is-open,
body.lcs-cart-drawer-open .lcs-cart-drawer {
	transform: translate3d(0, 0, 0);
}

body.lcs-cart-drawer-open {
	overflow: hidden;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-message[role="alert"],
.woocommerce-message[role="status"] {
	display: block;
	height: auto;
	margin: 0 0 16px;
	min-height: 0;
	overflow: visible;
	padding: 12px 16px;
	visibility: visible;
}

@media (max-width: 768px) {
	.lcs-cart-drawer {
		max-width: 360px;
		width: min(84vw, 360px);
	}

	.lcs-market-header .nav-inner {
		align-items: center;
		display: flex;
		gap: 6px;
		grid-template-columns: none;
	}

	.lcs-market-header .lcs-market-category-menu {
		flex: 0 0 40px;
		grid-column: auto;
	}

	.lcs-market-header .lcs-market-search {
		flex: 1 1 auto;
		grid-column: auto;
		min-width: 90px;
	}

	.lcs-market-header .nav-inner > .favorite,
	.lcs-market-header .nav-inner > .account {
		flex: 0 0 28px;
		grid-column: auto;
	}

	.lcs-market-header .nav-inner > .cart {
		flex: 0 0 34px;
		grid-column: auto;
	}
}

@media (max-width: 380px) {
	.lcs-cart-drawer {
		width: min(88vw, 340px);
	}
}

/*
 * Category flyout: a main category stays in the left column while its
 * subcategories open in the adjacent right-hand panel at every viewport.
 */
@media (max-width: 900px) {
	.lcs-market-header .lcs-market-category-menu .lcs-mega-menu.lcs-cascade-wrap {
		max-height: min(76vh, 560px);
		overflow: hidden;
		width: min(720px, calc(100vw - 24px));
	}

	.lcs-market-header .lcs-cascade-menu {
		display: grid;
		grid-template-columns: minmax(140px, 42%) minmax(0, 1fr);
		min-height: min(500px, 72vh);
		overflow: hidden;
	}

	.lcs-market-header .lcs-cascade-main {
		background: #fbfcfd;
		border-right: 1px solid rgba(219, 228, 239, .85);
		max-height: min(500px, 72vh);
		overflow-x: hidden;
		overflow-y: auto;
		padding: 7px;
	}

	.lcs-market-header .lcs-cascade-main-link {
		gap: 7px;
		grid-template-columns: 27px minmax(0, 1fr) 13px;
		min-height: 45px;
		padding: 6px;
	}

	.lcs-market-header .lcs-cascade-main-text {
		font-size: 12px;
		line-height: 1.25;
		overflow: visible;
		text-overflow: clip;
		white-space: normal;
	}

	.lcs-market-header .lcs-cascade-chevron {
		font-size: 18px;
	}

	.lcs-market-header .lcs-cascade-subpanel {
		background: #fff;
		border: 0;
		border-radius: 0;
		bottom: 0;
		left: 42%;
		margin: 0;
		overflow-x: hidden;
		overflow-y: auto;
		padding: 12px;
		position: absolute;
		right: 0;
		top: 0;
	}

	.lcs-market-header .lcs-cascade-panel-title {
		display: flex;
		font-size: 15px;
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.lcs-market-header .lcs-cascade-subgrid {
		grid-template-columns: 1fr;
	}

	.lcs-market-header .lcs-cascade-sub-link {
		font-size: 12px;
		gap: 7px;
		line-height: 1.25;
		min-height: 42px;
		padding: 6px 7px;
	}

	.lcs-market-header .lcs-cascade-menu .lcs-store-category-icon {
		flex: 0 0 27px;
		height: 27px;
		width: 27px;
	}

	.lcs-market-header .lcs-cascade-menu .lcs-store-category-icon svg {
		height: 18px;
		width: 18px;
	}
}

@media (max-width: 420px) {
	.lcs-market-header .lcs-market-category-menu .lcs-mega-menu.lcs-cascade-wrap {
		width: calc(100vw - 24px);
	}

	.lcs-market-header .lcs-cascade-menu {
		grid-template-columns: minmax(132px, 40%) minmax(0, 1fr);
	}

	.lcs-market-header .lcs-cascade-subpanel {
		left: 40%;
		padding: 10px 8px;
	}

	.lcs-market-header .lcs-cascade-panel-title {
		font-size: 13px;
		gap: 6px;
	}

	.lcs-market-header .lcs-cascade-sub-link {
		font-size: 11.5px;
	}
}

.lcs-market-main .main-wrap {
	padding-top: 26px;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection {
	border: 0;
	border-radius: 18px;
	box-shadow: none;
	margin: 0 0 24px;
	overflow: hidden;
	padding: 20px 22px 22px;
	position: relative;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection::before {
	background: radial-gradient(circle at 18% 0, rgba(255, 255, 255, 0.18), transparent 36%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection > * {
	position: relative;
	z-index: 1;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head {
	margin-bottom: 16px;
	padding: 0;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head h2,
.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head a {
	color: #ffffff;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head a {
	align-items: center;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	display: inline-flex;
	min-height: 36px;
	padding: 8px 14px;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head a:hover,
.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head a:focus {
	background: rgba(255, 255, 255, 0.24);
}

.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row {
	gap: 18px;
	padding: 0 2px 4px;
}

.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-card {
	background: #ffffff;
	flex-basis: calc((100% - 90px) / 6);
	min-width: 0;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-featured {
	background: linear-gradient(135deg, #a21caf 0%, #be185d 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-personal {
	background: linear-gradient(135deg, #06b6bb 0%, #14b8a6 48%, #7dd3fc 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-kitchen {
	background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-auto {
	background: linear-gradient(135deg, #1d4ed8 0%, #0e7490 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-outdoor {
	background: linear-gradient(135deg, #15803d 0%, #65a30d 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-beauty {
	background: linear-gradient(135deg, #be123c 0%, #ec4899 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-lighting {
	background: linear-gradient(135deg, #ca8a04 0%, #0891b2 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-electronics {
	background: linear-gradient(135deg, #4338ca 0%, #0e7490 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-kids {
	background: linear-gradient(135deg, #f97316 0%, #db2777 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-storage {
	background: linear-gradient(135deg, #7c3aed 0%, #0d9488 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-tools {
	background: linear-gradient(135deg, #334155 0%, #0f766e 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-business {
	background: linear-gradient(135deg, #475569 0%, #0284c7 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-pets {
	background: linear-gradient(135deg, #16a34a 0%, #0d9488 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-all-products-section {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin: 8px 0 0;
	padding: 24px 0 0;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-all-products-section .strip-head {
	padding: 0 2px;
}

.lcs-all-products-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lcs-all-products-status {
	align-items: center;
	background: #f6fbfc;
	border: 1px solid #e3eef2;
	border-radius: 12px;
	color: var(--lcs-muted);
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 10px;
	justify-content: center;
	margin-top: 18px;
	min-height: 46px;
	padding: 12px 16px;
	text-align: center;
}

.lcs-all-products-status.is-sentinel {
	background: transparent;
	border: 0;
	margin-top: 10px;
	min-height: 18px;
	padding: 0;
}

.lcs-all-products-loader {
	border: 2px solid rgba(18, 184, 193, 0.18);
	border-top-color: var(--lcs-secondary);
	border-radius: 999px;
	display: none;
	flex: 0 0 18px;
	height: 18px;
	width: 18px;
	animation: lcs-spin .75s linear infinite;
}

.lcs-all-products-status.is-loading .lcs-all-products-loader {
	display: inline-block;
}

.lcs-home-collection-loader {
	align-items: center;
	color: rgba(255, 255, 255, 0.92);
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	min-height: 44px;
	padding: 4px 0 2px;
}

.lcs-home-collection-loader[hidden] {
	display: none;
}

.lcs-home-collection-loader .lcs-all-products-loader {
	border-color: rgba(255, 255, 255, 0.34);
	border-top-color: #ffffff;
}

.lcs-load-more-button {
	background: var(--lcs-primary);
	border: 0;
	border-radius: 12px;
	color: #ffffff;
	cursor: pointer;
	display: block;
	font-weight: 900;
	margin: 18px auto 0;
	min-height: 44px;
	padding: 12px 20px;
}

.lcs-load-more-button:disabled {
	cursor: wait;
	opacity: .68;
}

.lcs-all-products-noscript {
	background: #fff8e6;
	border: 1px solid #fde68a;
	border-radius: 12px;
	color: var(--lcs-text);
	font-weight: 700;
	margin: 16px 0 0;
	padding: 12px 14px;
}

.lcs-all-products-noscript a {
	color: var(--lcs-secondary);
	font-weight: 900;
}

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

.lcs-cascade-all-link {
	display: none !important;
}

.lcs-archive-subcategories {
	background: #ffffff;
	border: 1px solid #e6edf3;
	border-radius: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 22px;
	padding: 14px;
}

.lcs-archive-subcategory-link {
	align-items: center;
	background: #f7fbfc;
	border: 1px solid #e1edf1;
	border-radius: 12px;
	color: var(--lcs-text);
	display: inline-flex;
	font-weight: 800;
	gap: 8px;
	min-height: 44px;
	padding: 9px 13px;
	text-decoration: none;
	transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

.lcs-archive-subcategory-link:hover,
.lcs-archive-subcategory-link:focus {
	background: #e9fbfc;
	border-color: rgba(21, 184, 193, 0.42);
	color: var(--lcs-secondary);
	transform: translateY(-1px);
}

.lcs-archive-subcategory-link .lcs-store-category-icon {
	align-items: center;
	background: #e8fbfc;
	border-radius: 999px;
	color: var(--lcs-secondary);
	display: inline-flex;
	flex: 0 0 28px;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.lcs-archive-subcategory-link .lcs-store-category-icon svg {
	display: block;
	height: 18px;
	width: 18px;
}

@media (max-width: 1279px) {
	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-card {
		flex-basis: calc((100% - 54px) / 4);
	}

	.lcs-all-products-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.lcs-market-main .main-wrap {
		padding-top: 18px;
	}

	.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection {
		border-radius: 16px;
		margin-bottom: 18px;
		padding: 16px 14px 18px;
	}

	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-card {
		flex-basis: min(72vw, 230px);
	}

	.lcs-all-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.lcs-archive-subcategories {
		border-radius: 12px;
		gap: 8px;
		padding: 10px;
	}
}

@media (max-width: 640px) {
	.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head {
		align-items: center;
		gap: 10px;
	}

	.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head h2 {
		font-size: 18px;
		line-height: 1.2;
	}

	.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head a {
		font-size: 12px;
		min-height: 32px;
		padding: 7px 10px;
	}

	.lcs-all-products-grid {
		gap: 12px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcs-archive-subcategory-link {
		font-size: 13px;
		line-height: 1.25;
		min-height: 40px;
		padding: 8px 10px;
	}
}

.lcs-category-thumb {
	align-items: center;
	background: #eefbfc;
	color: var(--lcs-secondary);
	display: inline-flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.lcs-category-thumb img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.lcs-category-thumb.has-icon svg {
	display: block;
	fill: none;
	height: 42%;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	width: 42%;
}

.lcs-market-header .lcs-mega-menu.lcs-cascade-wrap {
	width: min(940px, calc(100vw - 32px));
}

.lcs-market-header .lcs-cascade-menu {
	grid-template-columns: 292px minmax(0, 1fr);
}

.lcs-market-header .lcs-cascade-subpanel {
	left: 292px;
	padding: 22px 24px;
}

.lcs-market-header .lcs-cascade-panel-title {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 18px;
}

.lcs-market-header .lcs-cascade-subgrid {
	gap: 20px 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lcs-market-header .lcs-cascade-sub-link {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 14px;
	color: #20273a;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	font-weight: 750;
	gap: 10px;
	justify-content: flex-start;
	line-height: 1.28;
	min-height: 132px;
	padding: 8px 6px;
	text-align: center;
}

.lcs-market-header .lcs-cascade-sub-link:hover,
.lcs-market-header .lcs-cascade-sub-link:focus {
	background: #f4fbfc;
	border-color: transparent;
	color: var(--lcs-primary);
	transform: translateY(-1px);
}

.lcs-cascade-sub-thumb {
	border: 1px solid #e6eef2;
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
	flex: 0 0 86px;
	height: 86px;
	width: 86px;
}

.lcs-cascade-sub-title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-width: 128px;
	min-height: 36px;
	overflow: hidden;
}

.lcs-archive-subcategories {
	align-items: start;
	background: #ffffff;
	border: 0;
	border-bottom: 1px solid #e6edf3;
	border-radius: 0;
	display: grid;
	gap: 22px 24px;
	grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
	margin: 0 0 26px;
	padding: 4px 0 28px;
}

.lcs-archive-subcategory-link {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 14px;
	color: #20273a;
	display: flex;
	flex-direction: column;
	font-size: 15px;
	font-weight: 800;
	gap: 11px;
	justify-content: flex-start;
	line-height: 1.25;
	min-height: 140px;
	padding: 8px 6px;
	text-align: center;
}

.lcs-archive-subcategory-link:hover,
.lcs-archive-subcategory-link:focus {
	background: #f3fbfc;
	border-color: transparent;
	color: var(--lcs-primary);
	transform: translateY(-1px);
}

.lcs-archive-subcategory-thumb {
	border: 1px solid #e4edf2;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	flex: 0 0 96px;
	height: 96px;
	width: 96px;
}

.lcs-archive-subcategory-title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-width: 140px;
	min-height: 38px;
	overflow: hidden;
}

@media (max-width: 900px) {
	.lcs-market-header .lcs-market-category-menu .lcs-mega-menu.lcs-cascade-wrap {
		width: min(720px, calc(100vw - 24px));
	}

	.lcs-market-header .lcs-cascade-menu {
		grid-template-columns: minmax(140px, 40%) minmax(0, 1fr);
	}

	.lcs-market-header .lcs-cascade-subpanel {
		left: 40%;
		padding: 12px;
	}

	.lcs-market-header .lcs-cascade-subgrid {
		gap: 12px 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcs-market-header .lcs-cascade-sub-link {
		font-size: 12px;
		min-height: 104px;
		padding: 6px 4px;
	}

	.lcs-cascade-sub-thumb {
		flex-basis: 62px;
		height: 62px;
		width: 62px;
	}

	.lcs-cascade-sub-title {
		max-width: 96px;
		min-height: 32px;
	}

	.lcs-archive-subcategories {
		gap: 16px 12px;
		grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
		padding-bottom: 22px;
	}

	.lcs-archive-subcategory-link {
		font-size: 13px;
		min-height: 116px;
		padding: 6px 4px;
	}

	.lcs-archive-subcategory-thumb {
		flex-basis: 76px;
		height: 76px;
		width: 76px;
	}

	.lcs-archive-subcategory-title {
		max-width: 108px;
		min-height: 32px;
	}
}

@media (max-width: 420px) {
	.lcs-market-header .lcs-cascade-menu {
		grid-template-columns: minmax(126px, 39%) minmax(0, 1fr);
	}

	.lcs-market-header .lcs-cascade-subpanel {
		left: 39%;
		padding: 10px 8px;
	}

	.lcs-market-header .lcs-cascade-subgrid {
		grid-template-columns: 1fr;
	}

	.lcs-market-header .lcs-cascade-sub-link {
		flex-direction: row;
		justify-content: flex-start;
		min-height: 54px;
		text-align: left;
	}

	.lcs-cascade-sub-thumb {
		flex-basis: 40px;
		height: 40px;
		width: 40px;
	}

	.lcs-cascade-sub-title {
		-webkit-line-clamp: 2;
		max-width: none;
		min-height: 0;
	}

	.lcs-archive-subcategories {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.lcs-site-header.lcs-market-header {
	background: #ffffff;
	border-bottom: 1px solid var(--lcs-header-line);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	position: sticky;
	top: 0;
	z-index: 1200;
}

.admin-bar .lcs-site-header.lcs-market-header {
	top: 32px;
}

.lcs-market-header .lcs-mega-menu.lcs-cascade-wrap {
	z-index: 1300;
}

.lcs-cascade-sub-thumb,
.lcs-cascade-sub-thumb.has-icon,
.lcs-archive-subcategory-thumb,
.lcs-archive-subcategory-thumb.has-icon {
	aspect-ratio: 1 / 1;
	border-radius: 14px;
}

.lcs-category-sort-form {
	align-items: center;
	background: #ffffff;
	border: 1px solid #e6edf3;
	border-radius: 14px;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin: 0 0 18px;
	padding: 12px 14px;
}

.lcs-category-sort-form label {
	color: var(--lcs-muted);
	font-size: 14px;
	font-weight: 800;
}

.lcs-category-sort-form select {
	appearance: none;
	background: #f7fbfc;
	border: 1px solid #dbe8ee;
	border-radius: 12px;
	color: var(--lcs-text);
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	min-height: 42px;
	min-width: 190px;
	padding: 0 14px;
}

@media (max-width: 782px) {
	.admin-bar .lcs-site-header.lcs-market-header {
		top: 46px;
	}
}

@media (max-width: 640px) {
	.lcs-category-sort-form {
		align-items: stretch;
		flex-direction: column;
	}

	.lcs-category-sort-form select {
		width: 100%;
	}

	.lcs-cascade-sub-thumb,
	.lcs-cascade-sub-thumb.has-icon,
	.lcs-archive-subcategory-thumb,
	.lcs-archive-subcategory-thumb.has-icon {
		border-radius: 12px;
	}
}

/* v1.1.13 cart clarity */
.woocommerce-cart .lcs-cart-layout {
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 20px;
}

.woocommerce-cart .lcs-cart-items,
.woocommerce-cart .lcs-cart-summary {
	background: #ffffff;
	border: 1px solid #e5edf3;
	border-radius: 8px;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
	overflow: hidden;
}

.woocommerce-cart .lcs-cart-table-head,
.woocommerce-cart .lcs-cart-item {
	grid-template-columns: minmax(0, 1fr) 148px 184px;
}

.woocommerce-cart .lcs-cart-table-head {
	background: #ffffff;
	border-bottom: 1px solid #e9eef3;
	padding: 14px 56px 14px 18px;
}

.woocommerce-cart .lcs-cart-table-head span:nth-child(2) {
	text-align: center;
}

.woocommerce-cart .lcs-cart-table-head span:last-child {
	text-align: right;
}

.woocommerce-cart .lcs-cart-item {
	align-items: center;
	column-gap: 22px;
	padding: 18px 56px 18px 18px;
	position: relative;
	transition: opacity .12s ease;
}

.woocommerce-cart .lcs-cart-item.is-lcs-removing {
	opacity: .4;
	pointer-events: none;
}

.woocommerce-cart .lcs-cart-product {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 14px;
	min-width: 0;
}

.woocommerce-cart .lcs-cart-thumb {
	border-radius: 8px;
	height: 92px;
	width: 92px;
}

.woocommerce-cart .lcs-cart-product-title {
	-webkit-line-clamp: 2;
	color: #172033;
	font-size: 14.5px;
	font-weight: 850;
	line-height: 1.35;
}

body.woocommerce-cart a.remove.lcs-cart-remove,
body.woocommerce-cart .woocommerce a.remove.lcs-cart-remove,
.woocommerce-cart .lcs-cart-item a.lcs-cart-remove.remove {
	align-items: center;
	background: transparent !important;
	border: 0;
	border-radius: 0;
	color: #1f2937 !important;
	display: inline-flex;
	font-size: 0 !important;
	height: 24px;
	justify-content: center;
	line-height: 1;
	margin: 0;
	overflow: visible;
	padding: 0;
	position: absolute;
	right: 18px;
	text-decoration: none !important;
	top: 18px;
	width: 24px;
	z-index: 2;
}

body.woocommerce-cart a.remove.lcs-cart-remove:hover,
body.woocommerce-cart a.remove.lcs-cart-remove:focus,
body.woocommerce-cart .woocommerce a.remove.lcs-cart-remove:hover,
body.woocommerce-cart .woocommerce a.remove.lcs-cart-remove:focus,
.woocommerce-cart .lcs-cart-item a.lcs-cart-remove.remove:hover,
.woocommerce-cart .lcs-cart-item a.lcs-cart-remove.remove:focus {
	background: transparent !important;
	color: #111827 !important;
}

body.woocommerce-cart a.remove.lcs-cart-remove:focus-visible,
body.woocommerce-cart .woocommerce a.remove.lcs-cart-remove:focus-visible,
.woocommerce-cart .lcs-cart-item a.lcs-cart-remove.remove:focus-visible {
	outline: 2px solid #d9e3ea;
	outline-offset: 2px;
}

body.woocommerce-cart a.remove.lcs-cart-remove svg,
body.woocommerce-cart .woocommerce a.remove.lcs-cart-remove svg,
.woocommerce-cart .lcs-cart-item a.lcs-cart-remove.remove svg {
	display: block;
	fill: none;
	height: 16px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	width: 16px;
}

.woocommerce-cart .lcs-cart-quantity {
	justify-self: center;
	min-width: 0;
}

.lcs-cart-qty-control {
	align-items: center;
	background: #ffffff;
	border: 1px solid #dfe7ee;
	border-radius: 999px;
	display: inline-grid;
	grid-template-columns: 38px 46px 38px;
	height: 44px;
	justify-content: center;
	overflow: hidden;
}

.lcs-cart-qty-btn {
	align-items: center;
	background: #ffffff;
	border: 0;
	color: #8b95a5;
	display: inline-flex;
	font-size: 22px;
	font-weight: 500;
	height: 42px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 38px;
}

.lcs-cart-qty-btn:hover,
.lcs-cart-qty-btn:focus {
	background: #f7fbfc;
	color: var(--lcs-secondary, #0a818f);
}

.woocommerce-cart .lcs-cart-qty-control .quantity {
	background: transparent;
	border: 0;
	display: contents;
	height: auto;
	width: auto;
}

.woocommerce-cart .lcs-cart-qty-control .qty,
.woocommerce-cart .lcs-cart-qty-control .lcs-cart-qty-input {
	appearance: textfield;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #172033;
	font-size: 15px;
	font-weight: 850;
	height: 30px;
	line-height: 30px;
	margin: 0;
	padding: 0;
	text-align: center;
	width: 30px;
}

.woocommerce-cart .lcs-cart-qty-control .qty::-webkit-outer-spin-button,
.woocommerce-cart .lcs-cart-qty-control .qty::-webkit-inner-spin-button {
	appearance: none;
	margin: 0;
}

.woocommerce-cart .lcs-cart-amount {
	justify-self: end;
	min-width: 0;
	text-align: right;
	width: 100%;
}

.lcs-price-stack {
	align-items: flex-end;
	display: grid;
	gap: 5px;
	justify-items: end;
	line-height: 1.2;
	min-width: 0;
	text-align: right;
}

.lcs-price-old-row {
	align-items: center;
	color: #8b95a5;
	display: inline-flex;
	flex-wrap: wrap;
	font-size: 11.5px;
	font-weight: 750;
	gap: 5px;
	justify-content: flex-end;
}

.lcs-price-old {
	color: #8b95a5;
	font-size: 12px;
	font-weight: 800;
	text-decoration-thickness: 1.5px;
	text-decoration-color: #ef4444;
}

.lcs-price-current,
.lcs-price-stack ins {
	color: var(--lcs-secondary, #0a818f);
	display: block;
	font-size: 18px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.lcs-price-stack--plain .lcs-price-current {
	color: #172033;
}

.lcs-price-saving {
	background: #ecfdf5;
	border: 1px solid #bbf7d0;
	border-radius: 6px;
	color: #15803d;
	display: inline-flex;
	font-size: 12px;
	font-weight: 850;
	justify-content: center;
	line-height: 1.2;
	padding: 5px 7px;
	justify-self: end;
	white-space: nowrap;
	width: fit-content;
}

.woocommerce-cart .lcs-cart-summary {
	border-radius: 8px;
	padding: 0;
}

.woocommerce-cart .lcs-cart-summary h2 {
	font-size: 22px;
	margin: 0;
	padding: 20px 20px 12px;
}

.woocommerce-cart .lcs-cart-summary-row {
	margin: 0 20px;
	padding: 13px 0;
}

.woocommerce-cart .lcs-cart-original-row strong {
	color: #526071;
	font-weight: 800;
}

.woocommerce-cart .lcs-cart-discount-row span,
.woocommerce-cart .lcs-cart-discount-row strong,
.lcs-checkout-saving-row th,
.lcs-checkout-saving-row td,
.lcs-checkout-saving-row td strong {
	color: #15803d;
	font-weight: 900;
}

.woocommerce-cart .lcs-cart-total-row {
	margin-top: 4px;
	padding-top: 18px;
}

.woocommerce-cart .lcs-cart-total-row span,
.woocommerce-cart .lcs-cart-total-row strong {
	font-size: 19px;
	font-weight: 950;
}

.woocommerce-cart .lcs-cart-checkout,
.woocommerce .lcs-cart-checkout.button.alt {
	border-radius: 0 0 8px 8px;
	height: 58px;
	line-height: 58px;
	margin-top: 16px;
}

.lcs-checkout-review table.shop_table {
	table-layout: fixed;
}

.lcs-checkout-review table.shop_table .product-name {
	width: 58%;
	word-break: break-word;
}

.lcs-checkout-review table.shop_table .product-total {
	width: 42%;
}

.lcs-checkout-review .lcs-price-stack {
	align-items: flex-end;
	text-align: right;
}

.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #billing_email_field {
	display: none !important;
}

@media (max-width: 1100px) {
	.woocommerce-cart .lcs-cart-layout {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart .lcs-cart-summary {
		position: static;
	}
}

@media (max-width: 760px) {
	.woocommerce-cart .lcs-cart-page {
		padding: 14px 12px 42px;
	}

	.woocommerce-cart .lcs-cart-head {
		align-items: flex-start;
		margin-bottom: 12px;
	}

	.woocommerce-cart .lcs-cart-head h1,
	.woocommerce-cart .lcs-cart-head p {
		display: none;
	}

	.woocommerce-cart .lcs-cart-continue {
		font-size: 18px;
		font-weight: 900;
	}

	.woocommerce-cart .lcs-cart-table-head {
		display: none;
	}

	.woocommerce-cart .lcs-cart-item {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		padding: 16px 54px 16px 16px;
	}

	.woocommerce-cart .lcs-cart-product {
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 12px;
		padding-bottom: 14px;
	}

	.woocommerce-cart .lcs-cart-thumb {
		height: 92px;
		width: 92px;
	}

	.woocommerce-cart .lcs-cart-product-title {
		font-size: 17px;
		line-height: 1.25;
	}

	body.woocommerce-cart a.remove.lcs-cart-remove,
	body.woocommerce-cart .woocommerce a.remove.lcs-cart-remove,
	.woocommerce-cart .lcs-cart-item a.lcs-cart-remove.remove {
		right: 14px;
		top: 14px;
	}

	.woocommerce-cart .lcs-cart-quantity,
	.woocommerce-cart .lcs-cart-amount {
		align-items: center;
		border-top: 1px solid #edf2f5;
		display: grid;
		grid-template-columns: minmax(82px, 32%) minmax(0, 1fr);
		padding: 14px 0;
		width: 100%;
	}

	.woocommerce-cart .lcs-cart-quantity::before,
	.woocommerce-cart .lcs-cart-amount::before {
		color: #6b7280;
		content: attr(data-title);
		font-size: 15px;
		font-weight: 900;
		text-align: left;
	}

	.woocommerce-cart .lcs-cart-qty-control,
	.woocommerce-cart .lcs-cart-amount .lcs-price-stack {
		justify-self: end;
	}

	.woocommerce-cart .lcs-cart-amount {
		text-align: right;
	}

	.lcs-price-current,
	.lcs-price-stack ins {
		font-size: 18px;
	}

	.lcs-price-saving {
		font-size: 12px;
		white-space: normal;
	}

	.woocommerce-cart .lcs-cart-summary h2 {
		font-size: 24px;
		padding: 22px 18px 12px;
	}

	.woocommerce-cart .lcs-cart-summary-row {
		align-items: flex-start;
		font-size: 16px;
		margin: 0 18px;
		padding: 15px 0;
	}

	.woocommerce-cart .lcs-cart-summary-row strong {
		font-size: 16px;
		max-width: 56%;
	}

	.woocommerce-cart .lcs-cart-summary-note {
		font-size: 14px;
		margin: -4px 18px 10px;
	}

	.woocommerce-cart .lcs-cart-free-shipping-note {
		font-size: 13.5px;
		margin: 6px 18px 12px;
	}

	.woocommerce-cart .lcs-cart-total-row span,
	.woocommerce-cart .lcs-cart-total-row strong {
		font-size: 21px;
	}

	.woocommerce-cart .lcs-cart-checkout,
	.woocommerce .lcs-cart-checkout.button.alt {
		height: 58px;
		line-height: 58px;
	}

	.lcs-checkout-review table.shop_table th,
	.lcs-checkout-review table.shop_table td {
		font-size: 13px;
	}

	.lcs-checkout-review table.shop_table .product-name {
		width: 54%;
	}

	.lcs-checkout-review table.shop_table .product-total {
		width: 46%;
	}

	.lcs-checkout-review .lcs-price-current,
	.lcs-checkout-review .lcs-price-stack ins {
		font-size: 14px;
	}
}

@media (max-width: 380px) {
	.woocommerce-cart .lcs-cart-product {
		grid-template-columns: 78px minmax(0, 1fr);
	}

	.woocommerce-cart .lcs-cart-thumb {
		height: 78px;
		width: 78px;
	}

	.woocommerce-cart .lcs-cart-product-title {
		font-size: 15.5px;
	}

	.woocommerce-cart .lcs-cart-quantity,
	.woocommerce-cart .lcs-cart-amount {
		grid-template-columns: 78px minmax(0, 1fr);
	}

	.lcs-cart-qty-control {
		grid-template-columns: 34px 42px 34px;
		height: 42px;
	}
}

/* v1.1.18 collection, catalog filter, mobile header and compact-card layer. */
.lcs-flash-price-chip {
	align-items: center;
	background: #fff2e2;
	border: 1px solid #ffd0a3;
	border-radius: 6px;
	color: #f97316;
	display: inline-flex;
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
	margin-left: 5px;
	padding: 4px 6px;
	vertical-align: middle;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection {
	border-radius: 8px;
	padding: 18px 18px 20px;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection::before {
	display: none;
}

.lcs-collection-title-wrap {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	min-width: 0;
}

.lcs-flash-countdown {
	align-items: center;
	display: inline-flex;
	gap: 5px;
}

.lcs-flash-countdown span {
	align-items: center;
	background: rgba(255, 255, 255, .92);
	border-radius: 6px;
	color: #1f2937;
	display: inline-flex;
	font-size: 15px;
	font-weight: 900;
	height: 32px;
	justify-content: center;
	min-width: 34px;
	padding: 0 8px;
}

.lcs-flash-countdown i {
	color: rgba(255, 255, 255, .86);
	font-style: normal;
	font-weight: 900;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-low-price {
	background: linear-gradient(135deg, #00a884 0%, #13c2a3 48%, #8bd450 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-featured {
	background: linear-gradient(135deg, #ff7a00 0%, #ffb000 52%, #ff3864 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-flash {
	background: linear-gradient(135deg, #ff4d00 0%, #ff9f1a 46%, #f43f5e 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-kitchen {
	background: linear-gradient(135deg, #00a6a6 0%, #25c2a0 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-outdoor {
	background: linear-gradient(135deg, #17a34a 0%, #b4d42a 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-lighting {
	background: linear-gradient(135deg, #ffb703 0%, #20a7db 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-electronics {
	background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-auto {
	background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-beauty {
	background: linear-gradient(135deg, #f43f5e 0%, #ec4899 52%, #fb7185 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-kids {
	background: linear-gradient(135deg, #ff7a00 0%, #7c3aed 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-storage {
	background: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-tools {
	background: linear-gradient(135deg, #334155 0%, #f97316 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-business {
	background: linear-gradient(135deg, #475569 0%, #22c55e 100%);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-pets {
	background: linear-gradient(135deg, #16a34a 0%, #06b6d4 100%);
}

.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card,
.lcs-shop-products .lcs-product-card {
	background: #fff;
	border: 1px solid rgba(226, 232, 240, .95);
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(15, 23, 42, .045);
	min-height: 306px;
	overflow: hidden;
}

.lcs-home-carousel .product-row .lcs-product-card {
	flex: 0 0 176px;
	min-width: 176px;
	scroll-snap-align: start;
}

.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-card {
	flex-basis: 176px;
}

.lcs-product-image,
.product-row .lcs-product-image,
.lcs-product-grid .lcs-product-image,
.woocommerce ul.products .lcs-product-image,
.lcs-shop-products .lcs-product-image {
	aspect-ratio: 1 / 1;
	background: #f8fafc;
	border-bottom: 1px solid #edf2f7;
	border-radius: 0;
	box-shadow: none;
	padding: 7px;
}

.lcs-product-image-stack {
	aspect-ratio: 1 / 1;
	display: block;
	height: 100%;
	position: relative;
	width: 100%;
}

.lcs-product-image .lcs-product-img,
.product-row .lcs-product-image img,
.lcs-product-grid .lcs-product-image img,
.woocommerce ul.products .lcs-product-image img {
	height: 100%;
	object-fit: contain;
	padding: 0;
	width: 100%;
}

.lcs-product-body,
.product-row .lcs-product-body,
.lcs-product-grid .lcs-product-body,
.woocommerce ul.products .lcs-product-body,
.lcs-shop-products .lcs-product-body {
	padding: 9px 10px 10px;
}

.lcs-product-title,
.product-row .lcs-product-title,
.lcs-product-grid .lcs-product-title,
.woocommerce ul.products .lcs-product-title,
.lcs-shop-products .lcs-product-title {
	-webkit-line-clamp: 2;
	color: #1f2937;
	font-size: 12.5px;
	font-weight: 650;
	line-height: 1.32;
	margin: 0 0 6px;
	min-height: 33px;
	order: 1;
}

.lcs-product-rating,
.product-row .lcs-product-rating,
.lcs-product-grid .lcs-product-rating,
.woocommerce ul.products .lcs-product-rating,
.lcs-shop-products .lcs-product-rating {
	margin: 0 0 6px;
	min-height: 15px;
	order: 2;
}

.lcs-rating-stars,
.product-row .lcs-rating-stars,
.woocommerce ul.products .lcs-rating-stars {
	font-size: 11.5px;
}

.lcs-rating-count,
.product-row .lcs-rating-count,
.woocommerce ul.products .lcs-rating-count {
	font-size: 10.5px;
}

.lcs-product-price,
.product-row .lcs-product-price,
.lcs-product-grid .lcs-product-price,
.woocommerce ul.products .lcs-product-price,
.lcs-shop-products .lcs-product-price {
	gap: 5px;
	margin: 0;
	min-height: 20px;
	order: 3;
}

.lcs-product-price ins,
.lcs-product-price > .woocommerce-Price-amount,
.lcs-product-price > span,
.product-row .lcs-product-price ins,
.product-row .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-price > span,
.woocommerce ul.products .lcs-product-price ins,
.woocommerce ul.products .lcs-product-price > .woocommerce-Price-amount,
.woocommerce ul.products .lcs-product-price > span,
.lcs-shop-products .lcs-product-price ins,
.lcs-shop-products .lcs-product-price .lcs-current-price,
.lcs-shop-products .lcs-product-price > .woocommerce-Price-amount {
	color: #0a818f;
	font-size: 15px;
	font-weight: 850;
	line-height: 1;
}

.lcs-product-price del,
.product-row .lcs-product-price del,
.woocommerce ul.products .lcs-product-price del,
.lcs-shop-products .lcs-product-price del {
	font-size: 10.5px;
}

.lcs-product-actions,
.product-row .lcs-product-actions,
.lcs-product-grid .lcs-product-actions,
.woocommerce ul.products .lcs-product-actions,
.lcs-shop-products .lcs-product-actions {
	padding-top: 8px;
}

.lcs-card-add,
.product-row .lcs-card-add,
.lcs-product-grid .lcs-card-add,
.woocommerce ul.products .lcs-card-add,
.lcs-shop-products .lcs-card-add {
	border-radius: 6px;
	font-size: 11.5px;
	height: 32px;
	min-height: 32px;
	padding: 0 8px;
}

.lcs-discount-badge,
.product-row .lcs-discount-badge,
.lcs-product-grid .lcs-discount-badge,
.woocommerce ul.products .lcs-discount-badge,
.lcs-shop-products .lcs-discount-badge {
	background: #ffcf35;
	border-radius: 6px;
	font-size: 10.5px;
	height: 24px;
	left: 8px;
	min-width: 44px;
	padding: 0 7px;
	top: 8px;
}

.lcs-card-flash-sale .lcs-discount-badge {
	background: #ff6b00;
	box-shadow: 0 6px 14px rgba(255, 107, 0, .22);
	color: #fff;
}

.lcs-wishlist-icon {
	border-radius: 7px;
	height: 30px;
	right: 8px;
	top: 8px;
	width: 30px;
}

.lcs-collection-view-card {
	background: rgba(255, 255, 255, .96);
	border: 1px solid rgba(255, 255, 255, .74);
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, .10);
	flex: 0 0 176px;
	min-height: 306px;
	min-width: 176px;
	overflow: hidden;
	scroll-snap-align: start;
}

.lcs-collection-view-link {
	color: #172033;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
}

.lcs-collection-view-media {
	aspect-ratio: 1 / 1;
	background: #fff7ed;
	border-bottom: 1px solid #ffe1c4;
	display: block;
	padding: 10px;
}

.lcs-collection-view-media img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.lcs-collection-view-title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.25;
	margin: 10px 10px 8px;
	min-height: 33px;
	overflow: hidden;
}

.lcs-collection-view-button {
	align-items: center;
	background: #ff6b00;
	border-radius: 6px;
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 850;
	height: 34px;
	justify-content: center;
	margin: auto 10px 10px;
	padding: 0 10px;
}

.lcs-archive-toolbar {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin: 0 0 16px;
}

.lcs-filter-toggle {
	align-items: center;
	background: #fff;
	border: 1px solid #dce7eb;
	border-radius: 8px;
	color: #172033;
	display: none;
	font-size: 14px;
	font-weight: 850;
	gap: 8px;
	height: 42px;
	padding: 0 13px;
}

.lcs-filter-toggle span {
	color: #0a818f;
	font-size: 16px;
	line-height: 1;
}

.lcs-catalog-layout {
	align-items: start;
	display: grid;
	gap: 18px;
	grid-template-columns: 250px minmax(0, 1fr);
}

.lcs-shop-archive .lcs-filter-panel,
.lcs-shop-archive aside.lcs-filter-panel {
	background: #fff;
	border: 1px solid #e3ebf0;
	border-radius: 8px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .045);
	display: block;
	position: sticky;
	top: 92px;
}

.lcs-filter-form {
	display: grid;
	gap: 16px;
	padding: 15px;
}

.lcs-filter-panel-head {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.lcs-filter-panel-head h2 {
	color: #172033;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0;
	margin: 0;
}

.lcs-filter-close {
	background: #f3f7f8;
	border: 0;
	border-radius: 6px;
	color: #526071;
	display: none;
	font-size: 24px;
	height: 34px;
	line-height: 1;
	width: 34px;
}

.lcs-filter-group {
	border-top: 1px solid #edf2f5;
	display: grid;
	gap: 9px;
	padding-top: 14px;
}

.lcs-filter-group h3 {
	color: #273247;
	font-size: 13px;
	font-weight: 900;
	margin: 0;
}

.lcs-price-filter-row {
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr 1fr;
}

.lcs-price-filter-row label {
	display: grid;
	gap: 5px;
}

.lcs-price-filter-row span,
.lcs-filter-check span {
	color: #526071;
	font-size: 12px;
	font-weight: 750;
}

.lcs-price-filter-row input {
	background: #f8fbfb;
	border: 1px solid #dce7eb;
	border-radius: 6px;
	color: #172033;
	height: 38px;
	min-width: 0;
	padding: 0 9px;
	width: 100%;
}

.lcs-filter-check {
	align-items: center;
	cursor: pointer;
	display: grid;
	gap: 8px;
	grid-template-columns: 18px minmax(0, 1fr);
	min-height: 28px;
}

.lcs-filter-check input {
	accent-color: #0a818f;
	height: 16px;
	margin: 0;
	width: 16px;
}

.lcs-filter-actions {
	border-top: 1px solid #edf2f5;
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr;
	padding-top: 14px;
}

.lcs-filter-apply,
.lcs-filter-reset {
	align-items: center;
	border-radius: 6px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 850;
	height: 40px;
	justify-content: center;
	text-align: center;
}

.lcs-filter-apply {
	background: #0a818f;
	border: 0;
	color: #fff;
}

.lcs-filter-reset {
	background: #f7fafb;
	border: 1px solid #dce7eb;
	color: #526071;
}

.lcs-shop-results {
	min-width: 0;
	position: relative;
}

.lcs-shop-archive.is-loading .lcs-shop-results {
	opacity: .48;
	pointer-events: none;
}

.lcs-shop-archive.is-loading .lcs-shop-results::after {
	background: #fff;
	border: 2px solid rgba(10, 129, 143, .18);
	border-radius: 50%;
	border-top-color: #0a818f;
	content: "";
	height: 34px;
	left: 50%;
	margin: -17px 0 0 -17px;
	position: absolute;
	top: 120px;
	width: 34px;
	animation: lcs-spin .75s linear infinite;
	z-index: 3;
}

.lcs-category-sort-form {
	border-radius: 8px;
	margin: 0;
}

.lcs-category-sort-form select {
	border-radius: 6px;
}

.lcs-checkout-coupon-panel {
	background: #fff;
	border: 1px solid #e3ebf0;
	border-radius: 8px;
	margin: 0 auto 16px;
	max-width: 1120px;
	padding: 14px 16px;
}

.lcs-checkout-coupon-panel .woocommerce-form-coupon-toggle,
.lcs-checkout-coupon-panel .woocommerce-info {
	background: #f7fbfc;
	border: 1px solid #dcecef;
	border-radius: 6px;
	color: #273247;
	margin: 0 0 10px;
	padding: 11px 13px;
}

.lcs-checkout-coupon-panel .checkout_coupon {
	border: 0;
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.lcs-checkout-coupon-panel .checkout_coupon p {
	margin: 0;
}

.lcs-checkout-coupon-panel .checkout_coupon input.input-text {
	border: 1px solid #dce7eb;
	border-radius: 6px;
	height: 42px;
	padding: 0 12px;
}

.lcs-checkout-coupon-panel .checkout_coupon button {
	border-radius: 6px;
	height: 42px;
}

@media (max-width: 900px) {
	.lcs-catalog-layout {
		grid-template-columns: 1fr;
	}

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

	.lcs-filter-backdrop {
		background: rgba(15, 23, 42, .46);
		display: none;
		inset: 0;
		position: fixed;
		z-index: 1490;
	}

	.lcs-shop-archive.is-filter-open .lcs-filter-backdrop {
		display: block;
	}

	html.lcs-filter-open {
		overflow: hidden;
	}

	.lcs-shop-archive .lcs-filter-panel,
	.lcs-shop-archive aside.lcs-filter-panel {
		border-radius: 8px 8px 0 0;
		bottom: 0;
		box-shadow: 0 -14px 36px rgba(15, 23, 42, .18);
		left: 0;
		max-height: 82vh;
		overflow-y: auto;
		position: fixed;
		right: 0;
		top: auto;
		transform: translateY(105%);
		transition: transform .22s ease;
		z-index: 1500;
	}

	.lcs-shop-archive .lcs-filter-panel.is-open,
	.lcs-shop-archive.is-filter-open .lcs-filter-panel {
		transform: translateY(0);
	}

	.lcs-filter-close {
		display: inline-flex;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.lcs-market-header .top-inner {
		grid-template-columns: minmax(0, 1fr) auto;
		height: 42px;
	}

	.lcs-market-header .lcs-mobile-header-actions {
		gap: 7px;
	}

	.lcs-mobile-header-actions .favorite,
	.lcs-mobile-header-actions .account,
	.lcs-mobile-header-actions .cart {
		align-items: center;
		background: transparent;
		border: 0;
		border-radius: 6px;
		display: inline-flex;
		height: 34px;
		justify-content: center;
		padding: 0;
		position: relative;
		width: 34px;
	}

	.lcs-mobile-header-actions .favorite strong,
	.lcs-mobile-header-actions .account strong,
	.lcs-mobile-header-actions .cart strong {
		display: none;
	}

	.lcs-mobile-header-actions .cart .cart-count {
		font-size: 10px;
		height: 17px;
		left: auto;
		min-width: 17px;
		right: -1px;
		top: -1px;
	}

	.lcs-market-header .nav-bar {
		padding: 7px 12px 9px;
	}

	.lcs-market-header .nav-inner {
		grid-template-columns: 44px minmax(0, 1fr);
		height: 42px;
		min-height: 42px;
	}

	.lcs-market-header .lcs-market-category-menu,
	.lcs-market-header .nav-all,
	.lcs-market-header .nav-all-icon {
		height: 42px;
		width: 44px;
	}

	.lcs-market-header .lcs-market-search {
		grid-column: 2;
		grid-template-columns: minmax(0, 1fr) 44px;
		height: 42px;
	}

	.lcs-market-header .lcs-market-search input[type="search"] {
		font-size: 14px;
	}

	.lcs-market-header .nav-inner > .cart {
		display: none;
	}

	.lcs-market-main .main-wrap {
		overflow: hidden;
		padding-left: 0;
		padding-right: 0;
	}

	.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection {
		border-radius: 0;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		padding: 15px 12px 18px;
		width: 100vw;
	}

	.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head {
		align-items: flex-start;
		margin-bottom: 12px;
	}

	.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head a {
		border-radius: 6px;
	}

	.lcs-flash-countdown span {
		font-size: 13px;
		height: 28px;
		min-width: 30px;
	}

	.lcs-home-carousel .product-row,
	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row {
		gap: 9px;
		padding-left: 0;
		padding-right: 54px;
	}

	.lcs-home-carousel .product-row .lcs-product-card,
	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-card,
	.lcs-collection-view-card {
		flex-basis: 150px;
		min-height: 276px;
		min-width: 150px;
	}

	.lcs-product-card,
	.product-row .lcs-product-card,
	.lcs-product-grid .lcs-product-card,
	.woocommerce ul.products .lcs-product-card,
	.lcs-shop-products .lcs-product-card {
		border-radius: 7px;
		min-height: 276px;
	}

	.lcs-product-body,
	.product-row .lcs-product-body,
	.lcs-product-grid .lcs-product-body,
	.woocommerce ul.products .lcs-product-body,
	.lcs-shop-products .lcs-product-body {
		padding: 8px 8px 9px;
	}

	.lcs-product-title,
	.product-row .lcs-product-title,
	.lcs-product-grid .lcs-product-title,
	.woocommerce ul.products .lcs-product-title,
	.lcs-shop-products .lcs-product-title {
		font-size: 12px;
		min-height: 32px;
	}

	.lcs-product-price ins,
	.lcs-product-price > .woocommerce-Price-amount,
	.lcs-product-price > span,
	.product-row .lcs-product-price ins,
	.product-row .lcs-product-price > .woocommerce-Price-amount,
	.product-row .lcs-product-price > span,
	.woocommerce ul.products .lcs-product-price ins,
	.woocommerce ul.products .lcs-product-price > .woocommerce-Price-amount,
	.woocommerce ul.products .lcs-product-price > span {
		font-size: 14px;
	}

	.lcs-card-add,
	.product-row .lcs-card-add,
	.lcs-product-grid .lcs-card-add,
	.woocommerce ul.products .lcs-card-add,
	.lcs-shop-products .lcs-card-add {
		font-size: 11px;
		height: 31px;
		min-height: 31px;
	}

	.woocommerce ul.products.lcs-shop-products,
	ul.products.lcs-shop-products {
		gap: 10px;
	}

	.lcs-archive-toolbar {
		align-items: stretch;
		gap: 9px;
	}

	.lcs-category-sort-form {
		flex: 1;
		padding: 8px;
	}

	.lcs-category-sort-form label {
		display: none;
	}

	.lcs-category-sort-form select {
		min-width: 0;
		width: 100%;
	}

	.lcs-checkout-coupon-panel {
		margin-left: 10px;
		margin-right: 10px;
	}
}

@media (max-width: 380px) {
	.lcs-home-carousel .product-row .lcs-product-card,
	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-card,
	.lcs-collection-view-card {
		flex-basis: 142px;
		min-width: 142px;
	}
}

/* v1.1.21 final precedence overrides. */
.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-flash {
	background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 48%, #c026d3 100%);
}

.lcs-card-flash-sale .lcs-discount-badge,
.lcs-flash-price-chip {
	background: #7c3aed;
	color: #fff;
}

.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card,
.lcs-shop-products .lcs-product-card {
	border: 1px solid rgba(226, 232, 240, .72);
	box-shadow: none;
}

.lcs-product-image,
.product-row .lcs-product-image,
.lcs-product-grid .lcs-product-image,
.woocommerce ul.products .lcs-product-image,
.lcs-shop-products .lcs-product-image {
	background: #fff;
	border-bottom: 0;
	padding: 6px;
}

.lcs-card-add.lcs-card-add-icon-button,
.product-row .lcs-card-add.lcs-card-add-icon-button,
.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
	background: #fff;
	border: 1.5px solid #0a818f;
	border-radius: 999px;
	color: #0a818f;
	height: 36px;
	min-height: 36px;
	width: 48px;
}

.lcs-card-add-icon,
.lcs-card-add-icon svg {
	height: 24px;
	width: 24px;
}

.lcs-card-add-icon svg {
	stroke-width: 1.75;
}

.lcs-collection-view-card {
	background: #8b8f97;
	border: 0;
	border-radius: 8px;
	box-shadow: none;
	min-height: 286px;
	overflow: hidden;
	position: relative;
}

.lcs-collection-view-link {
	align-items: center;
	color: #fff;
	display: flex;
	height: 100%;
	justify-content: center;
	min-height: inherit;
	position: relative;
	text-align: center;
}

.lcs-collection-view-link::before {
	background: rgba(17, 24, 39, .38);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.lcs-collection-view-media {
	background: #8b8f97;
	border: 0;
	inset: 0;
	padding: 0;
	position: absolute;
}

.lcs-collection-view-media img {
	filter: grayscale(.12) saturate(.8);
	height: 100%;
	object-fit: cover;
	opacity: .58;
	transform: scale(1.03);
	width: 100%;
}

.lcs-collection-view-title {
	display: none;
}

.lcs-collection-view-button {
	align-items: center;
	background: transparent;
	border-radius: 0;
	color: #fff;
	display: flex;
	flex-direction: column;
	font-size: 20px;
	font-weight: 900;
	gap: 18px;
	height: auto;
	line-height: 1.15;
	margin: 0;
	padding: 0 12px;
	position: relative;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .22);
	z-index: 2;
}

.lcs-collection-view-button::after {
	align-items: center;
	border: 2px solid rgba(255, 255, 255, .92);
	border-radius: 50%;
	content: "›";
	display: inline-flex;
	font-size: 34px;
	font-weight: 300;
	height: 48px;
	justify-content: center;
	line-height: 1;
	padding-bottom: 4px;
	text-shadow: none;
	width: 48px;
}

@media (max-width: 768px) {
	.lcs-card-add.lcs-card-add-icon-button,
	.product-row .lcs-card-add.lcs-card-add-icon-button,
	.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
	.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
	.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
		height: 34px;
		min-height: 34px;
		width: 44px;
	}

	.lcs-card-add-icon,
	.lcs-card-add-icon svg {
		height: 22px;
		width: 22px;
	}

	.lcs-collection-view-card {
		min-height: 260px;
	}

	.lcs-collection-view-button {
		font-size: 18px;
		gap: 15px;
	}

	.lcs-collection-view-button::after {
		font-size: 29px;
		height: 42px;
		width: 42px;
	}
}

/* v1.1.31: mobile search loupe block and filled category selection states. */
.search-loupe,
.search-loupe circle,
.search-loupe path {
	fill: none !important;
	stroke: currentColor !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	stroke-width: 2.2 !important;
}

.lcs-cascade-item:hover .lcs-cascade-main-link,
.lcs-cascade-item:focus-within .lcs-cascade-main-link,
.lcs-cascade-item.is-active .lcs-cascade-main-link {
	background: #06b6bb !important;
	border-color: #06b6bb !important;
	box-shadow: none !important;
	color: #fff !important;
}

.lcs-cascade-item:hover .lcs-store-category-icon,
.lcs-cascade-item:focus-within .lcs-store-category-icon,
.lcs-cascade-item.is-active .lcs-store-category-icon {
	background: rgba(255, 255, 255, .18) !important;
	color: #fff !important;
}

.lcs-cascade-item:hover .lcs-cascade-chevron,
.lcs-cascade-item:focus-within .lcs-cascade-chevron,
.lcs-cascade-item.is-active .lcs-cascade-chevron {
	color: #fff !important;
}

.lcs-archive-subcategories {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	gap: 9px !important;
	padding: 0 !important;
}

.lcs-archive-subcategory-link {
	background: #f2f7f8 !important;
	border: 1px solid transparent !important;
	border-radius: 10px !important;
	box-shadow: none !important;
	color: #253044 !important;
	min-height: 42px !important;
	padding: 8px 12px !important;
}

.lcs-archive-subcategory-link:hover,
.lcs-archive-subcategory-link:focus,
.lcs-archive-subcategory-link.is-active {
	background: #06b6bb !important;
	border-color: #06b6bb !important;
	color: #fff !important;
	transform: none !important;
}

.lcs-archive-subcategory-link:hover .lcs-category-thumb,
.lcs-archive-subcategory-link:focus .lcs-category-thumb,
.lcs-archive-subcategory-link.is-active .lcs-category-thumb,
.lcs-archive-subcategory-link:hover .lcs-store-category-icon,
.lcs-archive-subcategory-link:focus .lcs-store-category-icon,
.lcs-archive-subcategory-link.is-active .lcs-store-category-icon {
	background: rgba(255, 255, 255, .18) !important;
	color: #fff !important;
}

@media (max-width: 768px) {
	.lcs-market-header .nav-inner {
		height: 48px !important;
		min-height: 48px !important;
	}

	.lcs-market-header .lcs-market-search {
		background: #fff !important;
		border: 1px solid #dbe6ea !important;
		border-radius: 10px !important;
		box-shadow: none !important;
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 58px !important;
		height: 48px !important;
		overflow: hidden !important;
		width: 100% !important;
	}

	.lcs-market-header .lcs-market-search:focus-within {
		border-color: rgba(6, 182, 187, .62) !important;
		box-shadow: 0 0 0 2px rgba(6, 182, 187, .11) !important;
	}

	.lcs-market-header .lcs-market-search input[type="search"] {
		background: #fff !important;
		color: #172033 !important;
		font-size: 16px !important;
		height: 46px !important;
		line-height: 46px !important;
		padding: 0 15px !important;
	}

	.lcs-market-header .lcs-market-search button {
		align-items: center !important;
		background: #06b6bb !important;
		border: 0 !important;
		border-radius: 0 8px 8px 0 !important;
		color: #fff !important;
		display: inline-flex !important;
		height: 48px !important;
		justify-content: center !important;
		padding: 0 !important;
		width: 58px !important;
	}

	.lcs-market-header .lcs-market-search button:hover,
	.lcs-market-header .lcs-market-search button:focus {
		background: #06b6bb !important;
		color: #fff !important;
		transform: none !important;
	}

	.lcs-market-header .lcs-market-search .search-loupe {
		color: #fff !important;
		height: 24px !important;
		width: 24px !important;
	}

	.lcs-market-header .lcs-market-search button span {
		display: none !important;
	}

	.lcs-mobile-menu-button {
		background: #06b6bb !important;
		border: 0 !important;
		border-radius: 10px !important;
		color: #fff !important;
		height: 42px !important;
		width: 42px !important;
	}

	.lcs-mobile-menu-button .lcs-icon-lines,
	.lcs-mobile-menu-button .lcs-icon-lines::before,
	.lcs-mobile-menu-button .lcs-icon-lines::after {
		background: #fff !important;
		left: 12px !important;
		width: 18px !important;
	}

	.lcs-mobile-menu-button .lcs-icon-lines::before,
	.lcs-mobile-menu-button .lcs-icon-lines::after {
		left: 0 !important;
	}
}

/* v1.1.28 final override: plain gray view-all card, no background photo. */
.lcs-collection-view-card,
.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-collection-view-card {
	background: #929596 !important;
	border: 0 !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	flex: 0 0 176px;
	min-height: 306px;
	min-width: 176px;
	overflow: hidden;
	position: relative;
	scroll-snap-align: start;
}

.lcs-collection-view-link {
	align-items: center !important;
	background: #929596 !important;
	color: #fff !important;
	display: flex !important;
	height: 100% !important;
	justify-content: center !important;
	min-height: inherit !important;
	position: relative !important;
	text-align: center !important;
	text-decoration: none !important;
	width: 100%;
}

.lcs-collection-view-link::before {
	display: none !important;
}

.lcs-collection-view-media {
	background: #929596 !important;
	border: 0 !important;
	display: block !important;
	inset: 0;
	padding: 0 !important;
	position: absolute !important;
}

.lcs-collection-view-media img {
	display: none !important;
}

/* v1.1.29: show the mobile homepage banner directly below the mobile header search. */
@media (max-width: 768px) {
	.lcs-market-main > .hero-banner,
	body.home .lcs-market-main > .hero-banner,
	body.front-page .lcs-market-main > .hero-banner {
		background: #06b6bb !important;
		border: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		display: block !important;
		height: 108px !important;
		margin: 0 0 12px !important;
		max-width: none !important;
		overflow: hidden !important;
		position: relative !important;
		width: 100% !important;
	}

	.lcs-market-main > .hero-banner::before,
	.lcs-market-main > .hero-banner::after {
		display: none !important;
	}

	.lcs-market-main > .hero-banner .hero-banner-image {
		display: block !important;
		height: 100% !important;
		max-width: none !important;
		object-fit: cover !important;
		object-position: center center !important;
		width: 100% !important;
	}
}

@media (max-width: 380px) {
	.lcs-market-main > .hero-banner,
	body.home .lcs-market-main > .hero-banner,
	body.front-page .lcs-market-main > .hero-banner {
		height: 96px !important;
	}
}

.lcs-collection-view-title {
	display: none !important;
}

.lcs-collection-view-button {
	align-items: center !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: #fff !important;
	display: flex !important;
	flex-direction: column !important;
	font-size: 22px !important;
	font-weight: 800 !important;
	gap: 20px !important;
	height: auto !important;
	justify-content: center !important;
	letter-spacing: 0 !important;
	line-height: 1.12 !important;
	margin: 0 !important;
	padding: 0 12px !important;
	position: relative !important;
	text-shadow: none !important;
	transform: translateY(-8px);
	z-index: 2;
}

.lcs-collection-view-button::after {
	align-items: center;
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	content: "›";
	display: inline-flex;
	font-size: 34px;
	font-weight: 300;
	height: 48px;
	justify-content: center;
	line-height: 1;
	padding-bottom: 4px;
	text-shadow: none;
	width: 48px;
}

@media (max-width: 768px) {
	.lcs-collection-view-card,
	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-collection-view-card {
		flex-basis: 138px;
		min-height: 238px;
		min-width: 138px;
	}

	.lcs-collection-view-button {
		font-size: 18px !important;
		gap: 15px !important;
		transform: translateY(-5px);
	}

	.lcs-collection-view-button::after {
		font-size: 29px;
		height: 42px;
		width: 42px;
	}
}

/* v1.1.28 EOF override: exact plain-gray view-all card without photo background. */
.lcs-collection-view-card,
.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-collection-view-card {
	background: #929596 !important;
	border: 0 !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	flex: 0 0 176px;
	min-height: 306px;
	min-width: 176px;
	overflow: hidden;
	position: relative;
	scroll-snap-align: start;
}

.lcs-collection-view-link {
	align-items: center !important;
	background: #929596 !important;
	color: #fff !important;
	display: flex !important;
	height: 100% !important;
	justify-content: center !important;
	min-height: inherit !important;
	position: relative !important;
	text-align: center !important;
	text-decoration: none !important;
	width: 100%;
}

.lcs-collection-view-link::before {
	display: none !important;
}

.lcs-collection-view-media {
	background: #929596 !important;
	border: 0 !important;
	display: block !important;
	inset: 0;
	padding: 0 !important;
	position: absolute !important;
}

.lcs-collection-view-media img {
	display: none !important;
}

.lcs-collection-view-title {
	display: none !important;
}

.lcs-collection-view-button {
	align-items: center !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: #fff !important;
	display: flex !important;
	flex-direction: column !important;
	font-size: 22px !important;
	font-weight: 800 !important;
	gap: 20px !important;
	height: auto !important;
	justify-content: center !important;
	letter-spacing: 0 !important;
	line-height: 1.12 !important;
	margin: 0 !important;
	padding: 0 12px !important;
	position: relative !important;
	text-shadow: none !important;
	transform: translateY(-8px);
	z-index: 2;
}

.lcs-collection-view-button::after {
	align-items: center;
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	content: "›";
	display: inline-flex;
	font-size: 34px;
	font-weight: 300;
	height: 48px;
	justify-content: center;
	line-height: 1;
	padding-bottom: 4px;
	text-shadow: none;
	width: 48px;
}

@media (max-width: 768px) {
	.lcs-collection-view-card,
	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-collection-view-card {
		flex-basis: 138px;
		min-height: 238px;
		min-width: 138px;
	}

	.lcs-collection-view-button {
		font-size: 18px !important;
		gap: 15px !important;
		transform: translateY(-5px);
	}

	.lcs-collection-view-button::after {
		font-size: 29px;
		height: 42px;
		width: 42px;
	}
}

/* v1.1.22 final: borderless Temu-style product cards and lighter cart control. */
.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card,
.lcs-shop-products .lcs-product-card,
.lcs-linked-products .lcs-product-card {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: flex;
	flex-direction: column;
	min-height: 0;
	overflow: visible !important;
}

.lcs-product-image,
.product-row .lcs-product-image,
.lcs-product-grid .lcs-product-image,
.woocommerce ul.products .lcs-product-image,
.lcs-shop-products .lcs-product-image,
.lcs-linked-products .lcs-product-image {
	background: #fff;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: block;
	overflow: hidden;
	padding: 0 !important;
	position: relative;
	width: 100%;
}

.lcs-product-image-stack,
.lcs-product-image .lcs-product-image-stack,
.product-row .lcs-product-image-stack,
.lcs-product-grid .lcs-product-image-stack,
.woocommerce ul.products .lcs-product-image-stack,
.lcs-shop-products .lcs-product-image-stack,
.lcs-linked-products .lcs-product-image-stack {
	aspect-ratio: 1 / 1;
	background: #fff;
	display: block;
	overflow: hidden;
	width: 100%;
}

.lcs-product-image .lcs-product-img,
.lcs-product-image .lcs-product-img-primary,
.product-row .lcs-product-image img,
.lcs-product-grid .lcs-product-image img,
.woocommerce ul.products .lcs-product-image img,
.lcs-shop-products .lcs-product-image img,
.lcs-linked-products .lcs-product-image img {
	aspect-ratio: 1 / 1;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.lcs-product-body,
.product-row .lcs-product-body,
.lcs-product-grid .lcs-product-body,
.woocommerce ul.products .lcs-product-body,
.lcs-shop-products .lcs-product-body,
.lcs-linked-products .lcs-product-body {
	background: transparent !important;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 5px;
	padding: 8px 0 0 !important;
}

.lcs-product-title,
.product-row .lcs-product-title,
.lcs-product-grid .lcs-product-title,
.woocommerce ul.products .lcs-product-title,
.lcs-shop-products .lcs-product-title,
.lcs-linked-products .lcs-product-title {
	color: #4b5563;
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.28;
	margin: 0;
	min-height: 35px;
	order: 1;
}

.lcs-product-title a {
	color: inherit;
}

.lcs-product-card-footer {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	margin-top: 0;
	min-height: 34px;
	order: 2;
}

.lcs-product-card-footer .lcs-product-price,
.product-row .lcs-product-card-footer .lcs-product-price,
.lcs-product-grid .lcs-product-card-footer .lcs-product-price,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price {
	align-content: center;
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 3px 6px;
	margin: 0;
	min-width: 0;
}

.lcs-product-card-footer .lcs-product-price ins,
.lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.lcs-product-card-footer .lcs-product-price > span,
.product-row .lcs-product-card-footer .lcs-product-price ins,
.product-row .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-card-footer .lcs-product-price > span,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price ins,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > span,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price ins,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price .lcs-current-price,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount {
	color: #ff6b00;
	font-size: 18px;
	font-weight: 850;
	line-height: 1.05;
}

.lcs-product-card-footer .lcs-product-price del {
	color: #777;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.05;
}

.lcs-product-rating,
.product-row .lcs-product-rating,
.lcs-product-grid .lcs-product-rating,
.woocommerce ul.products .lcs-product-rating,
.lcs-shop-products .lcs-product-rating,
.lcs-linked-products .lcs-product-rating {
	align-items: center;
	display: flex;
	gap: 4px;
	margin: 0;
	min-height: 17px;
	order: 3;
}

.lcs-rating-stars,
.product-row .lcs-rating-stars,
.woocommerce ul.products .lcs-rating-stars {
	color: #111827;
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 1;
}

.lcs-rating-count,
.product-row .lcs-rating-count,
.woocommerce ul.products .lcs-rating-count {
	color: #5f6368;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.15;
}

.lcs-product-card-footer .lcs-product-actions,
.product-row .lcs-product-card-footer .lcs-product-actions,
.lcs-product-grid .lcs-product-card-footer .lcs-product-actions,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-actions,
.lcs-shop-products .lcs-product-card-footer .lcs-product-actions {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

.lcs-card-add.lcs-card-add-icon-button,
.product-row .lcs-card-add.lcs-card-add-icon-button,
.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
	align-items: center;
	background: #fff;
	border: 1.25px solid #0a818f;
	border-radius: 999px;
	box-shadow: none;
	color: #0a818f;
	display: inline-flex;
	font-size: 0;
	height: 34px;
	justify-content: center;
	line-height: 1;
	min-height: 34px;
	padding: 0;
	transition: background .15s ease, border-color .15s ease, color .15s ease, opacity .15s ease;
	width: 44px;
}

.lcs-card-add.lcs-card-add-icon-button::before {
	display: none;
}

.lcs-card-add-icon,
.lcs-card-add-icon svg {
	height: 21px;
	width: 21px;
}

.lcs-card-add-icon svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.55;
}

.lcs-wishlist-icon {
	background: rgba(255, 255, 255, .95);
	border: 1px solid rgba(10, 129, 143, .18);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
}

@media (max-width: 768px) {
	.lcs-product-body,
	.product-row .lcs-product-body,
	.lcs-product-grid .lcs-product-body,
	.woocommerce ul.products .lcs-product-body,
	.lcs-shop-products .lcs-product-body,
	.lcs-linked-products .lcs-product-body {
		gap: 4px;
		padding-top: 7px !important;
	}

	.lcs-product-title,
	.product-row .lcs-product-title,
	.lcs-product-grid .lcs-product-title,
	.woocommerce ul.products .lcs-product-title,
	.lcs-shop-products .lcs-product-title,
	.lcs-linked-products .lcs-product-title {
		font-size: 12.8px;
		min-height: 33px;
	}

	.lcs-product-card-footer .lcs-product-price ins,
	.lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.lcs-product-card-footer .lcs-product-price > span,
	.product-row .lcs-product-card-footer .lcs-product-price ins,
	.product-row .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.product-row .lcs-product-card-footer .lcs-product-price > span,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price ins,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > span,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price ins,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price .lcs-current-price,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount {
		font-size: 16.5px;
	}

	.lcs-card-add.lcs-card-add-icon-button,
	.product-row .lcs-card-add.lcs-card-add-icon-button,
	.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
	.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
	.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
		height: 32px;
		min-height: 32px;
		width: 42px;
	}

	.lcs-card-add-icon,
	.lcs-card-add-icon svg {
		height: 20px;
		width: 20px;
	}
}

/* v1.1.22: Temu-like borderless product cards. */
.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card,
.lcs-shop-products .lcs-product-card,
.lcs-linked-products .lcs-product-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.lcs-product-image,
.product-row .lcs-product-image,
.lcs-product-grid .lcs-product-image,
.woocommerce ul.products .lcs-product-image,
.lcs-shop-products .lcs-product-image,
.lcs-linked-products .lcs-product-image {
	background: #fff;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	display: block;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

.lcs-product-image .lcs-product-img,
.product-row .lcs-product-image img,
.lcs-product-grid .lcs-product-image img,
.woocommerce ul.products .lcs-product-image img,
.lcs-shop-products .lcs-product-image img,
.lcs-linked-products .lcs-product-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.lcs-product-body,
.product-row .lcs-product-body,
.lcs-product-grid .lcs-product-body,
.woocommerce ul.products .lcs-product-body,
.lcs-shop-products .lcs-product-body,
.lcs-linked-products .lcs-product-body {
	background: transparent;
	gap: 5px;
	padding: 8px 0 0;
}

.lcs-product-title,
.product-row .lcs-product-title,
.lcs-product-grid .lcs-product-title,
.woocommerce ul.products .lcs-product-title,
.lcs-shop-products .lcs-product-title,
.lcs-linked-products .lcs-product-title {
	color: #4b5563;
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.28;
	min-height: 35px;
	order: 1;
}

.lcs-product-title a {
	color: inherit;
}

.lcs-product-card-footer {
	align-items: center;
	gap: 8px;
	margin-top: 1px;
	min-height: 34px;
	order: 2;
}

.lcs-product-card-footer .lcs-product-price,
.product-row .lcs-product-card-footer .lcs-product-price,
.lcs-product-grid .lcs-product-card-footer .lcs-product-price,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price {
	gap: 3px 6px;
}

.lcs-product-card-footer .lcs-product-price ins,
.lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.lcs-product-card-footer .lcs-product-price > span,
.product-row .lcs-product-card-footer .lcs-product-price ins,
.product-row .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-card-footer .lcs-product-price > span,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price ins,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > span,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price ins,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price .lcs-current-price,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount {
	color: #ff6b00;
	font-size: 18px;
	font-weight: 850;
}

.lcs-product-card-footer .lcs-product-price del {
	color: #777;
	font-size: 12px;
	font-weight: 500;
}

.lcs-product-rating,
.product-row .lcs-product-rating,
.lcs-product-grid .lcs-product-rating,
.woocommerce ul.products .lcs-product-rating,
.lcs-shop-products .lcs-product-rating,
.lcs-linked-products .lcs-product-rating {
	align-items: center;
	display: flex;
	gap: 4px;
	margin-top: 2px;
	min-height: 17px;
	order: 3;
}

.lcs-rating-stars,
.product-row .lcs-rating-stars,
.woocommerce ul.products .lcs-rating-stars {
	color: #111827;
	font-size: 12px;
	letter-spacing: 1px;
}

.lcs-rating-count,
.product-row .lcs-rating-count,
.woocommerce ul.products .lcs-rating-count {
	color: #5f6368;
	font-size: 12px;
	font-weight: 600;
}

.lcs-card-add.lcs-card-add-icon-button,
.product-row .lcs-card-add.lcs-card-add-icon-button,
.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
	background: #fff;
	border: 1.4px solid #0a818f;
	color: #0a818f;
	height: 34px;
	min-height: 34px;
	width: 44px;
}

.lcs-card-add-icon,
.lcs-card-add-icon svg {
	height: 21px;
	width: 21px;
}

.lcs-card-add-icon svg {
	stroke-width: 1.55;
}

.lcs-wishlist-icon {
	background: rgba(255, 255, 255, .94);
	border: 1px solid rgba(10, 129, 143, .18);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
}

@media (max-width: 768px) {
	.lcs-product-body,
	.product-row .lcs-product-body,
	.lcs-product-grid .lcs-product-body,
	.woocommerce ul.products .lcs-product-body,
	.lcs-shop-products .lcs-product-body,
	.lcs-linked-products .lcs-product-body {
		padding-top: 7px;
	}

	.lcs-product-title,
	.product-row .lcs-product-title,
	.lcs-product-grid .lcs-product-title,
	.woocommerce ul.products .lcs-product-title,
	.lcs-shop-products .lcs-product-title,
	.lcs-linked-products .lcs-product-title {
		font-size: 12.8px;
		min-height: 33px;
	}

	.lcs-product-card-footer .lcs-product-price ins,
	.lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.lcs-product-card-footer .lcs-product-price > span,
	.product-row .lcs-product-card-footer .lcs-product-price ins,
	.product-row .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.product-row .lcs-product-card-footer .lcs-product-price > span,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price ins,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > span,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price ins,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price .lcs-current-price,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount {
		font-size: 16.5px;
	}

	.lcs-card-add.lcs-card-add-icon-button,
	.product-row .lcs-card-add.lcs-card-add-icon-button,
	.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
	.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
	.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
		height: 32px;
		min-height: 32px;
		width: 42px;
	}
}

/* v1.1.21: cleaner Temu-like cards, softer cart icon, overlay view-all card. */
.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-flash {
	background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 48%, #c026d3 100%);
}

.lcs-card-flash-sale .lcs-discount-badge,
.lcs-flash-price-chip {
	background: #7c3aed;
	color: #fff;
}

.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card,
.lcs-shop-products .lcs-product-card {
	background: #fff;
	border: 1px solid rgba(226, 232, 240, .72);
	box-shadow: none;
}

.lcs-product-image,
.product-row .lcs-product-image,
.lcs-product-grid .lcs-product-image,
.woocommerce ul.products .lcs-product-image,
.lcs-shop-products .lcs-product-image {
	background: #fff;
	border-bottom: 0;
	padding: 6px;
}

.lcs-product-body,
.product-row .lcs-product-body,
.lcs-product-grid .lcs-product-body,
.woocommerce ul.products .lcs-product-body,
.lcs-shop-products .lcs-product-body {
	padding-top: 7px;
}

.lcs-card-add.lcs-card-add-icon-button,
.product-row .lcs-card-add.lcs-card-add-icon-button,
.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
	background: #fff;
	border: 1.5px solid #0a818f;
	border-radius: 999px;
	color: #0a818f;
	height: 36px;
	min-height: 36px;
	width: 48px;
}

.lcs-card-add-icon,
.lcs-card-add-icon svg {
	height: 24px;
	width: 24px;
}

.lcs-card-add-icon svg {
	stroke-width: 1.75;
}

.lcs-collection-view-card {
	background: #8b8f97;
	border: 0;
	border-radius: 8px;
	box-shadow: none;
	min-height: 286px;
	overflow: hidden;
	position: relative;
}

.lcs-collection-view-link {
	align-items: center;
	color: #fff;
	display: flex;
	height: 100%;
	justify-content: center;
	min-height: inherit;
	position: relative;
	text-align: center;
}

.lcs-collection-view-link::before {
	background: rgba(17, 24, 39, .38);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.lcs-collection-view-media {
	background: #8b8f97;
	border: 0;
	inset: 0;
	padding: 0;
	position: absolute;
}

.lcs-collection-view-media img {
	filter: grayscale(.12) saturate(.8);
	height: 100%;
	object-fit: cover;
	opacity: .58;
	transform: scale(1.03);
	width: 100%;
}

.lcs-collection-view-title {
	display: none;
}

.lcs-collection-view-button {
	align-items: center;
	background: transparent;
	border-radius: 0;
	color: #fff;
	display: flex;
	flex-direction: column;
	font-size: 20px;
	font-weight: 900;
	gap: 18px;
	height: auto;
	line-height: 1.15;
	margin: 0;
	padding: 0 12px;
	position: relative;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .22);
	z-index: 2;
}

.lcs-collection-view-button::after {
	align-items: center;
	border: 2px solid rgba(255, 255, 255, .92);
	border-radius: 50%;
	content: "›";
	display: inline-flex;
	font-size: 34px;
	font-weight: 300;
	height: 48px;
	justify-content: center;
	line-height: 1;
	padding-bottom: 4px;
	text-shadow: none;
	width: 48px;
}

@media (max-width: 768px) {
	.lcs-product-image,
	.product-row .lcs-product-image,
	.lcs-product-grid .lcs-product-image,
	.woocommerce ul.products .lcs-product-image,
	.lcs-shop-products .lcs-product-image {
		padding: 5px;
	}

	.lcs-card-add.lcs-card-add-icon-button,
	.product-row .lcs-card-add.lcs-card-add-icon-button,
	.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
	.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
	.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
		height: 34px;
		min-height: 34px;
		width: 44px;
	}

	.lcs-card-add-icon,
	.lcs-card-add-icon svg {
		height: 22px;
		width: 22px;
	}

	.lcs-collection-view-card {
		min-height: 260px;
	}

	.lcs-collection-view-button {
		font-size: 18px;
		gap: 15px;
	}

	.lcs-collection-view-button::after {
		font-size: 29px;
		height: 42px;
		width: 42px;
	}
}

/* v1.1.19: flatter header, Temu-style catalog chips, red 24-hour collection. */
.lcs-mobile-menu-button,
.lcs-mobile-category-strip {
	display: none;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-flash {
	background: linear-gradient(135deg, #b00020 0%, #ef233c 48%, #ff5a5f 100%);
}

.lcs-card-flash-sale .lcs-discount-badge,
.lcs-flash-price-chip {
	background: #d90429;
	color: #fff;
}

.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card,
.lcs-shop-products .lcs-product-card,
.lcs-collection-view-card,
.lcs-checkout-coupon-panel,
.woocommerce-cart .lcs-cart-items,
.woocommerce-cart .lcs-cart-summary,
.woocommerce-checkout .lcs-checkout-panel {
	border-radius: 6px;
}

.lcs-card-add,
.product-row .lcs-card-add,
.lcs-product-grid .lcs-card-add,
.woocommerce ul.products .lcs-card-add,
.lcs-shop-products .lcs-card-add,
.lcs-filter-apply,
.lcs-filter-reset,
.lcs-checkout-coupon-panel .checkout_coupon button {
	border-radius: 5px;
}

.lcs-archive-toolbar {
	display: block;
	margin: 10px 0 20px;
	max-width: 100%;
	overflow: hidden;
}

.lcs-toolbar-scroll {
	align-items: center;
	display: flex;
	gap: 8px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 0 10px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.lcs-toolbar-scroll::-webkit-scrollbar {
	display: none;
}

.lcs-toolbar-chip,
.lcs-filter-toggle.lcs-toolbar-chip,
.lcs-filter-quick-chip.lcs-toolbar-chip,
.lcs-category-sort-form.lcs-toolbar-chip {
	align-items: center;
	background: #f4f5f6;
	border: 0;
	border-radius: 18px;
	box-shadow: none;
	color: #3f4652;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 750;
	gap: 7px;
	height: 38px;
	line-height: 1;
	margin: 0;
	min-width: 0;
	padding: 0 14px;
	white-space: nowrap;
}

.lcs-toolbar-chip.is-active {
	background: #e7f6f7;
	color: #0a818f;
}

.lcs-toolbar-chip b {
	align-items: center;
	background: #0a818f;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 11px;
	height: 18px;
	justify-content: center;
	min-width: 18px;
	padding: 0 5px;
}

.lcs-chip-icon {
	color: #6b7280;
	font-size: 15px;
	line-height: 1;
}

.lcs-category-sort-form label {
	color: #1f2937;
	display: inline;
	font-size: 14px;
	font-weight: 850;
	margin: 0;
}

.lcs-category-sort-form select {
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #1f2937;
	font-size: 14px;
	font-weight: 850;
	height: 38px;
	line-height: 38px;
	margin: 0;
	max-width: 220px;
	min-width: 0;
	padding: 0 18px 0 0;
	width: auto;
}

.lcs-category-sort-form::after {
	color: #1f2937;
	content: "⌄";
	font-size: 15px;
	line-height: 1;
	margin-left: -16px;
	pointer-events: none;
}

.lcs-catalog-layout {
	display: block;
}

.lcs-shop-archive .lcs-filter-panel,
.lcs-shop-archive aside.lcs-filter-panel {
	border-radius: 6px 0 0 6px;
	bottom: 0;
	box-shadow: -16px 0 36px rgba(15, 23, 42, .16);
	left: auto;
	max-height: none;
	overflow-y: auto;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(105%);
	transition: transform .22s ease;
	width: min(390px, 92vw);
	z-index: 1500;
}

.admin-bar .lcs-shop-archive .lcs-filter-panel,
.admin-bar .lcs-shop-archive aside.lcs-filter-panel {
	top: 32px;
}

.lcs-shop-archive .lcs-filter-panel.is-open,
.lcs-shop-archive.is-filter-open .lcs-filter-panel {
	transform: translateX(0);
}

.lcs-filter-backdrop {
	background: rgba(15, 23, 42, .42);
	display: none;
	inset: 0;
	position: fixed;
	z-index: 1490;
}

.lcs-shop-archive.is-filter-open .lcs-filter-backdrop {
	display: block;
}

.lcs-filter-close {
	display: inline-flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.lcs-market-header {
		background: #fff;
		border-bottom: 1px solid #edf1f4;
	}

	.lcs-market-header .top-header {
		background: #fff;
		border-bottom: 0;
		padding: 8px 12px 4px;
	}

	.lcs-market-header .top-inner {
		align-items: center;
		display: grid;
		gap: 10px;
		grid-template-columns: 34px auto minmax(0, 1fr) auto;
		height: 36px;
		min-height: 36px;
		width: 100%;
	}

	.lcs-market-header .top-inner .top-link,
	.lcs-market-header .top-inner .top-phone {
		display: none;
	}

	.lcs-mobile-menu-button {
		align-items: center;
		background: transparent;
		border: 0;
		color: #172033;
		display: inline-flex;
		grid-column: 1;
		height: 34px;
		justify-content: center;
		padding: 0;
		position: relative;
		width: 34px;
	}

	.lcs-mobile-menu-button .lcs-icon-lines,
	.lcs-mobile-menu-button .lcs-icon-lines::before,
	.lcs-mobile-menu-button .lcs-icon-lines::after {
		background: currentColor;
		content: "";
		height: 2px;
		left: 8px;
		position: absolute;
		width: 18px;
	}

	.lcs-mobile-menu-button .lcs-icon-lines {
		top: 16px;
	}

	.lcs-mobile-menu-button .lcs-icon-lines::before {
		left: 0;
		top: -7px;
	}

	.lcs-mobile-menu-button .lcs-icon-lines::after {
		left: 0;
		top: 7px;
	}

	.lcs-market-header .brand-wrap {
		grid-column: 2;
		min-width: 0;
	}

	.lcs-market-header .brand,
	.lcs-market-header .custom-logo-link {
		height: 34px;
		min-width: 0;
	}

	.lcs-market-header .brand-wrap .custom-logo {
		max-height: 27px;
		width: auto;
	}

	.lcs-market-header .brand-name {
		font-size: 24px;
		letter-spacing: 0;
	}

	.lcs-market-header .lcs-mobile-header-actions {
		align-items: center;
		display: flex;
		gap: 11px;
		grid-column: 4;
		justify-content: flex-end;
	}

	.lcs-mobile-header-actions .favorite,
	.lcs-mobile-header-actions .account,
	.lcs-mobile-header-actions .cart {
		align-items: center;
		background: transparent;
		border: 0;
		border-radius: 0;
		color: #172033;
		display: inline-flex;
		height: 32px;
		justify-content: center;
		padding: 0;
		position: relative;
		width: 28px;
	}

	.lcs-mobile-header-actions .favorite strong,
	.lcs-mobile-header-actions .account strong,
	.lcs-mobile-header-actions .cart strong {
		display: none;
	}

	.lcs-mobile-header-actions svg {
		height: 24px;
		width: 24px;
	}

	.lcs-mobile-header-actions .cart .cart-count {
		font-size: 10px;
		height: 16px;
		left: auto;
		min-width: 16px;
		right: -5px;
		top: -2px;
	}

	.lcs-market-header .nav-bar {
		background: #fff;
		border-bottom: 0;
		box-shadow: none;
		padding: 4px 12px 8px;
		position: relative;
		top: auto;
	}

	.lcs-market-header .nav-inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		height: 42px;
		min-height: 42px;
		max-width: none;
		width: 100%;
	}

	.lcs-market-header .lcs-market-category-menu {
		height: 0;
		left: 0;
		overflow: visible;
		position: absolute;
		top: calc(100% + 4px);
		width: 0;
		z-index: 70;
	}

	.lcs-market-header .lcs-market-category-menu > .nav-all {
		display: none;
	}

	.lcs-market-header .lcs-market-category-menu .lcs-mega-menu.lcs-cascade-wrap {
		left: 0;
		top: 0;
		width: min(94vw, 390px);
	}

	.lcs-market-header .lcs-market-search {
		background: #f2f4f6;
		border: 0;
		border-radius: 8px;
		display: grid;
		grid-column: 1;
		grid-template-columns: minmax(0, 1fr) 42px;
		height: 42px;
		overflow: hidden;
		width: 100%;
	}

	.lcs-market-header .lcs-market-search input[type="search"] {
		background: transparent;
		border: 0;
		color: #172033;
		font-size: 14px;
		height: 42px;
		padding: 0 12px;
	}

	.lcs-market-header .lcs-market-search button {
		background: transparent;
		border: 0;
		color: #0a818f;
		height: 42px;
		padding: 0;
		width: 42px;
	}

	.lcs-market-header .lcs-market-search button span,
	.lcs-market-header .nav-inner > .favorite,
	.lcs-market-header .nav-inner > .account,
	.lcs-market-header .nav-inner > .cart {
		display: none;
	}

	.lcs-mobile-category-strip {
		background: #fff;
		border-bottom: 1px solid #edf1f4;
		display: flex;
		gap: 24px;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 0 12px;
		scrollbar-width: none;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.lcs-mobile-category-strip::-webkit-scrollbar {
		display: none;
	}

	.lcs-mobile-category-strip a {
		border-bottom: 3px solid transparent;
		color: #3f4652;
		display: inline-flex;
		font-size: 14px;
		font-weight: 750;
		padding: 10px 0 8px;
	}

	.lcs-mobile-category-strip a.is-active {
		border-bottom-color: #0a818f;
		color: #0a818f;
	}

	.hero-banner {
		border-radius: 0;
		height: 96px;
		margin: 0 calc(50% - 50vw) 10px;
		overflow: hidden;
		width: 100vw;
	}

	.hero-banner::before,
	.hero-banner::after {
		display: none;
	}

	.hero-banner-image {
		height: 100%;
		object-fit: cover;
		object-position: center;
		width: 100%;
	}

	.lcs-archive-toolbar {
		margin: 6px -12px 14px 0;
	}

	.lcs-toolbar-scroll {
		padding: 0 12px 9px 0;
	}

	.lcs-toolbar-chip,
	.lcs-filter-toggle.lcs-toolbar-chip,
	.lcs-filter-quick-chip.lcs-toolbar-chip,
	.lcs-category-sort-form.lcs-toolbar-chip {
		border-radius: 17px;
		font-size: 13px;
		height: 36px;
		padding: 0 12px;
	}

	.lcs-category-sort-form label {
		display: none;
	}

	.lcs-category-sort-form select {
		font-size: 13px;
		height: 36px;
		line-height: 36px;
		max-width: 168px;
	}

	.lcs-shop-archive .lcs-filter-panel,
	.lcs-shop-archive aside.lcs-filter-panel {
		border-radius: 8px 8px 0 0;
		bottom: 0;
		box-shadow: 0 -14px 36px rgba(15, 23, 42, .18);
		left: 0;
		max-height: 82vh;
		right: 0;
		top: auto;
		transform: translateY(105%);
		width: 100%;
	}

	.lcs-shop-archive .lcs-filter-panel.is-open,
	.lcs-shop-archive.is-filter-open .lcs-filter-panel {
		transform: translateY(0);
	}
}

@media (max-width: 380px) {
	.lcs-market-header .top-inner {
		gap: 8px;
		grid-template-columns: 32px auto minmax(0, 1fr) auto;
	}

	.lcs-market-header .lcs-mobile-header-actions {
		gap: 8px;
	}

	.lcs-mobile-category-strip {
		gap: 19px;
	}

	.hero-banner {
		height: 88px;
	}
}

/* v1.1.20: icon-only add-to-cart card control and tighter cards. */
.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card,
.lcs-shop-products .lcs-product-card {
	min-height: 0;
}

.lcs-home-carousel .product-row .lcs-product-card,
.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-card {
	flex-basis: 168px;
	min-width: 168px;
}

.lcs-product-body,
.product-row .lcs-product-body,
.lcs-product-grid .lcs-product-body,
.woocommerce ul.products .lcs-product-body,
.lcs-shop-products .lcs-product-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 9px 10px 10px;
}

.lcs-product-title,
.product-row .lcs-product-title,
.lcs-product-grid .lcs-product-title,
.woocommerce ul.products .lcs-product-title,
.lcs-shop-products .lcs-product-title {
	margin: 0;
	min-height: 34px;
	order: 1;
}

.lcs-product-rating,
.product-row .lcs-product-rating,
.lcs-product-grid .lcs-product-rating,
.woocommerce ul.products .lcs-product-rating,
.lcs-shop-products .lcs-product-rating {
	margin: 0;
	min-height: 16px;
	order: 2;
}

.lcs-product-card-footer {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	margin-top: 1px;
	min-height: 38px;
	order: 3;
}

.lcs-product-card-footer .lcs-product-price,
.product-row .lcs-product-card-footer .lcs-product-price,
.lcs-product-grid .lcs-product-card-footer .lcs-product-price,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price {
	align-content: center;
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 4px 6px;
	margin: 0;
	min-height: 0;
	min-width: 0;
	order: initial;
}

.lcs-product-card-footer .lcs-product-price ins,
.lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.lcs-product-card-footer .lcs-product-price > span,
.product-row .lcs-product-card-footer .lcs-product-price ins,
.product-row .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-card-footer .lcs-product-price > span,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price ins,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > span,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price ins,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price .lcs-current-price,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount {
	font-size: 15.5px;
	line-height: 1.05;
}

.lcs-product-card-footer .lcs-product-price del {
	font-size: 10.5px;
	line-height: 1.1;
}

.lcs-product-card-footer .lcs-product-actions,
.product-row .lcs-product-card-footer .lcs-product-actions,
.lcs-product-grid .lcs-product-card-footer .lcs-product-actions,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-actions,
.lcs-shop-products .lcs-product-card-footer .lcs-product-actions {
	flex: 0 0 auto;
	margin: 0;
	order: initial;
	padding: 0;
}

.lcs-card-add.lcs-card-add-icon-button,
.product-row .lcs-card-add.lcs-card-add-icon-button,
.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
	align-items: center;
	background: #fff;
	border: 2px solid #111827;
	border-radius: 18px;
	box-shadow: none;
	color: #111827;
	display: inline-flex;
	font-size: 0;
	height: 38px;
	justify-content: center;
	line-height: 1;
	min-height: 38px;
	padding: 0;
	position: relative;
	transition: border-color .15s ease, color .15s ease, background .15s ease, opacity .15s ease;
	width: 52px;
}

.lcs-card-add.lcs-card-add-icon-button::before {
	display: none;
}

.lcs-card-add-icon {
	align-items: center;
	display: inline-flex;
	height: 28px;
	justify-content: center;
	width: 30px;
}

.lcs-card-add-icon svg {
	display: block;
	fill: none;
	height: 28px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.35;
	width: 28px;
}

.lcs-card-add.lcs-card-add-icon-button.loading,
.lcs-card-add.lcs-card-add-icon-button.added {
	opacity: .72;
}

.lcs-card-add.lcs-card-view-button {
	border-color: #9ca3af;
	color: #4b5563;
}

@media (max-width: 768px) {
	.lcs-home-carousel .product-row .lcs-product-card,
	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-card,
	.lcs-collection-view-card {
		flex-basis: 148px;
		min-width: 148px;
	}

	.lcs-product-body,
	.product-row .lcs-product-body,
	.lcs-product-grid .lcs-product-body,
	.woocommerce ul.products .lcs-product-body,
	.lcs-shop-products .lcs-product-body {
		gap: 5px;
		padding: 8px 8px 9px;
	}

	.lcs-product-title,
	.product-row .lcs-product-title,
	.lcs-product-grid .lcs-product-title,
	.woocommerce ul.products .lcs-product-title,
	.lcs-shop-products .lcs-product-title {
		min-height: 32px;
	}

	.lcs-product-card-footer {
		gap: 6px;
		min-height: 36px;
	}

	.lcs-card-add.lcs-card-add-icon-button,
	.product-row .lcs-card-add.lcs-card-add-icon-button,
	.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
	.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
	.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
		border-radius: 17px;
		height: 36px;
		min-height: 36px;
		width: 48px;
	}

	.lcs-card-add-icon,
	.lcs-card-add-icon svg {
		height: 26px;
		width: 26px;
	}
}

@media (max-width: 380px) {
	.lcs-home-carousel .product-row .lcs-product-card,
	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-card,
	.lcs-collection-view-card {
		flex-basis: 142px;
		min-width: 142px;
	}
}

/* v1.1.21 final precedence overrides. */
.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection.lcs-collection-theme-flash {
	background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 48%, #c026d3 100%);
}

.lcs-card-flash-sale .lcs-discount-badge,
.lcs-flash-price-chip {
	background: #7c3aed;
	color: #fff;
}

.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card,
.lcs-shop-products .lcs-product-card {
	border: 1px solid rgba(226, 232, 240, .72);
	box-shadow: none;
}

.lcs-product-image,
.product-row .lcs-product-image,
.lcs-product-grid .lcs-product-image,
.woocommerce ul.products .lcs-product-image,
.lcs-shop-products .lcs-product-image {
	background: #fff;
	border-bottom: 0;
	padding: 6px;
}

.lcs-card-add.lcs-card-add-icon-button,
.product-row .lcs-card-add.lcs-card-add-icon-button,
.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
	background: #fff;
	border: 1.5px solid #0a818f;
	border-radius: 999px;
	color: #0a818f;
	height: 36px;
	min-height: 36px;
	width: 48px;
}

.lcs-card-add-icon,
.lcs-card-add-icon svg {
	height: 24px;
	width: 24px;
}

.lcs-card-add-icon svg {
	stroke-width: 1.75;
}

.lcs-collection-view-card {
	background: #8b8f97;
	border: 0;
	border-radius: 8px;
	box-shadow: none;
	min-height: 286px;
	overflow: hidden;
	position: relative;
}

.lcs-collection-view-link {
	align-items: center;
	color: #fff;
	display: flex;
	height: 100%;
	justify-content: center;
	min-height: inherit;
	position: relative;
	text-align: center;
}

.lcs-collection-view-link::before {
	background: rgba(17, 24, 39, .38);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.lcs-collection-view-media {
	background: #8b8f97;
	border: 0;
	inset: 0;
	padding: 0;
	position: absolute;
}

.lcs-collection-view-media img {
	filter: grayscale(.12) saturate(.8);
	height: 100%;
	object-fit: cover;
	opacity: .58;
	transform: scale(1.03);
	width: 100%;
}

.lcs-collection-view-title {
	display: none;
}

.lcs-collection-view-button {
	align-items: center;
	background: transparent;
	border-radius: 0;
	color: #fff;
	display: flex;
	flex-direction: column;
	font-size: 20px;
	font-weight: 900;
	gap: 18px;
	height: auto;
	line-height: 1.15;
	margin: 0;
	padding: 0 12px;
	position: relative;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .22);
	z-index: 2;
}

.lcs-collection-view-button::after {
	align-items: center;
	border: 2px solid rgba(255, 255, 255, .92);
	border-radius: 50%;
	content: "›";
	display: inline-flex;
	font-size: 34px;
	font-weight: 300;
	height: 48px;
	justify-content: center;
	line-height: 1;
	padding-bottom: 4px;
	text-shadow: none;
	width: 48px;
}

@media (max-width: 768px) {
	.lcs-card-add.lcs-card-add-icon-button,
	.product-row .lcs-card-add.lcs-card-add-icon-button,
	.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
	.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
	.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
		height: 34px;
		min-height: 34px;
		width: 44px;
	}

	.lcs-card-add-icon,
	.lcs-card-add-icon svg {
		height: 22px;
		width: 22px;
	}

	.lcs-collection-view-card {
		min-height: 260px;
	}

	.lcs-collection-view-button {
		font-size: 18px;
		gap: 15px;
	}

	.lcs-collection-view-button::after {
		font-size: 29px;
		height: 42px;
		width: 42px;
	}
}
/* v1.1.23 EOF override: final borderless product-card layout with cart option A. */
.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card,
.lcs-shop-products .lcs-product-card,
.lcs-linked-products .lcs-product-card {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.lcs-product-image,
.product-row .lcs-product-image,
.lcs-product-grid .lcs-product-image,
.woocommerce ul.products .lcs-product-image,
.lcs-shop-products .lcs-product-image,
.lcs-linked-products .lcs-product-image {
	background: #fff;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: block;
	overflow: hidden;
	padding: 0 !important;
	width: 100%;
}

.lcs-product-image-stack,
.lcs-product-image .lcs-product-image-stack,
.product-row .lcs-product-image-stack,
.lcs-product-grid .lcs-product-image-stack,
.woocommerce ul.products .lcs-product-image-stack,
.lcs-shop-products .lcs-product-image-stack,
.lcs-linked-products .lcs-product-image-stack {
	aspect-ratio: 1 / 1;
	background: #fff;
	display: block;
	overflow: hidden;
	width: 100%;
}

.lcs-product-image .lcs-product-img,
.lcs-product-image .lcs-product-img-primary,
.product-row .lcs-product-image img,
.lcs-product-grid .lcs-product-image img,
.woocommerce ul.products .lcs-product-image img,
.lcs-shop-products .lcs-product-image img,
.lcs-linked-products .lcs-product-image img {
	aspect-ratio: 1 / 1;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.lcs-product-body,
.product-row .lcs-product-body,
.lcs-product-grid .lcs-product-body,
.woocommerce ul.products .lcs-product-body,
.lcs-shop-products .lcs-product-body,
.lcs-linked-products .lcs-product-body {
	background: transparent !important;
	gap: 5px;
	padding: 8px 0 0 !important;
}

.lcs-product-title,
.product-row .lcs-product-title,
.lcs-product-grid .lcs-product-title,
.woocommerce ul.products .lcs-product-title,
.lcs-shop-products .lcs-product-title,
.lcs-linked-products .lcs-product-title {
	color: #4b5563;
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.28;
	margin: 0;
	min-height: 35px;
	order: 1;
}

.lcs-product-title a {
	color: inherit;
}

.lcs-product-card-footer {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	margin: 0;
	min-height: 34px;
	order: 2;
}

.lcs-product-card-footer .lcs-product-price {
	align-content: center;
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 3px 6px;
	margin: 0;
	min-width: 0;
}

.lcs-product-card-footer .lcs-product-price ins,
.lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.lcs-product-card-footer .lcs-product-price > span,
.product-row .lcs-product-card-footer .lcs-product-price ins,
.product-row .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-card-footer .lcs-product-price > span,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price ins,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > span,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price ins,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price .lcs-current-price,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount {
	color: #ff6b00;
	font-size: 18px;
	font-weight: 850;
	line-height: 1.05;
}

.lcs-product-card-footer .lcs-product-price del {
	color: #777;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.05;
}

.lcs-product-rating,
.product-row .lcs-product-rating,
.lcs-product-grid .lcs-product-rating,
.woocommerce ul.products .lcs-product-rating,
.lcs-shop-products .lcs-product-rating,
.lcs-linked-products .lcs-product-rating {
	align-items: center;
	display: flex;
	gap: 4px;
	margin: 0;
	min-height: 17px;
	order: 3;
}

.lcs-rating-stars,
.product-row .lcs-rating-stars,
.woocommerce ul.products .lcs-rating-stars {
	color: #111827;
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 1;
}

.lcs-rating-count,
.product-row .lcs-rating-count,
.woocommerce ul.products .lcs-rating-count {
	color: #5f6368;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.15;
}

.lcs-product-card-footer .lcs-product-actions {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

.lcs-card-add.lcs-card-add-icon-button,
.product-row .lcs-card-add.lcs-card-add-icon-button,
.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
	align-items: center;
	background: #fff;
	border: 1.25px solid #0a818f;
	border-radius: 999px;
	box-shadow: none;
	color: #0a818f;
	display: inline-flex;
	font-size: 0;
	height: 34px;
	justify-content: center;
	line-height: 1;
	min-height: 34px;
	padding: 0;
	transition: background .15s ease, border-color .15s ease, color .15s ease, opacity .15s ease;
	width: 44px;
}

.lcs-card-add.lcs-card-add-icon-button::before {
	display: none;
}

.lcs-card-add-icon,
.lcs-card-add-icon svg {
	height: 21px;
	width: 21px;
}

.lcs-card-add-icon svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.55;
}

.lcs-wishlist-icon {
	background: rgba(255, 255, 255, .95);
	border: 1px solid rgba(10, 129, 143, .18);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
}

@media (max-width: 768px) {
	.lcs-product-body,
	.product-row .lcs-product-body,
	.lcs-product-grid .lcs-product-body,
	.woocommerce ul.products .lcs-product-body,
	.lcs-shop-products .lcs-product-body,
	.lcs-linked-products .lcs-product-body {
		gap: 4px;
		padding-top: 7px !important;
	}

	.lcs-product-title,
	.product-row .lcs-product-title,
	.lcs-product-grid .lcs-product-title,
	.woocommerce ul.products .lcs-product-title,
	.lcs-shop-products .lcs-product-title,
	.lcs-linked-products .lcs-product-title {
		font-size: 12.8px;
		min-height: 33px;
	}

	.lcs-product-card-footer .lcs-product-price ins,
	.lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.lcs-product-card-footer .lcs-product-price > span,
	.product-row .lcs-product-card-footer .lcs-product-price ins,
	.product-row .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.product-row .lcs-product-card-footer .lcs-product-price > span,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price ins,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > span,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price ins,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price .lcs-current-price,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount {
		font-size: 16.5px;
	}

	.lcs-card-add.lcs-card-add-icon-button,
	.product-row .lcs-card-add.lcs-card-add-icon-button,
	.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
	.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
	.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
		height: 32px;
		min-height: 32px;
		width: 42px;
	}

	.lcs-card-add-icon,
	.lcs-card-add-icon svg {
		height: 20px;
		width: 20px;
	}
}
/* v1.1.24 EOF override: corrected collection cards, mobile spacing and touch behavior. */
.lcs-mobile-category-strip {
	display: none !important;
}

.lcs-discount-badge,
.product-row .lcs-discount-badge,
.lcs-product-grid .lcs-discount-badge,
.woocommerce ul.products .lcs-discount-badge,
.lcs-shop-products .lcs-discount-badge {
	display: none !important;
}

.lcs-card-flash-sale .lcs-discount-badge,
.product-row .lcs-card-flash-sale .lcs-discount-badge,
.lcs-product-grid .lcs-card-flash-sale .lcs-discount-badge,
.woocommerce ul.products .lcs-card-flash-sale .lcs-discount-badge,
.lcs-shop-products .lcs-card-flash-sale .lcs-discount-badge {
	display: inline-flex !important;
}

.lcs-product-card-footer .lcs-product-price ins,
.lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.lcs-product-card-footer .lcs-product-price > span,
.product-row .lcs-product-card-footer .lcs-product-price ins,
.product-row .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-card-footer .lcs-product-price > span,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price ins,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > span,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price ins,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price .lcs-current-price,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.lcs-product-price ins,
.lcs-product-price > .woocommerce-Price-amount,
.lcs-product-price > span,
.product-row .lcs-product-price ins,
.product-row .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-price > span,
.woocommerce ul.products .lcs-product-price ins,
.woocommerce ul.products .lcs-product-price > .woocommerce-Price-amount,
.woocommerce ul.products .lcs-product-price > span,
.lcs-shop-products .lcs-product-price ins,
.lcs-shop-products .lcs-product-price .lcs-current-price,
.lcs-shop-products .lcs-product-price > .woocommerce-Price-amount {
	color: #0a818f !important;
}

.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card,
.lcs-shop-products .lcs-product-card,
.lcs-linked-products .lcs-product-card {
	min-height: 0 !important;
}

.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-card,
.lcs-home-carousel .product-row .lcs-product-card {
	flex: 0 0 160px;
	min-width: 160px;
}

.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-card {
	background: #fff !important;
	border: 0 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	overflow: hidden !important;
	padding: 6px 6px 8px;
}

.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-image {
	background: #fff;
	border: 0 !important;
	padding: 0 !important;
}

.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-body {
	background: #fff !important;
	padding: 7px 0 0 !important;
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head {
	margin-bottom: 13px;
}

.woocommerce .products ul.lcs-shop-products,
.woocommerce ul.products.lcs-shop-products,
ul.products.lcs-shop-products {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.lcs-all-products-section .lcs-all-products-grid,
.lcs-market-main .lcs-all-products-section .product-row {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.lcs-all-products-section .lcs-all-products-grid .lcs-product-card,
.lcs-market-main .lcs-all-products-section .product-row .lcs-product-card {
	min-width: 0;
}

.lcs-single-main-image img,
.single-product .lcs-single-main-image img,
.single-product .lcs-single-main-image img.is-switching,
.single-product .lcs-single-main-image img.is-slide-next,
.single-product .lcs-single-main-image img.is-slide-prev {
	animation: none !important;
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

.lcs-single-flash-sale .lcs-single-sale-badge {
	background: #7c3aed;
	box-shadow: 0 6px 14px rgba(124, 58, 237, .22);
	color: #fff;
}

@media (max-width: 1200px) {
	.woocommerce .products ul.lcs-shop-products,
	.woocommerce ul.products.lcs-shop-products,
	ul.products.lcs-shop-products,
	.lcs-all-products-section .lcs-all-products-grid,
	.lcs-market-main .lcs-all-products-section .product-row {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.woocommerce .products ul.lcs-shop-products,
	.woocommerce ul.products.lcs-shop-products,
	ul.products.lcs-shop-products,
	.lcs-all-products-section .lcs-all-products-grid,
	.lcs-market-main .lcs-all-products-section .product-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.lcs-market-main .main-wrap {
		overflow: hidden;
		padding-left: 12px;
		padding-right: 12px;
	}

	.lcs-market-header .top-header,
	.lcs-market-header .nav-bar {
		padding-left: 12px;
		padding-right: 12px;
	}

	.lcs-market-header .lcs-market-search {
		background: #fff;
		border: 1px solid #dce7eb;
		border-radius: 8px;
		box-shadow: none;
		overflow: hidden;
	}

	.lcs-market-header .lcs-market-search:focus-within {
		border-color: #0a818f;
		box-shadow: 0 0 0 2px rgba(10, 129, 143, .12);
	}

	.hero-banner {
		border-radius: 0;
		height: 108px;
		margin: 0 0 10px;
		overflow: hidden;
		width: 100%;
	}

	.hero-banner-image {
		height: 100%;
		object-fit: cover;
		object-position: center 44%;
		width: 100%;
	}

	.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection {
		margin-left: -12px;
		margin-right: -12px;
		padding: 14px 12px 18px;
		width: calc(100% + 24px);
	}

	.lcs-market-main .wide-strip.lcs-home-products.lcs-all-products-section {
		padding-left: 0;
		padding-right: 0;
	}

	.lcs-home-carousel .product-row,
	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row {
		gap: 9px;
		padding-left: 0;
		padding-right: 44px;
	}

	.lcs-home-carousel .product-row .lcs-product-card,
	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-product-card,
	.lcs-collection-view-card {
		flex-basis: 138px;
		min-width: 138px;
	}

	.woocommerce .products ul.lcs-shop-products,
	.woocommerce ul.products.lcs-shop-products,
	ul.products.lcs-shop-products,
	.lcs-all-products-section .lcs-all-products-grid,
	.lcs-market-main .lcs-all-products-section .product-row {
		gap: 12px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcs-product-body,
	.product-row .lcs-product-body,
	.lcs-product-grid .lcs-product-body,
	.woocommerce ul.products .lcs-product-body,
	.lcs-shop-products .lcs-product-body,
	.lcs-linked-products .lcs-product-body {
		padding-top: 6px !important;
	}

	.lcs-product-title,
	.product-row .lcs-product-title,
	.lcs-product-grid .lcs-product-title,
	.woocommerce ul.products .lcs-product-title,
	.lcs-shop-products .lcs-product-title,
	.lcs-linked-products .lcs-product-title {
		font-size: 12.3px;
		min-height: 31px;
	}

	.lcs-product-card-footer .lcs-product-price ins,
	.lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.lcs-product-card-footer .lcs-product-price > span,
	.product-row .lcs-product-card-footer .lcs-product-price ins,
	.product-row .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.product-row .lcs-product-card-footer .lcs-product-price > span,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price ins,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > span,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price ins,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price .lcs-current-price,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount {
		font-size: 15.5px;
	}

	.lcs-card-add.lcs-card-add-icon-button,
	.product-row .lcs-card-add.lcs-card-add-icon-button,
	.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
	.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
	.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
		height: 31px;
		min-height: 31px;
		width: 40px;
	}

	.lcs-card-add-icon,
	.lcs-card-add-icon svg {
		height: 19px;
		width: 19px;
	}
}



/* v1.1.25 EOF override: restore cleaner product-card typography and orange ratings. */
.lcs-product-title,
.product-row .lcs-product-title,
.lcs-product-grid .lcs-product-title,
.woocommerce ul.products .lcs-product-title,
.lcs-shop-products .lcs-product-title,
.lcs-linked-products .lcs-product-title {
	color: #1f2937 !important;
	font-size: 12.5px !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
	line-height: 1.32 !important;
	margin: 0 0 5px !important;
	min-height: 33px;
}

.lcs-product-title a,
.product-row .lcs-product-title a,
.lcs-product-grid .lcs-product-title a,
.woocommerce ul.products .lcs-product-title a,
.lcs-shop-products .lcs-product-title a,
.lcs-linked-products .lcs-product-title a {
	color: inherit !important;
	font-weight: inherit !important;
	letter-spacing: 0 !important;
}

.lcs-rating-stars,
.product-row .lcs-rating-stars,
.lcs-product-grid .lcs-rating-stars,
.woocommerce ul.products .lcs-rating-stars,
.lcs-shop-products .lcs-rating-stars,
.lcs-linked-products .lcs-rating-stars {
	color: #ff9f1a !important;
	font-size: 11.5px !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	line-height: 1;
}

.lcs-rating-count,
.product-row .lcs-rating-count,
.woocommerce ul.products .lcs-rating-count,
.lcs-shop-products .lcs-rating-count,
.lcs-linked-products .lcs-rating-count {
	color: #667085 !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
}

.lcs-product-card-footer .lcs-product-price ins,
.lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.lcs-product-card-footer .lcs-product-price > span,
.product-row .lcs-product-card-footer .lcs-product-price ins,
.product-row .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-card-footer .lcs-product-price > span,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price ins,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > span,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price ins,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price .lcs-current-price,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.lcs-product-price ins,
.lcs-product-price > .woocommerce-Price-amount,
.lcs-product-price > span,
.product-row .lcs-product-price ins,
.product-row .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-price > span,
.woocommerce ul.products .lcs-product-price ins,
.woocommerce ul.products .lcs-product-price > .woocommerce-Price-amount,
.woocommerce ul.products .lcs-product-price > span,
.lcs-shop-products .lcs-product-price ins,
.lcs-shop-products .lcs-product-price .lcs-current-price,
.lcs-shop-products .lcs-product-price > .woocommerce-Price-amount {
	color: #0a818f !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	line-height: 1.08 !important;
}

.lcs-product-card-footer .lcs-product-price del,
.lcs-product-price del,
.product-row .lcs-product-price del,
.woocommerce ul.products .lcs-product-price del,
.lcs-shop-products .lcs-product-price del,
.lcs-linked-products .lcs-product-price del {
	color: #8b96a5 !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
}

@media (max-width: 768px) {
	.lcs-product-title,
	.product-row .lcs-product-title,
	.lcs-product-grid .lcs-product-title,
	.woocommerce ul.products .lcs-product-title,
	.lcs-shop-products .lcs-product-title,
	.lcs-linked-products .lcs-product-title {
		font-size: 12.1px !important;
		font-weight: 600 !important;
		min-height: 31px;
	}

	.lcs-rating-stars,
	.product-row .lcs-rating-stars,
	.lcs-product-grid .lcs-rating-stars,
	.woocommerce ul.products .lcs-rating-stars,
	.lcs-shop-products .lcs-rating-stars,
	.lcs-linked-products .lcs-rating-stars {
		font-size: 11px !important;
	}

	.lcs-product-card-footer .lcs-product-price ins,
	.lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.lcs-product-card-footer .lcs-product-price > span,
	.product-row .lcs-product-card-footer .lcs-product-price ins,
	.product-row .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.product-row .lcs-product-card-footer .lcs-product-price > span,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price ins,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > span,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price ins,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price .lcs-current-price,
	.lcs-shop-products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
	.lcs-product-price ins,
	.lcs-product-price > .woocommerce-Price-amount,
	.lcs-product-price > span,
	.product-row .lcs-product-price ins,
	.product-row .lcs-product-price > .woocommerce-Price-amount,
	.product-row .lcs-product-price > span,
	.woocommerce ul.products .lcs-product-price ins,
	.woocommerce ul.products .lcs-product-price > .woocommerce-Price-amount,
	.woocommerce ul.products .lcs-product-price > span,
	.lcs-shop-products .lcs-product-price ins,
	.lcs-shop-products .lcs-product-price .lcs-current-price,
	.lcs-shop-products .lcs-product-price > .woocommerce-Price-amount {
		font-size: 14.5px !important;
		font-weight: 700 !important;
	}
}

/* v1.1.26 EOF override: apply requested Limo cyan to product prices and cart icons. */
.lcs-product-card-footer .lcs-product-price ins,
.lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.lcs-product-card-footer .lcs-product-price > span,
.product-row .lcs-product-card-footer .lcs-product-price ins,
.product-row .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-card-footer .lcs-product-price > span,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price ins,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.woocommerce ul.products .lcs-product-card-footer .lcs-product-price > span,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price ins,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price .lcs-current-price,
.lcs-shop-products .lcs-product-card-footer .lcs-product-price > .woocommerce-Price-amount,
.lcs-product-price ins,
.lcs-product-price > .woocommerce-Price-amount,
.lcs-product-price > span,
.product-row .lcs-product-price ins,
.product-row .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-price > span,
.woocommerce ul.products .lcs-product-price ins,
.woocommerce ul.products .lcs-product-price > .woocommerce-Price-amount,
.woocommerce ul.products .lcs-product-price > span,
.lcs-shop-products .lcs-product-price ins,
.lcs-shop-products .lcs-product-price .lcs-current-price,
.lcs-shop-products .lcs-product-price > .woocommerce-Price-amount {
	color: #06b6bb !important;
}

.lcs-card-add.lcs-card-add-icon-button,
.product-row .lcs-card-add.lcs-card-add-icon-button,
.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button,
.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button,
.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
	border-color: #06b6bb !important;
	color: #06b6bb !important;
}

.lcs-card-add-icon,
.lcs-card-add-icon svg {
	color: #06b6bb !important;
	stroke: #06b6bb !important;
}

/* v1.1.30: mobile banner must show the full artwork, not a cropped cover. */
@media (max-width: 768px) {
	.lcs-market-main > .hero-banner,
	body.home .lcs-market-main > .hero-banner,
	body.front-page .lcs-market-main > .hero-banner {
		background: #06b6bb !important;
		border: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		display: block !important;
		height: auto !important;
		margin: 0 !important;
		max-width: none !important;
		min-height: 0 !important;
		overflow: hidden !important;
		padding: 0 !important;
		position: relative !important;
		width: 100% !important;
	}

	.lcs-market-main > .hero-banner::before,
	.lcs-market-main > .hero-banner::after {
		display: none !important;
	}

	.lcs-market-main > .hero-banner .hero-banner-image {
		display: block !important;
		height: auto !important;
		max-width: none !important;
		object-fit: contain !important;
		object-position: center center !important;
		width: 100% !important;
	}

	.lcs-market-main .main-wrap {
		padding-top: 0 !important;
	}

	.lcs-market-main .main-wrap > .wide-strip:first-child {
		margin-top: 0 !important;
	}
}

/* v1.1.28 EOF override: exact plain-gray view-all card without photo background. */
.lcs-collection-view-card,
.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-collection-view-card {
	background: #929596 !important;
	border: 0 !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	flex: 0 0 176px;
	min-height: 306px;
	min-width: 176px;
	overflow: hidden;
	position: relative;
	scroll-snap-align: start;
}

.lcs-collection-view-link {
	align-items: center !important;
	background: #929596 !important;
	color: #fff !important;
	display: flex !important;
	height: 100% !important;
	justify-content: center !important;
	min-height: inherit !important;
	overflow: hidden;
	position: relative !important;
	text-align: center !important;
	text-decoration: none !important;
	width: 100%;
}

.lcs-collection-view-link::before {
	display: none !important;
}

.lcs-collection-view-media {
	aspect-ratio: auto !important;
	background: #929596 !important;
	border: 0 !important;
	display: block !important;
	inset: 0;
	padding: 0 !important;
	position: absolute !important;
}

.lcs-collection-view-media img {
	display: none !important;
}

.lcs-collection-view-title {
	display: none !important;
}

.lcs-collection-view-button {
	align-items: center !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: #fff !important;
	display: flex !important;
	flex-direction: column !important;
	font-size: 22px !important;
	font-weight: 800 !important;
	gap: 20px !important;
	height: auto !important;
	justify-content: center !important;
	letter-spacing: 0 !important;
	line-height: 1.12 !important;
	margin: 0 !important;
	padding: 0 12px !important;
	position: relative !important;
	text-shadow: none !important;
	transform: translateY(-8px);
	z-index: 2;
}

.lcs-collection-view-button::after {
	align-items: center;
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	content: "›";
	display: inline-flex;
	font-size: 34px;
	font-weight: 300;
	height: 48px;
	justify-content: center;
	line-height: 1;
	padding-bottom: 4px;
	text-shadow: none;
	width: 48px;
}

@media (max-width: 768px) {
	.lcs-collection-view-card,
	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-collection-view-card {
		flex-basis: 138px;
		min-height: 238px;
		min-width: 138px;
	}

	.lcs-collection-view-button {
		font-size: 18px !important;
		gap: 15px !important;
		transform: translateY(-5px);
	}

	.lcs-collection-view-button::after {
		font-size: 29px;
		height: 42px;
		width: 42px;
	}
}

/* v1.1.31 final override: mobile search loupe block and filled category selection states. */
.search-loupe,
.search-loupe circle,
.search-loupe path {
	fill: none !important;
	stroke: currentColor !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	stroke-width: 2.2 !important;
}

.lcs-cascade-item:hover .lcs-cascade-main-link,
.lcs-cascade-item:focus-within .lcs-cascade-main-link,
.lcs-cascade-item.is-active .lcs-cascade-main-link {
	background: #06b6bb !important;
	border-color: #06b6bb !important;
	box-shadow: none !important;
	color: #fff !important;
}

.lcs-cascade-item:hover .lcs-store-category-icon,
.lcs-cascade-item:focus-within .lcs-store-category-icon,
.lcs-cascade-item.is-active .lcs-store-category-icon {
	background: rgba(255, 255, 255, .18) !important;
	color: #fff !important;
}

.lcs-cascade-item:hover .lcs-cascade-chevron,
.lcs-cascade-item:focus-within .lcs-cascade-chevron,
.lcs-cascade-item.is-active .lcs-cascade-chevron {
	color: #fff !important;
}

.lcs-archive-subcategories {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	gap: 9px !important;
	padding: 0 !important;
}

.lcs-archive-subcategory-link {
	background: #f2f7f8 !important;
	border: 1px solid transparent !important;
	border-radius: 10px !important;
	box-shadow: none !important;
	color: #253044 !important;
	min-height: 42px !important;
	padding: 8px 12px !important;
}

.lcs-archive-subcategory-link:hover,
.lcs-archive-subcategory-link:focus,
.lcs-archive-subcategory-link.is-active {
	background: #06b6bb !important;
	border-color: #06b6bb !important;
	color: #fff !important;
	transform: none !important;
}

.lcs-archive-subcategory-link:hover .lcs-category-thumb,
.lcs-archive-subcategory-link:focus .lcs-category-thumb,
.lcs-archive-subcategory-link.is-active .lcs-category-thumb,
.lcs-archive-subcategory-link:hover .lcs-store-category-icon,
.lcs-archive-subcategory-link:focus .lcs-store-category-icon,
.lcs-archive-subcategory-link.is-active .lcs-store-category-icon {
	background: rgba(255, 255, 255, .18) !important;
	color: #fff !important;
}

@media (max-width: 768px) {
	.lcs-market-header .nav-inner {
		height: 48px !important;
		min-height: 48px !important;
	}

	.lcs-market-header .lcs-market-search {
		background: #fff !important;
		border: 1px solid #dbe6ea !important;
		border-radius: 10px !important;
		box-shadow: none !important;
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 58px !important;
		height: 48px !important;
		overflow: hidden !important;
		width: 100% !important;
	}

	.lcs-market-header .lcs-market-search:focus-within {
		border-color: rgba(6, 182, 187, .62) !important;
		box-shadow: 0 0 0 2px rgba(6, 182, 187, .11) !important;
	}

	.lcs-market-header .lcs-market-search input[type="search"] {
		background: #fff !important;
		color: #172033 !important;
		font-size: 16px !important;
		height: 46px !important;
		line-height: 46px !important;
		padding: 0 15px !important;
	}

	.lcs-market-header .lcs-market-search button {
		align-items: center !important;
		background: #06b6bb !important;
		border: 0 !important;
		border-radius: 0 8px 8px 0 !important;
		color: #fff !important;
		display: inline-flex !important;
		height: 48px !important;
		justify-content: center !important;
		padding: 0 !important;
		width: 58px !important;
	}

	.lcs-market-header .lcs-market-search button:hover,
	.lcs-market-header .lcs-market-search button:focus {
		background: #06b6bb !important;
		color: #fff !important;
		transform: none !important;
	}

	.lcs-market-header .lcs-market-search .search-loupe {
		color: #fff !important;
		height: 24px !important;
		width: 24px !important;
	}

	.lcs-market-header .lcs-market-search button span {
		display: none !important;
	}

	.lcs-mobile-menu-button {
		background: #06b6bb !important;
		border: 0 !important;
		border-radius: 10px !important;
		color: #fff !important;
		height: 42px !important;
		width: 42px !important;
	}

	.lcs-mobile-menu-button .lcs-icon-lines,
	.lcs-mobile-menu-button .lcs-icon-lines::before,
	.lcs-mobile-menu-button .lcs-icon-lines::after {
		background: #fff !important;
		left: 12px !important;
		width: 18px !important;
	}

	.lcs-mobile-menu-button .lcs-icon-lines::before,
	.lcs-mobile-menu-button .lcs-icon-lines::after {
		left: 0 !important;
	}
}

/* v1.1.34: slimmer, softer view-all card for homepage collections. */
.lcs-collection-view-card,
.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-collection-view-card {
	align-self: flex-start;
	background: rgba(255, 255, 255, .18) !important;
	border: 1px solid rgba(255, 255, 255, .34) !important;
	border-radius: 8px !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18) !important;
	flex: 0 0 150px !important;
	height: 276px;
	min-height: 0 !important;
	min-width: 150px !important;
}

.lcs-collection-view-link {
	background: rgba(255, 255, 255, .18) !important;
	min-height: 0 !important;
}

.lcs-collection-view-media {
	background: rgba(255, 255, 255, .10) !important;
}

.lcs-collection-view-button {
	font-size: 18px !important;
	font-weight: 800 !important;
	gap: 14px !important;
	max-width: 122px;
	padding: 0 10px !important;
	transform: none !important;
}

.lcs-collection-view-button::after {
	background: rgba(255, 255, 255, .16);
	border: 1.5px solid rgba(255, 255, 255, .82);
	box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
	font-size: 26px;
	height: 38px;
	padding-bottom: 3px;
	transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
	width: 38px;
}

.lcs-collection-view-link:hover .lcs-collection-view-button::after,
.lcs-collection-view-link:focus .lcs-collection-view-button::after {
	background: rgba(255, 255, 255, .26);
	box-shadow: 0 10px 22px rgba(15, 23, 42, .16);
	transform: translateX(2px);
}

.lcs-market-main .wide-strip.lcs-home-products.lcs-home-collection .strip-head a {
	background: rgba(255, 255, 255, .18);
	border-color: rgba(255, 255, 255, .38);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .20);
	font-size: 13.5px;
	min-height: 34px;
	padding: 7px 14px;
}

@media (max-width: 768px) {
	.lcs-collection-view-card,
	.lcs-market-main .lcs-home-collection .lcs-home-carousel .product-row .lcs-collection-view-card {
		flex-basis: 122px !important;
		height: 212px;
		min-width: 122px !important;
	}

	.lcs-collection-view-button {
		font-size: 15.5px !important;
		gap: 12px !important;
		max-width: 104px;
	}

	.lcs-collection-view-button::after {
		font-size: 23px;
		height: 34px;
		width: 34px;
	}
}

/* v1.1.36: reserve media space early to reduce LCP and layout shift. */
.hero-banner,
.lcs-market-main > .hero-banner,
.hero-banner-image,
.lcs-market-main > .hero-banner .hero-banner-image {
	aspect-ratio: 2152 / 731;
}

.lcs-product-image,
.product-row .lcs-product-image,
.lcs-product-grid .lcs-product-image,
.woocommerce ul.products .lcs-product-image,
.lcs-shop-products .lcs-product-image,
.lcs-linked-products .lcs-product-image,
.lcs-product-img,
.product-row .lcs-product-img,
.woocommerce ul.products .lcs-product-img {
	aspect-ratio: 1 / 1;
}

@media (max-width: 768px) {
	.hero-banner,
	.lcs-market-main > .hero-banner,
	.hero-banner-image,
	.lcs-market-main > .hero-banner .hero-banner-image {
		aspect-ratio: 768 / 261;
	}
}

/* v1.1.40: button-only 30-product batches and cleaner archive/product recommendation grids. */
.lcs-catalog-load-more-wrap,
.lcs-related-products-actions {
	align-items: center;
	display: flex;
	justify-content: center;
	margin: 28px 0 8px;
	min-height: 44px;
}

.lcs-archive-load-more-button,
.lcs-related-products-more {
	min-width: 190px;
}

.lcs-load-more-inline-status {
	color: #64748b;
	font-size: 14px;
	font-weight: 700;
}

.lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
.lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
.lcs-shop-archive ul.products.lcs-shop-products {
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-loop-item {
	align-self: start !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-card {
	height: auto !important;
	min-height: 0 !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-image {
	margin-bottom: 0 !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-body {
	flex: 0 0 auto !important;
	gap: 5px !important;
	min-height: 0 !important;
	padding: 8px 0 0 !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-title {
	margin: 0 !important;
	min-height: 38px !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-rating {
	min-height: 18px !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-card-footer {
	align-items: center !important;
	margin-top: 2px !important;
	min-height: 38px !important;
}

.single-product .lcs-linked-products--recommendations {
	margin-top: 30px;
}

.single-product .lcs-linked-products--recommendations .lcs-linked-products__head {
	align-items: flex-start;
	margin-bottom: 18px;
}

.single-product .lcs-linked-products--recommendations .lcs-linked-products__head h2 {
	font-size: 30px;
	line-height: 1.12;
	margin: 0;
}

.single-product .lcs-linked-products--recommendations .lcs-linked-products__grid {
	display: grid !important;
	gap: 18px !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	overflow: visible !important;
	scroll-snap-type: none !important;
}

.single-product .lcs-linked-products--recommendations .lcs-linked-products__grid .lcs-product-loop-item {
	min-width: 0 !important;
	width: auto !important;
}

@media (max-width: 1200px) {
	.lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	.lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	.lcs-shop-archive ul.products.lcs-shop-products,
	.single-product .lcs-linked-products--recommendations .lcs-linked-products__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 900px) {
	.lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	.lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	.lcs-shop-archive ul.products.lcs-shop-products,
	.single-product .lcs-linked-products--recommendations .lcs-linked-products__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 768px) {
	.lcs-catalog-load-more-wrap,
	.lcs-related-products-actions {
		margin: 22px 0 6px;
	}

	.lcs-archive-load-more-button,
	.lcs-related-products-more {
		min-width: 168px;
	}

	.single-product .lcs-linked-products--recommendations {
		margin-top: 24px;
	}

	.single-product .lcs-linked-products--recommendations .lcs-linked-products__head h2 {
		font-size: 22px;
	}

	.single-product .lcs-linked-products--recommendations .lcs-linked-products__grid {
		gap: 14px !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	.lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	.lcs-shop-archive ul.products.lcs-shop-products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.lcs-shop-archive .lcs-shop-products .lcs-product-body {
		padding-top: 7px !important;
	}

	.lcs-shop-archive .lcs-shop-products .lcs-product-title {
		min-height: 34px !important;
	}
}

/* v1.1.41: stable Temu-like product cards, no product hover, and lightweight load states. */
.lcs-all-products-status,
.lcs-home-collection-loader {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #64748b !important;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	margin: 12px 0 0 !important;
	min-height: 0 !important;
	padding: 6px 0 !important;
}

.lcs-all-products-status.is-sentinel,
.lcs-all-products-status[hidden],
.lcs-home-collection-loader[hidden] {
	display: none !important;
}

.lcs-all-products-loader {
	height: 16px !important;
	width: 16px !important;
}

.lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
.lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
.lcs-shop-archive ul.products.lcs-shop-products,
.lcs-all-products-section .lcs-all-products-grid,
.lcs-market-main .lcs-all-products-section .product-row,
.single-product .lcs-linked-products--recommendations .lcs-linked-products__grid {
	display: grid !important;
	gap: 24px 20px !important;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-loop-item,
.lcs-all-products-section .lcs-product-loop-item,
.single-product .lcs-linked-products--recommendations .lcs-product-loop-item {
	align-self: start !important;
	min-width: 0 !important;
	width: auto !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-card,
.lcs-all-products-section .lcs-product-card,
.single-product .lcs-linked-products--recommendations .lcs-product-card {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: flex !important;
	height: auto !important;
	min-height: 0 !important;
	min-width: 0 !important;
	overflow: visible !important;
	padding: 0 !important;
	width: 100% !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-image,
.lcs-all-products-section .lcs-product-image,
.single-product .lcs-linked-products--recommendations .lcs-product-image {
	aspect-ratio: 1 / 1 !important;
	background: #fff !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: block !important;
	margin: 0 !important;
	overflow: hidden !important;
	padding: 0 !important;
	width: 100% !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-image-stack,
.lcs-all-products-section .lcs-product-image-stack,
.single-product .lcs-linked-products--recommendations .lcs-product-image-stack {
	aspect-ratio: 1 / 1 !important;
	background: #fff !important;
	display: block !important;
	height: 100% !important;
	overflow: hidden !important;
	width: 100% !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-image img,
.lcs-shop-archive .lcs-shop-products .lcs-product-image .lcs-product-img,
.lcs-all-products-section .lcs-product-image img,
.lcs-all-products-section .lcs-product-image .lcs-product-img,
.single-product .lcs-linked-products--recommendations .lcs-product-image img,
.single-product .lcs-linked-products--recommendations .lcs-product-image .lcs-product-img {
	aspect-ratio: 1 / 1 !important;
	display: block !important;
	filter: none !important;
	height: 100% !important;
	object-fit: cover !important;
	opacity: 1 !important;
	padding: 0 !important;
	position: static !important;
	transform: none !important;
	transition: none !important;
	width: 100% !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-body,
.lcs-all-products-section .lcs-product-body,
.single-product .lcs-linked-products--recommendations .lcs-product-body {
	background: transparent !important;
	gap: 5px !important;
	min-height: 0 !important;
	padding: 8px 1px 0 !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-title,
.lcs-all-products-section .lcs-product-title,
.single-product .lcs-linked-products--recommendations .lcs-product-title {
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	margin: 0 0 4px !important;
	min-height: 34px !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-card-footer,
.lcs-all-products-section .lcs-product-card-footer,
.single-product .lcs-linked-products--recommendations .lcs-product-card-footer {
	align-items: center !important;
	display: grid !important;
	gap: 8px !important;
	grid-template-columns: minmax(0, 1fr) 42px !important;
	margin: 2px 0 0 !important;
	min-height: 36px !important;
	width: 100% !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-card-footer .lcs-product-price,
.lcs-all-products-section .lcs-product-card-footer .lcs-product-price,
.single-product .lcs-linked-products--recommendations .lcs-product-card-footer .lcs-product-price {
	display: flex !important;
	flex: 1 1 auto !important;
	flex-wrap: wrap !important;
	gap: 3px 6px !important;
	margin: 0 !important;
	min-width: 0 !important;
	overflow: hidden !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-product-actions,
.lcs-all-products-section .lcs-product-actions,
.single-product .lcs-linked-products--recommendations .lcs-product-actions {
	display: flex !important;
	justify-content: flex-end !important;
	margin: 0 !important;
	min-width: 0 !important;
	padding: 0 !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button,
.lcs-all-products-section .lcs-card-add.lcs-card-add-icon-button,
.single-product .lcs-linked-products--recommendations .lcs-card-add.lcs-card-add-icon-button {
	background: #fff !important;
	border: 1.25px solid #06b6bb !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	color: #06b6bb !important;
	height: 32px !important;
	justify-self: end !important;
	min-height: 32px !important;
	min-width: 40px !important;
	transform: none !important;
	transition: none !important;
	width: 40px !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-card-add-icon,
.lcs-shop-archive .lcs-shop-products .lcs-card-add-icon svg,
.lcs-all-products-section .lcs-card-add-icon,
.lcs-all-products-section .lcs-card-add-icon svg,
.single-product .lcs-linked-products--recommendations .lcs-card-add-icon,
.single-product .lcs-linked-products--recommendations .lcs-card-add-icon svg {
	height: 18px !important;
	width: 18px !important;
}

.lcs-shop-archive .lcs-shop-products .lcs-card-add-icon svg,
.lcs-all-products-section .lcs-card-add-icon svg,
.single-product .lcs-linked-products--recommendations .lcs-card-add-icon svg {
	stroke: #06b6bb !important;
	stroke-width: 1.45 !important;
}

.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card,
.lcs-shop-products .lcs-product-card,
.lcs-linked-products .lcs-product-card,
.lcs-product-card:hover,
.product-row .lcs-product-card:hover,
.lcs-product-grid .lcs-product-card:hover,
.woocommerce ul.products .lcs-product-card:hover,
.lcs-shop-products .lcs-product-card:hover,
.lcs-linked-products .lcs-product-card:hover {
	filter: none !important;
	transform: none !important;
	transition: none !important;
}

.lcs-product-card:hover .lcs-product-image,
.product-row .lcs-product-card:hover .lcs-product-image,
.lcs-product-grid .lcs-product-card:hover .lcs-product-image,
.woocommerce ul.products .lcs-product-card:hover .lcs-product-image,
.lcs-shop-products .lcs-product-card:hover .lcs-product-image,
.lcs-linked-products .lcs-product-card:hover .lcs-product-image,
.lcs-product-card:hover .lcs-product-image-stack,
.lcs-product-card:hover .lcs-product-img,
.lcs-product-card:hover .lcs-product-img-primary,
.lcs-product-card:hover .lcs-product-image img,
.product-row .lcs-product-card:hover .lcs-product-image img,
.lcs-product-grid .lcs-product-card:hover .lcs-product-image img,
.woocommerce ul.products .lcs-product-card:hover .lcs-product-image img,
.lcs-shop-products .lcs-product-card:hover .lcs-product-image img,
.lcs-linked-products .lcs-product-card:hover .lcs-product-image img {
	filter: none !important;
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

.lcs-product-card:hover .lcs-product-image::before,
.lcs-product-card:hover .lcs-product-image::after,
.lcs-product-card:hover .lcs-product-image-stack::before,
.lcs-product-card:hover .lcs-product-image-stack::after {
	display: none !important;
	opacity: 0 !important;
}

@media (max-width: 1200px) {
	.lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	.lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	.lcs-shop-archive ul.products.lcs-shop-products,
	.lcs-all-products-section .lcs-all-products-grid,
	.lcs-market-main .lcs-all-products-section .product-row,
	.single-product .lcs-linked-products--recommendations .lcs-linked-products__grid {
		grid-template-columns: repeat(auto-fill, minmax(205px, 1fr)) !important;
	}
}

@media (max-width: 900px) {
	.lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	.lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	.lcs-shop-archive ul.products.lcs-shop-products,
	.lcs-all-products-section .lcs-all-products-grid,
	.lcs-market-main .lcs-all-products-section .product-row,
	.single-product .lcs-linked-products--recommendations .lcs-linked-products__grid {
		grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)) !important;
	}
}

@media (max-width: 768px) {
	.lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	.lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	.lcs-shop-archive ul.products.lcs-shop-products,
	.lcs-all-products-section .lcs-all-products-grid,
	.lcs-market-main .lcs-all-products-section .product-row,
	.single-product .lcs-linked-products--recommendations .lcs-linked-products__grid {
		gap: 18px 12px !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.lcs-shop-archive .lcs-shop-products .lcs-product-body,
	.lcs-all-products-section .lcs-product-body,
	.single-product .lcs-linked-products--recommendations .lcs-product-body {
		padding: 7px 1px 0 !important;
	}

	.lcs-shop-archive .lcs-shop-products .lcs-product-title,
	.lcs-all-products-section .lcs-product-title,
	.single-product .lcs-linked-products--recommendations .lcs-product-title {
		font-size: 12.2px !important;
		line-height: 1.3 !important;
		min-height: 32px !important;
	}

	.lcs-shop-archive .lcs-shop-products .lcs-product-card-footer,
	.lcs-all-products-section .lcs-product-card-footer,
	.single-product .lcs-linked-products--recommendations .lcs-product-card-footer {
		gap: 6px !important;
		grid-template-columns: minmax(0, 1fr) 38px !important;
		min-height: 34px !important;
	}

	.lcs-shop-archive .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button,
	.lcs-all-products-section .lcs-card-add.lcs-card-add-icon-button,
	.single-product .lcs-linked-products--recommendations .lcs-card-add.lcs-card-add-icon-button {
		height: 30px !important;
		min-height: 30px !important;
		min-width: 38px !important;
		width: 38px !important;
	}

	.lcs-shop-archive .lcs-shop-products .lcs-card-add-icon,
	.lcs-shop-archive .lcs-shop-products .lcs-card-add-icon svg,
	.lcs-all-products-section .lcs-card-add-icon,
	.lcs-all-products-section .lcs-card-add-icon svg,
	.single-product .lcs-linked-products--recommendations .lcs-card-add-icon,
	.single-product .lcs-linked-products--recommendations .lcs-card-add-icon svg {
		height: 17px !important;
		width: 17px !important;
	}

	.lcs-card-add.lcs-card-add-icon-button:hover,
	.product-row .lcs-card-add.lcs-card-add-icon-button:hover,
	.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button:hover,
	.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button:hover,
	.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button:hover,
	.lcs-card-add.lcs-card-add-icon-button:active,
	.product-row .lcs-card-add.lcs-card-add-icon-button:active,
	.lcs-product-grid .lcs-card-add.lcs-card-add-icon-button:active,
	.woocommerce ul.products .lcs-card-add.lcs-card-add-icon-button:active,
	.lcs-shop-products .lcs-card-add.lcs-card-add-icon-button:active {
		background: #fff !important;
		border-color: #06b6bb !important;
		color: #06b6bb !important;
		transform: none !important;
	}
}

@media (max-width: 380px) {
	.lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	.lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	.lcs-shop-archive ul.products.lcs-shop-products,
	.lcs-all-products-section .lcs-all-products-grid,
	.lcs-market-main .lcs-all-products-section .product-row,
	.single-product .lcs-linked-products--recommendations .lcs-linked-products__grid {
		gap: 16px 10px !important;
	}

	.lcs-shop-archive .lcs-shop-products .lcs-product-title,
	.lcs-all-products-section .lcs-product-title,
	.single-product .lcs-linked-products--recommendations .lcs-product-title {
		font-size: 11.8px !important;
	}
}

/* v1.1.42: keep v1.1.41 work, but make category cards match the home feed. */
body.tax-product_cat .lcs-shop-archive-container,
body.post-type-archive-product .lcs-shop-archive-container,
body.woocommerce-shop .lcs-shop-archive-container {
	max-width: 1680px !important;
	width: min(calc(100% - 32px), 1680px) !important;
}

body.tax-product_cat .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
body.tax-product_cat .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
body.tax-product_cat .lcs-shop-archive ul.products.lcs-shop-products,
body.post-type-archive-product .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
body.post-type-archive-product .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
body.post-type-archive-product .lcs-shop-archive ul.products.lcs-shop-products,
body.woocommerce-shop .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
body.woocommerce-shop .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
body.woocommerce-shop .lcs-shop-archive ul.products.lcs-shop-products {
	align-items: start !important;
	display: grid !important;
	gap: 24px 20px !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	justify-content: stretch !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.tax-product_cat .lcs-shop-products li.product,
body.tax-product_cat .lcs-shop-products .lcs-product-loop-item,
body.post-type-archive-product .lcs-shop-products li.product,
body.post-type-archive-product .lcs-shop-products .lcs-product-loop-item,
body.woocommerce-shop .lcs-shop-products li.product,
body.woocommerce-shop .lcs-shop-products .lcs-product-loop-item {
	align-self: start !important;
	float: none !important;
	margin: 0 !important;
	max-width: none !important;
	min-width: 0 !important;
	padding: 0 !important;
	width: auto !important;
}

body.tax-product_cat .lcs-shop-products .lcs-product-card,
body.post-type-archive-product .lcs-shop-products .lcs-product-card,
body.woocommerce-shop .lcs-shop-products .lcs-product-card {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: flex !important;
	flex-direction: column !important;
	height: auto !important;
	min-height: 0 !important;
	min-width: 0 !important;
	outline: 0 !important;
	overflow: visible !important;
	padding: 0 !important;
	transform: none !important;
	transition: none !important;
	width: 100% !important;
}

body.tax-product_cat .lcs-shop-products .lcs-product-image,
body.post-type-archive-product .lcs-shop-products .lcs-product-image,
body.woocommerce-shop .lcs-shop-products .lcs-product-image {
	aspect-ratio: 1 / 1 !important;
	background: #fff !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: block !important;
	margin: 0 !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: relative !important;
	transform: none !important;
	transition: none !important;
	width: 100% !important;
}

body.tax-product_cat .lcs-shop-products .lcs-product-image-stack,
body.post-type-archive-product .lcs-shop-products .lcs-product-image-stack,
body.woocommerce-shop .lcs-shop-products .lcs-product-image-stack {
	aspect-ratio: 1 / 1 !important;
	background: #fff !important;
	display: block !important;
	height: auto !important;
	overflow: hidden !important;
	width: 100% !important;
}

body.tax-product_cat .lcs-shop-products .lcs-product-image img,
body.tax-product_cat .lcs-shop-products .lcs-product-image .lcs-product-img,
body.post-type-archive-product .lcs-shop-products .lcs-product-image img,
body.post-type-archive-product .lcs-shop-products .lcs-product-image .lcs-product-img,
body.woocommerce-shop .lcs-shop-products .lcs-product-image img,
body.woocommerce-shop .lcs-shop-products .lcs-product-image .lcs-product-img {
	aspect-ratio: 1 / 1 !important;
	display: block !important;
	filter: none !important;
	height: 100% !important;
	object-fit: cover !important;
	opacity: 1 !important;
	padding: 0 !important;
	position: static !important;
	transform: none !important;
	transition: none !important;
	width: 100% !important;
}

body.tax-product_cat .lcs-shop-products .lcs-product-body,
body.post-type-archive-product .lcs-shop-products .lcs-product-body,
body.woocommerce-shop .lcs-shop-products .lcs-product-body {
	background: transparent !important;
	display: flex !important;
	flex: 1 1 auto !important;
	flex-direction: column !important;
	gap: 5px !important;
	min-height: 0 !important;
	padding: 8px 0 0 !important;
}

body.tax-product_cat .lcs-shop-products .lcs-product-title,
body.post-type-archive-product .lcs-shop-products .lcs-product-title,
body.woocommerce-shop .lcs-shop-products .lcs-product-title {
	color: #1f2937 !important;
	font-size: 12.5px !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
	line-height: 1.32 !important;
	margin: 0 0 5px !important;
	min-height: 33px !important;
	overflow-wrap: anywhere !important;
	word-break: normal !important;
}

body.tax-product_cat .lcs-shop-products .lcs-product-title a,
body.post-type-archive-product .lcs-shop-products .lcs-product-title a,
body.woocommerce-shop .lcs-shop-products .lcs-product-title a {
	color: inherit !important;
	font: inherit !important;
	letter-spacing: 0 !important;
}

body.tax-product_cat .lcs-shop-products .lcs-product-card-footer,
body.post-type-archive-product .lcs-shop-products .lcs-product-card-footer,
body.woocommerce-shop .lcs-shop-products .lcs-product-card-footer {
	align-items: center !important;
	display: flex !important;
	gap: 8px !important;
	justify-content: space-between !important;
	margin: 0 !important;
	min-height: 34px !important;
	width: 100% !important;
}

body.tax-product_cat .lcs-shop-products .lcs-product-card-footer .lcs-product-price,
body.post-type-archive-product .lcs-shop-products .lcs-product-card-footer .lcs-product-price,
body.woocommerce-shop .lcs-shop-products .lcs-product-card-footer .lcs-product-price {
	align-content: center !important;
	display: flex !important;
	flex: 1 1 auto !important;
	flex-wrap: wrap !important;
	gap: 3px 6px !important;
	margin: 0 !important;
	min-width: 0 !important;
	overflow: visible !important;
}

body.tax-product_cat .lcs-shop-products .lcs-product-actions,
body.post-type-archive-product .lcs-shop-products .lcs-product-actions,
body.woocommerce-shop .lcs-shop-products .lcs-product-actions {
	display: flex !important;
	flex: 0 0 auto !important;
	justify-content: flex-end !important;
	margin: 0 !important;
	min-width: 0 !important;
	padding: 0 !important;
}

body.tax-product_cat .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button,
body.post-type-archive-product .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button,
body.woocommerce-shop .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
	background: #fff !important;
	border: 1.25px solid #06b6bb !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	color: #06b6bb !important;
	height: 34px !important;
	min-height: 34px !important;
	min-width: 44px !important;
	padding: 0 !important;
	transform: none !important;
	transition: none !important;
	width: 44px !important;
}

body.tax-product_cat .lcs-shop-products .lcs-card-add-icon,
body.tax-product_cat .lcs-shop-products .lcs-card-add-icon svg,
body.post-type-archive-product .lcs-shop-products .lcs-card-add-icon,
body.post-type-archive-product .lcs-shop-products .lcs-card-add-icon svg,
body.woocommerce-shop .lcs-shop-products .lcs-card-add-icon,
body.woocommerce-shop .lcs-shop-products .lcs-card-add-icon svg {
	height: 19px !important;
	width: 19px !important;
}

body.tax-product_cat .lcs-shop-products .lcs-card-add-icon svg,
body.post-type-archive-product .lcs-shop-products .lcs-card-add-icon svg,
body.woocommerce-shop .lcs-shop-products .lcs-card-add-icon svg {
	stroke: #06b6bb !important;
	stroke-width: 1.45 !important;
}

body.tax-product_cat .lcs-shop-products .lcs-product-card:hover,
body.post-type-archive-product .lcs-shop-products .lcs-product-card:hover,
body.woocommerce-shop .lcs-shop-products .lcs-product-card:hover,
body.tax-product_cat .lcs-shop-products .lcs-product-card:hover .lcs-product-image,
body.post-type-archive-product .lcs-shop-products .lcs-product-card:hover .lcs-product-image,
body.woocommerce-shop .lcs-shop-products .lcs-product-card:hover .lcs-product-image,
body.tax-product_cat .lcs-shop-products .lcs-product-card:hover .lcs-product-image img,
body.post-type-archive-product .lcs-shop-products .lcs-product-card:hover .lcs-product-image img,
body.woocommerce-shop .lcs-shop-products .lcs-product-card:hover .lcs-product-image img {
	filter: none !important;
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

body.tax-product_cat .lcs-shop-products .lcs-product-card:hover .lcs-product-image::before,
body.tax-product_cat .lcs-shop-products .lcs-product-card:hover .lcs-product-image::after,
body.post-type-archive-product .lcs-shop-products .lcs-product-card:hover .lcs-product-image::before,
body.post-type-archive-product .lcs-shop-products .lcs-product-card:hover .lcs-product-image::after,
body.woocommerce-shop .lcs-shop-products .lcs-product-card:hover .lcs-product-image::before,
body.woocommerce-shop .lcs-shop-products .lcs-product-card:hover .lcs-product-image::after {
	display: none !important;
	opacity: 0 !important;
}

@media (max-width: 1200px) {
	body.tax-product_cat .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	body.tax-product_cat .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	body.tax-product_cat .lcs-shop-archive ul.products.lcs-shop-products,
	body.post-type-archive-product .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	body.post-type-archive-product .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	body.post-type-archive-product .lcs-shop-archive ul.products.lcs-shop-products,
	body.woocommerce-shop .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	body.woocommerce-shop .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	body.woocommerce-shop .lcs-shop-archive ul.products.lcs-shop-products {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 900px) {
	body.tax-product_cat .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	body.tax-product_cat .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	body.tax-product_cat .lcs-shop-archive ul.products.lcs-shop-products,
	body.post-type-archive-product .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	body.post-type-archive-product .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	body.post-type-archive-product .lcs-shop-archive ul.products.lcs-shop-products,
	body.woocommerce-shop .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	body.woocommerce-shop .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	body.woocommerce-shop .lcs-shop-archive ul.products.lcs-shop-products {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 640px) {
	body.tax-product_cat .lcs-shop-archive-container,
	body.post-type-archive-product .lcs-shop-archive-container,
	body.woocommerce-shop .lcs-shop-archive-container {
		width: min(calc(100% - 24px), 1680px) !important;
	}

	body.tax-product_cat .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	body.tax-product_cat .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	body.tax-product_cat .lcs-shop-archive ul.products.lcs-shop-products,
	body.post-type-archive-product .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	body.post-type-archive-product .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	body.post-type-archive-product .lcs-shop-archive ul.products.lcs-shop-products,
	body.woocommerce-shop .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	body.woocommerce-shop .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	body.woocommerce-shop .lcs-shop-archive ul.products.lcs-shop-products {
		gap: 18px 12px !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	body.tax-product_cat .lcs-shop-products .lcs-product-title,
	body.post-type-archive-product .lcs-shop-products .lcs-product-title,
	body.woocommerce-shop .lcs-shop-products .lcs-product-title {
		font-size: 12.1px !important;
		min-height: 31px !important;
	}

	body.tax-product_cat .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button,
	body.post-type-archive-product .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button,
	body.woocommerce-shop .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
		height: 31px !important;
		min-height: 31px !important;
		min-width: 40px !important;
		width: 40px !important;
	}

	body.tax-product_cat .lcs-shop-products .lcs-card-add-icon,
	body.tax-product_cat .lcs-shop-products .lcs-card-add-icon svg,
	body.post-type-archive-product .lcs-shop-products .lcs-card-add-icon,
	body.post-type-archive-product .lcs-shop-products .lcs-card-add-icon svg,
	body.woocommerce-shop .lcs-shop-products .lcs-card-add-icon,
	body.woocommerce-shop .lcs-shop-products .lcs-card-add-icon svg {
		height: 18px !important;
		width: 18px !important;
	}
}

/* v1.1.43: final archive card normalization to match the homepage feed. */
html body .lcs-shop-archive .lcs-shop-archive-container {
	max-width: 1680px !important;
	width: min(calc(100% - 32px), 1680px) !important;
}

html body .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
html body .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
html body .lcs-shop-archive ul.products.lcs-shop-products,
html body.woocommerce .lcs-shop-archive ul.products.lcs-shop-products,
html body.woocommerce-page .lcs-shop-archive ul.products.lcs-shop-products {
	align-items: start !important;
	display: grid !important;
	gap: 26px 22px !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	justify-content: stretch !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

html body .lcs-shop-archive ul.products.lcs-shop-products > li.product,
html body .lcs-shop-archive ul.products.lcs-shop-products > .lcs-product-loop-item,
html body.woocommerce .lcs-shop-archive ul.products.lcs-shop-products > li.product,
html body.woocommerce-page .lcs-shop-archive ul.products.lcs-shop-products > li.product {
	align-self: start !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	float: none !important;
	height: auto !important;
	margin: 0 !important;
	max-width: none !important;
	min-height: 0 !important;
	min-width: 0 !important;
	overflow: visible !important;
	padding: 0 !important;
	position: relative !important;
	width: auto !important;
}

html body .lcs-shop-archive ul.products.lcs-shop-products > li.product .lcs-product-card,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-card,
html body.woocommerce .lcs-shop-archive ul.products.lcs-shop-products > li.product .lcs-product-card,
html body.woocommerce-page .lcs-shop-archive ul.products.lcs-shop-products > li.product .lcs-product-card {
	align-items: stretch !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
	height: auto !important;
	justify-content: flex-start !important;
	margin: 0 !important;
	min-height: 0 !important;
	min-width: 0 !important;
	outline: 0 !important;
	overflow: visible !important;
	padding: 0 !important;
	transform: none !important;
	transition: none !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-card::before,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-card::after {
	content: none !important;
	display: none !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-image,
html body.woocommerce .lcs-shop-archive ul.products.lcs-shop-products > li.product .lcs-product-image,
html body.woocommerce-page .lcs-shop-archive ul.products.lcs-shop-products > li.product .lcs-product-image {
	aspect-ratio: 1 / 1 !important;
	background: #fff !important;
	border: 0 !important;
	border-bottom: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: block !important;
	flex: 0 0 auto !important;
	height: auto !important;
	margin: 0 !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: relative !important;
	transform: none !important;
	transition: none !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-image::before,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-image::after {
	content: none !important;
	display: none !important;
	opacity: 0 !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-image-stack {
	aspect-ratio: 1 / 1 !important;
	background: #fff !important;
	display: block !important;
	height: 100% !important;
	margin: 0 !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: relative !important;
	transform: none !important;
	transition: none !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-image img,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-image .lcs-product-img,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-image .lcs-product-img-primary,
html body.woocommerce .lcs-shop-archive ul.products.lcs-shop-products > li.product .lcs-product-image img,
html body.woocommerce-page .lcs-shop-archive ul.products.lcs-shop-products > li.product .lcs-product-image img {
	aspect-ratio: 1 / 1 !important;
	display: block !important;
	filter: none !important;
	height: 100% !important;
	margin: 0 !important;
	max-width: none !important;
	object-fit: cover !important;
	object-position: center center !important;
	opacity: 1 !important;
	padding: 0 !important;
	position: static !important;
	transform: none !important;
	transition: none !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-body {
	background: transparent !important;
	display: flex !important;
	flex: 0 0 auto !important;
	flex-direction: column !important;
	gap: 5px !important;
	height: auto !important;
	margin: 0 !important;
	min-height: 0 !important;
	padding: 8px 0 0 !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-title {
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 2 !important;
	color: #4b5563 !important;
	display: -webkit-box !important;
	font-size: 13.5px !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
	line-height: 1.28 !important;
	margin: 0 !important;
	min-height: 35px !important;
	order: 1 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	word-break: normal !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-title a {
	color: inherit !important;
	display: inline !important;
	font: inherit !important;
	letter-spacing: 0 !important;
	text-decoration: none !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-card-footer {
	align-items: center !important;
	display: flex !important;
	gap: 8px !important;
	justify-content: space-between !important;
	margin: 0 !important;
	min-height: 34px !important;
	order: 2 !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-card-footer .lcs-product-price,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-price {
	align-content: center !important;
	align-items: baseline !important;
	display: flex !important;
	flex: 1 1 auto !important;
	flex-wrap: wrap !important;
	gap: 3px 6px !important;
	line-height: 1.05 !important;
	margin: 0 !important;
	min-height: 20px !important;
	min-width: 0 !important;
	order: initial !important;
	overflow: visible !important;
	padding: 0 !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-price ins,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-price .lcs-current-price,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-price > .woocommerce-Price-amount,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-price > span {
	color: #06b6bb !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	letter-spacing: 0 !important;
	line-height: 1.05 !important;
	text-decoration: none !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-price del,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-price del .woocommerce-Price-amount {
	color: #8b96a5 !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.05 !important;
	opacity: 1 !important;
	text-decoration: line-through !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-actions {
	align-items: center !important;
	display: flex !important;
	flex: 0 0 auto !important;
	justify-content: flex-end !important;
	margin: 0 !important;
	min-width: 44px !important;
	padding: 0 !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button,
html body.woocommerce .lcs-shop-archive ul.products.lcs-shop-products > li.product .lcs-card-add.lcs-card-add-icon-button,
html body.woocommerce-page .lcs-shop-archive ul.products.lcs-shop-products > li.product .lcs-card-add.lcs-card-add-icon-button {
	align-items: center !important;
	background: #fff !important;
	border: 1.25px solid #06b6bb !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	color: #06b6bb !important;
	display: inline-flex !important;
	font-size: 0 !important;
	height: 34px !important;
	justify-content: center !important;
	line-height: 1 !important;
	margin: 0 !important;
	min-height: 34px !important;
	min-width: 44px !important;
	padding: 0 !important;
	text-decoration: none !important;
	transform: none !important;
	transition: none !important;
	width: 44px !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button::before,
html body .lcs-shop-archive .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button::after {
	content: none !important;
	display: none !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-card-add-icon,
html body .lcs-shop-archive .lcs-shop-products .lcs-card-add-icon svg {
	color: #06b6bb !important;
	display: block !important;
	height: 20px !important;
	stroke: #06b6bb !important;
	width: 20px !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-card-add-icon svg {
	fill: none !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	stroke-width: 1.45 !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-rating {
	align-items: center !important;
	display: flex !important;
	gap: 4px !important;
	line-height: 1 !important;
	margin: 0 !important;
	min-height: 17px !important;
	order: 3 !important;
	overflow: hidden !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-rating-stars {
	color: #ff9f1a !important;
	font-size: 12px !important;
	letter-spacing: 0 !important;
	line-height: 1 !important;
	white-space: nowrap !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-rating-count {
	color: #6b7280 !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1.15 !important;
	white-space: nowrap !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-discount-badge {
	display: none !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-card-flash-sale .lcs-discount-badge {
	background: #7c3aed !important;
	border-radius: 6px !important;
	color: #fff !important;
	display: inline-flex !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	left: 8px !important;
	min-height: 24px !important;
	min-width: 46px !important;
	padding: 0 7px !important;
	top: 8px !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-wishlist-icon {
	background: rgba(255, 255, 255, .96) !important;
	border: 1px solid rgba(6, 182, 187, .18) !important;
	border-radius: 50% !important;
	box-shadow: 0 2px 8px rgba(15, 23, 42, .06) !important;
	color: #0f172a !important;
	height: 34px !important;
	right: 8px !important;
	top: 8px !important;
	transform: none !important;
	transition: none !important;
	width: 34px !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-card:hover,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-card:hover *,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-card:focus,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-card:focus-within,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-image:hover,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-image:hover *,
html body .lcs-shop-archive .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button:hover,
html body .lcs-shop-archive .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button:active,
html body .lcs-shop-archive .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button:focus {
	filter: none !important;
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

html body .lcs-shop-archive.is-loading .lcs-shop-results {
	opacity: 1 !important;
	pointer-events: auto !important;
}

html body .lcs-shop-archive.is-loading .lcs-shop-results::after {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	content: none !important;
	display: none !important;
}

html body .lcs-catalog-load-more-wrap .lcs-load-more-inline-status {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #64748b !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	padding: 0 !important;
}

@media (max-width: 1279px) {
	html body .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	html body .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	html body .lcs-shop-archive ul.products.lcs-shop-products {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 980px) {
	html body .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	html body .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	html body .lcs-shop-archive ul.products.lcs-shop-products {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 640px) {
	html body .lcs-shop-archive .lcs-shop-archive-container {
		width: min(calc(100% - 24px), 1680px) !important;
	}

	html body .lcs-shop-archive .woocommerce ul.products.lcs-shop-products,
	html body .lcs-shop-archive .woocommerce-page ul.products.lcs-shop-products,
	html body .lcs-shop-archive ul.products.lcs-shop-products {
		gap: 18px 12px !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-product-body {
		gap: 4px !important;
		padding-top: 7px !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-product-title {
		font-size: 12.8px !important;
		min-height: 33px !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-product-price ins,
	html body .lcs-shop-archive .lcs-shop-products .lcs-product-price .lcs-current-price,
	html body .lcs-shop-archive .lcs-shop-products .lcs-product-price > .woocommerce-Price-amount,
	html body .lcs-shop-archive .lcs-shop-products .lcs-product-price > span {
		font-size: 16.5px !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-product-price del,
	html body .lcs-shop-archive .lcs-shop-products .lcs-product-price del .woocommerce-Price-amount {
		font-size: 11px !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-product-actions {
		min-width: 42px !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
		height: 32px !important;
		min-height: 32px !important;
		min-width: 42px !important;
		width: 42px !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-card-add-icon,
	html body .lcs-shop-archive .lcs-shop-products .lcs-card-add-icon svg {
		height: 19px !important;
		width: 19px !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-wishlist-icon {
		height: 32px !important;
		right: 6px !important;
		top: 6px !important;
		width: 32px !important;
	}
}

@media (hover: none), (pointer: coarse) {
	html body .lcs-shop-archive .lcs-shop-products .lcs-product-card,
	html body .lcs-shop-archive .lcs-shop-products .lcs-product-card *,
	html body .lcs-shop-archive .lcs-shop-products .lcs-card-add,
	html body .lcs-shop-archive .lcs-shop-products .lcs-wishlist-icon {
		filter: none !important;
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* v1.1.44: make archive products use the exact homepage "Bütün məhsullar" rhythm. */
html body .lcs-shop-archive {
	background: #f8fafc !important;
	padding: 0 0 56px !important;
}

html body .lcs-shop-archive .lcs-shop-archive-container {
	margin: 0 auto !important;
	max-width: var(--lcs-market-max) !important;
	padding: 0 16px 56px !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-catalog-layout {
	display: block !important;
}

html body .lcs-shop-archive .lcs-shop-results {
	min-width: 0 !important;
	width: 100% !important;
}

html body .lcs-shop-archive ul.products.lcs-shop-products,
html body .lcs-shop-archive ul.products.lcs-shop-products.product-row,
html body .lcs-shop-archive ul.products.lcs-shop-products.lcs-all-products-grid,
html body.woocommerce .lcs-shop-archive ul.products.lcs-shop-products,
html body.woocommerce-page .lcs-shop-archive ul.products.lcs-shop-products {
	align-items: start !important;
	display: grid !important;
	gap: 18px !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	justify-content: stretch !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

html body .lcs-shop-archive ul.products.lcs-shop-products::before,
html body .lcs-shop-archive ul.products.lcs-shop-products::after {
	content: none !important;
	display: none !important;
}

html body .lcs-shop-archive ul.products.lcs-shop-products > li.product,
html body.woocommerce .lcs-shop-archive ul.products.lcs-shop-products > li.product,
html body.woocommerce-page .lcs-shop-archive ul.products.lcs-shop-products > li.product {
	align-self: start !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: block !important;
	float: none !important;
	height: auto !important;
	margin: 0 !important;
	max-width: none !important;
	min-height: 0 !important;
	min-width: 0 !important;
	overflow: visible !important;
	padding: 0 !important;
	width: auto !important;
}

html body .lcs-shop-archive ul.products.lcs-shop-products > li.product > .lcs-product-card,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-card {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: flex !important;
	flex-direction: column !important;
	height: auto !important;
	margin: 0 !important;
	min-height: 0 !important;
	overflow: visible !important;
	padding: 0 !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-image {
	aspect-ratio: 1 / 1 !important;
	background: #fff !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: block !important;
	margin: 0 !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: relative !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-image-stack {
	aspect-ratio: 1 / 1 !important;
	background: #fff !important;
	display: block !important;
	height: 100% !important;
	overflow: hidden !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-image img,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-image .lcs-product-img,
html body.woocommerce .lcs-shop-archive ul.products.lcs-shop-products li.product a.lcs-product-image img {
	aspect-ratio: 1 / 1 !important;
	display: block !important;
	filter: none !important;
	height: 100% !important;
	margin: 0 !important;
	max-width: none !important;
	object-fit: cover !important;
	object-position: center !important;
	opacity: 1 !important;
	padding: 0 !important;
	transform: none !important;
	transition: none !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-body {
	background: transparent !important;
	display: flex !important;
	flex: 0 0 auto !important;
	flex-direction: column !important;
	gap: 5px !important;
	margin: 0 !important;
	min-height: 0 !important;
	padding: 8px 0 0 !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-title {
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 2 !important;
	color: #1f2937 !important;
	display: -webkit-box !important;
	font-size: 13.5px !important;
	font-weight: 650 !important;
	letter-spacing: 0 !important;
	line-height: 1.28 !important;
	margin: 0 !important;
	min-height: 35px !important;
	order: 1 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-title a {
	color: inherit !important;
	font: inherit !important;
	letter-spacing: 0 !important;
	text-decoration: none !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-card-footer {
	align-items: center !important;
	display: flex !important;
	gap: 8px !important;
	justify-content: space-between !important;
	margin: 0 !important;
	min-height: 34px !important;
	order: 2 !important;
	width: 100% !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-card-footer .lcs-product-price {
	align-items: baseline !important;
	display: flex !important;
	flex: 1 1 auto !important;
	flex-wrap: wrap !important;
	gap: 3px 6px !important;
	line-height: 1.05 !important;
	margin: 0 !important;
	min-width: 0 !important;
	padding: 0 !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-price ins,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-price .lcs-current-price,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-price > .woocommerce-Price-amount,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-price > span {
	color: #06b6bb !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	line-height: 1.05 !important;
	text-decoration: none !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-price del,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-price del .woocommerce-Price-amount {
	color: #8b96a5 !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.05 !important;
	opacity: 1 !important;
	text-decoration: line-through !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-actions {
	align-items: center !important;
	display: flex !important;
	flex: 0 0 auto !important;
	justify-content: flex-end !important;
	margin: 0 !important;
	min-width: 44px !important;
	padding: 0 !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
	align-items: center !important;
	background: #fff !important;
	border: 1.25px solid #06b6bb !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	color: #06b6bb !important;
	display: inline-flex !important;
	font-size: 0 !important;
	height: 34px !important;
	justify-content: center !important;
	line-height: 1 !important;
	margin: 0 !important;
	min-height: 34px !important;
	min-width: 44px !important;
	padding: 0 !important;
	transform: none !important;
	transition: none !important;
	width: 44px !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-card-add-icon,
html body .lcs-shop-archive .lcs-shop-products .lcs-card-add-icon svg {
	color: #06b6bb !important;
	display: block !important;
	height: 20px !important;
	stroke: #06b6bb !important;
	width: 20px !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-card-add-icon svg {
	fill: none !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	stroke-width: 1.45 !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-rating {
	align-items: center !important;
	display: flex !important;
	gap: 4px !important;
	margin: 0 !important;
	min-height: 17px !important;
	order: 3 !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-rating-stars {
	color: #ff9f1a !important;
	font-size: 12px !important;
	letter-spacing: 0 !important;
	line-height: 1 !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-rating-count {
	color: #6b7280 !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1.15 !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-discount-badge {
	display: none !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-card-flash-sale .lcs-discount-badge {
	display: inline-flex !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-card,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-card *,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-card:hover,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-card:hover *,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-image:hover,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-image:hover *,
html body .lcs-shop-archive .lcs-shop-products .lcs-card-add:hover,
html body .lcs-shop-archive .lcs-shop-products .lcs-card-add:focus,
html body .lcs-shop-archive .lcs-shop-products .lcs-card-add:active {
	filter: none !important;
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

html body .lcs-shop-archive .lcs-shop-products .lcs-product-image::before,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-image::after,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-image-stack::before,
html body .lcs-shop-archive .lcs-shop-products .lcs-product-image-stack::after {
	content: none !important;
	display: none !important;
}

@media (max-width: 1200px) {
	html body .lcs-shop-archive ul.products.lcs-shop-products {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 900px) {
	html body .lcs-shop-archive ul.products.lcs-shop-products {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 768px) {
	html body .lcs-shop-archive .lcs-shop-archive-container {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}

	html body .lcs-shop-archive ul.products.lcs-shop-products {
		gap: 12px !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-product-body {
		gap: 4px !important;
		padding-top: 7px !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-product-title {
		font-size: 12.8px !important;
		min-height: 33px !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-product-price ins,
	html body .lcs-shop-archive .lcs-shop-products .lcs-product-price .lcs-current-price,
	html body .lcs-shop-archive .lcs-shop-products .lcs-product-price > .woocommerce-Price-amount,
	html body .lcs-shop-archive .lcs-shop-products .lcs-product-price > span {
		font-size: 16.5px !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-card-add.lcs-card-add-icon-button {
		height: 32px !important;
		min-height: 32px !important;
		min-width: 42px !important;
		width: 42px !important;
	}

	html body .lcs-shop-archive .lcs-shop-products .lcs-card-add-icon,
	html body .lcs-shop-archive .lcs-shop-products .lcs-card-add-icon svg {
		height: 19px !important;
		width: 19px !important;
	}
}

/* v1.1.47: move category copy below products and make mobile sorting label explicit. */
html body .lcs-shop-archive .lcs-shop-archive-bottom-info {
	border-top: 1px solid #edf2f5;
	margin-top: 36px;
	padding-top: 28px;
}

html body .lcs-shop-archive .lcs-shop-archive-bottom-info .lcs-shop-archive-header {
	margin: 0 0 18px;
}

html body .lcs-shop-archive .lcs-sort-current-label {
	display: none;
}

@media (max-width: 768px) {
	html body .lcs-shop-archive .lcs-shop-archive-bottom-info {
		margin-top: 28px;
		padding-top: 22px;
	}

	html body .lcs-shop-archive .lcs-category-sort-form.lcs-toolbar-chip {
		align-items: center;
		font-size: 13px;
		font-weight: 750;
		justify-content: center;
		line-height: 1;
		overflow: hidden;
		padding: 0 32px 0 14px;
		position: relative;
		min-width: 132px;
	}

	html body .lcs-shop-archive .lcs-category-sort-form.lcs-toolbar-chip select {
		inset: 0;
		height: 100%;
		max-width: none;
		opacity: 0;
		padding: 0;
		position: absolute;
		width: 100%;
		z-index: 2;
	}

	html body .lcs-shop-archive .lcs-category-sort-form.lcs-toolbar-chip::after {
		color: #3f4652;
		font-size: 13px;
		line-height: 1;
		margin: 0;
		position: absolute;
		right: 14px;
		top: 50%;
		transform: translateY(-50%);
	}

	html body .lcs-shop-archive .lcs-category-sort-form.lcs-toolbar-chip .lcs-sort-current-label {
		align-items: center;
		color: #3f4652;
		display: inline-flex;
		font-size: inherit;
		font-weight: inherit;
		height: 100%;
		justify-content: center;
		line-height: 1;
		max-width: 100%;
		min-width: 0;
		overflow: hidden;
		padding: 0;
		pointer-events: none;
		text-align: center;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

/* v1.1.51: reliable catalog sorting control and aligned dropdown indicator. */
html body .lcs-shop-archive .lcs-category-sort-form.lcs-toolbar-chip {
	position: relative;
}

html body .lcs-shop-archive .lcs-category-sort-form.lcs-toolbar-chip::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	height: 7px;
	margin: 0;
	pointer-events: none;
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-70%) rotate(45deg);
	width: 7px;
	z-index: 3;
}

html body .lcs-shop-archive .lcs-category-sort-form.lcs-toolbar-chip select {
	padding-right: 30px;
}

@media (max-width: 768px) {
	html body .lcs-shop-archive .lcs-category-sort-form.lcs-toolbar-chip {
		padding: 0 34px 0 14px;
	}

	html body .lcs-shop-archive .lcs-category-sort-form.lcs-toolbar-chip::after {
		right: 14px;
	}
}
/* Honor pagination exhaustion even when a component sets display explicitly. */
[data-lcs-all-products-more][hidden],
[data-lcs-related-products-more][hidden],
[data-lcs-sticky-order][hidden] { display: none !important; }
