/* ==========================================================
   Typography & buttons
   ========================================================== */
h1, h2, h3, h4 { font-family: var(--wl-font-heading); font-weight: 400; margin: 0 0 0.5em; }
.wl-section { padding: 48px 0; }
.wl-section__title { font-size: 1.6rem; margin-bottom: 24px; text-align: center; }

.wl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px 22px;
	border-radius: var(--wl-radius);
	border: 1px solid transparent;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	min-height: 44px;
}
.wl-btn--primary { background: var(--wl-color-accent); color: #fff; }
.wl-btn--primary:hover { background: var(--wl-color-accent-dark); }
.wl-btn--secondary { background: transparent; border-color: var(--wl-color-border); color: var(--wl-color-text); }
.wl-btn--small { padding: 8px 14px; min-height: 36px; font-size: 0.85rem; }

.wl-link-arrow { display: inline-block; margin-top: 12px; font-weight: 600; text-decoration: underline; }

.wl-empty-note { color: var(--wl-color-text-muted); }

/* ==========================================================
   Utility bar
   ========================================================== */
.wl-utility-bar { background: var(--wl-color-accent-dark); color: #f3efe9; }
.wl-utility-bar__row { display: flex; gap: 20px; padding: 6px 20px; font-size: 0.75rem; }
.wl-utility-bar__row a { color: inherit; text-decoration: none; opacity: 0.85; }
.wl-utility-bar__row a:hover { opacity: 1; text-decoration: underline; }
.site-header-stack .wl-utility-bar { background: transparent; }
@media (max-width: 640px) {
	.wl-utility-bar__row { gap: 12px; padding: 6px 16px; font-size: 0.7rem; }
}

/* ==========================================================
   Header promo / offer bar (inc/promo-bar.php + admin-editable via
   ACF "Header Promo / Offer Bar" on the Site-Wide Settings options
   page — Enable toggle, up to 6 rotating messages each with their own
   text, discount code, link, colors, and active date range).
   Deliberately kept solid/opaque even on the homepage's transparent
   overlay header (unlike .wl-utility-bar just above, which fades into
   the hero photo) — an offer banner needs to stay legible regardless
   of what's behind it. Multiple slides stack via position:absolute so
   .promo-bar__track's own height (not any one slide's) sets the bar's
   height, and assets/js/main.js's initPromoRotation() just toggles
   .is-active to cross-fade between them; a single slide never gets
   the rotation JS attached at all (slides.length < 2 guard) and simply
   renders as .is-active from PHP with nothing to fade against. */
.promo-bar { background: #1a1a1a; }
.promo-bar__track { position: relative; min-height: 40px; }
.promo-bar__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 44px;
	font-size: 0.82rem;
	text-align: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}
.promo-bar__slide.is-active { opacity: 1; pointer-events: auto; }
.promo-bar__slide a {
	color: inherit;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	text-decoration: none;
}
.promo-bar__slide a:hover { text-decoration: underline; text-underline-offset: 3px; }
.promo-bar__slide > span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}
.promo-bar__code {
	display: inline-block;
	padding: 1px 9px;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.03em;
}
@media (max-width: 640px) {
	.promo-bar__slide { padding: 8px 16px; font-size: 0.76rem; }
}

/* ==========================================================
   Header
   ========================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: var(--wl-color-surface);
	border-bottom: 1px solid var(--wl-color-border);
	transition: box-shadow 0.2s ease;
}
.site-header.is-stuck { box-shadow: 0 2px 10px rgba(0,0,0,0.06); }

/* Front-page only: promo bar + header overlay transparently on the hero
   banner instead of pushing it down. The wrapper is fixed so its height
   never occupies document flow — <main> starts at true y=0 right behind
   it, and the hero image runs full-bleed underneath both bars. */
.site-header-stack { position: fixed; top: 0; left: 0; right: 0; z-index: 600; }
.site-header--overlay {
	position: static;
	background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
	border-bottom: none;
	color: #fff;
	transition: background 0.2s ease;
}
.site-header--overlay .site-header__logo-text,
.site-header--overlay .site-header__hamburger,
.site-header--overlay .wl-header-icon,
.site-header--overlay .mega-menu__top-link { color: #fff; }
.site-header--overlay .wl-search-form__input { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: #fff; }
.site-header--overlay .wl-search-form__input::placeholder { color: rgba(255,255,255,0.75); }
.site-header--overlay .mega-menu { border-top: none; }
/* The mega-menu dropdown panel and live-search results always stay solid/opaque regardless of the transparent bar above them. */
.site-header--overlay .mega-menu__panel,
.site-header--overlay .wl-search-results { color: var(--wl-color-text); }

.site-header--overlay.is-stuck {
	background: var(--wl-color-surface);
	border-bottom: 1px solid var(--wl-color-border);
	color: inherit;
}
.site-header--overlay.is-stuck .site-header__logo-text,
.site-header--overlay.is-stuck .site-header__hamburger,
.site-header--overlay.is-stuck .wl-header-icon,
.site-header--overlay.is-stuck .mega-menu__top-link { color: inherit; }
.site-header--overlay.is-stuck .wl-search-form__input { background: var(--wl-color-bg); border-color: var(--wl-color-border); color: inherit; }
.site-header--overlay.is-stuck .wl-search-form__input::placeholder { color: var(--wl-color-text-muted); }

.site-header__row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 20px;
}

.site-header__hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
}
.site-header__hamburger span { display: block; width: 22px; height: 2px; background: currentColor; }

.site-header__logo { flex: 0 0 auto; }
.site-header__logo-text { font-family: var(--wl-font-heading); font-size: 1.4rem; letter-spacing: 0.02em; }
.site-header__logo .custom-logo-link { display: flex; align-items: center; }
/* The square badge (assets/img/logo.svg — kept as the favicon/site icon,
   where a dense small icon-mark belongs) reads "WAARA LIVING" in fine
   print sized relative to its own decorative background pattern: legible
   as a 512px favicon, but shrunk into ANY reasonable header height it
   stops being readable — that's font density, not a sizing bug, and no
   amount of CSS max-height fixes it. assets/img/logo-wordmark.svg pulls
   the exact same letterform paths out of that file into their own tight
   horizontal viewBox with no surrounding badge, so this is the header
   logo instead — same brand mark, sized to actually be read at header
   scale. Real intrinsic width/height are on the SVG itself, so
   width:auto here resolves correctly (unlike the square badge before it
   also got explicit dimensions — see the fix history for that bug). */
.site-header__logo .custom-logo { height: 34px; width: auto; display: block; }
/* The wordmark is dark ink (#1c1a17) for the normal solid-white header;
   on the homepage's transparent overlay header it sits on a dark hero
   photo instead, so it's forced to pure white here the same way the
   overlay's other header elements (icons, nav links) already switch to
   white — see the .site-header--overlay rules above. brightness(0)
   invert(1) recolors the SVG via <img> without needing a second file. */
.site-header--overlay:not(.is-stuck) .site-header__logo .custom-logo { filter: brightness(0) invert(1); }

.site-header__search { flex: 1 1 auto; min-width: 0; max-width: 480px; margin: 0 auto; position: relative; }
.wl-search-form { display: flex; position: relative; }
.wl-search-form__input {
	width: 100%;
	min-width: 0;
	padding: 10px 40px 10px 14px;
	border: 1px solid var(--wl-color-border);
	border-radius: 999px;
	background: var(--wl-color-bg);
	font-size: 0.95rem;
	min-height: 44px;
}
.wl-search-form__submit {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	min-width: 32px;
	min-height: 32px;
}

.wl-search-results {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	background: var(--wl-color-surface);
	border: 1px solid var(--wl-color-border);
	border-radius: var(--wl-radius);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	max-height: 420px;
	overflow-y: auto;
	z-index: 600;
}
.wl-search-results__item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; text-decoration: none; color: inherit; }
.wl-search-results__item:hover { background: var(--wl-color-bg); }
.wl-search-results__item img { width: 48px; height: 48px; object-fit: cover; border-radius: 3px; }
.wl-search-results__title { display: block; font-weight: 600; }
.wl-search-results__price { display: block; color: var(--wl-color-text-muted); font-size: 0.85rem; }
.wl-search-results__view-all { display: block; text-align: center; padding: 10px; font-weight: 600; border-top: 1px solid var(--wl-color-border); }
.wl-search-results__empty, .wl-search-results__loading { padding: 14px; color: var(--wl-color-text-muted); }

