/* ─── LifeTastic Web — Theme (Figma-accurate) ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── CSS Variables ───────────────────────────────────────────────────────── */
:root {
	--lt-primary: #aa9662;
	--lt-primary-d: #8a7a4f;
	--lt-primary-l: #d1c196;
	--lt-accent: #e45e5a;
	--lt-bg: #ffffff;
	--lt-bg-alt: #e6dcd0;
	--lt-bg-adv: #f1ece8;
	--lt-bg-light: #f5f5f5;
	--lt-bg-off: #f1f2f2;
	--lt-bg-white: #ffffff;
	--lt-bg-form: #f0f1f5;
	--lt-nav-bg: #000000;
	--lt-footer-bg: #f5f5f5;
	--lt-text: #3c3c43;
	--lt-text-dark: #000000;
	--lt-text-dark2: #1a1a1a;
	--lt-text-mid: #404040;
	--lt-text-secondary: #666666;
	--lt-text-light: #8c8c8c;
	--lt-text-dim: #777777;
	--lt-text-muted: #999999;
	--lt-link: #093c71;
	--lt-blue: #0088ff;
	--lt-border: #eeeeee;
	--lt-adv-bg: #f1ece8;
	--lt-red: #ff0000;
	--lt-brown: #7d5f38;
	--lt-shadow: 0 2px 12px rgba(0, 0, 0, .07);
	--lt-shadow-md: 0 6px 24px rgba(0, 0, 0, .11);
	--lt-radius: 4px;
	--lt-transition: .25s ease;
	--lt-header-h: 137px;
}

/* ─── Reset / Base ────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	max-width: 100%;
}

body {
	font-family: 'Inter', 'Noto Sans TC', 'Noto Sans HK', Arial, sans-serif;
	color: var(--lt-text);
	background: var(--lt-bg-white);
	overflow-x: hidden;
	max-width: 100%;
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

a {
	color: var(--lt-text-dark);
	text-decoration: none;
	transition: color var(--lt-transition);
}

a:hover {
	color: var(--lt-primary);
}

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

/* ─── Top Announcement Bar ───────────────────────────────────────────────── */
.lt-top-adv {
	background: var(--lt-bg-adv);
	border-bottom: 1px solid #e0dbd5;
	padding: 0 43px;
	height: 45px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.lt-top-adv-inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	width: 100%;
	overflow: hidden;
}

.lt-top-adv-item {
	font-size: .75rem;
	font-weight: 400;
	color: var(--lt-text-dark);
	white-space: nowrap;
	flex-shrink: 0;
}

.lt-top-adv-item.main-promo {
	color: var(--lt-text-dark);
	font-size: 1rem;
}

.lt-top-adv-scroll {
	display: flex;
	align-items: center;
	gap: 4rem;
	animation: advScroll 30s linear infinite;
}

.lt-top-adv:hover .lt-top-adv-scroll {
	animation-play-state: paused;
}

@keyframes advScroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.lt-header {
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	position: sticky;
	top: 0;
	z-index: 1000;
	margin-bottom: -108px;
}

.lt-header-inner {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 0;
}

.lt-header-row1 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
	padding: 0 36px;
}

.lt-header-row2 {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.lt-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.lt-logo img {
	height: 34px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.lt-logo-text {
	font-size: 1.4rem;
	font-weight: 900;
	color: #ffffff;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.lt-logo-text strong {
	color: #ffffff;
}

.lt-nav {
	display: flex;
	align-items: stretch;
	justify-content: center;
	height: 40px;
	gap: 0;
	width: 100%;
}

.lt-nav-link {
	display: flex;
	align-items: center;
	padding: 0 20px;
	font-size: .875rem;
	font-weight: 400;
	color: rgba(255, 255, 255, .9);
	white-space: nowrap;
	text-decoration: none;
	height: 100%;
	transition: color var(--lt-transition);
	letter-spacing: .3px;
}

.lt-nav-link:hover {
	color: var(--lt-primary-l);
}

.lt-nav-link.active {
	color: var(--lt-primary-l);
	font-weight: 600;
}

.lt-header-right {
	display: flex;
	align-items: center;
	gap: .35rem;
	flex-shrink: 0;
}

.lt-icon-btn {
	position: relative;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .85);
	font-size: 1.05rem;
	transition: color var(--lt-transition);
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
}

.lt-icon-btn:hover {
	color: var(--lt-primary-l);
}

.lt-cart-badge {
	position: absolute;
	top: 2px;
	right: 2px;
	background: var(--lt-primary);
	color: #fff;
	font-size: .48rem;
	font-weight: 700;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.lt-lang-btn {
	font-size: .78rem;
	font-weight: 600;
	color: rgba(255, 255, 255, .85);
	border: none;
	padding: 0 4px;
	letter-spacing: .5px;
	background: none;
	cursor: pointer;
	width: auto;
}

.lt-lang-btn:hover {
	color: var(--lt-primary-l);
}

.lt-login-btn {
	background: var(--lt-primary);
	color: #fff;
	font-size: .95rem;
	font-weight: 700;
	padding: .4rem 1.4rem;
	border-radius: 3px;
	border: none;
	transition: all var(--lt-transition);
	white-space: nowrap;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	height: 40px;
	margin-left: .25rem;
}

.lt-login-btn:hover {
	background: var(--lt-primary-d);
	color: #fff;
}

.lt-nav-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 1.4rem;
	cursor: pointer;
	padding: 0;
}

.lt-search-wrap {
	display: none;
}

.lt-icon-btns {
	display: contents;
}

/* Social links row — only shown inside mobile hamburger menu */
.lt-nav-social {
	display: none;
}

/* ─── Mobile Menu Overlay ────────────────────────────────────────────────── */
/* Positioned outside the header to avoid backdrop-filter stacking context.   */
.lt-mobile-menu {
	display: none; /* hidden by default; JS adds .open */
	position: fixed;
	top: 68px; /* matches header row1 height */
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.97);
	z-index: 998; /* below header (1000) */
	flex-direction: column;
	overflow-y: auto;
	padding: 0.5rem 1.5rem 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lt-mobile-menu.open {
	display: flex;
}

.lt-mobile-menu-link {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-decoration: none;
	padding: 0.85rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	display: block;
	transition: color var(--lt-transition);
}

.lt-mobile-menu-link:hover,
.lt-mobile-menu-link.active {
	color: var(--lt-primary-l);
}

.lt-mobile-menu-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0 0.5rem;
	margin-top: 0.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.lt-mobile-lang-btn {
	color: rgba(255, 255, 255, 0.85) !important;
}

.lt-mobile-login-btn {
	height: 36px;
	padding: 0.35rem 1.25rem;
	font-size: 0.9rem;
}

.lt-mobile-menu-social {
	display: flex;
	gap: 0.85rem;
	padding-top: 1rem;
}

/* Desktop-only elements: visible by default, hidden on mobile */
.lt-desktop-only {
	display: inline-flex;
}

/* Mobile menu never appears on desktop */
@media (min-width: 768px) {
	.lt-mobile-menu {
		display: none !important;
	}
}

/* ─── Hero Section ────────────────────────────────────────────────────────── */
.lt-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #f5f5f5;
	line-height: 0;
	user-select: none;
	margin-top: 0;
}

.lt-hero-track {
	display: flex;
	transition: transform .6s ease;
}

.lt-hero-slide {
	flex: 0 0 100%;
	position: relative;
	line-height: 0;
}

.lt-hero-slide img {
	width: 100%;
	height: calc(100vh - 45px);
	min-height: 560px;
	max-height: 960px;
	object-fit: cover;
	display: block;
}

.lt-hero-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0 0 5rem;
}

.lt-btn-order {
	display: inline-block;
	background: var(--lt-primary);
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	padding: .9rem 3.5rem;
	border-radius: 3px;
	letter-spacing: 1px;
	transition: all var(--lt-transition);
	line-height: 1;
	min-width: 180px;
	text-align: center;
}

