/*
Theme Name: Watches Luxury Themes
Theme URI: https://watchesluxury.com/
Author: Watches Luxury Themes
Author URI: https://watchesluxury.com/
Description: Luxury minimalist WooCommerce watch store theme. Warm ivory and taupe palette, Manrope typography, transparent-on-hero sticky header, editorial homepage sections, and full GMC-compliant policy pages. Optimized for Google Ads, Google Merchant Center, and long-term brand credibility.
Version: 2.0.5
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: watches-luxury-themes
Tags: e-commerce, woocommerce, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ==========================================================================
   CSS Custom Properties — Wristixo Luxury Minimalist Palette
   ========================================================================== */
:root {
	--wlt-bg:           #FFFFFF;
	--wlt-bg-ivory:     #F7F4EF;
	--wlt-bg-sand:      #E8E1D6;
	--wlt-fg:           #171717;
	--wlt-fg-soft:      #2A2A2A;
	--wlt-muted:        #6B6B6B;
	--wlt-line:         #E5E0D8;
	--wlt-line-soft:    #F0EBE4;
	--wlt-accent:       #9A8064;
	--wlt-accent-dark:  #7A6450;
	--wlt-accent-fg:    #FFFFFF;
	--wlt-footer-bg:    #171717;
	--wlt-footer-line:  #2A2A2A;
	--wlt-sale:         #B04545;
	--wlt-success:      #3D6B50;
	--wlt-in-stock:     #3D6B50;
	--wlt-out-stock:    #B04545;
	--wlt-content-w:    1280px;
	--wlt-radius:       2px;
	--wlt-radius-md:    4px;
	--wlt-shadow:       0 8px 32px rgba(23,23,23,0.07);
	--wlt-shadow-lg:    0 20px 56px rgba(23,23,23,0.11);
	--wlt-font:         "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
	--wlt-heading:      "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
	--wlt-transition:   0.22s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	font-family: var(--wlt-font);
	font-size: 16px;
	line-height: 1.7;
	color: var(--wlt-fg);
	background: var(--wlt-bg);
	-webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--wlt-transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--wlt-heading);
	font-weight: 400;
	line-height: 1.15;
	color: var(--wlt-fg);
	letter-spacing: -0.02em;
}
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
address { font-style: normal; }

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.wlt-shell {
	max-width: var(--wlt-content-w);
	margin-inline: auto;
	padding-inline: 24px;
}
.wlt-section { padding-block: 96px; }
.wlt-section--sm { padding-block: 64px; }
.wlt-section--alt { background: var(--wlt-bg-ivory); }
.wlt-section--sand { background: var(--wlt-bg-sand); }
.wlt-section-head {
	text-align: center;
	margin-bottom: 56px;
}
.wlt-section-head .eyebrow {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wlt-accent);
	margin-bottom: 14px;
}
.wlt-section-head h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	margin-bottom: 16px;
}
.wlt-section-head p {
	font-size: 1rem;
	color: var(--wlt-muted);
	max-width: 560px;
	margin-inline: auto;
	line-height: 1.75;
}
.wlt-section-head--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	text-align: left;
	gap: 24px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wlt-accent);
}
.wlt-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wlt-fg);
	transition: gap var(--wlt-transition);
}
.wlt-link-arrow:hover { gap: 10px; color: var(--wlt-accent); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.wlt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	font-family: var(--wlt-font);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: var(--wlt-radius);
	transition: background var(--wlt-transition), color var(--wlt-transition), border-color var(--wlt-transition);
	white-space: nowrap;
}
.wlt-btn--primary {
	background: var(--wlt-fg);
	color: #fff;
	border: 1.5px solid var(--wlt-fg);
}
.wlt-btn--primary:hover {
	background: var(--wlt-accent);
	border-color: var(--wlt-accent);
}
.wlt-btn--accent {
	background: var(--wlt-accent);
	color: #fff;
	border: 1.5px solid var(--wlt-accent);
}
.wlt-btn--accent:hover {
	background: var(--wlt-accent-dark);
	border-color: var(--wlt-accent-dark);
}
.wlt-btn--outline {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255,255,255,0.6);
}
.wlt-btn--outline:hover {
	background: rgba(255,255,255,0.12);
	border-color: #fff;
}
.wlt-btn--outline-dark {
	background: transparent;
	color: var(--wlt-fg);
	border: 1.5px solid var(--wlt-line);
}
.wlt-btn--outline-dark:hover {
	border-color: var(--wlt-fg);
	background: var(--wlt-fg);
	color: #fff;
}
.wlt-btn--sm { padding: 10px 20px; font-size: 11px; }
.wlt-btn--lg { padding: 16px 40px; font-size: 13px; }

/* ==========================================================================
   Topbar / Announcement Bar
   ========================================================================== */
.wlt-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 201;
	background: var(--wlt-fg);
	color: rgba(255,255,255,0.85);
	text-align: center;
	padding: 9px 24px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.4;
}
/* Admin bar pushes everything down 32px */
.admin-bar .wlt-topbar { top: 32px; }
.admin-bar .wlt-header  { top: 67px; } /* 32px admin + 35px topbar */
@media screen and (max-width: 600px) {
	.admin-bar .wlt-topbar { top: 0; }
	.admin-bar .wlt-header  { top: 35px; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.wlt-header {
	position: fixed;
	top: 35px; /* topbar height */
	left: 0;
	right: 0;
	z-index: 200;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.wlt-header--scrolled {
	background: #fff;
	border-bottom-color: var(--wlt-line);
	box-shadow: 0 2px 20px rgba(23,23,23,0.06);
}
/* When no hero — always white */
.wlt-header--solid {
	background: #fff;
	border-bottom-color: var(--wlt-line);
}
.wlt-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	height: 76px;
}
/* Logo */
.wlt-header__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.wlt-header__logo a {
	font-family: var(--wlt-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--wlt-fg);
	letter-spacing: -0.02em;
	white-space: nowrap;
	transition: color var(--wlt-transition);
}
.wlt-header--transparent:not(.wlt-header--scrolled) .wlt-header__logo a { color: #fff; }
.wlt-header__logo img { height: 44px; width: auto; }

/* Nav */
.wlt-header__nav { flex: 1; display: flex; justify-content: center; }
.wlt-nav {
	display: flex;
	align-items: center;
	gap: 2px;
	flex-wrap: nowrap;
}
.wlt-nav > li > a {
	display: block;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--wlt-fg);
	border-radius: var(--wlt-radius);
	transition: color var(--wlt-transition);
}
.wlt-header--transparent:not(.wlt-header--scrolled) .wlt-nav > li > a { color: rgba(255,255,255,0.9); }
.wlt-nav > li > a:hover,
.wlt-nav > li.current-menu-item > a { color: var(--wlt-accent); }
.wlt-header--transparent:not(.wlt-header--scrolled) .wlt-nav > li > a:hover { color: #fff; }

/* Dropdown */
.wlt-nav li { position: relative; }
.wlt-nav li ul {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	background: #fff;
	border: 1px solid var(--wlt-line);
	min-width: 200px;
	border-radius: var(--wlt-radius-md);
	padding: 8px 0;
	z-index: 300;
	box-shadow: var(--wlt-shadow-lg);
}
.wlt-nav li:hover > ul { display: block; }
.wlt-nav li ul a {
	display: block;
	padding: 9px 18px;
	font-size: 13px;
	color: var(--wlt-fg-soft);
}
.wlt-nav li ul a:hover { color: var(--wlt-accent); background: var(--wlt-bg-ivory); }

/* Header Actions */
.wlt-header__actions {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}
.wlt-header__icon-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--wlt-radius);
	color: var(--wlt-fg);
	transition: color var(--wlt-transition), background var(--wlt-transition);
}
.wlt-header--transparent:not(.wlt-header--scrolled) .wlt-header__icon-btn { color: rgba(255,255,255,0.9); }
.wlt-header__icon-btn:hover { color: var(--wlt-accent); background: var(--wlt-bg-ivory); }
.wlt-header--transparent:not(.wlt-header--scrolled) .wlt-header__icon-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }

