:root {
	--lcs-primary: #17b5b7;
	--lcs-secondary: #0a818f;
	--lcs-bg: #ffffff;
	--lcs-light: #f5fafa;
	--lcs-text: #111827;
	--lcs-muted: #6b7280;
	--lcs-border: #e5e7eb;
	--lcs-sale: #ef4444;
	--lcs-success: #16a34a;
	--lcs-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
	--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 {
	background: var(--lcs-bg);
	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;
	max-width: 1180px;
	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 {
	background: #111827;
	color: #fff;
	margin-top: 40px;
}

.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-size: 0.82rem;
	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;
	gap: 14px;
	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);
	border-radius: var(--lcs-radius);
	box-shadow: var(--lcs-shadow-soft);
	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-bg: #f6f8fb;
	--lcs-light: #f6f8fa;
	--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 {
	background: #fff;
	border: 1px solid #dbe4ef;
	border-radius: 9px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	display: grid;
	grid-template-columns: minmax(0, 1fr) 98px;
	height: 42px;
	min-height: 0;
	overflow: hidden;
}

.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-primary-nav {
	display: none;
}

.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: #0b4f5b;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	height: clamp(360px, 26.8vw, 560px);
	margin: 0;
	max-width: none;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.hero-banner::before {
	background: linear-gradient(90deg, rgba(6, 54, 68, 0.48) 0%, rgba(6, 54, 68, 0.24) 32%, rgba(6, 54, 68, 0.02) 68%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 2;
}

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

.hero-video {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	object-position: center;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.hero-inner {
	align-items: center;
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr;
	height: 100%;
	justify-items: start;
	margin: 0 auto;
	max-width: var(--lcs-market-max);
	padding: 36px 38px 86px;
	position: relative;
	text-align: left;
	z-index: 4;
}

.hero-copy {
	margin-left: clamp(18px, 3.2vw, 58px);
	margin-top: clamp(-26px, -1.8vw, -12px);
	max-width: 620px;
}

.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);
	font-weight: 760;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0 0 12px;
	text-shadow: 0 10px 28px rgba(4, 42, 58, 0.22);
}

.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;
	text-shadow: 0 8px 22px rgba(4, 42, 58, 0.2);
}

.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;
}

.promo-banners {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo-banner {
	background: #ffffff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid #e4ebf1;
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
	color: var(--lcs-text);
	display: block;
	height: 250px;
	isolation: isolate;
	min-height: 250px;
	overflow: hidden;
	padding: 0;
	position: relative;
	transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.promo-banner:hover,
.promo-banner:focus {
	border-color: rgba(23, 181, 183, 0.26);
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
	color: var(--lcs-text);
	transform: translateY(-2px);
}

.promo-banner::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.54) 38%, rgba(255, 255, 255, 0) 72%);
	content: "";
	display: block;
	inset: 0;
	position: absolute;
	z-index: 1;
}

.promo-banner::after {
	background: radial-gradient(circle at 86% 28%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 32%);
	content: "";
	display: block;
	inset: 0;
	position: absolute;
	z-index: 2;
}

.promo-banner.auto-summer {
	--promo-accent: #17b5b7;
	background-image: url("../images/promo-horizontal-auto-v1032.jpg");
}

.promo-banner.outdoor-summer {
	--promo-accent: #17b5b7;
	background-image: url("../images/promo-horizontal-summer-v1032.jpg");
}

.promo-banner.trending-now {
	--promo-accent: #17b5b7;
	background-image: url("../images/promo-horizontal-trend-v1032.jpg");
}

.promo-content {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	left: 30px;
	max-width: 48%;
	min-width: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
}

.promo-badge {
	align-items: center;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 999px;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.07);
	color: #475569;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	gap: 7px;
	line-height: 1;
	margin-bottom: 15px;
	padding: 9px 13px;
	white-space: nowrap;
}

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

.promo-badge svg {
	color: var(--promo-accent);
	height: 17px;
	width: 17px;
}

.promo-title {
	color: #1f2937;
	font-size: 26px;
	font-weight: 900;
	letter-spacing: -0.55px;
	line-height: 1.12;
	margin: 0;
	max-width: 100%;
}