.lt-btn-order:hover {
	background: var(--lt-primary-d);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(170, 150, 98, .5);
}

.lt-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, .8);
	border: none;
	color: var(--lt-text-dark);
	font-size: 1rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--lt-transition);
	padding: 0;
}

.lt-hero-arrow:hover {
	background: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.lt-hero-prev {
	left: 1.5rem;
}

.lt-hero-next {
	right: 1.5rem;
}

.lt-hero-dots {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: .4rem;
	z-index: 10;
}

.lt-hero-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .5);
	cursor: pointer;
	transition: all var(--lt-transition);
	border: none;
	display: block;
}

.lt-hero-dot.active {
	background: #fff;
	width: 24px;
	border-radius: 4px;
}

/* ─── Section Common ─────────────────────────────────────────────────────── */
.lt-section {
	padding: 60px 43px;
}

.lt-section-inner {
	max-width: 1440px;
	margin: 0 auto;
}

.lt-section-title {
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--lt-primary);
	margin: 0 0 .75rem;
	line-height: 1.15;
}

.lt-section-subtitle {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--lt-text);
	margin-bottom: 2rem;
	line-height: 1.5;
}

/* ─── Featured Products — 今期推薦 ───────────────────────────────────────── */
.lt-featured-section {
	background: rgba(241, 236, 232, 1);
	position: relative;
	overflow: hidden;
	min-height: 644px;
}

.lt-featured-hd {
	height: 128px;
	padding: 50px 269px 25px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	position: relative;
}

@media (max-width: 1919px) {
	.lt-featured-hd {
		padding: 50px 14.01% 25px;
	}
}

.lt-featured-title-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.lt-featured-icon {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.lt-featured-icon img {
	width: 52px;
	height: 52px;
	object-fit: contain;
	display: block;
}

.lt-featured-title {
	color: rgba(170, 150, 98, 1);
	font-size: 44px;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	margin: 0;
	line-height: 1;
	white-space: nowrap;
}

.lt-featured-more {
	color: rgba(136, 136, 136, 1);
	font-size: 20px;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	align-self: flex-end;
	padding-bottom: 2px;
	transition: color var(--lt-transition);
}

.lt-featured-more:hover {
	color: rgba(170, 150, 98, 1);
}

/* Cards viewport — clips to exactly 4 cards */
.lt-feat-cards-row {
	height: fit-content;
	overflow: hidden;
	margin-left: 269px;
	width: calc(100% - 538px);
}

@media (max-width: 1919px) {
	.lt-feat-cards-row {
		margin-left: 14.01%;
		width: calc(100% - 28.02%);
	}
}

.lt-feat-track {
	display: flex;
	align-items: flex-start;
	gap: 60px;
	height: fit-content;
	transition: transform .4s ease;
	will-change: transform;
}

/* Arrows */
.lt-feat-arrow {
	position: absolute;
	width: 64px;
	height: 64px;
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 278px;
	transform: translateY(-50%);
	opacity: 0.8;
	transition: opacity var(--lt-transition);
}

.lt-feat-arrow:hover {
	opacity: 1;
}

.lt-feat-arrow img {
	width: 64px;
	height: 64px;
	display: block;
}

.lt-feat-prev {
	left: 32px;
}

.lt-feat-next {
	right: 32px;
}

/* Bottom spacer */
.lt-featured-bottom {
	height: 78px;
}

/* ── Individual card ── */
/* Width is set dynamically by JS (initCardWidths) because percentage flex-basis
   on a flex container with no explicit width resolves to auto per CSS spec.    */
.lt-feat-card {
	flex: 0 0 auto;
	min-width: 0;
	height: fit-content;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.lt-feat-card:hover .lt-feat-img-box {
	box-shadow: 0 8px 28px rgba(0, 0, 0, .15);
}

/* White image box — square, border-radius 12px */
.lt-feat-img-box {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #ffffff;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	flex-shrink: 0;
	overflow: hidden;
	transition: box-shadow var(--lt-transition);
}

/* Portrait image inner — 75.33% wide (226/300) */
.lt-feat-img-inner {
	width: 75.33%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	overflow: hidden;
}

.lt-feat-img-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Heart — absolute top-left inside image box */
.lt-feat-heart-area {
	position: absolute;
	top: 0;
	left: 15.5px;
	width: 40px;
	padding-top: 13px;
	z-index: 2;
}

.lt-feat-heart {
	width: 40px;
	height: 40px;
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
	display: block;
	opacity: 0.45;
	transition: opacity var(--lt-transition);
}

.lt-feat-heart:hover {
	opacity: 1;
}

.lt-feat-heart img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	display: block;
}

/* Tags — below the image box, first item in .lt-feat-body (normal flow) */
.lt-feat-tags {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

/* Tag pills */
.lt-tag-pill {
	height: 25px;
	border-radius: 4px;
	padding: 2px 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	flex-shrink: 0;
	white-space: nowrap;
	line-height: 1;
}

.lt-tag-outline {
	background: #ffffff;
	color: #c2a475;
	border: 1px solid #c2a475;
}

.lt-tag-red {
	background: #e45e5a;
	color: #ffffff;
	border: none;
}

.lt-tag-amber {
	background: #aa9662;
	color: #ffffff;
	border: none;
}

.lt-tag-green {
	background: #4caf50;
	color: #ffffff;
	border: none;
}

.lt-tag-blue {
	background: var(--lt-blue);
	color: #ffffff;
	border: none;
}

/* Card body — name + price on section bg */
.lt-feat-body {
	width: 100%;
	padding-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.lt-feat-name {
	color: #000000;
	font-size: 18px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	line-height: 1.4;
	width: 100%;
}

.lt-feat-price-row {
	padding-top: 6px;
}

.lt-feat-price {
	color: #aa9662;
	font-size: 22px;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
}

.lt-feat-price-sale {
	color: #e45e5a;
	font-size: 22px;
	font-weight: 700;
}

.lt-feat-price-orig {
	color: #8c8c8c;
	font-size: 16px;
	text-decoration: line-through;
	margin-left: 6px;
}

/* ─── Legacy product classes ─────────────────────────────────────────────── */
.lt-product-item {
	background: var(--lt-bg-white);
	border-radius: var(--lt-radius);
	overflow: hidden;
	transition: box-shadow var(--lt-transition), transform var(--lt-transition);
	border: none;
}

.lt-product-item:hover {
	box-shadow: var(--lt-shadow-md);
	transform: translateY(-4px);
}

.lt-product-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.lt-product-img-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1/1;
	background: var(--lt-bg);
}

.lt-product-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.lt-product-item:hover .lt-product-img-wrap img {
	transform: scale(1.06);
}

.lt-product-tag {
	position: absolute;
	top: .6rem;
	left: .6rem;
	font-size: .7rem;
	font-weight: 700;
	padding: .22rem .6rem;
	border-radius: 2px;
	text-transform: uppercase;
	letter-spacing: .3px;
	z-index: 2;
	color: #fff;
	background: var(--lt-text-light);
}

.lt-tag-new {
	background: var(--lt-primary);
}

.lt-tag-hot {
	background: var(--lt-accent);
}

.lt-tag-sale {
	background: var(--lt-accent);
}

.lt-tag-limited {
	background: #a67c52;
}

.lt-tag-bestseller {
	background: var(--lt-primary-d);
}

.lt-product-info {
	padding: 1rem;
}

.lt-product-name {
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--lt-text-dark);
	margin-bottom: .5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.4;
}

.lt-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.lt-product-price {
	display: flex;
	align-items: baseline;
	gap: .4rem;
	flex-wrap: wrap;
}

.lt-price-main {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--lt-primary);
}

.lt-price-sale {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--lt-accent);
}

