:root {
	--ls-bg: #f6f3ef;
	--ls-card: #ffffff;
	--ls-accent: #c96e3b;
	--ls-accent-dark: #8c4422;
	--ls-shadow: 0 18px 50px rgba(25, 17, 13, 0.12);
	--ls-radius: 18px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Public Sans", "Helvetica Neue", sans-serif;
	background: radial-gradient(circle at top right, #fcefe6 0, transparent 35%), var(--ls-bg);
	color: var(--ls-body-color, #514742);
	font-size: var(--ls-body-size, 16px);
}

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

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

.ls-container {
	width: min(1240px, calc(100% - 40px));
	margin: 0 auto;
}

h1, h2, h3, h4 {
	color: var(--ls-heading-color, #2b221f);
	line-height: 1.1;
	margin: 0;
}

h1 {
	font-size: var(--ls-heading-size, 48px);
}

h2 {
	font-size: clamp(30px, 4vw, 40px);
}

.button,
button,
input[type="submit"] {
	border: 0;
	border-radius: 999px;
	padding: 12px 26px;
	background: linear-gradient(135deg, var(--ls-accent), var(--ls-accent-dark));
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(140, 68, 34, 0.35);
}

.button.outline {
	background: transparent;
	color: var(--ls-heading-color, #2b221f);
	border: 1px solid rgba(43, 34, 31, 0.26);
}

.ls-header-shell {
	position: sticky;
	top: 0;
	z-index: 80;
	backdrop-filter: blur(8px);
}

.ls-top-banner {
	background: linear-gradient(120deg, #1f1a17, #352d28);
	color: #fff;
	font-weight: 600;
	font-size: 14px;
}

.ls-top-banner p {
	margin: 0;
	padding: 10px 0;
	text-align: center;
}

.ls-main-header {
	background: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(86, 64, 49, 0.12);
}

.ls-main-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 14px 0;
}

.ls-logo {
	max-width: 176px;
	display: inline-flex;
	align-items: center;
}

.ls-logo img {
	width: 100%;
	object-fit: contain;
}

.ls-nav > ul {
	display: flex;
	gap: 22px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ls-nav li {
	position: relative;
}

.ls-nav a {
	padding: 12px 6px;
	font-weight: 700;
	position: relative;
}

.ls-nav a::after {
	content: "";
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 5px;
	height: 2px;
	background: var(--ls-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.ls-nav a:hover::after,
.ls-nav a:focus-visible::after {
	transform: scaleX(1);
}

.ls-mega-panel {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	width: min(920px, 88vw);
	padding: 26px;
	background: #fff;
	border-radius: var(--ls-radius);
	box-shadow: var(--ls-shadow);
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 24px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: all 0.25s ease;
}

.ls-nav .has-mega:hover .ls-mega-panel,
.ls-nav .has-mega:focus-within .ls-mega-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.ls-mega-col h4 {
	margin-bottom: 14px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #a56841;
}

.ls-mega-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ls-mega-col li + li {
	margin-top: 8px;
}

.ls-mega-col li a {
	padding: 0;
	font-weight: 500;
}

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

.ls-mega-product {
	background: #faf6f2;
	border-radius: 12px;
	padding: 10px;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 10px;
	align-items: center;
}

.ls-mega-product img {
	border-radius: 8px;
}

.ls-header-tools {
	display: flex;
	gap: 8px;
}

.ls-locale-switch button {
	background: #fff;
	color: #2c221d;
	padding: 9px 12px;
	border-radius: 999px;
	border: 1px solid rgba(90, 72, 59, 0.2);
	font-size: 12px;
	font-weight: 700;
}

.ls-tool-btn {
	background: transparent;
	border: 1px solid rgba(90, 72, 59, 0.2);
	width: 44px;
	height: 44px;
	padding: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
	position: relative;
}

.ls-tool-btn svg {
	width: 22px;
	height: 22px;
	fill: #2d251f;
}

.ls-badge {
	position: absolute;
	top: -4px;
	right: -3px;
	background: var(--ls-accent);
	color: #fff;
	font-size: 10px;
	min-width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0 5px;
}

.ls-search-drawer {
	position: fixed;
	top: 98px;
	right: 20px;
	width: min(420px, calc(100vw - 40px));
	background: #fff;
	border-radius: 16px;
	padding: 16px;
	box-shadow: var(--ls-shadow);
	z-index: 90;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px);
	transition: all 0.2s ease;
}

.ls-search-drawer.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.ls-search-form {
	display: flex;
	gap: 10px;
}

.ls-search-form label {
	flex: 1;
}

.ls-search-form input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d9d0ca;
	border-radius: 999px;
}

.ls-side-panel {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: min(420px, 100vw);
	background: #fff;
	z-index: 100;
	transform: translateX(102%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.ls-side-panel.is-active {
	transform: translateX(0);
}

.ls-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 18px 12px;
	border-bottom: 1px solid #ece3dc;
}

.ls-panel-body {
	padding: 16px;
	overflow: auto;
}

.ls-close-panel {
	background: transparent;
	color: #201a16;
	font-size: 28px;
	padding: 0;
	box-shadow: none;
	line-height: 1;
}

.ls-overlay {
	position: fixed;
	inset: 0;
	background: rgba(16, 11, 8, 0.45);
	z-index: 95;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.ls-overlay.is-active {
	opacity: 1;
	pointer-events: auto;
}

.ls-main {
	min-height: 50vh;
}

.ls-section {
	padding: 80px 0;
	position: relative;
}

.ls-hero {
	padding: 120px 0;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.ls-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(26, 17, 12, 0.65), rgba(26, 17, 12, 0.2));
}

.ls-hero-slider {
	padding: 0;
	position: relative;
	overflow: hidden;
}

.ls-hero-slider-track {
	position: relative;
	min-height: clamp(460px, 62vw, 720px);
}

.ls-hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.02);
	transition: opacity 0.6s ease, transform 1.2s ease;
}

.ls-hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(25, 16, 11, 0.72), rgba(25, 16, 11, 0.26));
}

.ls-hero-slide.is-active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

.ls-hero-slide .ls-container {
	position: relative;
	padding-top: 120px;
	padding-bottom: 80px;
}

.ls-hero-dots {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	gap: 8px;
}

.ls-hero-dots button {
	width: 30px;
	height: 5px;
	padding: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
	box-shadow: none;
	transform: none;
}

.ls-hero-dots button.is-active {
	background: #fff;
}

.ls-hero-content {
	position: relative;
	color: #fff;
	width: min(560px, 100%);
}

.ls-hero-content h1 {
	color: #fff;
	margin-bottom: 14px;
}

.ls-hero-content p {
	font-size: clamp(16px, 2vw, 20px);
	margin-bottom: 24px;
}

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

.ls-section-head a {
	font-weight: 700;
	color: var(--ls-accent-dark);
}

.ls-products-grid,
.ls-post-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.ls-product-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(51, 31, 20, 0.08);
	display: flex;
	flex-direction: column;
	position: relative;
}

.ls-product-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0), rgba(209, 141, 105, 0.22));
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.ls-product-card:hover::before {
	opacity: 1;
}