.promo-desc {
	color: #4b5563;
	font-size: 14.5px;
	font-weight: 650;
	line-height: 1.42;
	margin: 11px 0 20px;
}

.promo-action {
	align-items: center;
	background: var(--lcs-primary);
	border: 0;
	border-radius: 11px;
	box-shadow: 0 10px 22px rgba(23, 181, 183, 0.23);
	color: #ffffff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 850;
	gap: 11px;
	line-height: 1;
	margin-top: 0;
	padding: 13px 18px;
	white-space: nowrap;
}

.promo-action svg {
	height: 18px;
	width: 18px;
}

.promo-art {
	display: none;
}

.promo-banner:hover .promo-art,
.promo-banner:focus .promo-art {
	transform: scale(1.018);
}

.promo-banner.auto-summer .promo-art {
	background-image: url("../images/promo-product-auto-v1031.png");
}

.promo-banner.outdoor-summer .promo-art {
	background-image: url("../images/promo-product-summer-v1031.png");
}

.promo-banner.trending-now .promo-art {
	background-image: url("../images/promo-product-trend-v1031.png");
}

.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;
	gap: 14px;
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.product-row .lcs-product-card {
	background: #ffffff;
	border: 1px solid #e4eaf0;
	border-radius: 16px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
	display: block;
	min-width: 0;
	overflow: hidden;
	padding: 12px;
	position: relative;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-row .lcs-product-card:hover,
.product-row .lcs-product-card:focus-within {
	border-color: rgba(245, 179, 1, 0.48);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
	transform: translateY(-3px);
}

.product-row .lcs-discount-badge {
	background: #ffd84d;
	border: 1px solid rgba(146, 100, 14, 0.1);
	border-radius: 999px;
	box-shadow: 0 7px 16px rgba(255, 216, 77, 0.34);
	color: #111827;
	display: inline-flex;
	font-size: 11px;
	font-weight: 950;
	left: 14px;
	line-height: 1;
	padding: 7px 10px;
	position: absolute;
	top: 14px;
	z-index: 4;
}

.product-row .lcs-product-image {
	align-items: center;
	background: #f6f8fa;
	border-radius: 13px;
	display: flex;
	justify-content: center;
	margin-bottom: 11px;
	overflow: hidden;
	position: relative;
}

.product-row .lcs-product-image img {
	aspect-ratio: 1 / 1;
	background: transparent;
	border-radius: 0;
	height: auto;
	object-fit: contain;
	padding: 6px;
	transition: transform 0.22s ease;
	width: 100%;
}

.product-row .lcs-product-card:hover .lcs-product-image img,
.product-row .lcs-product-card:focus-within .lcs-product-image img {
	transform: scale(1.025);
}

.product-row .lcs-product-body {
	display: block;
	padding: 0 2px 2px;
}

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

.product-row .lcs-product-title {
	color: #1f2937;
	font-size: 13px;
	font-weight: 850;
	letter-spacing: -0.08px;
	line-height: 1.22;
	margin: 0 0 7px;
	min-height: 32px;
}

.product-row .lcs-product-title a:hover,
.product-row .lcs-product-title a:focus {
	color: var(--lcs-secondary);
}

.product-row .lcs-product-rating {
	align-items: center;
	display: flex;
	gap: 5px;
	line-height: 1;
	margin: 0 0 7px;
	min-height: 15px;
}

.product-row .lcs-rating-stars {
	color: #f5b301;
	font-size: 12px;
	letter-spacing: -0.5px;
	white-space: nowrap;
}

.product-row .lcs-rating-count {
	color: #64748b;
	font-size: 11px;
	font-weight: 750;
	white-space: nowrap;
}

.product-row .lcs-product-price {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin: 0;
}

.product-row .lcs-product-price ins,
.product-row .lcs-product-price > .woocommerce-Price-amount,
.product-row .lcs-product-price > span {
	color: #111827;
	font-size: 18px;
	font-weight: 950;
	letter-spacing: -0.45px;
	line-height: 1.1;
	text-decoration: none;
}

.product-row .lcs-product-price del {
	color: #98a2b3;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	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: 430px;
		width: 100%;
	}

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

	.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;
	}

	.promo-banners {
		gap: 14px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.promo-banner {
		height: 230px;
		min-height: 230px;
	}

	.promo-content {
		left: 22px;
		max-width: 50%;
		top: 50%;
	}

	.promo-badge {
		font-size: 12px;
		margin-bottom: 12px;
		padding: 8px 11px;
	}

	.promo-title {
		font-size: 22px;
	}

	.promo-desc {
		font-size: 13px;
		margin: 9px 0 16px;
	}

	.promo-action {
		font-size: 13px;
		padding: 11px 14px;
	}

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

}

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

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

	.promo-banner {
		height: 210px;
		min-height: 210px;
	}

	.promo-content {
		max-width: 56%;
	}

	.promo-title {
		font-size: 23px;
	}
}