.lt-price-original {
	font-size: 1rem;
	color: var(--lt-text-light);
	text-decoration: line-through;
}

/* ─── About Preview Section ──────────────────────────────────────────────── */
.lt-about-section {
	background: var(--lt-bg-alt);
	padding: 60px 43px;
}

.lt-about-inner {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.lt-about-text p {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--lt-text);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.lt-btn-more {
	display: inline-block;
	background: var(--lt-primary);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	padding: .65rem 2rem;
	border-radius: 3px;
	transition: all var(--lt-transition);
	text-decoration: none;
}

.lt-btn-more:hover {
	background: var(--lt-primary-d);
	color: #fff;
	transform: translateY(-2px);
}

/* ─── Products Light Section ─────────────────────────────────────────────── */
.lt-products-light {
	background: var(--lt-bg-light);
	padding: 60px 43px;
}

.lt-products-light-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

/* ─── Contact Section ────────────────────────────────────────────────────── */
.lt-contact-section {
	background: var(--lt-bg-white);
	padding: 60px 43px;
}

.lt-contact-inner {
	max-width: 900px;
	margin: 0 auto;
}

.lt-form-group {
	margin-bottom: 1.25rem;
}

.lt-form-label {
	display: block;
	font-size: .875rem;
	font-weight: 400;
	color: var(--lt-text-mid);
	margin-bottom: .4rem;
}

.lt-form-control {
	width: 100%;
	border: 1.5px solid var(--lt-border);
	border-radius: 4px;
	padding: .7rem 1rem;
	font-size: .875rem;
	font-family: inherit;
	color: var(--lt-text);
	background: var(--lt-bg-white);
	outline: none;
	transition: border-color var(--lt-transition), box-shadow var(--lt-transition);
}

.lt-form-control::placeholder {
	color: var(--lt-text-light);
}

.lt-form-control:focus {
	border-color: var(--lt-primary);
	box-shadow: 0 0 0 3px rgba(170, 150, 98, .15);
}

textarea.lt-form-control {
	resize: vertical;
	min-height: 120px;
}

.lt-btn-submit {
	background: var(--lt-primary);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	padding: .7rem 2.5rem;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	transition: all var(--lt-transition);
}

.lt-btn-submit:hover {
	background: var(--lt-primary-d);
	transform: translateY(-1px);
}

/* ─── News Section ───────────────────────────────────────────────────────── */
.lt-news-section {
	background: var(--lt-bg-white);
	padding: 60px 43px;
}

.lt-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.lt-news-item {
	background: var(--lt-bg-white);
	border-radius: var(--lt-radius);
	overflow: hidden;
	transition: box-shadow var(--lt-transition), transform var(--lt-transition);
}

.lt-news-item:hover {
	box-shadow: var(--lt-shadow-md);
	transform: translateY(-4px);
}

.lt-news-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.lt-news-img-wrap {
	overflow: hidden;
	aspect-ratio: 4/3;
	background: var(--lt-bg);
}

.lt-news-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.lt-news-item:hover .lt-news-img-wrap img {
	transform: scale(1.06);
}

.lt-news-body {
	padding: 1.25rem;
}

.lt-news-title {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--lt-text-dark);
	margin-bottom: .5rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.5;
}

.lt-news-date {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--lt-text);
	margin-bottom: .75rem;
}

.lt-news-more {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--lt-primary);
	text-decoration: none;
	transition: color var(--lt-transition);
}

.lt-news-more:hover {
	color: var(--lt-primary-d);
}

/* ─── Latest News Section (Home — 最新消息) ──────────────────────────────── */
.lt-latest-news-section {
	background: #f9f7f2;
	padding: 40px 0 80px;
	position: relative;
	overflow: hidden;
}

.lt-latest-news-container {
	overflow: hidden;
	margin-left: 269px;
	width: calc(100% - 538px);
}

@media (max-width: 1919px) {
	.lt-latest-news-container {
		margin-left: 14.01%;
		width: calc(100% - 28.02%);
	}
}

/* Section Header — matches lt-featured-hd layout */
.lt-latest-news-header {
	height: 128px;
	padding: 50px 269px 25px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	position: relative;
}

@media (max-width: 1919px) {
	.lt-latest-news-header {
		padding: 50px 14.01% 25px;
	}
}