.wlt-cart-count {
	position: absolute;
	top: 4px;
	right: 4px;
	background: var(--wlt-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	min-width: 16px;
	height: 16px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

/* Search overlay */
.wlt-header__search-form {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	background: #fff;
	border-top: 1px solid var(--wlt-line);
	border-bottom: 1px solid var(--wlt-line);
	padding: 16px 24px;
}
.wlt-header__search-form.is-open { display: block; }
.wlt-header__search-form form { display: flex; max-width: 600px; margin-inline: auto; }
.wlt-header__search-form input {
	flex: 1;
	padding: 12px 18px;
	background: var(--wlt-bg-ivory);
	border: 1.5px solid var(--wlt-line);
	border-right: none;
	border-radius: var(--wlt-radius) 0 0 var(--wlt-radius);
	color: var(--wlt-fg);
	font-size: 14px;
}
.wlt-header__search-form input::placeholder { color: var(--wlt-muted); }
.wlt-header__search-form button {
	padding: 12px 22px;
	background: var(--wlt-fg);
	border: none;
	border-radius: 0 var(--wlt-radius) var(--wlt-radius) 0;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background var(--wlt-transition);
}
.wlt-header__search-form button:hover { background: var(--wlt-accent); }

/* Hamburger (mobile) */
.wlt-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	color: var(--wlt-fg);
}
.wlt-header--transparent:not(.wlt-header--scrolled) .wlt-hamburger { color: #fff; }
.wlt-hamburger span {
	display: block;
	height: 1.5px;
	background: currentColor;
	transition: all var(--wlt-transition);
}

/* Mobile nav drawer */
.wlt-mobile-nav {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 500;
}
.wlt-mobile-nav.is-open { display: block; }
.wlt-mobile-nav__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.5);
}
.wlt-mobile-nav__panel {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(320px, 90vw);
	background: #fff;
	overflow-y: auto;
	padding: 24px 0;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}
.wlt-mobile-nav.is-open .wlt-mobile-nav__panel { transform: translateX(0); }
.wlt-mobile-nav__close {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 20px 16px;
	color: var(--wlt-fg);
}
.wlt-mobile-nav__menu a {
	display: block;
	padding: 13px 24px;
	font-size: 15px;
	font-weight: 500;
	color: var(--wlt-fg);
	border-bottom: 1px solid var(--wlt-line-soft);
	transition: color var(--wlt-transition);
}
.wlt-mobile-nav__menu a:hover { color: var(--wlt-accent); }
.wlt-mobile-nav__footer {
	padding: 24px 24px 8px;
}
.wlt-mobile-nav__footer a {
	display: block;
	padding: 8px 0;
	font-size: 12px;
	color: var(--wlt-muted);
	letter-spacing: 0.04em;
	border-bottom: none;
}

/* Header spacer for non-hero pages: 35px topbar + 76px header */
.wlt-header-offset { padding-top: 111px; }
.admin-bar .wlt-header-offset { padding-top: 143px; } /* +32px admin bar */

/* ==========================================================================
   Hero Banner — Single cinematic section
   ========================================================================== */
.wlt-hero {
	position: relative;
	height: 90vh;
	min-height: 580px;
	max-height: 1000px;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: var(--wlt-bg-ivory);
}
.wlt-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.wlt-hero__bg img,
.wlt-hero__bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wlt-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, rgba(23,23,23,0.62) 0%, rgba(23,23,23,0.28) 60%, transparent 100%);
	z-index: 1;
}
.wlt-hero__content {
	position: relative;
	z-index: 2;
	color: #fff;
	max-width: 640px;
}
.wlt-hero__content .eyebrow {
	color: rgba(255,255,255,0.75);
	margin-bottom: 18px;
}
.wlt-hero__title {
	font-size: clamp(2.4rem, 5.5vw, 4.4rem);
	font-weight: 400;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.08;
	letter-spacing: -0.03em;
}
.wlt-hero__sub {
	font-size: clamp(0.95rem, 1.5vw, 1.1rem);
	color: rgba(255,255,255,0.8);
	margin-bottom: 40px;
	line-height: 1.75;
}
.wlt-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.wlt-trust {
	padding-block: 40px;
	border-bottom: 1px solid var(--wlt-line);
	background: var(--wlt-bg);
}
.wlt-trust__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}
.wlt-trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.wlt-trust-item__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--wlt-accent);
}
.wlt-trust-item__text strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 2px;
	letter-spacing: -0.01em;
}
.wlt-trust-item__text span {
	font-size: 12px;
	color: var(--wlt-muted);
}

/* ==========================================================================
   Featured Collections
   ========================================================================== */
.wlt-categories__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.wlt-cat-card {
	position: relative;
	aspect-ratio: 4/3;
	border-radius: var(--wlt-radius-md);
	overflow: hidden;
	background: var(--wlt-bg-sand);
	display: flex;
	align-items: flex-end;
	text-decoration: none;
}
.wlt-cat-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.wlt-cat-card:hover img { transform: scale(1.04); }
.wlt-cat-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(23,23,23,0.72) 0%, rgba(23,23,23,0.1) 55%, transparent 100%);
}
.wlt-cat-card__label {
	position: relative;
	z-index: 1;
	padding: 28px 24px;
	color: #fff;
	width: 100%;
}
.wlt-cat-card__label .eyebrow {
	color: rgba(255,255,255,0.65);
	margin-bottom: 6px;
}
.wlt-cat-card__label h3 {
	font-size: 1.25rem;
	font-weight: 400;
	color: #fff;
	letter-spacing: -0.02em;
}
/* No-image fallback */
.wlt-cat-card--no-img {
	background: var(--wlt-bg-sand);
}
.wlt-cat-card--no-img .wlt-cat-card__overlay { display: none; }
.wlt-cat-card--no-img .wlt-cat-card__label { color: var(--wlt-fg); }
.wlt-cat-card--no-img .wlt-cat-card__label .eyebrow { color: var(--wlt-fg-soft); }
.wlt-cat-card--no-img .wlt-cat-card__label h3 { color: var(--wlt-fg); }