.ls-product-media {
	background: #f5efe9;
	padding: 18px;
	aspect-ratio: 1 / 1;
}

.ls-product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.ls-product-body {
	padding: 15px;
	display: grid;
	gap: 12px;
}

.ls-product-body h3 {
	font-size: 17px;
}

.ls-price {
	font-weight: 700;
	color: var(--ls-accent-dark);
}

.ls-add-to-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ls-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.ls-category-card {
	background: #fff;
	padding: 12px;
	border-radius: 14px;
	box-shadow: 0 4px 20px rgba(48, 29, 18, 0.08);
	transition: transform 0.2s ease;
}

.ls-category-card:hover {
	transform: translateY(-5px);
}

.ls-category-image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 10px;
}

.ls-category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.ls-category-card:hover .ls-category-image img {
	transform: scale(1.05);
}

.ls-promo-inner {
	background: #fff;
	border-radius: 20px;
	padding: clamp(24px, 4vw, 44px);
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 26px;
	box-shadow: var(--ls-shadow);
}

.ls-promo-inner p {
	margin: 15px 0 22px;
}

.ls-promo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.ls-newsletter-inline {
	padding-top: 20px;
}

.ls-newsletter-inline-box {
	background: linear-gradient(140deg, #201914, #4a3528);
	color: #fff;
	border-radius: 20px;
	padding: clamp(24px, 4vw, 40px);
}

.ls-newsletter-inline-box h3 {
	color: #fff;
	font-size: clamp(30px, 4vw, 38px);
}

.ls-newsletter-inline-box form,
.ls-newsletter-form {
	margin-top: 20px;
	display: flex;
	gap: 10px;
}

.ls-newsletter-inline-box input,
.ls-newsletter-form input {
	flex: 1;
	padding: 12px 14px;
	border-radius: 999px;
	border: 0;
}

.ls-newsletter {
	background: linear-gradient(130deg, #fff3e7, #f9dcc2);
	padding: 70px 0;
}

.ls-newsletter p {
	margin-top: 10px;
}

.ls-footer-modules {
	padding: 60px 0 32px;
}

.ls-footer-modules .ls-container {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ls-footer-block {
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(95, 72, 55, 0.12);
	padding: 18px;
	border-radius: 14px;
}

.ls-footer-block h4 {
	font-size: 15px;
	margin-bottom: 10px;
}

.ls-footer-block ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ls-footer-block li + li {
	margin-top: 8px;
}

.ls-footer-block a:hover {
	color: var(--ls-accent-dark);
	text-decoration: underline;
}

.ls-footer-bottom {
	border-top: 1px solid rgba(101, 79, 63, 0.2);
	padding: 16px 0 28px;
}

.ls-shop-hero {
	padding: 90px 0;
	background-size: cover;
	background-position: center;
	position: relative;
}

.ls-shop-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(17, 11, 8, 0.56);
}

.ls-shop-hero .ls-container {
	position: relative;
	color: #fff;
}

.ls-shop-hero h1 {
	color: #fff;
}

.ls-shop-toolbar {
	margin: 24px 0;
	padding: 12px 14px;
	background: #fff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ls-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	gap: 34px;
	padding-top: 24px;
}

.ls-product-gallery > img {
	width: 100%;
	border-radius: 16px;
	background: #fff;
	padding: 20px;
}

.ls-thumb-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.ls-thumb-grid div {
	background: #fff;
	border-radius: 10px;
	padding: 4px;
}

.ls-product-summary {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	align-self: start;
}

.ls-price-large {
	color: var(--ls-accent-dark);
	font-size: 30px;
	font-weight: 700;
	margin: 10px 0 14px;
}

.ls-product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0;
}

.ls-product-details .entry-content {
	background: #fff;
	padding: 24px;
	border-radius: 16px;
}

.ls-product-details,
.ls-generic-main {
	padding: 42px 0;
}

.ls-page-content,
.ls-post-card {
	background: #fff;
	padding: 20px;
	border-radius: 14px;
}

.ls-post-grid,
.ls-generic-main .ls-post-card + .ls-post-card {
	margin-top: 16px;
}

.ls-wishlist-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.ls-wishlist-list li {
	background: #faf3ee;
	padding: 12px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.ls-remove-wishlist {
	padding: 6px 10px;
	font-size: 12px;
	background: #2b2019;
}

#ls-global-loader {
	position: fixed;
	inset: 0;
	background: rgba(249, 244, 239, 0.88);
	backdrop-filter: blur(3px);
	z-index: 300;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.22s ease;
}

#ls-global-loader.is-active {
	opacity: 1;
	pointer-events: auto;
}