.lt-latest-news-header-left {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.lt-latest-news-icon {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
}

.lt-latest-news-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.lt-latest-news-title {
	color: rgba(170, 150, 98, 1);
	font-size: 44px;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	margin: 0;
	line-height: 1;
	white-space: nowrap;
}

.lt-latest-news-more {
	color: rgba(136, 136, 136, 1);
	font-size: 20px;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	align-self: flex-end;
	padding-bottom: 2px;
	transition: color var(--lt-transition);
}

.lt-latest-news-more:hover {
	color: rgba(170, 150, 98, 1);
}

/* News Viewport */
.lt-latest-news-viewport {
	position: relative;
}

/* News Arrow Buttons — matches lt-feat-arrow style */
.lt-latest-news-arrow {
	position: absolute;
	width: 64px;
	height: 64px;
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.8;
	transition: opacity var(--lt-transition);
}

.lt-latest-news-arrow:hover {
	opacity: 1;
}

.lt-latest-news-arrow img {
	width: 64px;
	height: 64px;
	display: block;
}

.lt-latest-news-prev {
	left: 32px;
}

.lt-latest-news-next {
	right: 32px;
}

/* News Cards Container */
.lt-latest-news-cards-wrapper {
	overflow: hidden;
	margin: 0;
	padding: 0;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #d4c99a transparent;
}

.lt-latest-news-cards-wrapper::-webkit-scrollbar {
	height: 6px;
}

.lt-latest-news-cards-wrapper::-webkit-scrollbar-track {
	background: transparent;
}

.lt-latest-news-cards-wrapper::-webkit-scrollbar-thumb {
	background: #d4c99a;
	border-radius: 3px;
}

.lt-latest-news-cards {
	display: flex;
	gap: 28px;
	padding-bottom: 12px;
}

/* Individual News Card */
.lt-latest-news-card {
	flex: 0 0 340px;
	min-width: 300px;
	background: #fff;
	border: 1.5px solid #d4cc8e;
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow .3s ease, transform .3s ease;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.lt-latest-news-card:hover {
	box-shadow: 0 8px 30px rgba(156, 137, 94, 0.15);
	transform: translateY(-3px);
}

/* Card Image */
.lt-latest-news-card-image {
	width: 100%;
	height: 260px;
	overflow: hidden;
	flex-shrink: 0;
}

.lt-latest-news-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.lt-latest-news-card:hover .lt-latest-news-card-image img {
	transform: scale(1.05);
}

/* Card Content */
.lt-latest-news-card-content {
	padding: 22px 24px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.lt-latest-news-card-title {
	font-size: 22px;
	font-weight: 700;
	color: #4a3c28;
	line-height: 1.35;
	margin: 0 0 14px;
	letter-spacing: 0.5px;
}

.lt-latest-news-card-desc {
	font-size: 14px;
	line-height: 1.7;
	color: #777;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0 0 14px;
}

.lt-latest-news-card-date {
	font-size: 15px;
	font-weight: 600;
	color: #e07c4a;
	letter-spacing: 0.5px;
}

/* Latest News — Tablet */
@media (max-width: 1024px) {
	.lt-latest-news-title {
		font-size: 32px;
	}

	.lt-latest-news-card {
		flex: 0 0 300px;
		min-width: 280px;
	}

	.lt-latest-news-card-image {
		height: 220px;
	}

	.lt-latest-news-card-title {
		font-size: 20px;
	}
}

/* Latest News — Mobile */
@media (max-width: 767px) {
	.lt-latest-news-container {
		margin-left: 0;
		width: 100%;
		padding: 0 1rem;
		overflow-x: auto;
	}

	.lt-latest-news-header {
		height: auto;
		padding: 20px 1rem 12px;
	}

	.lt-latest-news-icon {
		width: 36px;
		height: 36px;
	}

	.lt-latest-news-title {
		font-size: 26px;
	}

	.lt-latest-news-more {
		font-size: 15px;
	}

	.lt-latest-news-card {
		flex: 0 0 270px;
		min-width: 260px;
	}

	.lt-latest-news-card-image {
		height: 190px;
	}

	.lt-latest-news-card-content {
		padding: 16px 18px 16px;
	}

	.lt-latest-news-card-title {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.lt-latest-news-card-desc {
		font-size: 13px;
		-webkit-line-clamp: 3;
	}

	.lt-latest-news-card-date {
		font-size: 14px;
	}

	.lt-latest-news-arrow {
		display: none;
	}

	.lt-latest-news-cards-wrapper {
		overflow-x: auto;
	}
}

/* ─── PETisserie Section ─────────────────────────────────────────────────── */
.lt-pet-section {
	background: #f5f5f5;
	padding: 60px 0 50px;
	overflow: hidden;
}

.lt-pet-inner {
	display: flex;
	align-items: stretch;
	min-height: 520px;
}

/* Left brand area */
.lt-pet-brand {
	flex: 0 0 40%;
	max-width: 40%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 60px;
}

.lt-pet-brand-title {
	font-family: 'Inter', sans-serif;
	font-size: 72px;
	font-weight: 900;
	color: #3c3c43;
	letter-spacing: 3px;
	margin: 0 0 10px;
	line-height: 1.1;
	text-align: center;
	white-space: nowrap;
}

.lt-pet-brand-title sup {
	font-size: 28px;
	font-weight: 400;
	vertical-align: super;
	top: -0.4em;
	position: relative;
}

.lt-pet-brand-sub {
	font-family: 'Inter', sans-serif;
	font-size: 32px;
	font-weight: 400;
	color: #6b6b6b;
	letter-spacing: 8px;
	margin: 0 0 36px;
	text-align: center;
}

.lt-pet-brand-icon {
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lt-pet-brand-icon img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}

/* Right slider area */
.lt-pet-slider-wrap {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	padding-top: 0;
}

.lt-pet-slider-viewport {
	width: 100%;
	overflow: hidden;
}

.lt-pet-slider-track {
	display: flex;
	gap: 28px;
	transition: transform .5s ease;
	will-change: transform;
}

/* Individual pet card */
.lt-pet-card {
	flex: 0 0 280px;
	min-width: 280px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.lt-pet-card:hover .lt-pet-card-img-box {
	box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

/* Card image box */
.lt-pet-card-img-box {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #ffffff;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	transition: box-shadow var(--lt-transition);
}

.lt-pet-card-img-inner {
	width: 75%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.lt-pet-card-img-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Heart icon */
.lt-pet-card-heart-area {
	position: absolute;
	top: 0;
	left: 15px;
	width: 40px;
	padding-top: 13px;
	z-index: 2;
}

.lt-pet-card-heart {
	width: 40px;
	height: 40px;
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
	display: block;
	opacity: 0.45;
	transition: opacity var(--lt-transition);
}

.lt-pet-card-heart:hover {
	opacity: 1;
}

.lt-pet-card-heart img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	display: block;
}

/* Card body */
.lt-pet-card-body {
	width: 100%;
	padding-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.lt-pet-card-tags {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.lt-pet-card-name {
	color: #000000;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	line-height: 1.4;
}

.lt-pet-card-price {
	color: #aa9662;
	font-size: 20px;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	padding-top: 4px;
}

/* Bottom CTA */
.lt-pet-cta {
	display: flex;
	justify-content: center;
	padding: 50px 0 10px;
}

.lt-pet-cta-btn {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: #3c3c43;
	background: transparent;
	border: 1.5px solid #999999;
	border-radius: 4px;
	padding: 14px 100px;
	text-decoration: none;
	text-align: center;
	letter-spacing: 4px;
	transition: all var(--lt-transition);
}

.lt-pet-cta-btn:hover {
	background: var(--lt-primary);
	border-color: var(--lt-primary);
	color: #fff;
}

/* PETisserie — Tablet */
@media (max-width: 1200px) {
	.lt-pet-brand-title {
		font-size: 56px;
	}

	.lt-pet-brand-sub {
		font-size: 24px;
		letter-spacing: 5px;
	}

	.lt-pet-brand-icon {
		width: 120px;
	}

	.lt-pet-card {
		flex: 0 0 240px;
		min-width: 240px;
	}
}

@media (max-width: 1024px) {
	.lt-pet-brand {
		flex: 0 0 35%;
		max-width: 35%;
		padding: 30px 30px;
	}

	.lt-pet-brand-title {
		font-size: 44px;
	}

	.lt-pet-brand-sub {
		font-size: 20px;
		letter-spacing: 4px;
		margin-bottom: 24px;
	}

	.lt-pet-brand-icon {
		width: 100px;
	}

	.lt-pet-card {
		flex: 0 0 220px;
		min-width: 220px;
	}
}

/* PETisserie — Mobile */
@media (max-width: 767px) {
	.lt-pet-section {
		padding: 30px 0 30px;
	}

	.lt-pet-inner {
		flex-direction: column;
		min-height: auto;
	}

	.lt-pet-brand {
		flex: none;
		max-width: 100%;
		padding: 20px 1rem 30px;
	}

	.lt-pet-brand-title {
		font-size: 36px;
	}

	.lt-pet-brand-sub {
		font-size: 16px;
		letter-spacing: 3px;
		margin-bottom: 16px;
	}

	/* Fix 5: Bigger pet logo on mobile */
	.lt-pet-brand-icon {
		width: 180px;
	}

	.lt-pet-brand-icon img {
		width: 100%;
		height: auto;
	}

	/* Fix 6: Pet slider — scroll like news section */
	.lt-pet-slider-wrap {
		padding: 0 1rem;
		overflow: visible;
	}

	.lt-pet-slider-viewport {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.lt-pet-slider-viewport::-webkit-scrollbar {
		display: none;
	}

	.lt-pet-slider-track {
		gap: 16px;
		touch-action: pan-x;
		transition: none;
		will-change: auto;
		transform: none !important;
	}

	.lt-pet-card {
		flex: 0 0 200px;
		min-width: 200px;
	}

	/* Fix 7: Button margin above the big image */
	.lt-pet-cta {
		padding: 30px 1rem 24px;
	}

	.lt-pet-cta-btn {
		padding: 12px 50px;
		font-size: 16px;
		letter-spacing: 2px;
		width: 100%;
		max-width: 280px;
	}
}

/* ─── Page Hero Banner ───────────────────────────────────────────────────── */
.lt-page-hero {
	position: relative;
	width: 100%;
	min-height: 400px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.lt-page-hero-bg {
	position: absolute;
	inset: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
	filter: brightness(.6);
}

.lt-page-hero-content {
	position: relative;
	z-index: 2;
	padding: 3rem 43px 3.5rem;
	width: 100%;
}

.lt-page-hero h1 {
	font-size: 4rem;
	font-weight: 400;
	color: var(--lt-link);
	margin: 0 0 .5rem;
}

.lt-page-hero p {
	font-size: 2.5rem;
	font-weight: 400;
	color: var(--lt-link);
	margin: 0;
}

/* ─── About Page ─────────────────────────────────────────────────────────── */
.lt-about-hero {
	position: relative;
	width: 100%;
	height: 807px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}

.lt-about-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.55);
}

.lt-about-hero-text {
	position: relative;
	z-index: 2;
	padding: 3rem 43px 3.5rem;
}

.lt-about-hero-title {
	font-size: 7.28rem;
	font-weight: 400;
	color: #ffffff;
	margin: 0 0 1rem;
	line-height: 1;
}

.lt-about-hero-sub {
	font-size: 4rem;
	font-weight: 400;
	color: var(--lt-link);
	margin: 0;
}

.lt-about-stories {
	background: var(--lt-bg-light);
	padding: 60px 43px;
}

.lt-about-story-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 1440px;
	margin: 0 auto;
}

.lt-story-card {
	background: var(--lt-bg-white);
	border-radius: var(--lt-radius);
	overflow: hidden;
	padding: 1.75rem;
}

.lt-story-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lt-primary);
	margin: 0 0 .75rem;
}

.lt-story-card p {
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--lt-text-dark);
	line-height: 1.65;
	margin: 0;
}

.lt-story-card-img {
	aspect-ratio: 4/3;
	overflow: hidden;
	margin-bottom: 1.25rem;
	border-radius: 4px;
}

.lt-story-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ─── Products Page ──────────────────────────────────────────────────────── */
.lt-products-page {
	background: var(--lt-bg-white);
	padding: 0;
}

.lt-products-page-inner {
	display: grid;
	grid-template-columns: 330px 1fr;
	min-height: 80vh;
}

.lt-filter-sidebar {
	background: var(--lt-bg-white);
	border-right: 1px solid var(--lt-border);
	padding: 2rem 1.5rem;
	position: sticky;
	top: var(--lt-header-h);
	max-height: calc(100vh - var(--lt-header-h));
	overflow-y: auto;
}

.lt-filter-group {
	margin-bottom: 1.5rem;
}

.lt-filter-label {
	font-size: 1rem;
	font-weight: 400;
	color: var(--lt-text-mid);
	margin-bottom: .5rem;
	display: flex;
	align-items: center;
	gap: .25rem;
}

.lt-filter-label .lt-req {
	color: var(--lt-red);
}

.lt-filter-option {
	display: flex;
	align-items: center;
	gap: .5rem;
	padding: .3rem 0;
	font-size: .875rem;
	color: var(--lt-text-light);
	cursor: pointer;
	transition: color var(--lt-transition);
}

.lt-filter-option:hover,
.lt-filter-option.active {
	color: var(--lt-text-dark);
}

.lt-filter-search {
	width: 100%;
	border: 1.5px solid var(--lt-border);
	border-radius: 4px;
	padding: .65rem .85rem;
	font-size: .875rem;
	background: var(--lt-bg-white);
	color: var(--lt-text);
	outline: none;
	font-family: inherit;
	transition: border-color var(--lt-transition);
}

.lt-filter-search:focus {
	border-color: var(--lt-primary);
}

.lt-filter-search::placeholder {
	color: var(--lt-text-light);
}

.lt-btn-reset {
	width: 100%;
	background: var(--lt-primary);
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: .5rem;
	font-size: 1rem;
	font-weight: 400;
	cursor: pointer;
	margin-top: 1rem;
	transition: background var(--lt-transition);
	text-decoration: none;
	display: block;
	text-align: center;
}

.lt-btn-reset:hover {
	background: var(--lt-primary-d);
	color: #fff;
}

.lt-products-content {
	padding: 2rem 2rem 3rem;
}

.lt-products-promo {
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--lt-primary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem;
	background: #fff8ed;
	border-left: 3px solid var(--lt-primary);
	border-radius: 0 4px 4px 0;
}

.lt-products-content-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.lt-products-results-info {
	font-size: .9rem;
	color: var(--lt-text-light);
	margin-bottom: 1.25rem;
}

.lt-products-results-info strong {
	color: var(--lt-text-dark);
}

/* ─── News Page ──────────────────────────────────────────────────────────── */
.lt-news-hero {
	background: var(--lt-bg-white);
	padding: 60px 43px 40px;
}

.lt-news-hero-inner {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	align-items: end;
}

.lt-news-hero-tagline {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--lt-text-dark);
	margin-bottom: .5rem;
}

.lt-news-hero-title {
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--lt-text-dark);
	line-height: 1.2;
	margin-bottom: 1rem;
}

.lt-news-hero-desc {
	font-size: 1rem;
	font-weight: 400;
	color: var(--lt-text);
	line-height: 1.6;
}

.lt-news-section-header {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 43px 1.5rem;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.lt-news-section-title {
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--lt-text-dark);
}

.lt-news-page-grid {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 43px 60px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

/* ─── Branches Page ──────────────────────────────────────────────────────── */
.lt-stores-hero {
	background: var(--lt-bg-adv);
	padding: 60px 43px;
	text-align: center;
}

.lt-stores-hero h1 {
	font-size: 4rem;
	font-weight: 400;
	color: var(--lt-text-dark);
	margin-bottom: 1rem;
}

.lt-stores-hero p {
	font-size: 2.5rem;
	font-weight: 400;
	color: var(--lt-text-dark);
}

.lt-stores-grid-section {
	background: var(--lt-bg-off);
	padding: 60px 43px;
}

.lt-stores-grid {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.lt-store-card {
	background: var(--lt-bg-white);
	border-radius: var(--lt-radius);
	overflow: hidden;
	box-shadow: var(--lt-shadow);
	transition: box-shadow var(--lt-transition);
}

.lt-store-card:hover {
	box-shadow: var(--lt-shadow-md);
}

.lt-store-card-img {
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--lt-bg);
}

.lt-store-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lt-store-card-body {
	padding: 1.5rem;
}

.lt-store-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lt-text-dark);
	margin: 0 0 .5rem;
}

.lt-store-address {
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--lt-text);
	margin: 0 0 .75rem;
}