/* First card spans 2 columns */
.wlt-categories__grid .wlt-cat-card:first-child {
	grid-row: span 1;
}

/* ==========================================================================
   Best Sellers — 4-column grid
   ========================================================================== */
.wlt-products-section { padding-block: 96px; }
.wlt-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

/* Carousel (keep for collections) */
.wlt-carousel-wrap { position: relative; }
.wlt-carousel--scroll {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 8px;
}
.wlt-carousel--scroll::-webkit-scrollbar { display: none; }
.wlt-carousel--scroll .wlt-product-card {
	flex: 0 0 calc(25% - 15px);
	min-width: 240px;
	scroll-snap-align: start;
}
.wlt-carousel__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--wlt-shadow);
	border: 1px solid var(--wlt-line);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--wlt-fg);
	z-index: 10;
	transition: background var(--wlt-transition), color var(--wlt-transition);
}
.wlt-carousel__btn:hover { background: var(--wlt-accent); color: #fff; border-color: var(--wlt-accent); }
.wlt-carousel__btn--prev { left: -22px; }
.wlt-carousel__btn--next { right: -22px; }
.wlt-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
}
.wlt-carousel__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--wlt-line);
	border: none;
	padding: 0;
	transition: background var(--wlt-transition), width var(--wlt-transition);
}
.wlt-carousel__dot.is-active {
	background: var(--wlt-accent);
	width: 20px;
	border-radius: 3px;
}

/* ==========================================================================
   Product Card — Premium Minimalist
   ========================================================================== */
.wlt-product-card {
	background: var(--wlt-bg);
	border-radius: var(--wlt-radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow var(--wlt-transition);
}
.wlt-product-card:hover { box-shadow: var(--wlt-shadow); }
.wlt-product-card__media {
	position: relative;
	aspect-ratio: 1/1;
	background: var(--wlt-bg-ivory);
	overflow: hidden;
}
.wlt-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.45s ease, transform 0.6s ease;
}
/* Hover image swap */
.wlt-product-card__media img.wlt-img-hover {
	position: absolute;
	inset: 0;
	opacity: 0;
}
.wlt-product-card:hover .wlt-product-card__media img.wlt-img-primary { opacity: 0; }
.wlt-product-card:hover .wlt-product-card__media img.wlt-img-hover { opacity: 1; }
.wlt-product-card:hover .wlt-product-card__media img { transform: scale(1.04); }

/* Quick-add overlay — opacity approach (reliable across all browsers) */
.wlt-product-card__quick-add {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(23,23,23,0.88);
	padding: 14px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}
.wlt-product-card:hover .wlt-product-card__quick-add {
	opacity: 1;
	pointer-events: auto;
}
.wlt-product-card__quick-add a {
	display: block;
	width: 100%;
	text-align: center;
	padding: 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
	transition: color var(--wlt-transition);
}
.wlt-product-card__quick-add a:hover { color: var(--wlt-accent); }

/* Badges */
.wlt-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 10px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 2px;
	z-index: 2;
}
.wlt-badge--sale { background: var(--wlt-sale); color: #fff; }
.wlt-badge--new { background: var(--wlt-fg); color: #fff; }

/* Card body */
.wlt-product-card__body {
	padding: 16px 4px 4px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.wlt-product-card__title {
	font-family: var(--wlt-font);
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.01em;
	color: var(--wlt-fg);
}
.wlt-product-card__title a { color: inherit; }
.wlt-product-card__title a:hover { color: var(--wlt-accent); }
.wlt-product-card__rating {
	display: flex;
	align-items: center;
	gap: 6px;
}
.wlt-stars { color: var(--wlt-accent); font-size: 12px; letter-spacing: 1px; }
.wlt-rating-count { font-size: 11px; color: var(--wlt-muted); }
.wlt-product-card__price {
	font-size: 1rem;
	font-weight: 600;
	color: var(--wlt-fg);
	letter-spacing: -0.01em;
}
.wlt-product-card__price del {
	font-size: 0.85rem;
	font-weight: 400;
	color: var(--wlt-muted);
	margin-right: 6px;
	text-decoration: line-through;
}
.wlt-product-card__price ins { text-decoration: none; color: var(--wlt-sale); }
.wlt-product-card__meta {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.wlt-product-card__avail { font-size: 11px; font-weight: 500; }
.wlt-product-card__avail--in { color: var(--wlt-in-stock); }
.wlt-product-card__avail--out { color: var(--wlt-out-stock); }
.wlt-product-card__ship { font-size: 11px; color: var(--wlt-muted); }
/* Legacy actions (for shop loop) */
.wlt-product-card__actions {
	display: none;
}

/* Filter bar */
.wlt-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 36px;
}
.wlt-filter-btn {
	padding: 7px 16px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 1.5px solid var(--wlt-line);
	border-radius: 100px;
	background: transparent;
	color: var(--wlt-fg-soft);
	transition: all var(--wlt-transition);
}
.wlt-filter-btn:hover, .wlt-filter-btn.is-active {
	background: var(--wlt-fg);
	border-color: var(--wlt-fg);
	color: #fff;
}
.wlt-hidden { display: none !important; }

/* ==========================================================================
   Brand Story / Editorial Section
   ========================================================================== */
.wlt-editorial {
	padding-block: 96px;
	background: var(--wlt-bg-ivory);
}
.wlt-editorial__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.wlt-editorial__image {
	border-radius: var(--wlt-radius-md);
	overflow: hidden;
	aspect-ratio: 4/5;
	background: var(--wlt-bg-sand);
}
.wlt-editorial__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wlt-editorial__content .eyebrow { margin-bottom: 16px; }
.wlt-editorial__content h2 {
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	margin-bottom: 24px;
	line-height: 1.1;
}
.wlt-editorial__content p {
	font-size: 1rem;
	color: var(--wlt-fg-soft);
	line-height: 1.8;
	margin-bottom: 14px;
}
.wlt-editorial__actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Design Details — 3-column craft section
   ========================================================================== */
.wlt-design-details { padding-block: 96px; }
.wlt-design-details__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}
.wlt-design-detail {
	text-align: center;
	padding: 40px 32px;
	border: 1px solid var(--wlt-line);
	border-radius: var(--wlt-radius-md);
	transition: border-color var(--wlt-transition), box-shadow var(--wlt-transition);
}
.wlt-design-detail:hover {
	border-color: var(--wlt-accent);
	box-shadow: 0 4px 24px rgba(154,128,100,0.08);
}
.wlt-design-detail__icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--wlt-accent);
}
.wlt-design-detail h3 {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-bottom: 12px;
}
.wlt-design-detail p {
	font-size: 14px;
	color: var(--wlt-muted);
	line-height: 1.7;
}