.site-header__icons { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.wl-header-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 44px;
	padding: 0 10px;
	text-decoration: none;
	font-size: 1.05rem;
	border-radius: var(--wl-radius);
	transition: background-color 0.15s ease;
}
.site-header:not(.site-header--overlay) .wl-header-icon:hover,
.site-header--overlay.is-stuck .wl-header-icon:hover { background-color: var(--wl-color-bg); }
.site-header--overlay:not(.is-stuck) .wl-header-icon:hover { background-color: rgba(255,255,255,0.12); }
.wl-header-icon__glyph { position: relative; line-height: 1; }
.wl-header-icon__label { font-size: 0.8rem; font-weight: 600; }
.wl-header-icon__count {
	position: absolute;
	top: -8px;
	right: -10px;
	background: var(--wl-color-accent);
	color: #fff;
	font-size: 0.6rem;
	line-height: 1;
	padding: 3px 5px;
	border-radius: 999px;
	min-width: 15px;
	text-align: center;
}

/* Mega menu */
.mega-menu { position: relative; border-top: 1px solid var(--wl-color-border); }
.site-header--overlay .mega-menu { border-top: none; }
.mega-menu__list { list-style: none; display: flex; justify-content: center; margin: 0; padding: 0; gap: 28px; }
/* Deliberately not position:relative on the individual <li> — the dropdown
   panel below needs its containing block to be the full-width .mega-menu
   nav (set above), not the narrow menu item, so it spans edge-to-edge as a
   true "mega" menu rather than a normal-width dropdown pinned under the
   single trigger word. */
.mega-menu__top-link { display: inline-flex; align-items: center; gap: 4px; padding: 12px 2px; text-decoration: none; font-weight: 600; font-size: 0.92rem; position: relative; }
.mega-menu__top-link::after {
	content: '';
	position: absolute;
	left: 2px;
	right: 2px;
	bottom: 8px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}
.mega-menu__top-link:hover::after,
.menu-item.has-children:focus-within .mega-menu__top-link::after { transform: scaleX(1); }
.mega-menu__caret { display: inline-block; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }

.mega-menu__panel {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: var(--wl-color-surface);
	border-top: 1px solid var(--wl-color-border);
	border-bottom: 1px solid var(--wl-color-border);
	box-shadow: 0 12px 24px rgba(0,0,0,0.06);
	z-index: 400;
}
.menu-item.has-children:hover > .mega-menu__panel,
.menu-item.has-children:focus-within > .mega-menu__panel { display: block; }
/* Two-column layout: subcategory links on the left, one promo image
   (reusing the category's own "category_tile_image" ACF field — the same
   image already used for the homepage room tiles and the category-page
   subcategory chips, so this needs no new admin data entry) on the right —
   matching the tikamoon.co.uk reference mega menu. */
.mega-menu__panel-inner { display: flex; align-items: flex-start; gap: 48px; padding: 32px 20px; }
.mega-menu__links { flex: 0 0 240px; display: flex; flex-direction: column; }
.mega-menu__sublist { list-style: none; margin: 0 0 12px; padding: 0; }
.mega-menu__link { text-decoration: none; display: block; padding: 7px 0; color: var(--wl-color-text-muted); font-size: 0.95rem; }
.mega-menu__link:hover { color: var(--wl-color-text); }
.mega-menu__view-all {
	display: inline-flex; align-items: center; gap: 6px;
	margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--wl-color-border);
	font-weight: 600; font-size: 0.88rem; text-decoration: none; color: var(--wl-color-text);
}
.mega-menu__view-all:hover span { transform: translateX(3px); }
.mega-menu__view-all span { display: inline-block; transition: transform 0.15s ease; }
.mega-menu__media { flex: 1 1 auto; display: block; aspect-ratio: 16 / 8; max-height: 260px; overflow: hidden; border-radius: var(--wl-radius); background: var(--wl-color-border); }
.mega-menu__media img { width: 100%; height: 100%; object-fit: cover; }