@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: block;
	}

	.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;
	}

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

	.promo-banner {
		height: 218px;
		min-height: 218px;
	}

	.promo-content {
		left: 16px;
		max-width: 60%;
		top: 50%;
	}

	.promo-badge {
		font-size: 11px;
		margin-bottom: 10px;
		padding: 7px 10px;
	}

	.promo-title {
		font-size: 20px;
	}

	.promo-desc {
		font-size: 12px;
		margin: 7px 0 12px;
	}

	.promo-action {
		font-size: 12px;
		gap: 8px;
		padding: 10px 12px;
	}

	.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;
	}
}

.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) !important;
	border-color: var(--lcs-primary) !important;
	color: #fff !important;
}

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

.lcs-cart-overlay {
	background: rgba(15, 15, 15, 0.46);
	inset: 0;
	position: fixed;
	z-index: 9997;
}

.lcs-cart-drawer {
	background: #fff;
	box-shadow: -18px 0 40px rgba(15, 23, 42, 0.2);
	display: flex;
	flex-direction: column;
	height: 100vh;
	max-width: 420px;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(105%);
	transition: transform 0.22s ease;
	width: min(92vw, 420px);
	z-index: 9998;
}

.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;
	padding: 16px 18px 18px;
}

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

.lcs-cart-drawer .woocommerce-mini-cart-item {
	border-bottom: 1px solid var(--lcs-border);
	display: grid;
	gap: 6px;
	grid-template-columns: 64px 1fr;
	min-height: 82px;
	padding: 12px 0;
	position: relative;
}

.lcs-cart-drawer .woocommerce-mini-cart-item img {
	background: var(--lcs-light);
	border-radius: 8px;
	grid-row: span 2;
	height: 64px;
	object-fit: cover;
	width: 64px;
}

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

.lcs-cart-drawer .woocommerce-mini-cart-item .remove {
	align-items: center;
	background: var(--lcs-light);
	border-radius: 999px;
	color: var(--lcs-sale);
	display: inline-flex;
	font-size: 18px;
	font-weight: 900;
	height: 24px;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 12px;
	width: 24px;
}

.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);
	margin: 14px 0;
	padding-top: 14px;
}

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

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

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

.lcs-cart-toast {
	background: #0f0f0f;
	border-radius: 8px;
	box-shadow: var(--lcs-shadow);
	color: #fff;
	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;
	z-index: 10000;
}

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

body.lcs-cart-drawer-open {
	overflow: hidden;
}

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

/* v1.0.35 promo/hero refinements */
.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;
}

.promo-banners {
	gap: 20px;
}

.promo-banner {
	border-radius: 22px;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
	height: 240px;
	min-height: 240px;
}

.promo-banner:hover,
.promo-banner:focus {
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
	transform: translateY(-1px);
}

.promo-banner::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.60) 40%, rgba(255, 255, 255, 0.10) 70%);
}

.promo-banner::after {
	background: radial-gradient(circle at 86% 28%, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0) 34%);
}

.promo-content {
	left: 28px;
	max-width: 44%;
}

.promo-badge {
	box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
	font-size: 12.5px;
	font-weight: 750;
	margin-bottom: 16px;
	padding: 10px 14px;
}

.promo-title {
	font-size: 23px;
	font-weight: 780;
	letter-spacing: 0;
	line-height: 1.14;
	margin-bottom: 18px;
}

.promo-desc {
	display: none;
}