.lt-store-hours {
	font-size: 1rem;
	color: var(--lt-text-light);
	margin: 0;
}

/* ─── Auth Pages ─────────────────────────────────────────────────────────── */
.lt-auth-page {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 655px 1fr;
	background: var(--lt-bg-white);
}

.lt-auth-sidebar {
	background: var(--lt-bg-form);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 3.5rem;
	position: relative;
	overflow: hidden;
}

.lt-auth-sidebar-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .2;
}

.lt-auth-sidebar-content {
	position: relative;
	z-index: 2;
}

.lt-auth-sidebar h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--lt-text-dark);
	margin-bottom: 1rem;
}

.lt-auth-sidebar p {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--lt-text);
	line-height: 1.65;
}

.lt-auth-main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 3.5rem;
	overflow-y: auto;
}

.lt-auth-main h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--lt-text-dark);
	margin-bottom: 2rem;
}

.lt-auth-divider {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1.5rem 0;
	color: var(--lt-text-light);
	font-size: .875rem;
}

.lt-auth-divider::before,
.lt-auth-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--lt-border);
}

.lt-btn-google {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .65rem;
	width: 100%;
	border: 1.5px solid var(--lt-border);
	border-radius: 4px;
	padding: .7rem;
	background: var(--lt-bg-white);
	font-size: .9rem;
	font-weight: 600;
	color: var(--lt-text-dark);
	cursor: pointer;
	transition: all var(--lt-transition);
}

.lt-btn-google:hover {
	border-color: var(--lt-primary);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.lt-auth-link {
	color: var(--lt-link);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--lt-transition);
}

.lt-auth-link:hover {
	color: var(--lt-primary);
}

.lt-auth-footer-text {
	font-size: .875rem;
	color: var(--lt-text-light);
	text-align: center;
	margin-top: 1.5rem;
}

.lt-checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-size: .875rem;
	color: var(--lt-text);
	margin-bottom: .75rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.lt-footer {
	background: var(--lt-footer-bg);
	padding: 3rem 43px;
}

.lt-footer-inner {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
}

.lt-footer-col {
	padding: 1rem 2rem 1rem 0;
}

.lt-footer-col h6 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lt-primary);
	margin: 0 0 1rem;
}

.lt-footer-desc {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--lt-text);
	line-height: 1.7;
	margin-bottom: .75rem;
}

.lt-footer-contact {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--lt-text);
	line-height: 1.8;
}

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