/* Mobile nav */
.mobile-nav { position: fixed; inset: 0; z-index: 700; background: var(--wl-color-surface); overflow-y: auto; padding: 20px; }
.mobile-nav[hidden] { display: none; }
.mobile-nav__list { list-style: none; margin: 0; padding: 0; }
.mobile-nav__list .menu-item { border-bottom: 1px solid var(--wl-color-border); }
.mobile-nav__list a { display: block; padding: 14px 0; text-decoration: none; font-weight: 600; }
.mobile-nav__list .menu-item--expandable summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	padding: 14px 0;
}
.mobile-nav__list .menu-item--expandable summary::-webkit-details-marker { display: none; }
.mobile-nav__list .menu-item--expandable summary a { padding: 0; }
.mobile-nav__list .menu-item--expandable summary::after {
	content: '';
	width: 8px; height: 8px;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	flex: none;
}
.mobile-nav__list .menu-item--expandable details[open] summary::after { transform: rotate(-135deg); }
.mobile-nav__sublist { list-style: none; margin: 0 0 12px; padding: 0 0 0 16px; }
.mobile-nav__sublist a { padding: 10px 0; font-weight: 400; color: var(--wl-color-text-muted); }

.mobile-bottom-nav {
	display: none;
	position: fixed;
	bottom: 0; left: 0; right: 0;
	z-index: 450;
	background: var(--wl-color-surface);
	border-top: 1px solid var(--wl-color-border);
	padding: 6px 0;
	justify-content: space-around;
}
.mobile-bottom-nav a, .mobile-bottom-nav button {
	display: flex; flex-direction: column; align-items: center; gap: 2px;
	font-size: 0.7rem; text-decoration: none; color: inherit; background: none; border: none;
	min-height: 44px; justify-content: center; padding: 0 8px;
}

@media (max-width: 1150px) {
	.wl-header-icon__label { display: none; }
	.wl-header-icon { padding: 0; width: 44px; justify-content: center; }
}

@media (max-width: 900px) {
	.mega-menu { display: none; }
	.site-header__hamburger { display: flex; }
	.mobile-bottom-nav { display: flex; }
	.wl-utility-bar { display: none; }
	body { padding-bottom: 56px; }
}

/* ==========================================================
   Promo bar rotation handled by JS toggling .is-active
   ========================================================== */

/* ==========================================================
   Homepage: Shop by Room
   ========================================================== */
.wl-room-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.wl-room-tile { position: relative; }
.wl-room-tile__link { display: block; text-decoration: none; color: inherit; border-radius: var(--wl-radius); }
.wl-room-tile__media { position: relative; display: block; aspect-ratio: 4/5; background: var(--wl-color-border); overflow: hidden; border-radius: var(--wl-radius); }
.wl-room-tile__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wl-room-tile__hover { opacity: 0; transition: opacity 0.3s ease; }
.wl-room-tile:hover .wl-room-tile__hover { opacity: 1; }
.wl-room-tile__label { display: block; padding: 10px 0; font-weight: 600; text-align: center; }
.wl-photo-credit {
	position: absolute; bottom: 4px; right: 6px; z-index: 2;
	font-size: 0.62rem; color: rgba(255,255,255,0.85); background: rgba(0,0,0,0.35);
	padding: 2px 6px; border-radius: 3px; line-height: 1.4;
}
.wl-photo-credit a { color: inherit; text-decoration: underline; }
@media (min-width: 700px) { .wl-room-grid { grid-template-columns: repeat(4, 1fr); } }

/* Brand statement */
.wl-brand-statement__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.wl-brand-statement--split .wl-brand-statement__inner {
	max-width: var(--wl-container);
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	text-align: left;
	align-items: center;
}
.wl-brand-statement__media { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--wl-radius); background: var(--wl-color-border); }
.wl-brand-statement__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wl-brand-statement--split .wl-brand-statement__copy { max-width: 480px; }
@media (min-width: 700px) {
	.wl-brand-statement--split .wl-brand-statement__inner { grid-template-columns: 1fr 1fr; }
}