.promo-action {
	box-shadow: 0 6px 16px rgba(23, 181, 183, 0.18);
	font-size: 15px;
	font-weight: 800;
	gap: 10px;
	padding: 13px 18px;
}

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

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

	.promo-banners {
		gap: 14px;
	}

	.promo-banner {
		height: 220px;
		min-height: 220px;
	}

	.promo-content {
		left: 22px;
		max-width: 46%;
	}

	.promo-title {
		font-size: 21px;
	}

	.promo-action {
		font-size: 14px;
		padding: 12px 15px;
	}
}

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

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

@media (max-width: 900px) {
	.promo-content {
		max-width: 50%;
	}

	.promo-title {
		font-size: 22px;
	}
}

@media (max-width: 640px) {
	.promo-banner {
		height: 205px;
		min-height: 205px;
	}

	.promo-content {
		left: 16px;
		max-width: 58%;
	}

	.promo-badge {
		font-size: 11px;
		padding: 7px 10px;
	}

	.promo-title {
		font-size: 19px;
		margin-bottom: 14px;
	}

	.promo-action {
		font-size: 12px;
		padding: 10px 12px;
	}
}

/* v1.0.36 product card refinements */
.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-product-card:hover,
.product-row .lcs-product-card:focus-within {
	border-color: rgba(23, 181, 183, 0.28);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.075);
	transform: translateY(-2px);
}

.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-card:hover .lcs-product-image img,
.product-row .lcs-product-card:focus-within .lcs-product-image img {
	transform: scale(1.018);
}

.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;
}

/* v1.0.40 unified product cards */
.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 !important;
	margin: 0 !important;
	padding: 0 !important;	
	width: auto !important;
}

.lcs-product-card,
.product-row .lcs-product-card,
.lcs-product-grid .lcs-product-card,
.woocommerce ul.products .lcs-product-card {
	background: #ffffff;
	border: 1px solid #e7edf2;
	border-radius: 18px;
	box-shadow: 0 6px 18px rgba(12, 32, 46, 0.04);
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 376px;
	min-width: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.lcs-product-card:hover,
.lcs-product-card:focus-within,
.product-row .lcs-product-card:hover,
.product-row .lcs-product-card:focus-within {
	border-color: rgba(23, 181, 183, .35);
	box-shadow: 0 12px 30px rgba(12, 32, 46, 0.08);
	transform: translateY(-3px);
}

.lcs-product-image,
.product-row .lcs-product-image,
.lcs-product-grid .lcs-product-image,
.woocommerce ul.products .lcs-product-image {
	align-items: center;
	aspect-ratio: 1 / 1;
	background: #f7fbfb;
	border-radius: 0;
	box-shadow: none;
	display: flex;
	height: auto;
	justify-content: center;
	margin: 0;
	overflow: hidden;
	padding: 12px;
	position: relative;
}

.lcs-product-image-stack {
	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 {
	aspect-ratio: auto;
	background: transparent;
	border-radius: 0;
	height: 100%;
	left: 0;
	object-fit: contain;
	object-position: center;
	padding: 0;
	position: absolute;
	top: 0;
	transition: opacity .2s ease, transform .22s ease;
	width: 100%;
}

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

.lcs-product-img-hover {
	opacity: 0;
	z-index: 2;
}

.lcs-product-image:hover .lcs-product-img-primary,
.lcs-product-card:focus-within .lcs-product-img-primary {
	opacity: 0;
}

.lcs-product-image:hover .lcs-product-img-hover,
.lcs-product-card:focus-within .lcs-product-img-hover {
	opacity: 1;
}

.lcs-product-card:hover .lcs-product-image img,
.lcs-product-card:focus-within .lcs-product-image img,
.product-row .lcs-product-card:hover .lcs-product-image img,
.product-row .lcs-product-card:focus-within .lcs-product-image img {
	transform: none;
}

.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-no-rating {
	visibility: hidden;
}

.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;
}

.lcs-card-add:hover,
.lcs-card-add:focus {
	background: rgba(23, 181, 183, .16);
	color: #086f7b;
	transform: translateY(-1px);
}

@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;
	}
}

/* v1.0.41 homepage product carousel rows */
.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;
	}
}

/* v1.0.43 single product page redesign */
.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-product-breadcrumb a:hover {
	color: var(--lcs-secondary);
}

.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-main-image:hover img {
	transform: scale(1.025);
}

.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.active,
.lcs-single-thumb:hover {
	border-color: var(--lcs-primary);
	opacity: 1;
	transform: translateY(-1px);
}