/* ==========================================================================
   Featured Product Banner
   ========================================================================== */
.wlt-featured-product {
	background: var(--wlt-bg-sand);
	padding-block: 80px;
}
.wlt-featured-product__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.wlt-featured-product__image {
	border-radius: var(--wlt-radius-md);
	overflow: hidden;
	aspect-ratio: 1/1;
	background: var(--wlt-bg-ivory);
}
.wlt-featured-product__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wlt-featured-product__content .eyebrow { margin-bottom: 16px; }
.wlt-featured-product__content h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	margin-bottom: 18px;
	line-height: 1.1;
}
.wlt-featured-product__content p {
	font-size: 1rem;
	color: var(--wlt-fg-soft);
	line-height: 1.8;
	margin-bottom: 28px;
}
.wlt-featured-product__specs {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 32px;
	padding: 20px;
	background: rgba(255,255,255,0.6);
	border-radius: var(--wlt-radius-md);
	border: 1px solid var(--wlt-line);
}
.wlt-featured-product__spec {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--wlt-line);
}
.wlt-featured-product__spec:last-child { border-bottom: none; padding-bottom: 0; }
.wlt-featured-product__spec dt { color: var(--wlt-muted); }
.wlt-featured-product__spec dd { font-weight: 600; letter-spacing: -0.01em; }

/* ==========================================================================
   Why Choose Us (retained, restyled)
   ========================================================================== */
.wlt-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.wlt-why-item {
	text-align: center;
	padding: 36px 24px;
	border: 1px solid var(--wlt-line);
	border-radius: var(--wlt-radius-md);
	background: var(--wlt-bg);
}
.wlt-why-item__icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	color: var(--wlt-accent);
}
.wlt-why-item h3 {
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-bottom: 10px;
}
.wlt-why-item p { font-size: 13px; color: var(--wlt-muted); line-height: 1.7; }

/* ==========================================================================
   Customer Reviews
   ========================================================================== */
.wlt-reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.wlt-review-card {
	background: var(--wlt-bg);
	border: 1px solid var(--wlt-line);
	border-radius: var(--wlt-radius-md);
	padding: 28px;
}
.wlt-review-card__stars { color: var(--wlt-accent); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.wlt-review-card__text {
	font-size: 14px;
	color: var(--wlt-fg-soft);
	line-height: 1.75;
	margin-bottom: 20px;
	font-style: italic;
}
.wlt-review-card__author { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.wlt-review-card__name { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.wlt-review-card__meta { font-size: 11px; color: var(--wlt-muted); margin-top: 2px; }
.wlt-review-card__verified { font-size: 11px; color: var(--wlt-success); font-weight: 500; }
.wlt-reviews__empty {
	text-align: center;
	padding: 48px;
	color: var(--wlt-muted);
	border: 1px dashed var(--wlt-line);
	border-radius: var(--wlt-radius-md);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.wlt-faq { padding-block: 96px; }
.wlt-faq__inner { max-width: 760px; margin-inline: auto; }
.wlt-faq-item {
	border-bottom: 1px solid var(--wlt-line);
}
.wlt-faq-item__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--wlt-fg);
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	transition: color var(--wlt-transition);
	letter-spacing: -0.01em;
}
.wlt-faq-item__q:hover { color: var(--wlt-accent); }
.wlt-faq-item__q svg {
	flex-shrink: 0;
	color: var(--wlt-muted);
	transition: transform var(--wlt-transition);
}
.wlt-faq-item.is-open .wlt-faq-item__q svg { transform: rotate(180deg); }
.wlt-faq-item__a {
	padding-bottom: 20px;
	font-size: 14px;
	color: var(--wlt-fg-soft);
	line-height: 1.8;
}
.wlt-faq-item__a[hidden] { display: none; }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.wlt-newsletter {
	background: var(--wlt-fg);
	padding-block: 72px;
}
.wlt-newsletter .wlt-shell { text-align: center; }
.wlt-newsletter h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: #fff;
	margin-bottom: 10px;
	font-weight: 400;
	letter-spacing: -0.03em;
}
.wlt-newsletter p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.wlt-newsletter__form {
	display: flex;
	max-width: 480px;
	margin-inline: auto;
}
.wlt-newsletter__form input {
	flex: 1;
	padding: 14px 20px;
	border: 1.5px solid rgba(255,255,255,0.2);
	border-right: none;
	background: rgba(255,255,255,0.08);
	color: #fff;
	border-radius: var(--wlt-radius) 0 0 var(--wlt-radius);
	font-size: 14px;
}
.wlt-newsletter__form input::placeholder { color: rgba(255,255,255,0.45); }
.wlt-newsletter__form button {
	padding: 14px 24px;
	background: var(--wlt-accent);
	color: #fff;
	border: 1.5px solid var(--wlt-accent);
	border-radius: 0 var(--wlt-radius) var(--wlt-radius) 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background var(--wlt-transition), border-color var(--wlt-transition);
}
.wlt-newsletter__form button:hover { background: var(--wlt-accent-dark); border-color: var(--wlt-accent-dark); }
.wlt-newsletter__gdpr { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 14px; }

/* ==========================================================================
   Footer — 5 Columns
   ========================================================================== */
.wlt-footer {
	background: var(--wlt-footer-bg);
	color: rgba(255,255,255,0.65);
	padding-top: 64px;
}
.wlt-footer__grid {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 48px;
	border-bottom: 1px solid var(--wlt-footer-line);
}
.wlt-footer__logo {
	font-family: var(--wlt-heading);
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	display: inline-block;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}
.wlt-footer__logo img { height: 40px; width: auto; }
.wlt-footer__brand-desc { font-size: 13px; line-height: 1.75; margin-bottom: 20px; }
.wlt-footer__company { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.wlt-footer address { font-size: 13px; line-height: 1.85; }
.wlt-footer address a { color: rgba(255,255,255,0.65); }
.wlt-footer address a:hover { color: var(--wlt-accent); }
.wlt-footer__contact { margin-top: 16px; }
.wlt-footer__contact p { font-size: 13px; margin-bottom: 4px; }
.wlt-footer__contact a { color: rgba(255,255,255,0.65); transition: color var(--wlt-transition); }
.wlt-footer__contact a:hover { color: var(--wlt-accent); }
.wlt-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.wlt-footer__social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.5);
	transition: all var(--wlt-transition);
}
.wlt-footer__social a:hover { border-color: var(--wlt-accent); color: var(--wlt-accent); }
.wlt-footer__col h4 {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
}
.wlt-footer__menu { display: flex; flex-direction: column; gap: 10px; }
.wlt-footer__menu a {
	font-size: 13px;
	color: rgba(255,255,255,0.55);
	transition: color var(--wlt-transition);
}
.wlt-footer__menu a:hover { color: var(--wlt-accent); }
.wlt-footer__bottom {
	padding-block: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.wlt-footer__copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.wlt-footer__payment { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.wlt-pay-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 4px;
	padding: 4px 8px;
	height: 28px;
}
.wlt-pay-badge svg { display: block; width: auto; height: 16px; fill: rgba(255,255,255,0.6); }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.wlt-breadcrumb {
	padding: 14px 0;
	font-size: 12px;
	color: var(--wlt-muted);
	letter-spacing: 0.02em;
}
.wlt-breadcrumb a { color: var(--wlt-muted); }
.wlt-breadcrumb a:hover { color: var(--wlt-accent); }
.wlt-breadcrumb__sep { margin-inline: 6px; opacity: 0.5; }

/* ==========================================================================
   WooCommerce — Archive / Shop Page
   ========================================================================== */
.wlt-shop { padding-block: 60px; }
.wlt-shop__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 36px;
	gap: 16px;
	flex-wrap: wrap;
}
.wlt-shop__title { font-size: 1.8rem; font-weight: 400; letter-spacing: -0.03em; }
.wlt-shop__result-count { font-size: 13px; color: var(--wlt-muted); }
.wlt-shop__sort select {
	padding: 9px 14px;
	border: 1.5px solid var(--wlt-line);
	border-radius: var(--wlt-radius);
	background: var(--wlt-bg);
	font-size: 13px;
	color: var(--wlt-fg);
	font-family: inherit;
}
.wlt-shop ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 28px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}
/* Kill any WC floats that leak into shop grid (result-count/ordering re-rendered by loop hooks) */
.wlt-shop .wlt-shop__grid .woocommerce-result-count,
.wlt-shop .wlt-shop__grid .woocommerce-ordering { display: none !important; }
.wlt-shop ul.products li.product {
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	width: auto !important;
	clear: none !important;
}
.wlt-shop__pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
}
.wlt-shop__pagination a,
.wlt-shop__pagination .current {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1.5px solid var(--wlt-line);
	border-radius: var(--wlt-radius);
	font-size: 14px;
	font-weight: 500;
	color: var(--wlt-fg);
	transition: all var(--wlt-transition);
}
.wlt-shop__pagination a:hover,
.wlt-shop__pagination .current {
	background: var(--wlt-fg);
	border-color: var(--wlt-fg);
	color: #fff;
}