.ls-loader-ring {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 4px solid rgba(201, 110, 59, 0.22);
	border-top-color: var(--ls-accent);
	animation: lsSpin 0.9s linear infinite;
}

@keyframes lsSpin {
	to {
		transform: rotate(360deg);
	}
}

#lensmart-dynamic-content.is-fading {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.ls-top-banner-split {
	display: grid;
	grid-template-columns: 1fr auto;
	min-height: 38px;
}

.ls-top-banner-notice {
	overflow: hidden;
	display: flex;
	align-items: center;
}

.ls-top-banner-track {
	display: flex;
	gap: 44px;
	white-space: nowrap;
	padding-left: 20px;
	animation: lsMarquee 22s linear infinite;
}

.ls-top-banner-track span {
	font-size: 13px;
}

.ls-top-banner-right {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 0 24px;
	background: rgba(255, 255, 255, 0.06);
}

.ls-top-banner-right a {
	color: #fff;
	font-size: 12px;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.ls-top-banner-right a:hover {
	color: #ffd7bd;
}

@keyframes lsMarquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

.ls-nav .has-mega {
	position: static;
}

.ls-mega-panel {
	top: calc(100% + 8px);
	left: 50%;
	transform: translate(-50%, 10px);
	width: min(1260px, 96vw);
	grid-template-columns: 220px 1fr 320px;
}

.ls-nav .has-mega:hover .ls-mega-panel,
.ls-nav .has-mega:focus-within .ls-mega-panel {
	transform: translate(-50%, 0);
}

.ls-mega-side img {
	width: 100%;
	border-radius: 14px;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.ls-mega-feature {
	display: block;
}

.ls-mega-feature span {
	display: block;
	margin-top: 9px;
	font-weight: 700;
}

.ls-mega-main {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ls-mega-main .ls-mega-col h4 {
	font-size: 14px;
}

.ls-mega-main .ls-mega-col li {
	margin-bottom: 7px;
}

.ls-mega-main .ls-mega-col a {
	font-size: 13px;
	font-weight: 500;
}

.ls-mega-products {
	grid-template-columns: 1fr;
	align-content: start;
}

.ls-header-link-btn {
	background: #2b221d;
	color: #fff;
	padding: 10px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.ls-hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 6px;
}

.ls-hero-tags {
	list-style: none;
	padding: 0;
	margin: 22px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ls-hero-tags li {
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(2px);
	border: 1px solid rgba(255, 255, 255, 0.22);
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 13px;
}

.ls-services {
	padding-top: 40px;
	padding-bottom: 30px;
}

.ls-service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.ls-service-item {
	background: #fff;
	border-radius: 14px;
	padding: 16px;
	border: 1px solid #eee1d8;
}

.ls-service-item h3 {
	font-size: 18px;
	margin-bottom: 8px;
}

.ls-collections {
	padding-top: 40px;
}

.ls-collection-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.ls-collection-card {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	min-height: 220px;
}

.ls-collection-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.ls-collection-card span {
	position: absolute;
	left: 14px;
	bottom: 14px;
	background: rgba(26, 17, 12, 0.65);
	color: #fff;
	padding: 8px 12px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 13px;
}

.ls-collection-card:hover img {
	transform: scale(1.06);
}

.ls-products-section {
	padding-top: 46px;
}

.ls-style-guide,
.ls-reviews,
.ls-gallery-feed {
	padding-top: 50px;
}

.ls-guide-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.ls-guide-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #eadfd7;
}

.ls-guide-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.ls-guide-card h3 {
	font-size: 20px;
	padding: 14px 14px 6px;
}

.ls-guide-card p {
	padding: 0 14px 16px;
	margin: 0;
}

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

.ls-review-card {
	background: #fff;
	border-radius: 14px;
	padding: 18px;
	border: 1px solid #eadfd7;
	position: relative;
}

.ls-review-card::before {
	content: "“";
	position: absolute;
	top: -6px;
	left: 12px;
	font-size: 52px;
	color: rgba(201, 110, 59, 0.18);
	font-family: Georgia, serif;
}

.ls-review-card strong {
	display: block;
	margin-bottom: 8px;
}

.ls-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.ls-gallery-item {
	border-radius: 12px;
	overflow: hidden;
	display: block;
}

.ls-gallery-item img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 0.24s ease;
}

.ls-gallery-item:hover img {
	transform: scale(1.05);
}

.ls-shop-category-strip {
	background: rgba(255, 255, 255, 0.72);
	border-bottom: 1px solid #e7d7cb;
}

.ls-shop-category-list {
	display: flex;
	gap: 10px;
	overflow: auto;
	padding: 10px 0;
}

.ls-shop-category-list a {
	padding: 8px 12px;
	border: 1px solid #dbc6b7;
	border-radius: 999px;
	background: #fff;
	font-size: 13px;
	white-space: nowrap;
}

.ls-shop-operate {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 22px 0;
	gap: 10px;
}

.ls-shop-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ls-shop-chips a {
	background: #fff;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid #e0cec2;
	font-size: 13px;
}

.ls-filter-toggle {
	display: none;
}

.ls-shop-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
}

.ls-shop-sidebar {
	position: sticky;
	top: 116px;
	display: grid;
	gap: 12px;
}

.ls-filter-card {
	background: #fff;
	border-radius: 12px;
	padding: 14px;
	border: 1px solid #e8dbd1;
}

.ls-filter-card h3 {
	font-size: 16px;
	margin-bottom: 10px;
}

.ls-filter-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 6px;
}