.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-review-link:hover {
	color: var(--lcs-secondary);
}

.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) !important;
	border: 0 !important;
	border-radius: 12px !important;
	box-shadow: none !important;
	color: var(--lcs-secondary) !important;
	display: inline-flex !important;
	font-size: 14px !important;
	font-weight: 750 !important;
	gap: 9px;
	height: 44px;
	justify-content: center;
	line-height: 1 !important;
	padding: 0 16px !important;
	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.cart .single_add_to_cart_button:hover,
.lcs-single-cart-area .single_add_to_cart_button.button:hover,
.lcs-single-cart-area .single_add_to_cart_button.button.alt:hover {
	background: rgba(23, 181, 183, .17) !important;
	color: var(--lcs-secondary) !important;
	transform: translateY(-1px);
}

.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;
	margin-top: 16px;
	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-button-primary:hover {
	background: var(--lcs-secondary);
	transform: translateY(-1px);
}

.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;
	}
}

/* Limo cart redesign v1.0.51 */
.woocommerce-cart .lcs-site-main {
	background: #f5f8fa;
}

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

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

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

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

.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) 118px 132px 126px;
	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) 118px 132px 126px;
	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% !important;
	height: 100% !important;
	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 !important;
	margin-top: 8px;
	font-size: 12px !important;
	line-height: 1 !important;
	font-weight: 650;
	color: #8792a3 !important;
	text-decoration: none !important;
	width: auto !important;
	height: auto !important;
	background: transparent !important;
	border: 0 !important;
}

.lcs-cart-remove:hover {
	color: #ef3f6b !important;
	background: transparent !important;
}

.lcs-cart-price,
.lcs-cart-subtotal {
	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% !important;
	height: 36px !important;
	border: 0 !important;
	box-shadow: none !important;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: #182235;
	padding: 0 !important;
	background: transparent !important;
}

.lcs-cart-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	border-top: 1px solid #e7edf2;
	background: #fff;
}

.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-actions .button,
.lcs-cart-update {
	height: 40px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: rgba(23,181,183,.10) !important;
	color: var(--lcs-secondary, #0a818f) !important;
	padding: 0 16px !important;
	font-size: 13px !important;
	font-weight: 750 !important;
	line-height: 40px !important;
	white-space: nowrap;
}

.lcs-cart-actions .button:hover,
.lcs-cart-update:hover {
	background: rgba(23,181,183,.16) !important;
}

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

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

.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) !important;
	color: #fff !important;
	border-radius: 0 !important;
	padding: 12px 20px !important;
	font-weight: 800 !important;
}

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error {
	max-width: 1180px;
	margin: 14px auto !important;
	border-top-color: var(--lcs-primary, #17b5b7) !important;
	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-price,
	.lcs-cart-quantity,
	.lcs-cart-subtotal {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding-top: 10px;
		border-top: 1px solid #edf2f5;
	}

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

	.lcs-cart-actions {
		align-items: stretch;
		flex-direction: column;
		padding: 14px;
	}

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

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

	.lcs-cart-actions .button,
	.lcs-cart-update {
		width: 100%;
	}
}

/* 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 !important;
}

.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 !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.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) !important;
}

.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 !important;
}

.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 !important;
	margin: 0 !important;
	border-collapse: collapse;
}

.lcs-checkout-review table.shop_table th,
.lcs-checkout-review table.shop_table td {
	border: 0 !important;
	border-bottom: 1px solid #edf2f5 !important;
	padding: 12px 0 !important;
	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 !important;
	font-weight: 850 !important;
	color: #172033 !important;
}

.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 !important;
}

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

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

.lcs-checkout-review #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
	padding: 12px 14px !important;
	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) !important;
	color: #526071 !important;
	font-size: 12.5px;
	line-height: 1.45;
	margin: 10px 0 0 !important;
	padding: 10px 12px !important;
	border-radius: 0 !important;
}

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

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

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

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

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
	max-width: 1180px;
	margin: 14px auto !important;
	border-top-color: var(--lcs-primary, #17b5b7) !important;
	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;
	}
}

/* v1.0.53 - Clean product category/shop archive pages */
.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 !important;
}