.lt-footer-links li {
	margin-bottom: .45rem;
}

.lt-footer-links li a {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--lt-link);
	transition: color var(--lt-transition);
}

.lt-footer-links li a:hover {
	color: var(--lt-primary);
}

.lt-footer-social {
	display: flex;
	gap: .75rem;
	margin-bottom: 1.25rem;
}

.lt-footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .08);
	color: var(--lt-text);
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--lt-transition);
}

.lt-footer-social a:hover {
	background: var(--lt-primary);
	color: #fff;
}

.lt-footer-lang {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--lt-text);
	display: block;
	margin-bottom: .5rem;
}

.lt-footer-lang:hover {
	color: var(--lt-primary);
}

.lt-footer-policy {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--lt-text);
}

.lt-footer-policy a {
	color: var(--lt-text);
	transition: color var(--lt-transition);
}

.lt-footer-policy a:hover {
	color: var(--lt-primary);
}

/* ─── FABs ────────────────────────────────────────────────────────────────── */
.lt-fab-group {
	position: fixed;
	right: 1.5rem;
	bottom: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: .6rem;
	z-index: 999;
}

.lt-fab {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--lt-primary);
	color: #fff;
	border: none;
	font-size: 1.1rem;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(170, 150, 98, .45);
	transition: all var(--lt-transition);
}

.lt-fab.visible {
	display: flex;
}

.lt-fab:hover {
	background: var(--lt-primary-d);
	transform: translateY(-2px);
}

.lt-fab-group .lt-fab:last-child {
	display: flex;
	background: #25d366;
	box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
}

.lt-fab-group .lt-fab:last-child:hover {
	background: #1eb858;
}

/* ─── Alerts ─────────────────────────────────────────────────────────────── */
.lt-alert {
	border-radius: var(--lt-radius);
	padding: .9rem 1.2rem;
	margin: 1rem 43px;
	display: flex;
	align-items: center;
	gap: .65rem;
	font-size: .92rem;
	font-weight: 500;
}

.lt-alert-success {
	background: #d4edda;
	color: #155724;
}

.lt-alert-error {
	background: #f8d7da;
	color: #721c24;
}

.lt-alert-warning {
	background: #fff3cd;
	color: #856404;
}

/* ─── Product Card (listing) ─────────────────────────────────────────────── */
.product-card {
	background: var(--lt-bg-white);
	border-radius: var(--lt-radius);
	overflow: hidden;
	transition: all var(--lt-transition);
	border: 1px solid var(--lt-border);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--lt-shadow-md);
	border-color: transparent;
}

.product-card-img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1/1;
	background: var(--lt-bg);
}

.product-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

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

.product-badge {
	position: absolute;
	top: .6rem;
	left: .6rem;
	font-size: .68rem;
	font-weight: 700;
	padding: .2rem .6rem;
	border-radius: 2px;
	text-transform: uppercase;
	color: #fff;
	background: var(--lt-text-light);
	letter-spacing: .3px;
}

.product-badge.new {
	background: var(--lt-primary);
}

.product-badge.sale {
	background: var(--lt-accent);
}

.product-card-actions {
	position: absolute;
	bottom: -50px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: .4rem;
	padding: .6rem;
	background: linear-gradient(transparent, rgba(0, 0, 0, .35));
	transition: bottom var(--lt-transition);
}

.product-card:hover .product-card-actions {
	bottom: 0;
}

.product-action-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lt-text-dark);
	font-size: .9rem;
	transition: all var(--lt-transition);
	cursor: pointer;
}

.product-action-btn:hover {
	background: var(--lt-primary);
	color: #fff;
}

.product-card-body {
	padding: 1rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-category-tag {
	font-size: .7rem;
	color: var(--lt-text-light);
	text-transform: uppercase;
	letter-spacing: .6px;
	font-weight: 600;
	margin-bottom: .3rem;
}

.product-card-body h5 {
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--lt-text-dark);
	margin-bottom: .4rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.4;
}

.product-price {
	display: flex;
	align-items: center;
	gap: .4rem;
	margin-top: auto;
}

.price-current {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--lt-primary);
}

.price-original {
	font-size: 1rem;
	color: var(--lt-text-light);
	text-decoration: line-through;
}

.price-sale {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--lt-accent);
}

.btn-add-cart {
	margin-top: .65rem;
	background: var(--lt-bg);
	border: 1px solid var(--lt-border);
	border-radius: 3px;
	padding: .45rem;
	font-size: .82rem;
	font-weight: 600;
	color: var(--lt-text-dark);
	width: 100%;
	transition: all var(--lt-transition);
	cursor: pointer;
}

.btn-add-cart:hover {
	background: var(--lt-primary);
	color: #fff;
	border-color: var(--lt-primary);
}

/* ─── Product Detail ─────────────────────────────────────────────────────── */
.lt-product-detail {
	background: var(--lt-bg-white);
	padding: 3rem 43px;
}

.lt-product-detail-inner {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.product-detail-img {
	border-radius: var(--lt-radius);
	overflow: hidden;
	background: var(--lt-bg);
	aspect-ratio: 1/1;
}

.product-detail-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-detail-price-current {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--lt-primary);
}

.product-detail-price-original {
	font-size: 1.1rem;
	color: var(--lt-text-light);
	text-decoration: line-through;
}

.product-detail-price-sale {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--lt-accent);
}

.quantity-selector {
	display: flex;
	align-items: center;
	gap: .65rem;
}

.qty-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid var(--lt-border);
	background: #fff;
	font-size: 1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--lt-transition);
}

.qty-btn:hover {
	border-color: var(--lt-primary);
	color: var(--lt-primary);
}

.qty-input {
	width: 56px;
	text-align: center;
	border: 1.5px solid var(--lt-border);
	border-radius: 4px;
	padding: .35rem;
	font-size: .95rem;
	font-weight: 700;
}

/* ─── Pagination ─────────────────────────────────────────────────────────── */
.lt-pagination .page-link {
	color: var(--lt-primary);
	border-radius: 3px !important;
	margin: 0 2px;
	border: 1px solid var(--lt-border);
	font-weight: 500;
	font-size: .88rem;
	transition: all var(--lt-transition);
}

.lt-pagination .page-link:hover {
	background: var(--lt-primary);
	color: #fff;
	border-color: var(--lt-primary);
}

.lt-pagination .page-item.active .page-link {
	background: var(--lt-primary);
	border-color: var(--lt-primary);
	color: #fff;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-lt-primary {
	display: inline-block;
	background: var(--lt-primary);
	color: #fff;
	border: none;
	border-radius: 3px;
	padding: .6rem 1.6rem;
	font-weight: 600;
	font-size: .9rem;
	transition: all var(--lt-transition);
	cursor: pointer;
	text-decoration: none;
}

.btn-lt-primary:hover {
	background: var(--lt-primary-d);
	color: #fff;
	transform: translateY(-1px);
}

.btn-lt-outline {
	display: inline-block;
	background: transparent;
	color: var(--lt-primary);
	border: 1.5px solid var(--lt-primary);
	border-radius: 3px;
	padding: .55rem 1.4rem;
	font-weight: 600;
	font-size: .9rem;
	transition: all var(--lt-transition);
	cursor: pointer;
	text-decoration: none;
}

.btn-lt-outline:hover {
	background: var(--lt-primary);
	color: #fff;
}

/* ─── 404 ────────────────────────────────────────────────────────────────── */
.error-page {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3rem;
}