/* Our Selection tabs */
.wl-selection__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 24px; }
.wl-selection__tab { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--wl-color-border); background: transparent; cursor: pointer; font-size: 0.9rem; min-height: 40px; }
.wl-selection__tab.is-active { background: var(--wl-color-text); color: #fff; border-color: var(--wl-color-text); }
.wl-selection__panel[hidden] { display: none; }

/* Product grid (loop).
   WooCommerce's own woocommerce_product_loop_start() — used on every
   shop/category/search/related-products loop — prints <ul class="products
   columns-N">, NOT our own "wl-products-grid" class (that class only
   exists on hand-written markup like the homepage's product-tab panels).
   Requiring the compound ".wl-products-grid.columns-4" meant this rule
   never matched the actual archive loop at all: display:grid silently
   never applied there, so it fell back to WooCommerce's own float-based
   li.product{float:left} layout the whole time — which never equalizes
   sibling heights, the real root cause of the row-misalignment bug (the
   title-height and margin-top:auto fixes were both correct in isolation,
   they just never had an actual CSS Grid row to align within). Matching
   the real markup — .products, and its real .columns-4 modifier — fixes
   every context at once. */
.wl-products-grid, .products {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 16px;
}
@media (min-width: 700px) {
	/* Homepage "Shop by room"/"Our selection" panels hardcode columns-4 and
	   stay 4-up; the real WooCommerce shop/category loop (.products, no
	   "wl-products-grid" class) now matches the tikamoon.co.uk reference's
	   3-up grid with larger product photography — these are kept as
	   separate rules (not a shared selector) specifically so they can
	   diverge like this. */
	.wl-products-grid.columns-4 { grid-template-columns: repeat(4, 1fr); }
	.products { grid-template-columns: repeat(3, 1fr); }
}
/* WooCommerce's core stylesheet still applies its old float-layout
   clearfix — ".products:before, .products:after { content:' ';
   display:table }" — directly to this same .products element. A
   generated-content pseudo-element with display:table is still a real
   box, so inside our CSS Grid it becomes an actual (invisible) grid
   item sitting in column 1, row 1 — shoving every real product over by
   one column and leaving a blank first column exactly the width of a
   card. Grid doesn't need a clearfix at all (it isn't float-based), so
   just kill the pseudo-elements outright. */
.wl-products-grid::before, .wl-products-grid::after,
.products::before, .products::after {
	content: none !important;
	display: none !important;
}

/* Every card in a grid row is stretched to equal height by CSS Grid's
   default align-items:stretch; the fixes below make sure each card's own
   *content* lines up on a common baseline too — title block reserved to a
   consistent 2-line height regardless of actual wrap, and the add-to-cart
   row pinned to the bottom of the card — so price/button don't drift up or
   down between cards with shorter vs. longer product names. */
/* The actual root cause of every card/button alignment symptom chased in
   this file: WooCommerce's own woocommerce-layout.css ships
   ".woocommerce ul.products li.product{float:left;width:22.05%;margin:0
   3.8% 2.992em 0}" — written for its own float-based grid, at specificity
   (0,3,2). That comfortably beats a plain ".wl-product-card{width:100%}"
   (0,1,0), so every card was silently collapsing to 22.05% of its GRID
   CELL width (~49px, not 22.05% of the row like the float layout
   intended) — one word per line, and two different button labels
   wrapping to a different number of lines is what actually produced the
   mismatched button heights, not a flex/grid alignment bug at all.
   !important is the honest tool here: this is overriding a
   higher-specificity plugin default built for a layout system (float)
   we've replaced with CSS Grid, not fighting our own CSS. margin is
   zeroed the same way — grid's own `gap` handles spacing now, WooCommerce's
   float margins would just add uneven extra space on top of it. */
.wl-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100% !important;
	min-width: 0;
	margin: 0 !important;
	float: none !important;
}
/* aspect-ratio + object-fit gives every card the same tall product-photo
   shape regardless of the source image's own dimensions, matching the
   large, consistently-cropped photography in the tikamoon.co.uk reference
   grid (their images are portrait-ish and fill the card width edge to edge,
   not a small thumbnail floating in whitespace). */