/* ==========================================================================
   WooCommerce — Single Product Page
   ========================================================================== */
.wlt-single-product { padding-block: 60px; }
.wlt-single-product__grid {
	display: grid !important;
	grid-template-columns: 55fr 45fr !important;
	gap: 64px;
	align-items: start;
}
.wlt-single-product__gallery { position: sticky; top: 124px; } /* topbar 35 + header 76 + gap 13 */
.wlt-single-product__main-image {
	border-radius: var(--wlt-radius-md);
	overflow: hidden;
	margin-bottom: 12px;
	background: var(--wlt-bg-ivory);
}
.wlt-single-product__thumbs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.wlt-single-product__thumbs img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: var(--wlt-radius);
	border: 1.5px solid var(--wlt-line);
	cursor: pointer;
	transition: border-color var(--wlt-transition);
}
.wlt-single-product__thumbs img.is-active { border-color: var(--wlt-fg); }
.wlt-single-product__info .eyebrow { margin-bottom: 10px; }
.wlt-single-product__title {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	margin-bottom: 12px;
}
.wlt-single-product__rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}
.wlt-single-product__price {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--wlt-fg);
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}
.wlt-single-product__price del { font-size: 1rem; font-weight: 400; color: var(--wlt-muted); margin-right: 8px; }
.wlt-single-product__price ins { text-decoration: none; color: var(--wlt-sale); }
.wlt-single-product__short-desc {
	font-size: 14px;
	color: var(--wlt-fg-soft);
	line-height: 1.8;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--wlt-line);
}
.wlt-product-specs {
	background: var(--wlt-bg-ivory);
	border-radius: var(--wlt-radius-md);
	padding: 20px;
	margin-bottom: 24px;
}
.wlt-product-specs h4 {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.wlt-spec-row {
	display: flex;
	justify-content: space-between;
	padding-block: 8px;
	border-bottom: 1px solid var(--wlt-line);
	font-size: 13px;
}
.wlt-spec-row:last-child { border-bottom: none; }
.wlt-spec-row dt { color: var(--wlt-muted); }
.wlt-spec-row dd { font-weight: 500; text-align: right; }
.wlt-single-product__add-to-cart { margin-bottom: 20px; }
.wlt-single-product__add-to-cart .wlt-btn { width: 100%; padding: 16px; font-size: 13px; }
.wlt-single-product__policies {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 18px 20px;
	border: 1px solid var(--wlt-line);
	border-radius: var(--wlt-radius-md);
	font-size: 13px;
	background: var(--wlt-bg-ivory);
}
.wlt-single-product__policies span {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--wlt-fg-soft);
}
.wlt-single-product__policies svg { color: var(--wlt-success); flex-shrink: 0; }

/* Product tabs */
.wlt-product-tabs { margin-top: 56px; }
.wlt-product-tabs__nav {
	display: flex;
	border-bottom: 1px solid var(--wlt-line);
	gap: 0;
	margin-bottom: 36px;
}
.wlt-product-tabs__tab {
	padding: 12px 24px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--wlt-muted);
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	transition: all var(--wlt-transition);
}
.wlt-product-tabs__tab.is-active { color: var(--wlt-fg); border-bottom-color: var(--wlt-fg); }

/* Product description blocks */
.wlt-desc__long { font-size: 15px; color: var(--wlt-fg-soft); line-height: 1.8; margin-bottom: 32px; }
.wlt-desc__long p:last-child { margin-bottom: 0; }
.wlt-desc-block {
	border: 1px solid var(--wlt-line);
	border-radius: var(--wlt-radius-md);
	padding: 20px 24px;
	margin-bottom: 20px;
}
.wlt-desc-block--muted { background: var(--wlt-bg-ivory); }
.wlt-desc-block__heading {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--wlt-fg);
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--wlt-line);
}
.wlt-desc-block__heading svg { color: var(--wlt-accent); }
.wlt-desc-block__body p { font-size: 14px; color: var(--wlt-fg-soft); line-height: 1.8; margin-bottom: 10px; }
.wlt-desc-block__body p:last-child { margin-bottom: 0; }
.wlt-desc-block__body a { color: var(--wlt-accent); text-decoration: underline; }