.ls-filter-card a {
	font-size: 14px;
}

.ls-filter-card input[type="text"] {
	width: 100%;
	border: 1px solid #dbc9bc;
	border-radius: 10px;
	padding: 9px 10px;
}

.ls-filter-card label {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ls-filter-card-upload img {
	border-radius: 10px;
	margin-bottom: 8px;
}

.ls-filter-card-upload h4 {
	margin: 0 0 6px;
	font-size: 15px;
}

.ls-shop-main-content {
	min-width: 0;
}

.ls-filter-form {
	display: grid;
	gap: 12px;
}

.ls-filter-form .button {
	width: 100%;
}

.ls-shop-gallery {
	margin-top: 36px;
}

.ls-shop-gallery h2 {
	margin-bottom: 14px;
}

.ls-footer-extra {
	padding-bottom: 26px;
}

.ls-footer-extra-inner {
	background: #fff;
	border: 1px solid #ead9cd;
	border-radius: 14px;
	padding: 16px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 14px;
}

.ls-footer-extra h5 {
	margin: 0 0 8px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #a86d4a;
}

.ls-payment-tags,
.ls-social-list,
.ls-policy-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ls-payment-tags span,
.ls-social-list a,
.ls-policy-links a {
	padding: 6px 10px;
	border: 1px solid #e6d8cf;
	border-radius: 999px;
	background: #faf7f3;
	font-size: 12px;
}

.ls-product-table-wrap {
	background: #fff;
	border: 1px solid #eadfd7;
	border-radius: 14px;
	padding: 16px;
}

.ls-product-table-wrap table {
	width: 100%;
	border-collapse: collapse;
}

.ls-product-table-wrap th,
.ls-product-table-wrap td {
	border-bottom: 1px solid #f0e6df;
	padding: 10px;
	text-align: left;
}

.ls-reviews .commentlist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}