.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 !important;
	display: grid !important;
	gap: 16px !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	justify-content: stretch !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.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 !important;
	margin: 0 !important;
	max-width: none !important;
	min-width: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

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

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

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

.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 !important;
	font-weight: 700 !important;
}

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

.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 !important;
}

@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 !important;
	}
}

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

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

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

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

/* v1.0.54 - Category/archive top safety spacing under sticky header */
.lcs-shop-archive {
	padding-top: 72px !important;
}
.lcs-shop-archive-container {
	padding-top: 0 !important;
}
.lcs-shop-archive-header {
	margin-top: 0 !important;
	margin-bottom: 20px !important;
}
body.tax-product_cat .lcs-shop-archive,
body.post-type-archive-product .lcs-shop-archive,
body.woocommerce-shop .lcs-shop-archive {
	padding-top: 72px !important;
}
@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 !important;
	}
}


/* 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 !important;
	padding: 20px !important;
	background: #fff !important;
	border: 1px solid #e7edf2 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}
.single-product .lcs-clean-reviews-title {
	margin: 0 0 14px !important;
	font-size: 18px !important;
	line-height: 1.25 !important;
	font-weight: 750 !important;
	color: #172033 !important;
}
.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 !important;
}
.single-product .lcs-clean-review-form {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) !important;
	gap: 14px 16px !important;
	max-width: 920px !important;
}
.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 !important;
}
.single-product .lcs-clean-review-field {
	margin: 0 !important;
}
.single-product .lcs-clean-review-field label {
	display: block !important;
	margin: 0 0 7px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	color: #273247 !important;
}
.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% !important;
	border: 1px solid #e7edf2 !important;
	border-radius: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
	outline: none !important;
	color: #182235 !important;
	font-size: 14px !important;
}
.single-product .lcs-clean-review-form textarea {
	min-height: 118px !important;
	padding: 12px !important;
	resize: vertical !important;
}
.single-product .lcs-clean-review-form input[type="text"],
.single-product .lcs-clean-review-form select {
	height: 42px !important;
	padding: 0 12px !important;
}
.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 !important;
}
.single-product .lcs-clean-review-form p.stars {
	margin: 2px 0 0 !important;
}
.single-product .lcs-clean-review-form p.stars a {
	color: #ff9f1a !important;
	font-size: 24px !important;
	line-height: 1 !important;
	text-decoration: none !important;
}
.single-product .lcs-clean-review-form .form-submit {
	margin: 0 !important;
}
.single-product .lcs-clean-review-submit,
.single-product .lcs-clean-review-form #submit {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 150px !important;
	height: 42px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #17b5b7 !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 750 !important;
	box-shadow: none !important;
	cursor: pointer !important;
}
.single-product .lcs-clean-review-submit:hover,
.single-product .lcs-clean-review-form #submit:hover {
	background: #0a818f !important;
}
@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 !important;
		margin-top: 14px !important;
	}
	.single-product .lcs-clean-review-form {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
	}
	.single-product .lcs-clean-review-form textarea {
		min-height: 104px !important;
	}
	.single-product .lcs-clean-review-submit,
	.single-product .lcs-clean-review-form #submit {
		width: 100% !important;
	}
}

/* v1.0.60: product review form must never show email, website or save-info checkbox on any device. */
.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 !important;
}