/* Spec table in description */
.wlt-spec-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.wlt-spec-table th, .wlt-spec-table td { padding: 10px 12px; border-bottom: 1px solid var(--wlt-line); text-align: left; }
.wlt-spec-table th { color: var(--wlt-muted); font-weight: 500; width: 40%; }
.wlt-spec-table td { font-weight: 500; }
.wlt-spec-table tr:last-child th, .wlt-spec-table tr:last-child td { border-bottom: none; }

/* Trust strip in description */
.wlt-desc-trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}
.wlt-desc-trust-badges__item {
	display: flex;
	align-items: center;
	gap: 7px;
	background: var(--wlt-bg-ivory);
	border: 1px solid var(--wlt-line);
	border-radius: var(--wlt-radius);
	padding: 8px 14px;
	font-size: 12px;
	font-weight: 500;
	color: var(--wlt-fg-soft);
}
.wlt-desc-trust-badges__item svg { color: var(--wlt-success); }

/* ==========================================================================
   WooCommerce — Single Product: native WC element overrides
   (inside .wlt-single-product template)
   ========================================================================== */

/* Gallery — override WC's float:left + width:48% on div.product .woocommerce-product-gallery */
.wlt-single-product__gallery .woocommerce-product-gallery {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}
.wlt-single-product__info.summary,
.wlt-single-product__info .entry-summary {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}
.wlt-single-product__gallery .woocommerce-product-gallery .flex-viewport,
.wlt-single-product__gallery .woocommerce-product-gallery__image:first-child {
	border-radius: var(--wlt-radius-md);
	overflow: hidden;
	background: var(--wlt-bg-ivory);
}
.wlt-single-product__gallery .flex-control-thumbs {
	display: flex;
	gap: 8px;
	margin-top: 12px;
	padding: 0;
	list-style: none;
}
.wlt-single-product__gallery .flex-control-thumbs li { flex: none; }
.wlt-single-product__gallery .flex-control-thumbs img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: var(--wlt-radius);
	border: 1.5px solid var(--wlt-line);
	cursor: pointer;
	transition: border-color var(--wlt-transition);
	opacity: 1;
}
.wlt-single-product__gallery .flex-control-thumbs img.flex-active { border-color: var(--wlt-fg); }

/* Product title */
.wlt-single-product__info .product_title {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	margin-bottom: 12px;
	line-height: 1.2;
}

/* Rating */
.wlt-single-product__info .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

/* Price */
.wlt-single-product__info p.price,
.wlt-single-product__info span.price {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--wlt-fg);
	margin-bottom: 20px;
	letter-spacing: -0.02em;
	display: block;
}
.wlt-single-product__info p.price del,
.wlt-single-product__info span.price del {
	font-size: 1rem;
	font-weight: 400;
	color: var(--wlt-muted);
	margin-right: 8px;
}
.wlt-single-product__info p.price ins,
.wlt-single-product__info span.price ins { text-decoration: none; color: var(--wlt-sale); }

/* Short description */
.wlt-single-product__info .woocommerce-product-details__short-description {
	font-size: 14px;
	color: var(--wlt-fg-soft);
	line-height: 1.8;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--wlt-line);
}

/* Quantity + Add to cart */
.wlt-single-product__info form.cart {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 20px;
}
.wlt-single-product__info form.cart .qty {
	width: 64px;
	padding: 13px 10px;
	border: 1.5px solid var(--wlt-line);
	border-radius: var(--wlt-radius);
	font-family: var(--wlt-font);
	font-size: 14px;
	text-align: center;
	background: #fff;
	color: var(--wlt-fg);
}
.wlt-single-product__info .single_add_to_cart_button {
	flex: 1;
	background: var(--wlt-fg) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--wlt-radius) !important;
	font-family: var(--wlt-font) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
	padding: 15px 24px !important;
	cursor: pointer;
	transition: background var(--wlt-transition) !important;
}
.wlt-single-product__info .single_add_to_cart_button:hover {
	background: var(--wlt-accent) !important;
}
.wlt-single-product__info .single_add_to_cart_button.loading::after {
	border-top-color: #fff !important;
}

/* Product meta (SKU, categories) */
.wlt-single-product__info .product_meta {
	font-size: 12px;
	color: var(--wlt-muted);
	margin-top: 16px;
	line-height: 2;
}
.wlt-single-product__info .product_meta a { color: var(--wlt-fg-soft); }
.wlt-single-product__info .product_meta a:hover { color: var(--wlt-accent); }

/* WooCommerce tabs */
.wlt-single-product .woocommerce-tabs { margin-top: 56px; }
.wlt-single-product .woocommerce-tabs ul.tabs {
	border-bottom: 1px solid var(--wlt-line);
	padding: 0;
	margin: 0 0 36px;
	display: flex;
	list-style: none;
}
.wlt-single-product .woocommerce-tabs ul.tabs::before { display: none; }
.wlt-single-product .woocommerce-tabs ul.tabs li {
	border: none !important;
	background: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}
.wlt-single-product .woocommerce-tabs ul.tabs li::before,
.wlt-single-product .woocommerce-tabs ul.tabs li::after { display: none !important; }
.wlt-single-product .woocommerce-tabs ul.tabs li a {
	font-family: var(--wlt-font);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--wlt-muted);
	padding: 12px 24px;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	display: block;
	transition: all var(--wlt-transition);
}
.wlt-single-product .woocommerce-tabs ul.tabs li.active a,
.wlt-single-product .woocommerce-tabs ul.tabs li.active a:focus {
	color: var(--wlt-fg);
	border-bottom-color: var(--wlt-fg);
	background: none !important;
}
.wlt-single-product .woocommerce-tabs .panel {
	font-size: 14px;
	color: var(--wlt-fg-soft);
	line-height: 1.8;
}
.wlt-single-product .woocommerce-tabs .panel h2 { display: none; }

/* Related / up-sells */
.wlt-single-product .related,
.wlt-single-product .upsells {
	margin-top: 64px;
}
.wlt-single-product .related > h2,
.wlt-single-product .upsells > h2 {
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: -0.02em;
	margin-bottom: 28px;
}
.wlt-single-product .related ul.products,
.wlt-single-product .upsells ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 24px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
.wlt-single-product .related ul.products li.product,
.wlt-single-product .upsells ul.products li.product {
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	width: auto !important;
}

/* ==========================================================================
   WooCommerce — Cart Page
   ========================================================================== */