.wl-product-card__media { position: relative; display: block; aspect-ratio: 4 / 4.6; overflow: hidden; border-radius: var(--wl-radius); background: var(--wl-color-border); }
.wl-product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.wl-card-badges { position: absolute; top: 8px; left: 8px; z-index: 2; display: flex; flex-direction: column; gap: 4px; }
.wl-badge { font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 3px; background: #fff; }
.wl-badge--sale { background: var(--wl-color-sale); color: #fff; }
.wl-badge--new { background: var(--wl-color-text); color: #fff; }
.wl-badge--oos { background: var(--wl-color-border); color: var(--wl-color-text-muted); }
/* Wishlist + quick-view stack bottom-right of the image, hidden until the
   card is hovered/focused — matching the reference, which keeps the photo
   clean and only reveals these two icons on hover instead of the old
   always-visible top-right heart. They're two independent absolutely-
   positioned elements (not one wrapper div) since both already render via
   separate action hooks onto the same <a>; stacking is done with fixed
   "bottom" offsets rather than flex/gap. Touch devices have no hover, so
   they stay visible below the tablet breakpoint. */
.wl-card-wishlist,
.wl-card-quickview {
	position: absolute; right: 12px; z-index: 2;
	width: 40px; height: 40px; border-radius: 999px; background: #fff; border: none;
	display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem;
	color: var(--wl-color-text);
	box-shadow: 0 4px 14px -6px rgba(28,26,23,0.35);
	opacity: 0; transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}
.wl-card-wishlist { bottom: 60px; }
.wl-card-quickview { bottom: 12px; }
.wl-product-card:hover .wl-card-wishlist,
.wl-product-card:hover .wl-card-quickview,
.wl-product-card:focus-within .wl-card-wishlist,
.wl-product-card:focus-within .wl-card-quickview {
	opacity: 1; transform: translateY(0);
}
@media (max-width: 700px) {
	.wl-card-wishlist, .wl-card-quickview { opacity: 1; transform: none; }
}
.wl-card-wishlist.is-active { color: var(--wl-color-sale); }
.wl-product-card__body { display: flex; flex-direction: column; flex: 1; padding-top: 10px; text-align: left; }
/* WooCommerce's core stylesheet ships ".woocommerce ul.products li.product
   .woocommerce-loop-product__title { padding:.5em 0; margin:0; font-size:1em }"
   at specificity (0,4,2) — well above this rule's (0,2,0) — so it was
   silently winning the font-size (16px instead of our 0.95rem) and, worse,
   adding .5em top+bottom padding on top of our min-height reservation.
   Since this element is content-box, that padding stacked ON TOP of the
   2-line-clamp height instead of being absorbed by it, so a genuinely
   2-line title (which fills the clamp box) ended up visibly taller than a
   1-line title (which doesn't) — the price/rating/button rows below then
   started at a different height per card. !important reclaims all three
   properties from the plugin default. */
.wl-product-card .woocommerce-loop-product__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: 2.6em;
	margin: 0 0 6px !important;
	padding: 0 !important;
	font-size: 0.95rem !important;
	font-weight: 500;
	line-height: 1.3;
}
/* Reference-style card copy: name (the title rule above), a one-line
   description (only printed when the product actually has a WooCommerce
   short description — no placeholder text invented for products that
   don't), then price + variation count pinned to the bottom of the card
   with margin-top:auto so it lines up across a row regardless of how many
   lines the name/description above it wrapped to. */
.wl-product-card__desc {
	margin: 0 0 8px;
	font-size: 0.82rem;
	color: var(--wl-color-text-muted);
	line-height: 1.4;
}
.wl-product-card__price-row { margin-top: auto; }
.wl-product-card .price { display: block; margin-bottom: 2px; color: var(--wl-color-text); line-height: 1.2; }
.wl-product-card del { color: var(--wl-color-text-muted); }
.wl-product-card ins { text-decoration: none; color: var(--wl-color-sale); }
.wl-product-card__variants { display: block; font-size: 0.78rem; color: var(--wl-color-text-muted); }
.wl-product-card > a:first-of-type { display: block; }

/* Blog cards */
.wl-blog-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; }
@media (min-width: 700px) { .wl-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.wl-blog-card { text-decoration: none; color: inherit; display: block; }
.wl-blog-card__media { display: block; aspect-ratio: 4/3; background: var(--wl-color-border); overflow: hidden; margin-bottom: 10px; }
.wl-blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.wl-blog-card__title { font-weight: 600; display: block; }

/* Trust strip */
.wl-trust-strip { background: var(--wl-color-surface); border-top: 1px solid var(--wl-color-border); border-bottom: 1px solid var(--wl-color-border); }
.wl-trust-strip__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; text-align: center; font-size: 0.85rem; }
@media (min-width: 700px) { .wl-trust-strip__row { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================
   Shop / category archive layout
   ========================================================== */
.wl-archive-header { max-width: var(--wl-container); margin: 24px auto; padding: 0 20px; }
.wl-archive-header__intro { color: var(--wl-color-text-muted); max-width: 70ch; }
.wl-subcategory-strip {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding: 4px 20px 28px;
	scrollbar-width: thin;
}
.wl-subcategory-chip {
	flex: none;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px 8px 8px;
	border: 1px solid var(--wl-color-border);
	border-radius: 999px;
	text-decoration: none;
	color: var(--wl-color-text);
	background: var(--wl-color-surface);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
	white-space: nowrap;
}
.wl-subcategory-chip:hover { border-color: var(--wl-color-accent); box-shadow: 0 6px 16px -8px rgba(28,26,23,0.2); transform: translateY(-2px); }
.wl-subcategory-chip__media {
	width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex: none;
	background: var(--wl-color-bg);
}
.wl-subcategory-chip__media img { width: 100%; height: 100%; object-fit: cover; }
.wl-subcategory-chip__label { font-size: 0.88rem; font-weight: 600; }
.wl-subcategory-chip__count { font-weight: 400; color: var(--wl-color-text-muted); margin-left: 4px; }

.wl-shop-layout { max-width: var(--wl-container); margin: 0 auto; padding: 0 20px 48px; }
.wl-shop-layout__main { width: 100%; }
.wl-filter-note { font-size: 0.85rem; color: var(--wl-color-text-muted); }

/* Horizontal filter bar (tikamoon.co.uk reference: Sort + each attribute as
   its own dropdown pill, an "All filters" pill, product count on the right)
   replacing the old fixed-width vertical sidebar. The bar's outer element
   (id="wl-filter-sidebar", unchanged so assets/js/main.js's drawer toggle
   still targets it) doubles as the "All filters" slide-over drawer when
   .is-open is added — see that block below. */
.wl-filter-bar { margin-bottom: 28px; }
.wl-filter-bar__head { display: none; align-items: center; gap: 12px; }
.wl-filter-bar__title { font-size: 1.1rem; font-weight: 600; }
.wl-filter-bar__clear { margin-left: auto; font-size: 0.82rem; font-weight: 600; color: var(--wl-color-accent); text-decoration: none; }
.wl-filter-bar__clear:hover { text-decoration: underline; }
.wl-filter-drawer-close { display: none; }

.wl-filter-bar__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.wl-filter-bar__left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex: 1 1 auto; min-width: 0; }
.wl-filter-bar__count { margin-left: auto; font-size: 0.85rem; color: var(--wl-color-text-muted); white-space: nowrap; }
.wl-filter-bar__count .woocommerce-result-count { margin: 0; }

/* Each filter widget renders as a pill button that opens a floating dropdown
   panel underneath it (see inc/setup.php's before_widget/before_title for
   the button+content wrapper markup, assets/js/main.js's
   initShopFilterAccordion() for the open/close-on-outside-click toggle). */
.wl-filter-widget { position: relative; }
.wl-filter-widget__header {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1px solid var(--wl-color-border);
	border-radius: 999px;
	background: var(--wl-color-surface);
	cursor: pointer;
	white-space: nowrap;
	font-size: 0.85rem;
	color: var(--wl-color-text);
	transition: border-color 0.15s ease;
}
.wl-filter-widget__header:hover,
.wl-filter-widget__header[aria-expanded="true"] { border-color: var(--wl-color-accent); }
.wl-filter-widget__title { font-size: 0.85rem; text-transform: none; letter-spacing: 0; margin: 0; font-weight: 500; }
.wl-filter-widget__caret {
	flex: none; width: 7px; height: 7px; margin-top: -3px;
	border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg); transition: transform 0.2s ease;
}
.wl-filter-widget__header[aria-expanded="true"] .wl-filter-widget__caret { transform: rotate(-135deg); margin-top: 3px; }
.wl-filter-widget__content {
	position: absolute; top: calc(100% + 8px); left: 0; z-index: 60;
	min-width: 260px;
	background: var(--wl-color-surface);
	border: 1px solid var(--wl-color-border);
	border-radius: 12px;
	box-shadow: 0 16px 40px -16px rgba(28,26,23,0.3);
	padding: 18px 20px;
}
.wl-filter-widget__content[hidden] { display: none; }

/* Sort control: same .wl-filter-widget pill+dropdown as every attribute
   filter (see wl_render_sort_widget() in inc/woocommerce-setup.php) — an
   up/down-arrow icon instead of the caret, and its dropdown lists sort
   options as plain links rather than checkboxes. */
.wl-filter-widget--sort .wl-filter-widget__sort-icon { flex: none; color: var(--wl-color-text-muted); }
.wl-sort-options { list-style: none; margin: 0; padding: 0; min-width: 200px; }
.wl-sort-options li + li { margin-top: 2px; }
.wl-sort-options a {
	display: block;
	padding: 8px 10px;
	border-radius: 8px;
	font-size: 0.88rem;
	color: var(--wl-color-text);
	text-decoration: none;
	white-space: nowrap;
}
.wl-sort-options a:hover { background: var(--wl-color-bg); }
.wl-sort-options a.is-active { background: var(--wl-color-bg); font-weight: 600; }

.wl-filter-bar__all {
	padding: 10px 18px;
	border: 1px solid var(--wl-color-text);
	border-radius: 999px;
	background: var(--wl-color-text);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}
.wl-filter-bar__all:hover { background: var(--wl-color-accent-dark, var(--wl-color-text)); }

/* "All filters" turns the whole bar into a full-height slide-over drawer —
   every pill's dropdown panel collapses into a plain stacked accordion
   list instead, forced open regardless of its individual collapsed state
   (the point of this view is to see every filter at once). */
.wl-filter-bar.is-open {
	position: fixed; inset: 0; z-index: 900;
	background: rgba(20,17,13,0.45);
	display: flex; justify-content: flex-end;
}
.wl-filter-bar.is-open .wl-filter-bar__row {
	flex-direction: column; align-items: stretch; justify-content: flex-start;
	width: 380px; max-width: 88vw; height: 100%;
	background: var(--wl-color-surface);
	padding: 20px; margin: 0; gap: 0;
	overflow-y: auto;
}
.wl-filter-bar.is-open .wl-filter-bar__head {
	display: flex; padding-bottom: 16px; margin-bottom: 8px;
	border-bottom: 1px solid var(--wl-color-border);
}
.wl-filter-bar.is-open .wl-filter-drawer-close { display: block; background: none; border: none; font-size: 1.5rem; cursor: pointer; line-height: 1; }
.wl-filter-bar.is-open .wl-filter-bar__left { flex-direction: column; align-items: stretch; width: 100%; gap: 0; }
.wl-filter-bar.is-open .wl-filter-bar__all,
.wl-filter-bar.is-open .wl-filter-bar__count { display: none; }
.wl-filter-bar.is-open .wl-filter-widget { position: static; border-bottom: 1px solid var(--wl-color-border); }
.wl-filter-bar.is-open .wl-filter-widget__header {
	display: flex; width: 100%; justify-content: space-between;
	border: none; border-radius: 0; background: none; padding: 16px 0;
}
.wl-filter-bar.is-open .wl-filter-widget__content {
	position: static; min-width: 0; border: none; box-shadow: none; background: none; padding: 0 0 16px;
}
.wl-filter-bar.is-open .wl-filter-widget__content[hidden] { display: block !important; }

.wl-filter-bar ul { list-style: none; margin: 0; padding: 0; }
/* WooCommerce's layered-nav/rating markup is <li><a>Term</a> <span class="count">(1)</span></li> —
   the count is a SIBLING of the link, not nested inside it, so the li itself
   (not the link) needs to be the flex row for the name/count to align on
   opposite ends instead of the count wrapping onto its own line. */
.wl-filter-bar .widget_layered_nav ul li,
.wl-filter-bar .widget_rating_filter ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 2px;
	padding: 2px 10px;
	border-radius: 8px;
	transition: background-color 0.15s ease;
}
.wl-filter-bar .widget_layered_nav_filters ul li { margin-bottom: 4px; }
.wl-filter-bar .widget_layered_nav ul li:hover,
.wl-filter-bar .widget_rating_filter ul li:hover { background: var(--wl-color-bg); }
.wl-filter-bar .widget_layered_nav ul li a,
.wl-filter-bar .widget_rating_filter ul li a {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1 1 auto;
	min-width: 0;
	padding: 8px 0;
	color: var(--wl-color-text);
	text-decoration: none;
	font-size: 0.9rem;
}
.wl-filter-bar .widget_layered_nav ul li .count,
.wl-filter-bar .widget_rating_filter ul li .count { flex: none; color: var(--wl-color-text-muted); font-size: 0.8rem; }