.error-code {
	font-size: clamp(5rem, 15vw, 8rem);
	font-weight: 900;
	color: var(--lt-primary-l);
	line-height: 1;
	margin-bottom: .5rem;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
	.lt-footer-inner {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.lt-auth-page {
		grid-template-columns: 400px 1fr;
	}

	.lt-auth-sidebar h2 {
		font-size: 2rem;
	}
}

@media (max-width: 1023px) {
	.lt-products-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.lt-news-grid,
	.lt-news-page-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lt-footer-inner {
		grid-template-columns: 1fr 1fr;
	}

	.lt-about-inner {
		grid-template-columns: 1fr;
	}

	.lt-products-page-inner {
		grid-template-columns: 260px 1fr;
	}

	.lt-about-story-grid {
		grid-template-columns: 1fr;
	}

	.lt-stores-grid {
		grid-template-columns: 1fr;
	}

	.lt-auth-page {
		grid-template-columns: 1fr;
	}

	.lt-auth-sidebar {
		display: none;
	}

	.lt-news-hero-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	/* Hide desktop-only header items on mobile */
	.lt-desktop-only {
		display: none !important;
	}

	/* Fix 2: Header always at top on mobile */
	.lt-header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		margin-bottom: 0;
		background: rgba(0, 0, 0, 0.92);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
	}

	/* Push announcement bar below fixed header */
	.lt-top-adv {
		margin-top: 68px;
	}

	.lt-header-inner {
		padding: 0;
	}

	/* Fix: reduce header row padding on mobile */
	.lt-header-row1 {
		padding: 0 0.75rem;
	}

	/* Hide social icons from header bar on mobile — shown in hamburger menu instead */
	.lt-header-right .lt-social-icon {
		display: none;
	}

	.lt-section,
	.lt-about-section,
	.lt-products-light,
	.lt-contact-section {
		padding: 40px 1rem;
	}

	.lt-featured-section {
		min-height: auto;
	}

	.lt-featured-hd {
		height: auto;
		padding: 20px 1rem 12px;
	}

	.lt-featured-title {
		font-size: 24px;
	}

	.lt-feat-cards-row {
		height: auto;
		margin-left: 0;
		width: 100%;
		overflow-x: auto;
		overflow-y: visible;
	}

	.lt-feat-track {
		gap: 16px;
		padding: 0 1rem;
		height: auto;
		/* Fix 3 (feat): allow touch horizontal scroll */
		touch-action: pan-x;
		will-change: auto;
		transform: none !important;
	}

	.lt-feat-card {
		flex: 0 0 220px;
		width: 220px;
		height: auto;
	}

	.lt-feat-img-box {
		aspect-ratio: 1/1;
	}

	.lt-feat-arrow {
		display: none;
	}

	.lt-featured-bottom {
		height: 24px;
	}

	.lt-hero-slide img {
		height: 280px;
	}

	.lt-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.lt-news-grid,
	.lt-products-light-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.lt-products-page-inner {
		grid-template-columns: 1fr;
	}

	.lt-filter-sidebar {
		display: none;
	}

	.lt-footer {
		padding: 2.5rem 1rem;
	}

	.lt-footer-inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.lt-nav {
		display: none;
	}

	/* Fix 1: Mobile nav open state */
	.lt-nav.mobile-open {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 68px;
		left: 0;
		right: 0;
		background: rgba(0, 0, 0, 0.97);
		z-index: 999;
		padding: 0.5rem 1.5rem 1.25rem;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
		max-height: calc(100vh - 68px);
		overflow-y: auto;
	}

	.lt-nav.mobile-open .lt-nav-link {
		height: auto;
		padding: 0.85rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
		font-size: 1rem;
		letter-spacing: 0.5px;
	}

	.lt-nav.mobile-open .lt-nav-link:last-child {
		border-bottom: none;
	}

	/* Social icons row inside hamburger menu */
	.lt-nav-social {
		display: flex;
		gap: 0.85rem;
		padding: 0.85rem 0 0;
		margin-top: 0.25rem;
		border-top: 1px solid rgba(255, 255, 255, 0.07);
	}

	.lt-nav-social-link {
		width: 38px;
		height: 38px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.08);
		color: rgba(255, 255, 255, 0.85);
		font-size: 1.15rem;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background var(--lt-transition), color var(--lt-transition);
		text-decoration: none;
	}

	.lt-nav-social-link:hover {
		background: var(--lt-primary);
		color: #fff;
	}

	.lt-nav-toggle {
		display: flex;
	}

	.lt-about-hero {
		height: 400px;
	}

	.lt-about-hero-title {
		font-size: 3.5rem;
	}

	.lt-page-hero h1 {
		font-size: 2.5rem;
	}

	.lt-page-hero p {
		font-size: 1.75rem;
	}

	.lt-section-title {
		font-size: 2rem;
	}

	.lt-news-section-title {
		font-size: 2rem;
	}

	.lt-alert {
		margin: .75rem 1rem;
	}
}

@media (max-width: 575px) {

	.lt-products-grid,
	.lt-news-grid,
	.lt-products-light-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: .75rem;
	}

	.lt-hero-slide img {
		height: 220px;
	}

	.lt-btn-order {
		font-size: 1rem;
		padding: .65rem 1.8rem;
	}

	.lt-products-content-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ─── News List Hero (Figma: 2a_最新資訊) ─────────────────────────────────── */
.lt-news-list-hero {
	position: relative;
	width: 100%;
	height: 748px;
	overflow: hidden;
	background: url('../images/news-featured.png') center / cover no-repeat;
	display: flex;
	align-items: center;
	margin-top: 0;
}

.lt-news-list-hero-card {
	position: relative;
	z-index: 2;
	width: 419px;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 1);
	padding: 48px 32px;
	margin-left: 91px;
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}

.lt-news-list-tagline {
	font-size: 18px;
	font-weight: 700;
	color: rgba(170, 150, 98, 1);
	margin-bottom: 12px;
	letter-spacing: 0.3px;
}

.lt-news-list-heading {
	font-size: 44px;
	font-weight: 700;
	color: rgba(170, 150, 98, 1);
	line-height: 1.2;
	margin: 0 0 1.5rem;
}

.lt-news-list-desc {
	font-size: 16px;
	font-weight: 400;
	color: rgba(85, 85, 85, 1);
	line-height: 1.75;
	margin: 0;
}

/* ─── News Detail (Figma: newsDetail) ────────────────────────────────────── */
.lt-news-detail-wrap {
	display: flex;
	width: 100%;
	min-height: 700px;
	background: #ffffff;
	align-items: stretch;
}

.lt-news-detail-content {
	flex: 1 1 57%;
	padding: 80px 60px 80px 200px;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.lt-news-detail-back {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--lt-primary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 2rem;
	transition: color var(--lt-transition);
}

.lt-news-detail-back:hover {
	color: var(--lt-primary-d);
}

.lt-news-detail-title {
	font-size: 44px;
	font-weight: 700;
	color: rgba(170, 150, 98, 1);
	margin: 0 0 2rem;
	line-height: 1.2;
	max-width: 528px;
}

.lt-news-detail-body {
	font-size: 20px;
	font-weight: 400;
	color: rgba(60, 60, 67, 0.6);
	line-height: 1.85;
	margin-bottom: 2.5rem;
	max-width: 697px;
}

.lt-news-detail-meta {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.lt-news-detail-date {
	font-size: 15px;
	font-weight: 600;
	color: var(--lt-primary);
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.lt-news-detail-author {
	font-size: 15px;
	font-weight: 600;
	color: var(--lt-text-dark);
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.lt-news-detail-actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.lt-news-detail-cta {
	display: inline-block;
	background: var(--lt-primary);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	padding: 0.6rem 2rem;
	border-radius: 3px;
	text-decoration: none;
	transition: all var(--lt-transition);
	letter-spacing: 0.5px;
}

.lt-news-detail-cta:hover {
	background: var(--lt-primary-d);
	color: #fff;
	transform: translateY(-1px);
}

.lt-news-detail-share {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.lt-news-detail-share a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--lt-bg-light);
	color: var(--lt-text-dark);
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--lt-transition);
	text-decoration: none;
}

.lt-news-detail-share a:hover {
	background: var(--lt-primary);
	color: #fff;
}

.lt-news-detail-img-panel {
	flex: 0 0 43%;
	max-width: 43%;
	position: relative;
	overflow: hidden;
	min-height: 700px;
}

.lt-news-detail-img-panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Related news section */
.lt-news-related {
	background: var(--lt-bg);
	padding: 0;
}

.lt-news-related-inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 48px 43px 0;
}

.lt-news-related-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--lt-text-dark);
	margin-bottom: 1.5rem;
}