/* v1.0.61 - WhatsApp, favorites, cart drawer translations, mobile checkout/cart improvements */
.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-cart-drawer .widget_shopping_cart_content { padding: 0 18px 18px; }
.lcs-mini-cart-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.lcs-mini-cart-item { position: relative; display: grid !important; grid-template-columns: 64px 1fr 22px; gap: 10px; align-items: center; padding: 0 0 12px !important; 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% !important; height: 100% !important; 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 !important; height: 22px !important; border: 0 !important; background: rgba(239,63,107,.08) !important; color: #ef3f6b !important; display: grid !important; place-items: center !important; border-radius: 0 !important; text-decoration: none !important; font-size: 16px !important; line-height: 22px !important; }
.lcs-mini-cart-total { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 16px 0 12px !important; 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 !important; }
.lcs-mini-cart-buttons .button { width: 100%; height: 46px; border: 0 !important; border-radius: 0 !important; display: flex !important; align-items: center; justify-content: center; font-size: 14px !important; font-weight: 800 !important; line-height: 46px !important; text-decoration: none !important; padding: 0 16px !important; }
.lcs-mini-cart-view { background: #182235 !important; color: #fff !important; }
.lcs-mini-cart-checkout { background: var(--lcs-primary, #17b5b7) !important; color: #fff !important; }
.lcs-mini-cart-empty { padding: 18px; margin: 0; color: #526071; }

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

.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 !important; background: rgba(239,63,107,.08) !important; border-color: rgba(239,63,107,.14); }
.lcs-single-wishlist.lcs-favorite-toggle.is-active { color: #ef3f6b !important; }
.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 !important; }

.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) !important; color: #fff !important; border: 0 !important; border-radius: 0 !important; padding: 13px 22px !important; font-weight: 800 !important; text-decoration: none !important; display: inline-flex !important; }

@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) !important; }
	.lcs-cart-page { padding: 16px 10px 42px !important; }
	.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 !important; }
	.lcs-checkout-page { padding: 16px 10px 42px !important; }
	.lcs-checkout-head p { display: none; }
	.lcs-checkout-layout { gap: 12px; }
	.lcs-checkout-panel { padding: 15px !important; 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 !important; font-size: 15px !important; }
	.single-product .lcs-single-quick-order { padding: 12px !important; margin-top: 14px !important; }
	.single-product .lcs-single-quick-order .lcs-fast-order-form label { font-size: 14px !important; }
	.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; }
}

/* v1.0.63: bundle quantity buttons and clearer fast-order quantity label */
.single-product .lcs-single-cart-area form.cart .quantity.lcs-qty-ready {
  display: grid !important;
  grid-template-columns: 34px 1fr 34px !important;
  align-items: center !important;
  overflow: hidden !important;
  width: 108px !important;
  min-width: 108px !important;
  height: 44px !important;
  border: 1px solid #e4ebf1 !important;
  background: #fff !important;
}
.single-product .lcs-single-cart-area form.cart .quantity.lcs-qty-ready input.qty {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  box-shadow: none !important;
  text-align: center !important;
  background: transparent !important;
  font-weight: 700 !important;
  color: #182235 !important;
  -moz-appearance: textfield !important;
}
.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 !important;
  margin: 0 !important;
}
.single-product .lcs-qty-btn {
  width: 34px !important;
  height: 44px !important;
  border: 0 !important;
  background: #f5fafb !important;
  color: #0a818f !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  cursor: pointer !important;
}
.single-product .lcs-qty-btn:hover { background: rgba(23,181,183,.12) !important; }
.single-product .lcs-fast-selected-quantity {
  grid-column: 1 / -1 !important;
  margin: -2px 0 0 !important;
  color: #0a818f !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}
@media (max-width: 760px) {
  .single-product .lcs-single-cart-area form.cart .quantity.lcs-qty-ready {
    width: 100% !important;
    min-width: 0 !important;
    height: 42px !important;
    grid-template-columns: 40px 1fr 40px !important;
  }
  .single-product .lcs-qty-btn { width: 40px !important; height: 42px !important; }
}

/* v1.0.64: search layout repair, desktop quick order full-width, mobile quantity UX */
body.search .lcs-site-main,
body.search-results .lcs-site-main,
body.search-no-results .lcs-site-main {
	background: #f5f8fa;
	clear: both;
	overflow: hidden;
	width: 100%;
}
body.search .lcs-search-archive,
body.search-results .lcs-search-archive,
body.search-no-results .lcs-search-archive {
	padding-top: 72px !important;
}
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 !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 16px !important;
	padding-right: 16px !important;
	width: 100% !important;
}
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% !important;
	overflow-wrap: anywhere !important;
	text-align: left !important;
}
body.search .lcs-search-products,
body.search-results .lcs-search-products {
	width: 100% !important;
}
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 !important;
	grid-template-columns: minmax(0, 1fr) 140px !important;
	gap: 10px !important;
	max-width: 720px !important;
	width: 100% !important;
}
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 !important;
}
.lcs-market-search {
	min-width: 0 !important;
	width: 100% !important;
}
.lcs-market-search input[type="search"] {
	min-width: 0 !important;
	width: 100% !important;
}
@media (max-width: 1180px) {
	.nav-bar { padding-left: 12px; padding-right: 12px; }
	.nav-inner { width: 100%; }
	.lcs-market-search { min-width: 0 !important; }
}
@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 !important;
	}
	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 !important;
		line-height: 1.18 !important;
	}
	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 !important;
	}
	.lcs-market-search {
		grid-template-columns: minmax(0, 1fr) 76px !important;
	}
}