.ls-reviews .commentlist li {
	background: #fff;
	border: 1px solid #eadfd7;
	border-radius: 12px;
	padding: 14px;
}

.ls-reviews #respond {
	background: #fff;
	border: 1px solid #eadfd7;
	border-radius: 12px;
	padding: 14px;
	margin-top: 14px;
}

.ls-reviews textarea,
.ls-reviews input[type="text"],
.ls-reviews input[type="email"] {
	width: 100%;
	border: 1px solid #dbc9bc;
	border-radius: 8px;
	padding: 9px 10px;
}

@media (max-width: 1100px) {
	.ls-nav {
		display: none;
	}
	.ls-products-grid,
	.ls-category-grid,
	.ls-footer-modules .ls-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ls-promo-inner,
	.ls-product-layout {
		grid-template-columns: 1fr;
	}
	.ls-service-grid,
	.ls-review-grid,
	.ls-guide-grid,
	.ls-collection-grid,
	.ls-gallery-grid,
	.ls-footer-extra-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ls-shop-layout {
		grid-template-columns: 1fr;
	}
	.ls-filter-toggle {
		display: inline-flex;
	}
	.ls-shop-sidebar {
		position: static;
		display: none;
	}
	.ls-shop-sidebar.is-open {
		display: grid;
	}
}