/* Checkbox indicator — WooCommerce's layered-nav links are plain <a> tags,
   not real <input type="checkbox">, so this is a CSS-drawn square that
   fills in when the term is the active/"chosen" filter. */
.wl-filter-bar .widget_layered_nav ul li a::before {
	content: '';
	flex: none;
	width: 16px; height: 16px;
	border: 1.5px solid var(--wl-color-border);
	border-radius: 4px;
	background: var(--wl-color-surface);
	transition: background-color 0.15s ease, border-color 0.15s ease;
}
.wl-filter-bar .widget_layered_nav ul li:hover a::before { border-color: var(--wl-color-accent); }
.wl-filter-bar .widget_layered_nav ul li.chosen a::before,
.wl-filter-bar .widget_layered_nav ul li.wc-layered-nav-term--chosen a::before {
	background: var(--wl-color-accent);
	border-color: var(--wl-color-accent);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}
.wl-filter-bar .widget_layered_nav ul li.chosen a,
.wl-filter-bar .widget_layered_nav ul li.wc-layered-nav-term--chosen a { font-weight: 600; }

.wl-filter-bar .widget_layered_nav_filters ul li a {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 12px; border-radius: 999px; background: var(--wl-color-bg);
	font-size: 0.82rem; text-decoration: none; color: var(--wl-color-text);
}
.wl-filter-bar .widget_layered_nav_filters ul li a:hover { background: var(--wl-color-border); }