/* Reset double-padding: wlt-page adds 64px, shell adds its own 60px — use only one */
.woocommerce-cart .wlt-page,
.woocommerce-checkout .wlt-page { padding-block: 0; }
.woocommerce-cart .wlt-shell,
.woocommerce-checkout .wlt-shell { padding-block: 60px; }
.woocommerce-cart h1.entry-title,
.woocommerce-cart .page-title {
	text-align: center !important;
	font-size: 2.4rem !important;
	margin: 0 0 12px !important;
	font-weight: 400 !important;
	letter-spacing: -0.03em !important;
}
.woocommerce-cart .entry-header,
.woocommerce-cart .page-header {
	text-align: center !important;
	padding-bottom: 32px !important;
	border-bottom: 1px solid var(--wlt-line) !important;
	margin-bottom: 48px !important;
}
.woocommerce-cart .woocommerce-cart-form { margin: 0 !important; }
.woocommerce-cart-form table.shop_table,
.cart_totals table.shop_table {
	border: 1px solid var(--wlt-line);
	border-radius: var(--wlt-radius-md);
	overflow: hidden;
}
.woocommerce-cart .shop_table { border: none !important; background: transparent !important; }
.woocommerce-cart .shop_table thead tr { background: var(--wlt-bg-ivory) !important; }
.woocommerce-cart .shop_table thead th,
.woocommerce-cart-form table.shop_table th {
	font-size: 11px !important;
	letter-spacing: 0.15em !important;
	text-transform: uppercase !important;
	color: var(--wlt-muted) !important;
	font-weight: 600 !important;
	padding: 16px !important;
	border: none !important;
	background: var(--wlt-bg-ivory) !important;
}
.woocommerce-cart .shop_table tbody td,
.woocommerce-cart-form table.shop_table td {
	padding: 20px 16px !important;
	border: none !important;
	border-bottom: 1px solid var(--wlt-line) !important;
	vertical-align: middle !important;
	background: transparent !important;
}
.woocommerce-cart .product-remove { width: 50px; }
.woocommerce-cart .product-remove a.remove,
.woocommerce-cart-form .cart_item td.product-remove a.remove {
	font-size: 0 !important;
	width: 32px !important; height: 32px !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: var(--wlt-muted) !important;
	display: inline-flex !important;
	align-items: center; justify-content: center;
	transition: all 0.2s !important;
	text-decoration: none !important;
}
.woocommerce-cart .product-remove a.remove::before,
.woocommerce-cart-form .cart_item td.product-remove a.remove::before {
	content: "×";
	font-size: 20px !important;
	line-height: 1;
}
.woocommerce-cart .product-remove a.remove:hover,
.woocommerce-cart-form .cart_item td.product-remove a.remove:hover {
	background: rgba(176,69,69,0.1) !important;
	color: var(--wlt-sale) !important;
}
.woocommerce .cart .product-thumbnail img { border-radius: var(--wlt-radius); }
.woocommerce-cart .product-name a { font-size: 14px; font-weight: 500; color: var(--wlt-fg); }
.woocommerce-cart .product-name a:hover { color: var(--wlt-accent); }
.woocommerce .quantity .qty {
	padding: 8px 12px !important;
	border: 1.5px solid var(--wlt-line) !important;
	border-radius: var(--wlt-radius) !important;
	font-size: 14px !important;
	width: 72px !important;
	text-align: center !important;
}
/* Cart totals */
.cart_totals h2 { font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; letter-spacing: -0.02em; }
.cart_totals table.shop_table { background: var(--wlt-bg-ivory) !important; }
.cart_totals table.shop_table th { background: transparent !important; font-size: 13px; padding: 12px 16px !important; }
.cart_totals table.shop_table td { background: transparent !important; font-size: 14px; padding: 12px 16px !important; }
.woocommerce .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.button {
	display: block !important;
	width: 100% !important;
	padding: 16px !important;
	background: var(--wlt-fg) !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	text-align: center !important;
	border-radius: var(--wlt-radius) !important;
	transition: background 0.22s !important;
	border: none !important;
}
.woocommerce .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.button:hover {
	background: var(--wlt-accent) !important;
}

/* ==========================================================================
   WooCommerce — Checkout
   ========================================================================== */
.woocommerce-checkout h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 24px; letter-spacing: -0.02em; border-bottom: 1px solid var(--wlt-line); padding-bottom: 14px; }
.woocommerce form .form-row { margin-bottom: 16px; }
.woocommerce form .form-row label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--wlt-muted); margin-bottom: 6px; display: block; }
.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
	width: 100% !important;
	padding: 12px 16px !important;
	border: 1.5px solid var(--wlt-line) !important;
	border-radius: var(--wlt-radius) !important;
	font-size: 14px !important;
	font-family: inherit !important;
	color: var(--wlt-fg) !important;
	background: var(--wlt-bg) !important;
	transition: border-color 0.2s !important;
}
.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
	outline: none !important;
	border-color: var(--wlt-fg) !important;
}
#place_order {
	display: block !important;
	width: 100% !important;
	padding: 16px !important;
	background: var(--wlt-fg) !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	border-radius: var(--wlt-radius) !important;
	border: none !important;
	transition: background 0.22s !important;
}
#place_order:hover { background: var(--wlt-accent) !important; }
.woocommerce-checkout-review-order-table { font-size: 14px; }

/* ==========================================================================
   WooCommerce Classic Cart — collaterals 2-column layout
   ========================================================================== */
.woocommerce-cart .woocommerce {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
	align-items: start;
}
.woocommerce-cart .woocommerce-cart-form { grid-column: 1; }
.woocommerce-cart .cart-collaterals { grid-column: 2; }
@media (max-width: 900px) {
	.woocommerce-cart .woocommerce { grid-template-columns: 1fr; }
	.woocommerce-cart .cart-collaterals { grid-column: 1; }
}

/* Classic checkout 2-column */
.woocommerce-checkout .woocommerce {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
	align-items: start;
}
.woocommerce-checkout #customer_details { grid-column: 1; }
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review { grid-column: 2; }
@media (max-width: 900px) {
	.woocommerce-checkout .woocommerce { grid-template-columns: 1fr; }
	.woocommerce-checkout #order_review_heading,
	.woocommerce-checkout #order_review { grid-column: 1; }
}

/* Cart page title */
.woocommerce-cart .entry-header h1,
.woocommerce-checkout .entry-header h1 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--wlt-line);
}

/* ==========================================================================
   WooCommerce Blocks — Cart & Checkout (WC 8+ default block templates)
   ========================================================================== */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	font-family: var(--wlt-font);
	color: var(--wlt-fg);
}

/* Block primary button */
.wc-block-components-button:not(.is-link),
.wp-block-woocommerce-proceed-to-checkout-block a.checkout-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
	background: var(--wlt-fg) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--wlt-radius) !important;
	font-family: var(--wlt-font) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
	padding: 14px 28px !important;
	transition: background var(--wlt-transition) !important;
	cursor: pointer;
}
.wc-block-components-button:not(.is-link):hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
	background: var(--wlt-accent) !important;
}