@media (max-width: 720px) {
	.ls-top-banner-split {
		grid-template-columns: 1fr;
	}
	.ls-top-banner-right {
		justify-content: center;
		padding: 8px;
	}
	.ls-main-header-inner {
		gap: 8px;
	}
	.ls-container {
		width: calc(100% - 24px);
	}
	.ls-products-grid,
	.ls-category-grid,
	.ls-footer-modules .ls-container,
	.ls-post-grid {
		grid-template-columns: 1fr;
	}
	.ls-newsletter-inline-box form,
	.ls-newsletter-form {
		flex-direction: column;
	}
	.ls-search-drawer {
		top: 76px;
		right: 12px;
	}
	.ls-service-grid,
	.ls-review-grid,
	.ls-guide-grid,
	.ls-collection-grid,
	.ls-gallery-grid,
	.ls-footer-extra-inner {
		grid-template-columns: 1fr;
	}
	.ls-header-link-btn {
		display: none;
	}
	.ls-locale-switch {
		display: none;
	}
}

/* Source-matching header/footer/fixed/card overrides */
.header-container {
	position: relative;
	z-index: 110;
}

.header-container .mask {
	position: fixed;
	inset: 0;
	background: rgba(51, 51, 51, 0.5);
	opacity: 0;
	z-index: 10;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.header-container .mask.is-active {
	opacity: 1;
	pointer-events: auto;
}

.ls-header {
	color: #fff;
	position: relative;
	z-index: 11;
}

.ls-header .notice {
	position: relative;
	width: 50%;
	height: 38px;
	line-height: 38px;
	background: #2b221f;
	overflow: hidden;
	text-align: left;
	padding: 0 96px 0 12%;
}

.ls-notice-track {
	position: relative;
	height: 38px;
}

.ls-notice-item {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 0.32s ease;
	font-size: 14px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.ls-notice-item.is-active {
	opacity: 1;
}

.ls-notice-item a {
	color: #fff;
	text-decoration: underline;
	font-weight: 700;
}

.ls-notice-arrow {
	position: absolute;
	top: 8px;
	width: 24px;
	height: 24px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 22px;
	line-height: 24px;
	cursor: pointer;
}

.ls-notice-arrow.prev {
	left: 4%;
}

.ls-notice-arrow.next {
	right: 4%;
}

.atarasi-navigator {
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 38px;
	line-height: 38px;
	background: #2b221f;
	display: flex;
	justify-content: flex-end;
	gap: 18px;
	padding: 0 5%;
}

.atarasi-navigator a {
	color: #fff;
	text-decoration: underline;
	font-size: 13px;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	box-shadow: 0 2px 4px #efefef;
	padding: 0 40px;
	position: relative;
	z-index: 11;
}

.header-content .left {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
}

.header-content .logo {
	width: 180px;
	margin-right: 28px;
}

.header-content .logo-text {
	color: #34251f;
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
}

.header-content .navigators {
	display: flex;
	align-items: center;
	gap: 6px;
	overflow: auto;
	scrollbar-width: none;
}

.header-content .navigators::-webkit-scrollbar {
	display: none;
}

.header-content .navigators > a {
	color: #34251f;
	padding: 30px 12px 26px;
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
}

.header-content .navigators > a:hover {
	color: #ba7e54;
}

.header-content .right {
	display: flex;
	align-items: center;
	gap: 18px;
}

.header-content .right .icon {
	background: transparent;
	border: 0;
	padding: 0;
	color: #34251f;
	cursor: pointer;
	position: relative;
}

.header-content .right .icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.badge-icon {
	position: absolute;
	right: -6px;
	bottom: -6px;
	min-width: 16px;
	height: 16px;
	line-height: 16px;
	border-radius: 10px;
	background: #34251f;
	color: #fff;
	font-size: 10px;
	text-align: center;
	padding: 0 3px;
}

.sub-nav-container {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #fff;
	transform: translateY(-8px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.24s ease, transform 0.24s ease;
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.sub-nav-container.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.sub-nav-container .sub-nav {
	max-width: 1600px;
	margin: 30px auto 56px;
	display: none;
	gap: 44px;
	padding: 0 28px;
}

.sub-nav-container .extra-list {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: auto auto;
	column-gap: 20px;
	row-gap: 12px;
}

.sub-nav-container .extra-item {
	width: 240px;
}

.sub-nav-container .extra-item.large {
	grid-row: 1 / 3;
}

.sub-nav-container .extra-item img {
	width: 100%;
	height: 130px;
	object-fit: cover;
	border-radius: 4px;
}

.sub-nav-container .extra-item.large img {
	height: 332px;
}

.sub-nav-container .extra-item .title {
	margin-top: 12px;
	font-size: 14px;
	color: #34251f;
}

.sub-nav-container .nav-list {
	display: flex;
	gap: 38px;
	flex-wrap: wrap;
}

.sub-nav-container .nav-item .title {
	color: #34251f;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}

.sub-nav-container .nav-item ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sub-nav-container .nav-item li + li {
	margin-top: 9px;
}

.sub-nav-container .nav-item a {
	color: #5f524c;
	text-decoration: none;
	font-size: 14px;
}

.sub-nav-container .nav-item a:hover {
	color: #ba7e54;
	text-decoration: underline;
}

.banner-container {
	position: relative;
	min-height: 220px;
	overflow: hidden;
}

.banner-container .banner-img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	display: block;
}

.banner-container .banner-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 18px;
	z-index: 2;
}

.banner-container .banner-content > div {
	display: inline-block;
	background: rgba(255, 255, 255, 0.84);
	color: #1f1916;
	padding: 8px 12px;
	border-radius: 6px;
	font-weight: 700;
}

.goods-list,
.ls-products-grid.goods-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.goods-card.small {
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid #ece7e2;
}

.goods-card.small .top-container {
	padding: 14px 14px 0;
}

.goods-card.small .image-container {
	position: relative;
	padding-top: 52%;
}

.goods-card.small .goods-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.goods-card.small .goods-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 14px 10px 18px;
}

.goods-card.small .goods-title {
	color: #34251f;
	text-decoration: none;
	font-weight: 600;
}

.goods-card.small .goods-title:hover {
	color: #ba7e54;
}

.goods-card.small .goods-price {
	font-size: 16px;
	color: #33261f;
}

.goods-card.small .goods-price del {
	color: #999;
	font-size: 12px;
	margin-left: 4px;
}

.goods-card.small .colors {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.goods-card.small .color-container {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid transparent;
	cursor: pointer;
	overflow: hidden;
}

.goods-card.small .color-container.selected {
	border-color: #34251f;
}

.goods-card.small .color-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ls-goods-cart-btn {
	font-size: 12px;
	padding: 7px 10px;
	border-radius: 99px;
	border: 1px solid #d9c9bd;
	background: #fff;
	color: #34251f;
	text-decoration: none;
}

.ls-goods-cart-btn:hover {
	background: #34251f;
	color: #fff;
}

.common-footer {
	min-height: 600px;
}

.subscribe-container {
	background: linear-gradient(120deg, #2d241f 0%, #5d4639 100%);
	color: #fff;
	text-align: center;
	padding: 58px 20px 72px;
}

.subscribe-container p {
	margin: 0 0 18px;
	font-size: 24px;
	font-weight: 700;
}

.input-container {
	max-width: 540px;
	margin: 0 auto;
}

.ls-subscribe-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0;
}

.ls-subscribe-form .el-input__inner {
	height: 52px;
	border: 0;
	border-radius: 8px 0 0 8px;
	padding: 0 14px;
}

.register-button {
	height: 52px;
	border: 0;
	border-radius: 0 8px 8px 0;
	padding: 0 18px;
	background: #c38a61;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.site-map {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	max-width: 1500px;
	margin: 0 auto;
	padding: 42px 28px;
}

.category-group .group-title {
	font-size: 16px;
	font-weight: 700;
	color: #34251f;
	margin-bottom: 10px;
}

.category-group .links a,
.category-group .links p {
	display: block;
	color: #605751;
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 7px;
	text-decoration: none;
}

.category-group .links a:hover {
	color: #ba7e54;
	text-decoration: underline;
}

.outside-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.outside-links .but {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 12px;
	background: #f1ece6;
	border-radius: 16px;
	font-size: 12px;
}

.copyright {
	border-top: 1px solid #e5dbd4;
}

.copyright .limit-section {
	max-width: 1500px;
	margin: 0 auto;
	padding: 16px 28px 28px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.copyright .limit-section p {
	margin: 0 14px 0 0;
	color: #605751;
}

.fixed-container {
	position: fixed;
	right: 0;
	top: 45%;
	transform: translateY(-50%);
	z-index: 99;
}

.fix-customer {
	position: relative;
	display: flex;
	align-items: stretch;
}

.fix-customer .thumbnail {
	width: 37px;
	height: 316px;
	object-fit: cover;
	display: block;
	cursor: pointer;
}

.fix-customer .detail {
	width: 260px;
	height: 316px;
	object-fit: cover;
	opacity: 0;
	transform: translateX(16px);
	pointer-events: none;
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.fix-customer .detail-content {
	position: absolute;
	inset: 0 0 0 37px;
	opacity: 0;
	pointer-events: none;
}

.fix-customer.is-open .detail,
.fix-customer.is-open .detail-content {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.fix-customer .opacity-btn {
	position: absolute;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.fix-customer .opacity-btn.close {
	right: 6px;
	top: 6px;
	width: 24px;
	height: 24px;
}

.fix-customer .opacity-btn.link {
	inset: 0;
}

.fixed-container .back-top {
	margin-top: 10px;
	margin-left: auto;
	display: block;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 0;
	background: #2f241f;
	color: #fff;
	cursor: pointer;
	visibility: hidden;
}

.fixed-container .back-top svg {
	width: 18px;
	height: 18px;
}

@media (max-width: 1280px) {
	.site-map {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.goods-list,
	.ls-products-grid.goods-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.ls-header .notice,
	.atarasi-navigator {
		width: 100%;
		position: static;
	}
	.atarasi-navigator {
		justify-content: center;
		padding: 0 12px;
	}
	.header-content {
		padding: 0 14px;
	}
	.sub-nav-container {
		display: none !important;
	}
	.goods-list,
	.ls-products-grid.goods-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.site-map {
		grid-template-columns: 1fr;
		padding: 28px 18px;
	}
	.fixed-container {
		display: none;
	}
}