/* Price filter (jQuery UI slider) */
.wl-filter-bar .price_slider_wrapper { margin-top: 4px; }
.wl-filter-bar .price_slider { margin-bottom: 18px; }
.wl-filter-bar .ui-slider {
	position: relative; height: 4px; border-radius: 999px; background: var(--wl-color-border);
}
.wl-filter-bar .ui-slider-range { position: absolute; top: 0; height: 100%; border-radius: 999px; background: var(--wl-color-accent); }
.wl-filter-bar .ui-slider-handle {
	position: absolute; top: 50%; width: 16px; height: 16px; margin-left: -8px;
	background: var(--wl-color-surface); border: 2px solid var(--wl-color-accent);
	border-radius: 50%; transform: translateY(-50%); cursor: pointer; outline: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.wl-filter-bar .price_slider_amount { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.wl-filter-bar .price_slider_amount .price_label { font-size: 0.85rem; color: var(--wl-color-text-muted); }
.wl-filter-bar .price_slider_amount button {
	padding: 8px 16px; border: none; border-radius: 999px; background: var(--wl-color-accent);
	color: #fff; font-size: 0.82rem; font-weight: 600; cursor: pointer;
}
.wl-filter-bar .price_slider_amount button:hover { background: var(--wl-color-accent-dark); }

/* Rating filter stars */
.wl-filter-bar .star-rating { overflow: hidden; position: relative; height: 1em; line-height: 1em; width: 5.4em; font-size: 0.9rem; }
.wl-filter-bar .star-rating::before { content: '\2605\2605\2605\2605\2605'; color: var(--wl-color-border); letter-spacing: 2px; }
.wl-filter-bar .star-rating span { position: absolute; top: 0; left: 0; overflow: hidden; }
.wl-filter-bar .star-rating span::before { content: '\2605\2605\2605\2605\2605'; color: #d4a72c; letter-spacing: 2px; }

.wl-category-seo-copy { max-width: var(--wl-container); margin: 32px auto; padding: 0 20px; color: var(--wl-color-text-muted); }

/* ==========================================================
   Page hero / FAQ / content pages
   ========================================================== */
.page-hero { position: relative; padding: 48px 0; text-align: center; }
.page-hero--has-image { color: #fff; min-height: 40vh; display: flex; align-items: flex-end; }
.page-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero__content { position: relative; z-index: 1; padding-bottom: 32px; }
.page-hero__kicker { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; }

.wl-page-content { padding: 40px 20px; max-width: 860px; margin: 0 auto; }
.wl-faq { margin-top: 48px; border-top: 1px solid var(--wl-color-border); padding-top: 24px; }
.wl-faq__item { border-bottom: 1px solid var(--wl-color-border); }
.wl-faq__question { width: 100%; text-align: left; background: none; border: none; padding: 16px 0; font-size: 1rem; font-weight: 600; display: flex; justify-content: space-between; cursor: pointer; }
.wl-faq__caret { display: inline-block; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform 0.2s ease; }
.wl-faq__question[aria-expanded="true"] .wl-faq__caret { transform: rotate(-135deg); }
.wl-faq__answer { padding: 0 0 16px; color: var(--wl-color-text-muted); }
.wl-faq__answer[hidden] { display: none; }

/* ==========================================================
   Footer
   ========================================================== */
.site-footer { background: var(--wl-color-accent-dark); color: #f3efe9; margin-top: 48px; }
.site-footer__newsletter { border-bottom: 1px solid rgba(255,255,255,0.12); }
.site-footer__newsletter-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding: 32px 20px; }
.wl-newsletter-form { display: flex; gap: 8px; }
.wl-newsletter-form input { padding: 10px 14px; border-radius: var(--wl-radius); border: none; min-width: 220px; min-height: 44px; }
.site-footer__columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 32px 20px; }
.site-footer a { text-decoration: none; color: #f3efe9; opacity: 0.85; }
.site-footer h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; opacity: 0.8; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 16px 20px; font-size: 0.8rem; opacity: 0.7; }
@media (min-width: 700px) { .site-footer__columns { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================
   Cart drawer
   ========================================================== */
.wl-cart-drawer[hidden] { display: none; }
.wl-cart-drawer__overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 900; }
.wl-cart-drawer__panel { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%); background: var(--wl-color-surface); z-index: 901; padding: 20px; overflow-y: auto; }
.wl-cart-drawer__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.wl-cart-drawer__close { background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* ==========================================================
   Sticky mobile add-to-cart bar (single product)
   ========================================================== */
.wl-sticky-atc {
	display: none;
	position: fixed; bottom: 0; left: 0; right: 0; z-index: 460;
	background: var(--wl-color-surface); border-top: 1px solid var(--wl-color-border);
	padding: 10px 16px; align-items: center; justify-content: space-between; gap: 12px;
}
.wl-sticky-atc__info { display: flex; align-items: center; gap: 10px; }
.wl-sticky-atc__info img { width: 44px; height: 44px; object-fit: cover; border-radius: 3px; }
.wl-sticky-atc__title { margin: 0; font-size: 0.85rem; }
.wl-sticky-atc__price { margin: 0; font-weight: 700; }
@media (max-width: 900px) { .wl-sticky-atc.is-visible { display: flex; } }

/* ==========================================================
   Installments / delivery estimator
   ========================================================== */
.wl-installments { font-size: 0.85rem; color: var(--wl-color-text-muted); }
.wl-delivery-estimator { margin: 16px 0; padding: 16px; border: 1px solid var(--wl-color-border); border-radius: var(--wl-radius); }
.wl-delivery-estimator__row { display: flex; gap: 8px; margin-top: 8px; }
.wl-delivery-estimator__row input { flex: 1; padding: 10px; border: 1px solid var(--wl-color-border); border-radius: var(--wl-radius); min-height: 44px; }
.wl-delivery-estimator__result[hidden] { display: none; }

/* Product accordion tabs */
.woocommerce-tabs ul.tabs { display: none !important; }
.woocommerce-tabs .wc-tab-accordion-heading {
	display: flex; width: 100%; justify-content: space-between; align-items: center;
	cursor: pointer; padding: 16px 0; margin: 0; font-size: 1rem; font-weight: 600;
	background: none; border: none; border-top: 1px solid var(--wl-color-border); text-align: left;
}
.woocommerce-tabs .wc-tab-accordion-heading::after {
	content: ''; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: rotate(45deg); transition: transform 0.2s ease; flex: none;
}
.woocommerce-tabs .wc-tab-accordion-heading[aria-expanded="true"]::after { transform: rotate(-135deg); }
.woocommerce-tabs .wc-tab[hidden] { display: none; }
.woocommerce-tabs .wc-tab { padding-bottom: 16px; border-bottom: 1px solid var(--wl-color-border); }

/* Misc */
.wl-404 { text-align: center; padding: 80px 20px; }
.wl-404__popular ul { list-style: none; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; padding: 0; }

/* ==========================================================
   Blog: single post, tags, comments
   ========================================================== */
.wl-post-tags { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; padding: 0; margin: 24px 0 0; }
.wl-post-tags li a { display: inline-block; padding: 4px 12px; border: 1px solid var(--wl-color-border); border-radius: 999px; text-decoration: none; font-size: 0.8rem; }
.wl-related-posts { background: var(--wl-color-surface); }

.wl-comments-wrap { max-width: 860px; margin: 0 auto 60px; }
.wl-comments__title { font-size: 1.3rem; }
.wl-comments__list { list-style: none; margin: 0; padding: 0; }
.wl-comments__list .comment-body { padding: 16px 0; border-bottom: 1px solid var(--wl-color-border); }
.wl-comments__list .comment-author img { border-radius: 999px; vertical-align: middle; margin-right: 8px; }
.wl-comments__list ol.children { list-style: none; margin: 0 0 0 24px; padding: 0; }
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea {
	width: 100%; padding: 10px; border: 1px solid var(--wl-color-border); border-radius: var(--wl-radius);
	margin-bottom: 12px; min-height: 44px; font-family: inherit;
}
#commentform textarea { min-height: 120px; }

.wl-blog-sidebar { max-width: 860px; margin: 0 auto 60px; padding-top: 24px; border-top: 1px solid var(--wl-color-border); }
.wl-widget { margin-bottom: 24px; }
.wl-widget__title { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ==========================================================
   Contact Us page
   ========================================================== */
.wl-contact-page { padding: 56px 20px 96px; }

.wl-contact-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	max-width: 1100px;
	margin: 0 auto;
	align-items: start;
}
@media (min-width: 900px) {
	.wl-contact-split { grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
}

.wl-contact-intro { color: var(--wl-color-text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 36px; }
.wl-contact-intro p:last-child { margin-bottom: 0; }

.wl-contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.wl-contact-list__item {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 20px;
	margin: 0 -20px;
	border-radius: 14px;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.wl-contact-list__item::after {
	/* subtle accent bar that slides in from the left on hover */
	content: '';
	position: absolute;
	left: 0;
	top: 14px;
	bottom: 14px;
	width: 3px;
	border-radius: 999px;
	background: var(--wl-color-accent);
	transform: scaleY(0);
	transition: transform 0.2s ease;
}
.wl-contact-list__item:hover,
.wl-contact-list__item:focus-within {
	background: var(--wl-color-surface);
	border-color: var(--wl-color-border);
	box-shadow: 0 10px 24px -12px rgba(28,26,23,0.18);
	transform: translateX(4px);
}
.wl-contact-list__item:hover::after,
.wl-contact-list__item:focus-within::after { transform: scaleY(1); }
.wl-contact-list__icon {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 999px;
	background: var(--wl-color-bg);
	color: var(--wl-color-accent);
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.wl-contact-list__item:hover .wl-contact-list__icon,
.wl-contact-list__item:focus-within .wl-contact-list__icon {
	background: var(--wl-color-accent);
	color: #fff;
	transform: scale(1.08);
}
.wl-contact-list__icon svg { width: 20px; height: 20px; }
.wl-contact-list__item strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.wl-contact-list__item a {
	display: inline-block;
	font-weight: 600;
	color: var(--wl-color-accent);
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0% 1px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	transition: background-size 0.2s ease;
}
.wl-contact-list__item a:hover,
.wl-contact-list__item a:focus-visible { background-size: 100% 1px; }
.wl-contact-list__meta { display: block; font-size: 0.82rem; color: var(--wl-color-text-muted); margin-top: 4px; }

.wl-contact-form-panel {
	background: var(--wl-color-surface);
	border-radius: 16px;
	padding: 40px 32px;
	box-shadow: 0 1px 3px rgba(28,26,23,0.06), 0 20px 40px -20px rgba(28,26,23,0.18);
}
.wl-contact-form-panel h2 { font-size: 1.5rem; margin: 0 0 24px; }
@media (max-width: 480px) {
	.wl-contact-form-panel { padding: 28px 20px; border-radius: 12px; }
}

/* Contact Form 7 field styling */
.wl-contact-form .wpcf7-form label { display: block; margin-bottom: 20px; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--wl-color-text-muted); }
.wl-contact-form .wpcf7-form input[type="text"],
.wl-contact-form .wpcf7-form input[type="email"],
.wl-contact-form .wpcf7-form select,
.wl-contact-form .wpcf7-form textarea {
	display: block;
	width: 100%;
	margin-top: 8px;
	padding: 13px 14px;
	border: 1px solid var(--wl-color-border);
	border-radius: 8px;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: normal;
	color: var(--wl-color-text);
	min-height: 46px;
	background: var(--wl-color-bg);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wl-contact-form .wpcf7-form input[type="text"]:focus,
.wl-contact-form .wpcf7-form input[type="email"]:focus,
.wl-contact-form .wpcf7-form select:focus,
.wl-contact-form .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--wl-color-accent);
	box-shadow: 0 0 0 3px rgba(122,92,62,0.15);
	background: var(--wl-color-surface);
}
.wl-contact-form .wpcf7-form textarea { min-height: 140px; resize: vertical; }
.wl-contact-form .wpcf7-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	min-height: 50px;
	width: 100%;
	border: none;
	border-radius: 999px;
	background: var(--wl-color-accent);
	color: #fff;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.1s ease;
}
@media (min-width: 480px) {
	.wl-contact-form .wpcf7-form input[type="submit"] { width: auto; padding: 14px 40px; }
}
.wl-contact-form .wpcf7-form input[type="submit"]:hover { background: var(--wl-color-accent-dark); }
.wl-contact-form .wpcf7-form input[type="submit"]:active { transform: scale(0.98); }
.wl-contact-form .wpcf7-form input[type="submit"]:disabled { opacity: 0.6; cursor: default; transform: none; }
.wl-contact-form .wpcf7-not-valid { border-color: var(--wl-color-sale) !important; }
.wl-contact-form .wpcf7-not-valid-tip { color: var(--wl-color-sale); font-size: 0.8rem; font-weight: 400; text-transform: none; letter-spacing: normal; margin-top: 6px; }
.wl-contact-form .wpcf7-response-output {
	margin-top: 24px;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 0.9rem;
	border: 1px solid var(--wl-color-border);
}
.wl-contact-form form.sent .wpcf7-response-output { border-color: #3a7a3a; color: #245c24; background: #eef7ee; }
.wl-contact-form form.invalid .wpcf7-response-output,
.wl-contact-form form.failed .wpcf7-response-output { border-color: var(--wl-color-sale); color: var(--wl-color-sale); background: #fbeceb; }
.wl-contact-form .wpcf7-spinner { display: inline-block; margin-left: 10px; }