/* Block form fields */
.wc-block-components-text-input input[type],
.wc-block-components-country-input .wc-block-components-country-input__select input,
.wc-block-components-state-input .wc-block-components-state-input__select input,
.wc-block-components-select select,
.wc-block-components-form .wc-block-components-text-input input {
	border: 1.5px solid var(--wlt-line) !important;
	border-radius: var(--wlt-radius) !important;
	font-family: var(--wlt-font) !important;
	font-size: 14px !important;
	padding: 11px 16px !important;
	background: #fff !important;
	color: var(--wlt-fg) !important;
	width: 100% !important;
}
.wc-block-components-text-input input[type]:focus,
.wc-block-components-form .wc-block-components-text-input input:focus {
	border-color: var(--wlt-fg) !important;
	outline: none !important;
	box-shadow: none !important;
}
.wc-block-components-label,
.wc-block-components-text-input label {
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	color: var(--wlt-muted) !important;
	margin-bottom: 6px !important;
}

/* Block cart items */
.wc-block-cart-items thead {
	background: var(--wlt-bg-ivory) !important;
}
.wc-block-cart-items thead th {
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.15em !important;
	text-transform: uppercase !important;
	color: var(--wlt-muted) !important;
	padding: 14px 16px !important;
	border: none !important;
}
.wc-block-cart-item__product-name a,
.wc-block-cart-item__product-name {
	font-size: 14px;
	font-weight: 500;
	color: var(--wlt-fg) !important;
}
.wc-block-cart-item__image img {
	border-radius: var(--wlt-radius) !important;
}
.wc-block-cart-item__wrap,
.wc-block-cart-items .wc-block-cart-item {
	border-bottom: 1px solid var(--wlt-line) !important;
}

/* Block totals / order summary */
.wc-block-components-totals-item {
	border-bottom: 1px solid var(--wlt-line) !important;
	padding: 12px 0 !important;
	font-size: 14px !important;
}
.wc-block-components-totals-footer-item strong,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-size: 1.1rem !important;
	font-weight: 600 !important;
}
.wc-block-components-order-summary-item {
	border-bottom: 1px solid var(--wlt-line) !important;
	padding-block: 14px !important;
}
.wc-block-components-order-summary-item__image img {
	border-radius: var(--wlt-radius) !important;
}

/* Block sections & steps */
.wc-block-checkout__step-title,
.wc-block-components-checkout-step__title {
	font-size: 1rem !important;
	font-weight: 600 !important;
	letter-spacing: -0.01em !important;
	color: var(--wlt-fg) !important;
}
.wc-block-components-sidebar-layout {
	gap: 40px !important;
}
.wc-block-components-panel__button {
	font-family: var(--wlt-font) !important;
	color: var(--wlt-fg) !important;
}

/* ==========================================================================
   Generic Page Template
   ========================================================================== */
.wlt-page { padding-block: 64px; }
.wlt-page h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 24px; font-weight: 400; letter-spacing: -0.03em; }
.wlt-page__hero {
	background: var(--wlt-bg-ivory);
	padding-block: 56px;
	text-align: center;
	margin-bottom: 0;
	border-bottom: 1px solid var(--wlt-line);
}
.wlt-page__hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; letter-spacing: -0.04em; margin-bottom: 8px; }
.wlt-page__hero p { color: var(--wlt-muted); font-size: 1rem; max-width: 480px; margin-inline: auto; }

/* Screen reader */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ==========================================================================
   Responsive — Tablet (≤ 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
	.wlt-header__nav { display: none; }
	.wlt-hamburger { display: flex; }
	.wlt-header__inner { gap: 16px; }

	.wlt-trust__grid { grid-template-columns: repeat(3, 1fr); }
	.wlt-categories__grid { grid-template-columns: repeat(2, 1fr); }
	.wlt-products-grid { grid-template-columns: repeat(2, 1fr); }
	.wlt-shop ul.products { grid-template-columns: repeat(2, 1fr) !important; }
	.wlt-reviews__grid { grid-template-columns: repeat(2, 1fr); }
	.wlt-why__grid { grid-template-columns: repeat(2, 1fr); }
	.wlt-design-details__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
	.wlt-editorial__grid { gap: 48px; }
	.wlt-featured-product__grid { gap: 48px; }
	.wlt-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
	.wlt-footer__col--brand { grid-column: 1 / -1; }
	.wlt-single-product__grid { gap: 40px; }
}

/* ==========================================================================
   Responsive — Mobile (≤ 768px)
   ========================================================================== */
@media (max-width: 768px) {
	.wlt-section { padding-block: 64px; }
	.wlt-section-head { margin-bottom: 36px; }

	.wlt-hero { height: 80vh; min-height: 520px; }
	.wlt-hero__title { font-size: 2.2rem; }

	.wlt-trust__grid { grid-template-columns: 1fr 1fr; gap: 16px; overflow-x: auto; }
	.wlt-categories__grid { grid-template-columns: 1fr; gap: 12px; }
	.wlt-cat-card { aspect-ratio: 4/3; }
	.wlt-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.wlt-shop ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
	.wlt-product-card__quick-add { opacity: 1; pointer-events: auto; } /* always show on mobile */

	.wlt-editorial__grid { grid-template-columns: 1fr; gap: 32px; }
	.wlt-editorial__image { aspect-ratio: 4/3; }
	.wlt-design-details__grid { grid-template-columns: 1fr; gap: 16px; }
	.wlt-featured-product__grid { grid-template-columns: 1fr; gap: 32px; }
	.wlt-reviews__grid { grid-template-columns: 1fr; }
	.wlt-why__grid { grid-template-columns: 1fr; }

	.wlt-single-product__grid { grid-template-columns: 1fr; }
	.wlt-single-product__gallery { position: static; }

	.wlt-footer__grid { grid-template-columns: 1fr 1fr; }
	.wlt-footer__col--brand { grid-column: 1 / -1; }
	.wlt-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

	.wlt-newsletter__form { flex-direction: column; }
	.wlt-newsletter__form input { border-right: 1.5px solid rgba(255,255,255,0.2); border-bottom: none; border-radius: var(--wlt-radius) var(--wlt-radius) 0 0; }
	.wlt-newsletter__form button { border-radius: 0 0 var(--wlt-radius) var(--wlt-radius); }

	.wlt-section-head--split { flex-direction: column; align-items: flex-start; gap: 12px; }
	.wlt-hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Responsive — Small Mobile (≤ 480px)
   ========================================================================== */
@media (max-width: 480px) {
	.wlt-shell { padding-inline: 16px; }
	.wlt-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.wlt-trust__grid { grid-template-columns: 1fr; }
	.wlt-footer__grid { grid-template-columns: 1fr; }
}