.single-product .lcs-single-quick-order .lcs-fast-order-form {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 9px !important;
	width: 100% !important;
}
.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 !important;
	width: 100% !important;
	max-width: none !important;
}
.single-product .lcs-single-quick-order .lcs-button-primary {
	margin: 0 !important;
}

@media (max-width: 760px) {
	.single-product .lcs-single-cart-area form.cart {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 9px !important;
		width: 100% !important;
	}
	.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 !important;
		width: 100% !important;
		min-width: 0 !important;
		height: 44px !important;
		grid-template-columns: 46px minmax(0,1fr) 46px !important;
	}
	.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 !important;
		font-weight: 800 !important;
		padding: 0 !important;
	}
	.single-product .lcs-qty-btn {
		width: 46px !important;
		height: 44px !important;
		font-size: 19px !important;
	}
	.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 !important;
		width: 100% !important;
		height: 44px !important;
	}
}


/* v1.0.65 - Restore working search layout from fixed theme.
   WordPress adds `search` as a body class; never style it like the header form. */
body.search,
body.search-results,
body.search-no-results {
  display: block !important;
  width: 100% !important;
  min-height: 100vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
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% !important;
  max-width: none !important;
  overflow-x: hidden !important;
}
body.search .lcs-site-main,
body.search-results .lcs-site-main,
body.search-no-results .lcs-site-main {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 52vh !important;
  clear: both !important;
  overflow: visible !important;
  background: #f5f8fa !important;
}
body.search .lcs-content-page,
body.search-results .lcs-content-page,
body.search-no-results .lcs-content-page {
  padding: 34px 0 52px !important;
}
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)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  float: none !important;
  transform: none !important;
}
body.search .lcs-page-header,
body.search-results .lcs-page-header,
body.search-no-results .lcs-page-header {
  margin: 0 0 22px !important;
  padding: 0 !important;
}
body.search .lcs-page-header h1,
body.search-results .lcs-page-header h1,
body.search-no-results .lcs-page-header h1 {
  max-width: 100% !important;
  margin: 0 !important;
  color: #182235 !important;
  font-size: clamp(24px, 3vw, 38px) !important;
  line-height: 1.14 !important;
  overflow-wrap: anywhere !important;
  text-align: left !important;
}
body.search .lcs-product-grid,
body.search-results .lcs-product-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body.search .lcs-product-grid > *,
body.search-results .lcs-product-grid > * {
  min-width: 0 !important;
  max-width: 100% !important;
}
body.search .lcs-post-list,
body.search-results .lcs-post-list,
body.search-no-results .lcs-post-list {
  width: 100% !important;
  max-width: 100% !important;
}
body.search .lcs-empty-state .lcs-search-form,
body.search-no-results .lcs-empty-state .lcs-search-form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 140px !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 720px !important;
}
body.search .lcs-empty-state .lcs-search-form input,
body.search-no-results .lcs-empty-state .lcs-search-form input {
  min-width: 0 !important;
}
.lcs-market-search {
  background: #fff !important;
  border: 1px solid #dbe4ef !important;
  border-radius: 9px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 98px !important;
  height: 42px !important;
  overflow: hidden !important;
  min-width: 0 !important;
  width: 100% !important;
}
.lcs-market-search input[type="search"] {
  min-width: 0 !important;
  width: 100% !important;
}
@media (max-width: 1180px) {
  .nav-bar { padding-left: 12px !important; padding-right: 12px !important; }
  .nav-inner { width: 100% !important; }
}
@media (max-width: 1024px) {
  body.search .lcs-product-grid,
  body.search-results .lcs-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}
@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 !important; }
  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) !important; }
  body.search .lcs-product-grid,
  body.search-results .lcs-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
  .lcs-market-search { grid-template-columns: minmax(0, 1fr) 76px !important; height: 40px !important; }
}
@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 !important; }
}


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