/* ─── Contact / Brand Story Page (Figma: contactUs) ──────────────────────── */
.lt-contact-page-hero {
	position: relative;
	width: 100%;
	height: 807px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}

.lt-contact-page-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lt-contact-page-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.lt-contact-page-hero-text {
	position: relative;
	z-index: 2;
	padding: 0 43px 5rem 242px;
}

.lt-contact-page-hero-label {
	font-size: 64px;
	font-weight: 400;
	color: rgba(9, 60, 113, 1);
	margin: 0 0 0.5rem;
	line-height: 1;
}

.lt-contact-page-hero-sub {
	font-size: 40px;
	font-weight: 400;
	color: rgba(9, 60, 113, 1);
	margin: 0;
	line-height: 1.3;
}

/* Stories section */
.lt-contact-page-stories {
	background: rgba(244, 244, 244, 1);
	padding: 60px 43px;
}

.lt-contact-page-stories-inner {
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

/* Row layouts */
.lt-contact-row {
	display: flex;
	gap: 2rem;
	align-items: stretch;
}

.lt-contact-row--img-left .lt-contact-img-block {
	flex: 0 0 58%;
}

.lt-contact-row--img-left .lt-contact-card-block {
	flex: 1;
}

.lt-contact-row--card-left .lt-contact-img-block {
	flex: 0 0 42%;
}

.lt-contact-row--card-left .lt-contact-card-block {
	flex: 1;
}

.lt-contact-row--two-cards .lt-contact-img-block,
.lt-contact-row--two-cards .lt-contact-card-block {
	flex: 1;
}

/* Image blocks */
.lt-contact-img-block {
	overflow: hidden;
	border-radius: 2px;
	min-height: 380px;
}

.lt-contact-img-block--tall {
	min-height: 480px;
}

.lt-contact-img-block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.lt-contact-img-block:hover img {
	transform: scale(1.04);
}

/* Card blocks */
.lt-contact-card-block {
	display: flex;
	align-items: center;
}

.lt-contact-card-block--bottom {
	align-items: flex-end;
}

/* Story cards */
.lt-contact-story-card {
	background: #ffffff;
	padding: 32px 31px;
	border-radius: 2px;
	width: 100%;
}

.lt-contact-story-title {
	font-size: 24px;
	font-weight: 700;
	color: rgba(170, 150, 98, 1);
	margin: 0 0 1rem;
	line-height: 1.3;
}

.lt-contact-story-text {
	font-size: 18px;
	font-weight: 400;
	color: rgba(0, 0, 0, 1);
	line-height: 1.75;
	margin: 0;
}

/* Contact Info Bar */
.lt-contact-info-bar {
	background: #ffffff;
	padding: 48px 43px;
	border-top: 1px solid var(--lt-border);
}

.lt-contact-info-bar-inner {
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 0;
	flex-wrap: wrap;
}

.lt-contact-info-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0 3rem;
	flex: 1;
}

.lt-contact-info-item:first-child {
	padding-left: 0;
}

.lt-contact-info-item--social {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}

.lt-contact-info-icon {
	font-size: 1.5rem;
	color: var(--lt-primary);
	flex-shrink: 0;
}

.lt-contact-info-label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--lt-text-light);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 0.2rem;
}

.lt-contact-info-value {
	font-size: 1rem;
	font-weight: 600;
	color: var(--lt-text-dark);
}

.lt-contact-info-value a {
	color: var(--lt-text-dark);
	text-decoration: none;
	transition: color var(--lt-transition);
}

.lt-contact-info-value a:hover {
	color: var(--lt-primary);
}

.lt-contact-info-divider {
	width: 1px;
	height: 48px;
	background: var(--lt-border);
	flex-shrink: 0;
}

.lt-contact-info-social {
	display: flex;
	gap: 0.65rem;
}

.lt-contact-info-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--lt-bg-light);
	color: var(--lt-text-dark);
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--lt-transition);
	text-decoration: none;
}

.lt-contact-info-social a:hover {
	background: var(--lt-primary);
	color: #fff;
}

/* ─── Responsive: News List Hero ─────────────────────────────────────────── */
@media (max-width: 1023px) {
	.lt-news-list-hero {
		height: 500px;
	}

	.lt-news-list-hero-card {
		width: 360px;
		margin-left: 43px;
	}

	.lt-news-list-heading {
		font-size: 32px;
	}

	/* News detail */
	.lt-news-detail-content {
		padding: 60px 40px 60px 60px;
	}

	.lt-news-detail-title {
		font-size: 32px;
	}

	.lt-news-detail-body {
		font-size: 17px;
	}

	/* Contact hero */
	.lt-contact-page-hero {
		height: 560px;
	}

	.lt-contact-page-hero-text {
		padding: 0 43px 3rem 43px;
	}

	.lt-contact-page-hero-label {
		font-size: 48px;
	}

	.lt-contact-page-hero-sub {
		font-size: 28px;
	}

	/* Contact info bar */
	.lt-contact-info-bar-inner {
		gap: 1.5rem;
	}

	.lt-contact-info-item {
		padding: 0 1.5rem;
	}
}

@media (max-width: 767px) {
	/* News list hero */
	.lt-news-list-hero {
		height: auto;
		min-height: 420px;
		padding: 80px 1rem 40px;
		background-position: center top;
		align-items: flex-end;
	}

	.lt-news-list-hero-card {
		width: 100%;
		margin-left: 0;
		padding: 28px 20px;
	}

	.lt-news-list-heading {
		font-size: 26px;
	}

	.lt-news-list-tagline {
		font-size: 14px;
	}

	.lt-news-list-desc {
		font-size: 14px;
	}

	/* News detail */
	.lt-news-detail-wrap {
		flex-direction: column;
	}

	.lt-news-detail-img-panel {
		flex: none;
		max-width: 100%;
		min-height: 280px;
		order: -1;
	}

	.lt-news-detail-content {
		padding: 40px 1rem 40px;
	}

	.lt-news-detail-title {
		font-size: 26px;
		max-width: 100%;
	}

	.lt-news-detail-body {
		font-size: 16px;
		max-width: 100%;
	}

	/* Contact hero */
	.lt-contact-page-hero {
		height: 400px;
	}

	.lt-contact-page-hero-text {
		padding: 0 1rem 2.5rem;
	}

	.lt-contact-page-hero-label {
		font-size: 36px;
	}

	.lt-contact-page-hero-sub {
		font-size: 20px;
	}

	/* Contact stories */
	.lt-contact-page-stories {
		padding: 40px 1rem;
	}

	.lt-contact-row {
		flex-direction: column;
	}

	.lt-contact-row--card-left .lt-contact-img-block {
		order: -1;
	}

	.lt-contact-img-block,
	.lt-contact-img-block--tall {
		min-height: 260px;
		flex: none;
		width: 100%;
	}

	.lt-contact-card-block {
		width: 100%;
	}

	.lt-contact-story-title {
		font-size: 20px;
	}

	.lt-contact-story-text {
		font-size: 15px;
	}

	/* Contact info bar */
	.lt-contact-info-bar {
		padding: 32px 1rem;
	}

	.lt-contact-info-bar-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
	}

	.lt-contact-info-item {
		padding: 0;
		flex: none;
		width: 100%;
	}

	.lt-contact-info-divider {
		display: none;
	}
}
