/* ==========================================================================
   Luxe More – main stylesheet (mobile-first)
   Tokens live in theme.json; this file handles layout, components and the
   WooCommerce / plugin surfaces theme.json cannot reach.
   ========================================================================== */

:root {
	--lm-ease: var(--wp--custom--ease, cubic-bezier(.2, .7, .2, 1));
	--lm-line: 1px solid var(--wp--preset--color--line);
	--lm-header-h: 3.75rem;
	/* Brass reads as brass on velvet, but only passes contrast on travertine when it is
	   taken down a few stops, so text and ornament use different weights of the same colour. */
	--lm-gold-ink: #7A5A24;
}

/* ---------- base ---------- */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: clip; }
img, svg, video { max-width: 100%; height: auto; }
img { display: block; }
::selection { background: var(--wp--preset--color--gold); color: var(--wp--preset--color--contrast); }
:focus-visible { outline: 2px solid var(--wp--preset--color--gold); outline-offset: 3px; border-radius: 2px; }
button, input, select, textarea { font: inherit; color: inherit; }
main.lm-main { min-height: 50vh; }
/* Thai headings: break only at the spaces we place, not mid-phrase. */
h1, h2, h3, .lm-card__title, .lm-faq__item summary { word-break: keep-all; overflow-wrap: anywhere; text-wrap: balance; }

.lm-eyebrow {
	font-size: var(--wp--preset--font-size--xs);
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
	margin: 0 0 .75rem;
}
.lm-eyebrow--light { color: var(--wp--preset--color--gold); }
.lm-section__head--light .lm-section__link--light a { color: var(--wp--preset--color--paper); }
.lm-eyebrow a { text-decoration: none; color: inherit; }

/* ---------- header ---------- */
.lm-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--wp--preset--color--base);
	border-bottom: 1px solid transparent;
	transition: border-color .35s var(--lm-ease);
}
.lm-header.is-scrolled { border-bottom-color: var(--wp--preset--color--line); }
.lm-header__row { min-height: var(--lm-header-h); gap: var(--wp--preset--spacing--30); }
.lm-header__brand { order: 1; }
.lm-header__tools { order: 2; margin-left: auto; }
.lm-nav { order: 3; }
.lm-wordmark {
	display: inline-flex; align-items: center; gap: .6rem;
	color: var(--wp--preset--color--contrast); text-decoration: none;
	transition: color .25s var(--lm-ease);
}
.lm-wordmark__rule { width: 1.5rem; height: 1px; background: currentColor; opacity: .55; flex: none; }
.lm-wordmark__text {
	font-family: var(--wp--preset--font-family--body);
	font-size: .95rem; font-weight: 500; line-height: 1;
	letter-spacing: .26em; text-transform: uppercase; white-space: nowrap;
	padding-left: .08em;                      /* optical: tracking adds space on the right only */
}
.lm-wordmark:hover { color: var(--lm-gold-ink); }
.lm-header--slim .lm-wordmark__text { font-size: .875rem; }
/* A phone header carries brand, language, currency, account and bag. The rules flanking
   the wordmark are the one decorative part, so they go first to keep the rest legible. */
@media (max-width: 600px) {
	.lm-wordmark__rule { display: none; }
	.lm-wordmark { gap: 0; }
	.lm-wordmark__text { font-size: .8rem; letter-spacing: .2em; }
	.lm-header__row { gap: .6rem; }
	.lm-header__row .lm-header__tools { gap: .5rem; }
}

.lm-nav .wp-block-navigation-item__content { position: relative; padding: .35rem 0; }
.lm-nav .wp-block-navigation-item__content::after {
	content: "";
	position: absolute; left: 0; right: 0; bottom: 0;
	height: 1px; background: currentColor;
	transform: scaleX(0); transform-origin: left;
	transition: transform .35s var(--lm-ease);
}
.lm-nav .wp-block-navigation-item__content:hover::after,
.lm-nav .current-menu-item > .wp-block-navigation-item__content::after { transform: scaleX(1); }

/* mobile overlay menu (core navigation) */
.lm-nav .wp-block-navigation__responsive-container-open,
.lm-nav .wp-block-navigation__responsive-container-close { color: var(--wp--preset--color--contrast); padding: .25rem; }
.lm-nav .wp-block-navigation__responsive-container.is-menu-open { padding: calc(var(--lm-header-h) + 1rem) var(--wp--preset--spacing--30) var(--wp--preset--spacing--50); }
.lm-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content { gap: 0; align-items: flex-start; justify-content: flex-start; }
.lm-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container { align-items: flex-start; gap: 0; width: 100%; }
.lm-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item { width: 100%; border-bottom: var(--lm-line); }
.lm-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--large);
	font-weight: 400;
	padding: 1rem 0;
	display: block; width: 100%;
}
.lm-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content::after { display: none; }

@media (min-width: 1024px) {
	.lm-header__row { gap: var(--wp--preset--spacing--40); }
	.lm-nav { order: 2; flex: 1 1 auto; justify-content: center; }
	.lm-header__tools { order: 3; margin-left: 0; }
}

/* language + currency switchers: compact text controls */
.lm-switchers { font-size: var(--wp--preset--font-size--xs); font-weight: 500; letter-spacing: .06em; }
.lm-switchers .wp-block-shortcode { display: inline-block; }
.lm-switchers a { text-decoration: none; }

/* language toggle "TH / EN" (built in patterns/header-row.php from TranslatePress data) */
.lm-lang { display: inline-flex; align-items: center; gap: .3rem; }
.lm-lang__item { padding: .35rem .1rem; text-decoration: none; color: var(--wp--preset--color--muted); line-height: 1; }
.lm-lang__item:hover { color: var(--lm-gold-ink); }
.lm-lang__item.is-current { color: var(--wp--preset--color--contrast); border-bottom: 1px solid currentColor; }
.lm-lang__sep { color: var(--wp--preset--color--line); }

/* WCML currency switcher (dropdown template) */
.lm-switchers .wcml-dropdown { width: auto; font-size: inherit; position: relative; }
.lm-switchers .wcml-dropdown ul { margin: 0 !important; padding: 0; list-style: none; }
.lm-switchers .wcml-dropdown li { border: 0; background: transparent; }
.lm-switchers .wcml-dropdown li:hover, .lm-switchers .wcml-dropdown li:focus { background: transparent; }
.lm-switchers .wcml-dropdown a { color: var(--wp--preset--color--contrast); padding: .35rem .2rem; line-height: 1.2; display: block; }
.lm-switchers .wcml-dropdown a.wcml-cs-item-toggle { padding-right: 1.1rem; }
.lm-switchers .wcml-dropdown a.wcml-cs-item-toggle::after { right: 0; border-width: .3em; border-top-width: .42em; opacity: .6; top: calc(50% - .15em); }
.lm-switchers .wcml-dropdown .wcml-cs-submenu {
	left: auto; right: 0; min-width: 4.25rem; border: var(--lm-line); border-top: var(--lm-line);
	background: var(--wp--preset--color--paper); z-index: 70;
}
.lm-switchers .wcml-dropdown .wcml-cs-submenu li { border: 0; background: var(--wp--preset--color--paper); }
.lm-switchers .wcml-dropdown .wcml-cs-submenu a { padding: .45rem .75rem; }
.lm-switchers .wcml-dropdown .wcml-cs-submenu a:hover { color: var(--lm-gold-ink); }
.lm-switchers .wcml-dropdown.wcml-cs-open .wcml-cs-submenu { visibility: visible; }

/* mini cart (bag) */
/* Sign in / my account. Text on a desktop so it cannot be missed, icon only once the
   header tightens up. */
.lm-account {
	display: inline-flex; align-items: center; gap: .4rem;
	color: var(--wp--preset--color--contrast); text-decoration: none;
	font-size: var(--wp--preset--font-size--xs); font-weight: 500; letter-spacing: .06em;
	padding: .25rem; line-height: 1;
}
.lm-account:hover, .lm-account:focus-visible { color: var(--lm-gold-ink); }
.lm-account__icon { flex: none; }
@media (max-width: 1099px) {
	.lm-account__label {
		position: absolute; width: 1px; height: 1px; overflow: hidden;
		clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
	}
}
.lm-bag .wc-block-mini-cart__button { color: var(--wp--preset--color--contrast); padding: .25rem; }
.lm-bag .wc-block-mini-cart__quantity-badge { border: 0; }
.lm-bag .wc-block-mini-cart__badge { background: var(--wp--preset--color--gold); color: var(--wp--preset--color--paper); }
.wc-block-mini-cart__drawer { font-family: var(--wp--preset--font-family--body); }

/* ---------- buttons ---------- */
.wp-block-button__link { transition: background-color .25s var(--lm-ease), color .25s var(--lm-ease), transform .25s var(--lm-ease); }
.wp-block-button__link:hover { transform: translateY(-1px); }

.is-style-text-arrow .wp-block-button__link {
	background: transparent !important; color: var(--wp--preset--color--contrast) !important;
	padding: .95rem 0 !important; border-radius: 0 !important; font-weight: 500;
}
.is-style-text-arrow .wp-block-button__link::after {
	content: "→"; display: inline-block; margin-left: .5rem;
	transition: transform .3s var(--lm-ease);
}
.is-style-text-arrow .wp-block-button__link:hover { color: var(--wp--preset--color--gold) !important; transform: none; }
.is-style-text-arrow .wp-block-button__link:hover::after { transform: translateX(4px); }

.is-style-ghost .wp-block-button__link {
	background: transparent !important; color: var(--wp--preset--color--contrast) !important;
	box-shadow: inset 0 0 0 1px currentColor;
}
.is-style-ghost .wp-block-button__link:hover { background: var(--wp--preset--color--contrast) !important; color: var(--wp--preset--color--paper) !important; box-shadow: none; }
.is-style-ghost--light .wp-block-button__link { color: var(--wp--preset--color--paper) !important; }
.is-style-ghost--light .wp-block-button__link:hover { background: var(--wp--preset--color--paper) !important; color: var(--wp--preset--color--contrast) !important; }

.lm-section__link a, .lm-section__link a:visited {
	text-decoration: none; font-weight: 500; font-size: var(--wp--preset--font-size--small);
	border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.lm-section__link a::after { content: " →"; }
.lm-section__link a:hover { color: var(--lm-gold-ink); }

/* ---------- hero ---------- */
.lm-hero__figure { margin: 0; }
.lm-hero__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 62% 50%; }
.lm-hero__caption { font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); margin-top: .6rem; }
.lm-hero__title { max-width: 16ch; margin: 0 0 1rem; }
.lang-th .lm-hero__title { max-width: 13ch; }
.lm-hero__lede { max-width: 32ch; margin: 0 0 1.75rem; }
.lm-hero__actions { margin-bottom: 1.5rem; }
.lm-hero__note { max-width: 36ch; }
@media (min-width: 782px) {
	.lm-hero__cols { flex-direction: row-reverse; }
	.lm-hero__figure img { aspect-ratio: 16 / 11; }
}

/* ---------- sections ---------- */
.lm-section__head { margin-bottom: var(--wp--preset--spacing--50); gap: var(--wp--preset--spacing--30); }
.lm-section__head h2 { margin: 0; }
.lm-section__head p.lm-section__link { margin: 0; }

/* ---------- ink intro panel ---------- */
.lm-intro__cols { margin: 0; }
.lm-intro__media { position: relative; }
.lm-intro__img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.lm-intro__inner { padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--30); max-width: 36rem; }
.lm-intro__lede { opacity: .85; }
.lm-intro__list { color: var(--wp--preset--color--gold); letter-spacing: .04em; margin-bottom: 1.75rem; }
.lm-intro .wp-block-heading { margin: 0 0 1.25rem; }
@media (min-width: 782px) {
	.lm-intro__media { min-height: 38rem; }
	.lm-intro__img { position: absolute; inset: 0; height: 100%; aspect-ratio: auto; }
	.lm-intro__inner { padding: var(--wp--preset--spacing--80) var(--wp--preset--spacing--60); }
}

/* ---------- product cards ---------- */
.lm-collection .wc-block-product-template,
.lm-cards {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--wp--preset--spacing--40) var(--wp--preset--spacing--30);
	list-style: none; margin: 0; padding: 0;
}
.lm-cards > li, .lm-cards .wc-block-product { margin: 0; padding: 0; width: auto; max-width: none; flex: none; }
@media (min-width: 782px) {
	.lm-collection .wc-block-product-template, .lm-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--wp--preset--spacing--50) var(--wp--preset--spacing--40); }
	.lm-collection--bands .wc-block-product-template, .lm-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.lm-card__media { overflow: hidden; background: var(--wp--preset--color--paper); margin: 0; }
.lm-card__media a { display: block; }
.lm-card__media img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .7s var(--lm-ease); }
.lm-card:hover .lm-card__media img { transform: scale(1.035); }
.lm-card__media--paper { background: #fff; }
.lm-card__body { margin-top: .8rem; gap: .75rem; align-items: flex-start; }
.lm-card__title {
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 400; line-height: 1.3; margin: 0;
}
.lm-card__title a { text-decoration: none; }
.lm-card__title a:hover { color: var(--lm-gold-ink); }
.lm-card__price { font-size: var(--wp--preset--font-size--small); white-space: nowrap; margin: 0; font-weight: 500; }
.lm-card__price .wc-block-components-product-price__regular, .lm-card__price del { color: var(--wp--preset--color--muted); font-weight: 400; margin-right: .35rem; }
.wc-block-components-product-sale-badge {
	background: var(--wp--preset--color--gold); color: var(--wp--preset--color--paper);
	border: 0; border-radius: var(--wp--custom--radius--sm);
	font-size: var(--wp--preset--font-size--xs); letter-spacing: .06em; text-transform: uppercase;
}

/* ---------- bands ---------- */
.lm-bands__banner { margin: 0; }
.lm-bands__banner img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 60% 55%; }
@media (min-width: 782px) { .lm-bands__banner img { aspect-ratio: 21 / 9; } }
.lm-bands__text h2 { margin: 0 0 1rem; }

/* ---------- how / steps + faq ---------- */
.lm-how__figure { margin: 0; }
.lm-how__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.lm-how__text h2 { margin: 0 0 var(--wp--preset--spacing--40); }
.lm-steps, .is-style-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; gap: 0; }
.lm-steps li, .is-style-steps li {
	counter-increment: step;
	position: relative; padding: 1.1rem 0 1.1rem 3.5rem; border-top: var(--lm-line);
}
.lm-steps li:last-child, .is-style-steps li:last-child { border-bottom: var(--lm-line); }
.lm-steps li::before, .is-style-steps li::before {
	content: counter(step, decimal-leading-zero);
	position: absolute; left: 0; top: 1.05rem;
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--x-large); line-height: 1;
	color: var(--wp--preset--color--gold);
}
.lm-steps li strong, .is-style-steps li strong { display: block; font-weight: 600; margin-bottom: .2rem; }
.lm-faq__title { margin-bottom: .5rem; }
.lm-faq__item { padding: 1rem 0; border-bottom: var(--lm-line); }
.lm-faq__item summary { cursor: pointer; font-weight: 500; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.lm-faq__item summary::-webkit-details-marker { display: none; }
.lm-faq__item summary::after {
	content: "+"; font-family: var(--wp--preset--font-family--heading); font-size: 1.5rem; line-height: 1;
	color: var(--wp--preset--color--muted); transition: transform .3s var(--lm-ease); flex: none;
}
.lm-faq__item[open] summary::after { transform: rotate(45deg); }
.lm-faq__item > :not(summary) { margin: .75rem 0 0; color: var(--wp--preset--color--muted); max-width: 52ch; }
@media (min-width: 782px) { .lm-how__media { position: sticky; top: calc(var(--lm-header-h) + 1.5rem); align-self: flex-start; } }

/* ---------- shop / archive ---------- */
.lm-crumbs .woocommerce-breadcrumb { font-size: var(--wp--preset--font-size--xs); }
.lm-crumbs a { text-decoration: none; color: var(--wp--preset--color--muted); }
.lm-shop__title { margin: 0; }
.lm-shop__desc { max-width: 46ch; color: var(--wp--preset--color--muted); margin-top: .75rem; }
.lm-shop__bar { padding-top: var(--wp--preset--spacing--30); border-top: var(--lm-line); gap: var(--wp--preset--spacing--30); }
.lm-cat-links ul, .wc-block-product-categories-list { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.wc-block-product-categories-list li { margin: 0; }
.wc-block-product-categories-list a {
	display: inline-block; padding: .45rem .95rem; border: var(--lm-line); border-radius: var(--wp--custom--radius--pill);
	text-decoration: none; font-size: var(--wp--preset--font-size--small); font-weight: 500; line-height: 1.2;
	transition: background-color .25s var(--lm-ease), color .25s var(--lm-ease);
}
.wc-block-product-categories-list a:hover { background: var(--wp--preset--color--contrast); color: var(--wp--preset--color--paper); border-color: var(--wp--preset--color--contrast); }
.wc-block-catalog-sorting select, .lm-shop__bar select {
	border: var(--lm-line); background: var(--wp--preset--color--paper); padding: .5rem 2rem .5rem .75rem;
	border-radius: var(--wp--custom--radius--sm); font-size: var(--wp--preset--font-size--small);
}
.lm-pagination { margin-top: var(--wp--preset--spacing--60); font-size: var(--wp--preset--font-size--small); gap: .25rem; }
.lm-pagination a, .lm-pagination .page-numbers { padding: .5rem .8rem; text-decoration: none; }
.lm-pagination .current { border-bottom: 1px solid currentColor; }

/* ---------- single product ---------- */
.lm-product__title { margin: .25rem 0 .75rem; }
.lm-product__price { margin: 0 0 1rem; }
.lm-product__price ins { text-decoration: none; }
.lm-product__price del { color: var(--wp--preset--color--muted); font-weight: 400; margin-right: .5rem; }
.lm-product__summary { color: var(--wp--preset--color--muted); max-width: 42ch; }
.lm-product__form form.cart { display: flex; flex-wrap: wrap; gap: .75rem; align-items: stretch; margin: 1.5rem 0 1.25rem; }
.lm-product__form .quantity { display: flex; }
.lm-product__form .quantity .input-text, .lm-product__form .quantity input {
	width: 5rem; min-height: 3.1rem; padding: .5rem; border: var(--lm-line); border-radius: var(--wp--custom--radius--pill);
	text-align: center; background: var(--wp--preset--color--paper);
}
.lm-product__form .single_add_to_cart_button, .lm-product__form button.button {
	flex: 1 1 12rem; min-height: 3.1rem; border: 0; cursor: pointer;
	background: var(--wp--preset--color--contrast); color: var(--wp--preset--color--paper);
	border-radius: var(--wp--custom--radius--pill); padding: .9rem 1.6rem; font-weight: 500;
	font-size: var(--wp--preset--font-size--small); transition: background-color .25s var(--lm-ease);
}
.lm-product__form .single_add_to_cart_button:hover, .lm-product__form button.button:hover { background: var(--wp--preset--color--gold); }
.lm-product__form .stock { font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); margin: 0 0 .5rem; width: 100%; }
.lm-product__form .stock.out-of-stock { color: var(--wp--preset--color--gold); }
.lm-product__meta { font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); }
.lm-product__notes { list-style: none; padding: 1rem 0 0; margin: 1.5rem 0 0; border-top: var(--lm-line); color: var(--wp--preset--color--muted); }
.lm-product__notes li { padding: .2rem 0 .2rem 1.25rem; position: relative; }
.lm-product__notes li::before { content: "—"; position: absolute; left: 0; color: var(--wp--preset--color--gold); }
.lm-product__cat { margin-bottom: .25rem; }
.lm-product__cat .wp-block-post-terms__separator { margin: 0 .25rem; }
@media (min-width: 782px) { .lm-product__sticky { position: sticky; top: calc(var(--lm-header-h) + 1.5rem); } }

/* product gallery (Woo interactive gallery) */
.wp-block-woocommerce-product-gallery img { background: var(--wp--preset--color--paper); }
.wc-block-product-gallery-large-image__image { aspect-ratio: 1; object-fit: cover; width: 100%; }
.wc-block-product-gallery-thumbnails__thumbnail img { border-radius: 0; }
.wc-block-product-gallery-large-image-next-previous button { background: var(--wp--preset--color--paper); color: var(--wp--preset--color--contrast); border-radius: 999px; }

/* description + specs */
.lm-product__desc { max-width: 60ch; }
.lm-product__desc > * + * { margin-top: 1rem; }
.lm-product__specs table { width: 100%; border-collapse: collapse; font-size: var(--wp--preset--font-size--small); }
.lm-product__specs table.wc-block-product-specifications__table th, .lm-product__specs table.wc-block-product-specifications__table td,
.lm-product__specs th, .lm-product__specs td { padding: .65rem 0 !important; border: 0 !important; border-bottom: var(--lm-line) !important; text-align: left; vertical-align: top; background: transparent !important; }
.lm-product__specs th { color: var(--wp--preset--color--muted); font-weight: 500; width: 42%; }
.lm-product__specs table.wc-block-product-specifications__table { border: 0 !important; }
.lm-related h2 { margin: 0; }

/* ---------- cart / checkout / account (Woo blocks + classic pieces) ---------- */
.lm-page__title { margin-bottom: var(--wp--preset--spacing--40); }
.wc-block-components-button, .wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button,
.wc-block-mini-cart__footer-actions .wc-block-components-button, .woocommerce button.button, .woocommerce a.button, .woocommerce .button {
	border-radius: var(--wp--custom--radius--pill) !important;
	background-color: var(--wp--preset--color--ink) !important;
	color: var(--wp--preset--color--paper) !important;
	font-family: inherit; font-weight: 500; border: 0;
}
.wc-block-components-button:hover, .woocommerce button.button:hover, .woocommerce a.button:hover { background-color: var(--wp--preset--color--velvet) !important; }
.wc-block-components-button.outlined, .wc-block-mini-cart__footer-actions .wc-block-components-button.outlined {
	background: transparent !important; color: var(--wp--preset--color--contrast) !important; box-shadow: inset 0 0 0 1px currentColor;
}
.wc-block-components-product-name { text-decoration: none; font-weight: 500; }
.wc-block-components-text-input input, .wc-block-components-select select, .wc-block-components-textarea textarea,
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce-input-wrapper .input-text {
	border-color: var(--wp--preset--color--line) !important; border-radius: var(--wp--custom--radius--sm) !important;
	background: var(--wp--preset--color--paper) !important; font-family: inherit;
}
.wc-block-components-text-input input:focus, .wc-block-components-select select:focus { border-color: var(--wp--preset--color--contrast) !important; box-shadow: none !important; }
.wc-block-components-checkout-step__title, .wc-block-components-title { font-family: var(--wp--preset--font-family--heading); font-weight: 400; }
.wc-block-components-sidebar-layout .wc-block-components-sidebar { background: var(--wp--preset--color--paper); padding: var(--wp--preset--spacing--40); }
.wc-block-components-order-summary-item__image img { border-radius: 0; }
.wc-block-components-radio-control__option { font-family: inherit; }
.lm-checkout .wc-block-checkout { --wc-form-border-color: var(--wp--preset--color--line); }
.wc-block-components-notice-banner { border-radius: var(--wp--custom--radius--sm); font-family: inherit; }
.wc-block-components-notice-banner.is-info { border-color: var(--wp--preset--color--gold); }
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; }
.woocommerce-MyAccount-navigation li { border-bottom: var(--lm-line); }
.woocommerce-MyAccount-navigation a { display: block; padding: .75rem 0; text-decoration: none; }
.woocommerce-MyAccount-navigation .is-active a { font-weight: 600; }
.woocommerce-store-notice, .demo_store { background: var(--wp--preset--color--gold); color: var(--wp--preset--color--contrast); text-align: center; padding: .6rem 1rem; font-size: var(--wp--preset--font-size--xs); }

/* ---------- content pages ---------- */
.lm-page .wp-block-post-content h2 { margin-top: var(--wp--preset--spacing--60); }
.lm-page .wp-block-post-content h3 { margin-top: var(--wp--preset--spacing--40); }
.lm-page .wp-block-post-content p, .lm-page .wp-block-post-content li { max-width: 68ch; }
.lm-contact { list-style: none; padding: 0; margin: var(--wp--preset--spacing--40) 0 0; display: grid; gap: 0; grid-template-columns: 1fr; }
.lm-contact li { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; align-items: start; padding: 1.25rem 0; border-top: var(--lm-line); }
.lm-contact li:last-child { border-bottom: var(--lm-line); }
.lm-contact svg { width: 1.75rem; height: 1.75rem; color: var(--wp--preset--color--gold); }
.lm-contact strong { display: block; font-weight: 600; }
.lm-contact span { display: block; color: var(--wp--preset--color--muted); font-size: var(--wp--preset--font-size--small); margin-top: .15rem; }
@media (min-width: 782px) { .lm-contact { grid-template-columns: 1fr 1fr; column-gap: var(--wp--preset--spacing--60); } .lm-contact li:nth-last-child(2) { border-bottom: var(--lm-line); } }
.lm-story__figure { margin: var(--wp--preset--spacing--50) 0; }
.lm-story__figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.lm-story__figure figcaption { font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); margin-top: .5rem; }
.lm-check { display: inline-block; background: var(--wp--preset--color--gold); color: var(--wp--preset--color--contrast); font-size: .7em; padding: .1em .5em; border-radius: var(--wp--custom--radius--sm); vertical-align: middle; letter-spacing: .04em; }

/* ---------- footer ---------- */
.lm-footer a { color: inherit; }
.lm-wordmark--footer { color: var(--wp--preset--color--paper); }
.lm-wordmark--footer:hover { color: var(--wp--preset--color--gold); }
.lm-wordmark--footer .lm-wordmark__text { font-size: 1.05rem; }
.lm-footer__blurb { max-width: 30ch; opacity: .8; margin: 1rem 0 0; }
.lm-footer__title { color: var(--wp--preset--color--gold); font-size: var(--wp--preset--font-size--xs); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin: 0 0 1rem; }
.lm-footer__links { list-style: none; padding: 0; margin: 0; }
.lm-footer__links li { margin: 0 0 .5rem; }
.lm-footer__links a { text-decoration: none; opacity: .85; }
.lm-footer__links a:hover { opacity: 1; text-decoration: underline; color: inherit; }
.lm-social { margin-top: 1.25rem; }
.lm-social__link { color: var(--wp--preset--color--base); opacity: .75; display: inline-flex; transition: opacity .25s var(--lm-ease), color .25s var(--lm-ease); }
.lm-social__link:hover { opacity: 1; color: var(--wp--preset--color--gold); }
.lm-footer__bottom { border-top: 1px solid rgba(246, 241, 232, .18); opacity: .75; gap: .5rem var(--wp--preset--spacing--40); }
.lm-footer__bottom p { margin: 0; }
.lm-footer__disclaimer { max-width: 60ch; }

/* ---------- reveal animation (JS adds .is-visible; without JS everything stays visible) ---------- */
@media (prefers-reduced-motion: no-preference) {
	.js .lm-reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--lm-ease), transform .7s var(--lm-ease); }
	.js .lm-reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------- WooCommerce notices (classic) ---------- */
.woocommerce-message, .woocommerce-info, .woocommerce-error, .wc-block-store-notices .woocommerce-message {
	background: var(--wp--preset--color--paper); border-top: 0; border-left: 3px solid var(--wp--preset--color--contrast);
	padding: 1rem 1.25rem; margin: 0 0 1.5rem; list-style: none; font-size: var(--wp--preset--font-size--small);
}
.woocommerce-error { border-left-color: var(--wp--preset--color--gold); }
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before { display: none; }

/* ==========================================================================
   Round-two polish
   ========================================================================== */

/* Product cards: the image already animates, so the whole card should feel like one target. */
.lm-card { position: relative; }
.lm-card__media { position: relative; }
.lm-card__media::after {
	content: ""; position: absolute; inset: 0;
	background: var(--wp--preset--color--contrast); opacity: 0;
	transition: opacity .4s var(--lm-ease); pointer-events: none;
}
.lm-card:hover .lm-card__media::after { opacity: .06; }
.lm-card__title a { transition: color .25s var(--lm-ease); }

/* Section headings on inner pages: a rule above the eyebrow anchors them to the grid. */
.lm-shop__head { position: relative; }
.lm-shop__title { letter-spacing: -0.01em; }
.lm-shop__desc { max-width: 52ch; }

/* Empty cart: Woo's default is a bare sentence — give it somewhere to go. */
.wp-block-woocommerce-empty-cart-block { padding: var(--wp--preset--spacing--60) 0; text-align: left; }
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--x-large);
	font-weight: 400;
}
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title.with-empty-cart-icon::before { display: none; }

/* Quantity stepper: match the pill language of the buttons. */
.wc-block-components-quantity-selector { border-radius: var(--wp--custom--radius--pill); border-color: var(--wp--preset--color--line); }
.wc-block-components-quantity-selector::after { border-radius: var(--wp--custom--radius--pill); border-color: var(--wp--preset--color--line); }

/* Order confirmation: the "thank you" page is part of the brand, not a receipt dump. */
.lm-thanks .wc-block-order-confirmation-status { font-family: var(--wp--preset--font-family--heading); }
.lm-thanks table { width: 100%; border-collapse: collapse; font-size: var(--wp--preset--font-size--small); }
.lm-thanks table th, .lm-thanks table td { padding: .7rem 0; border-bottom: var(--lm-line); text-align: left; }
.lm-thanks .wc-block-order-confirmation-address-wrapper address { font-style: normal; }

/* Print: keep the order confirmation readable on paper. */
@media print {
	.lm-header, .lm-footer, .lm-switchers, .lm-bag, .lm-account { display: none !important; }
	body { background: #fff; }
}

/* ==========================================================================
   Brand pass — the campaign identity: travertine and velvet, a display serif
   in caps for the voice, brass hairlines for ornament.
   ========================================================================== */

/* Display headings: the campaign sets every headline in caps. Latin gets Playfair's
   high contrast; Thai gets Noto Serif Thai, which has no case, so it is left alone. */
.is-style-display { text-transform: uppercase; letter-spacing: .01em; line-height: 1.12; }
.lang-th .is-style-display { text-transform: none; letter-spacing: 0; line-height: 1.3; }
.lm-hero__title { max-width: 14ch; margin: 0 0 1.1rem; }
.lang-th .lm-hero__title { max-width: 12ch; }

/* Section head: a brass hairline over the eyebrow, as on the campaign frames. */
.lm-eyebrow { position: relative; }
.lm-section__head .lm-eyebrow::before,
.lm-meanings .lm-eyebrow::before,
.lm-how__text > .lm-eyebrow::before,
.lm-bands__text .lm-eyebrow::before {
	content: ""; display: block; width: 2.25rem; height: 1px;
	background: var(--wp--preset--color--gold); margin-bottom: .9rem;
}

/* ---------- hero ---------- */
.lm-hero__figure { margin: 0; }
.lm-hero__figure img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: 50% 46%; }
@media (min-width: 782px) { .lm-hero__figure img { aspect-ratio: 7 / 5; } }
.lm-hero__cols { flex-direction: row; }

/* ---------- meanings ---------- */
.lm-meanings__figure { margin: 0; }
.lm-meanings__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.lm-meanings__text h2 { margin: 0 0 var(--wp--preset--spacing--40); }
.lm-meaning-list { margin: 0; display: grid; grid-template-columns: 1fr; }
.lm-meaning {
	display: flex; align-items: baseline; gap: .75rem;
	padding: .85rem 0; border-top: var(--lm-line); margin: 0;
}
.lm-meaning:last-child { border-bottom: var(--lm-line); }
.lm-meaning dt { margin: 0; font-family: var(--wp--preset--font-family--heading); font-size: var(--wp--preset--font-size--large); font-weight: 500; }
.lm-meaning dt a { text-decoration: none; }
.lm-meaning dt a:hover { color: var(--lm-gold-ink); }
.lm-meaning dd {
	margin: 0 0 0 auto; text-align: right;
	font-size: var(--wp--preset--font-size--xs); letter-spacing: .14em; text-transform: uppercase;
	color: var(--wp--preset--color--muted);
}
@media (min-width: 782px) { .lm-meanings__media { position: sticky; top: calc(var(--lm-header-h) + 1.5rem); align-self: flex-start; } }

/* ---------- Crystal Edit (on velvet) ---------- */
.lm-crystal__banner { margin: 0; }
.lm-crystal__banner img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 782px) { .lm-crystal__banner img { aspect-ratio: 21 / 9; object-position: 50% 42%; } }
.lm-crystal__lede { max-width: 48ch; opacity: .85; margin: .75rem 0 0; }
.lm-crystal .lm-section__head { align-items: flex-end; gap: var(--wp--preset--spacing--40); }
.lm-card--dark .lm-card__media { background: rgba(255, 255, 255, .03); }
.lm-card--dark .lm-card__title a { color: var(--wp--preset--color--paper); }
.lm-card--dark .lm-card__title a:hover { color: var(--lm-gold-ink); }
.lm-card--dark .lm-card__price { color: var(--wp--preset--color--base); opacity: .85; }
.lm-card--dark:hover .lm-card__media::after { opacity: 0; }
@media (min-width: 782px) { .lm-collection--crystal .wc-block-product-template, .lm-cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- ink panel ---------- */
.lm-intro__img { aspect-ratio: 1; }
@media (min-width: 782px) { .lm-intro__media { min-height: 34rem; } }

/* ---------- product cards on travertine ---------- */
.lm-card__media { background: var(--wp--preset--color--paper); }
.lm-card__title { font-weight: 500; }

/* ---------- buttons: navy fill with a brass hairline, as on the campaign CTA ---------- */
.wp-block-button__link, .wc-block-components-button, .woocommerce a.button, .woocommerce button.button {
	box-shadow: inset 0 0 0 1px rgba(169, 128, 63, .45);
}
.is-style-text-arrow .wp-block-button__link, .is-style-ghost .wp-block-button__link { box-shadow: none; }
.is-style-ghost .wp-block-button__link { box-shadow: inset 0 0 0 1px currentColor; }

/* ---------- section rules ---------- */
.lm-section + .lm-section { border-top: var(--lm-line); }
.lm-intro + .lm-section, .lm-crystal + .lm-section { border-top: 0; }

/* ---------- product page: the meaning sits above the title ---------- */
.lm-product__meaning {
	font-size: var(--wp--preset--font-size--xs); letter-spacing: .16em; text-transform: uppercase;
	color: var(--lm-gold-ink); margin: 0 0 .35rem; font-weight: 600;
}
.lm-product__title { margin-top: .1rem; }

/* ---------- footer on velvet ---------- */
.lm-footer { background: var(--wp--preset--color--velvet) !important; }
.lm-footer__title { color: var(--wp--preset--color--gold); }
.lm-footer__bottom { border-top-color: rgba(246, 232, 218, .16); }

/* ==========================================================================
   Accounts — WooCommerce renders these with classic templates, so they need
   dressing by hand to match the rest of the shop.
   ========================================================================== */

.woocommerce-account .lm-page__title { margin-bottom: var(--wp--preset--spacing--50); }

/* Sign in / register side by side on a desktop, stacked on a phone. */
.woocommerce-account #customer_login { display: grid; gap: var(--wp--preset--spacing--60); grid-template-columns: 1fr; }
@media (min-width: 860px) { .woocommerce-account #customer_login { grid-template-columns: 1fr 1fr; } }
.woocommerce-account #customer_login > div { float: none; width: auto; }
/* WooCommerce's classic stylesheet puts a table-display clearfix on .col2-set. Inside a grid
   container those two pseudo-elements become real grid items, so they claimed the first and
   last cells and pushed the register column onto a second row. */
.woocommerce-account #customer_login::before,
.woocommerce-account #customer_login::after { content: none; display: none; }
/* ---------- Google sign-in (miniOrange) ----------
   The plugin ships Bootstrap-social styling and a red/blue button. Google's brand rules
   allow a neutral button as long as the G mark is untouched, so the button is re-dressed
   to match the shop's own controls and only the logo keeps its colours.
   (mu-plugins/luxemore-social-login.php strips the plugin's inline !important sizing.) */
.mo-openid-app-icons { margin: 0 0 1rem; }
.mo-openid-app-icons > p { display: none; }        /* the plugin's own "Connect with" line */
a.mo_btn.mo_btn-google {
	display: flex !important; align-items: center; justify-content: center; gap: .6rem;
	box-sizing: border-box !important;   /* Bootstrap leaves it content-box, so padding widened it */
	width: 100% !important; margin: 0 !important;
	padding: .8rem 1.25rem !important;
	background: var(--wp--preset--color--paper) !important;
	border: 1px solid var(--wp--preset--color--line) !important;
	border-radius: 999px !important;
	color: var(--wp--preset--color--contrast) !important;
	font-family: inherit; font-size: var(--wp--preset--font-size--small); font-weight: 500;
	line-height: 1.2; text-align: center; text-decoration: none; white-space: normal;
	box-shadow: none !important; cursor: pointer;
	transition: border-color .25s var(--lm-ease), background .25s var(--lm-ease);
}
a.mo_btn.mo_btn-google:hover,
a.mo_btn.mo_btn-google:focus-visible {
	border-color: var(--wp--preset--color--contrast) !important;
	background: var(--wp--preset--color--base) !important;
}
a.mo_btn.mo_btn-google > :first-child {
	position: static !important; width: 20px !important; height: 20px !important;
	margin: 0 !important; padding: 0 !important; border: 0 !important;
	background: none !important; line-height: 0 !important; flex: none;
}

/* "or" rule between the Google button and the username field */
.lm-or {
	display: flex; align-items: center; gap: .75rem; margin: 0 0 1.25rem;
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--xs); letter-spacing: .12em; text-transform: uppercase;
}
.lm-or::before, .lm-or::after { content: ""; flex: 1 1 auto; height: 1px; background: var(--wp--preset--color--line); }

/* WooCommerce disables the register button until the password scores "strong". Without a
   visible disabled state the button just looks unresponsive, so say so. */
.woocommerce-form button[disabled],
.woocommerce-form .button[disabled] { opacity: .45; cursor: not-allowed; }

/* The password-strength readout ships in WooCommerce red/yellow/green. Keep it informative
   but in the brand's own range, and drop the pill shape the rest of the form does not use. */
.woocommerce-password-strength {
	font-size: var(--wp--preset--font-size--xs); letter-spacing: .04em;
	padding: .5rem .8rem; margin-top: .4rem; border-radius: 0;
	border: 0; border-left: 2px solid var(--wp--preset--color--muted);
	background: var(--wp--preset--color--paper); color: var(--wp--preset--color--muted);
}
.woocommerce-password-strength.good,
.woocommerce-password-strength.strong { border-left-color: var(--lm-gold-ink); color: var(--wp--preset--color--contrast); }
.woocommerce-password-strength.short,
.woocommerce-password-strength.bad { border-left-color: #A33A2A; color: #8C3122; }
.woocommerce-password-hint { display: block; font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); margin-top: .4rem; }

.woocommerce-account #customer_login h2 {
	font-size: var(--wp--preset--font-size--large); margin: 0 0 1.25rem;
	padding-bottom: .75rem; border-bottom: var(--lm-line);
}

.woocommerce form.woocommerce-form-login,
.woocommerce form.woocommerce-form-register {
	border: 0; padding: 0; margin: 0; border-radius: 0; background: transparent;
}
.woocommerce form .form-row { display: block; margin: 0 0 1.1rem; padding: 0; }
.woocommerce form .form-row label { display: block; font-size: var(--wp--preset--font-size--small); margin-bottom: .35rem; }
.woocommerce form .form-row .required { color: var(--wp--preset--color--gold); text-decoration: none; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row input[type="password"],
.woocommerce .woocommerce-Input {
	width: 100%; padding: .8rem .9rem; min-height: 3rem;
	border: 1px solid var(--wp--preset--color--line) !important;
	border-radius: var(--wp--custom--radius--sm) !important;
	background: var(--wp--preset--color--paper) !important;
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--wp--preset--color--ink) !important; outline: none; }
.woocommerce form .woocommerce-form-login__submit,
.woocommerce form.woocommerce-form-register button[type="submit"] {
	width: 100%; min-height: 3.1rem; margin: .25rem 0 1rem; float: none;
	font-size: var(--wp--preset--font-size--small); letter-spacing: .02em;
}
.woocommerce form .woocommerce-form-login__rememberme { display: block; margin: 0 0 1rem; font-size: var(--wp--preset--font-size--small); }
.woocommerce-LostPassword { font-size: var(--wp--preset--font-size--small); margin: 0; }
.woocommerce-privacy-policy-text p { font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); }
.woocommerce form.woocommerce-form-register .woocommerce-form__label-for-checkbox { font-size: var(--wp--preset--font-size--small); }
.woocommerce-form-register em, .woocommerce-form-register .woocommerce-privacy-policy-text { display: block; margin-bottom: 1rem; }

/* Signed-in dashboard: the sidebar layout lives in the ":has(nav)" rule further down.
   An unconditional grid here also caught the logged-out page, where WooCommerce prints
   notices above the forms, so the whole login box ended up squeezed into a 14rem cell. */
.woocommerce-MyAccount-navigation { margin: 0 0 var(--wp--preset--spacing--40); }
.woocommerce-MyAccount-navigation a { color: var(--wp--preset--color--muted); }
.woocommerce-MyAccount-navigation li.is-active a, .woocommerce-MyAccount-navigation a:hover { color: var(--wp--preset--color--contrast); }
.woocommerce-MyAccount-content > p:first-child { font-size: var(--wp--preset--font-size--large); }
.woocommerce-MyAccount-content table { width: 100%; border-collapse: collapse; font-size: var(--wp--preset--font-size--small); }
.woocommerce-MyAccount-content th, .woocommerce-MyAccount-content td { padding: .8rem 0; border-bottom: var(--lm-line); text-align: left; }
.woocommerce-orders-table__cell-order-actions .button { padding: .5rem 1rem; font-size: var(--wp--preset--font-size--xs); }

/* The members-only nudge above the cart. */
.lm-member-nudge {
	display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: baseline;
	padding: .9rem 1.1rem; margin: 0 0 var(--wp--preset--spacing--40);
	background: var(--wp--preset--color--paper);
	border-left: 2px solid var(--wp--preset--color--gold);
	font-size: var(--wp--preset--font-size--small);
}
.lm-member-nudge a { color: var(--lm-gold-ink); font-weight: 500; }

/* Coupon field: the apply button should not shout louder than "place order". */
.wc-block-components-totals-coupon__button { min-width: 6rem; }

/* ---------- My Account: nav beside content ----------
   The dashboard markup sits inside a constrained block layout, which caps it at the
   content width and centres each child. Take those two children out of that flow. */
@media (min-width: 860px) {
	.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
		display: flex; align-items: flex-start;
		gap: var(--wp--preset--spacing--60);
		max-width: min(100%, var(--wp--style--global--wide-size));
		margin-inline: auto;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation { flex: 0 0 13rem; max-width: none; margin: 0; }
	.woocommerce-account .woocommerce-MyAccount-content { flex: 1 1 auto; max-width: none; margin: 0; min-width: 0; }
}
.woocommerce-account .woocommerce-notices-wrapper:empty { display: none; }

/* ---------- "earn N points" on the product page ---------- */
.lm-earn {
	display: inline-flex; align-items: center; gap: .35rem; margin: .25rem 0 0;
	font-size: var(--wp--preset--font-size--xs); color: var(--lm-gold-ink); letter-spacing: .02em;
}
.lm-earn::before { content: ""; width: .45rem; height: .45rem; border-radius: 50%; background: var(--wp--preset--color--gold); }
.lm-earn a { color: inherit; }

/* ---------- trial-period notice on cart / checkout (only while Omise is in sandbox) ---------- */
.lm-trial-note {
	margin: 0 0 var(--wp--preset--spacing--50); padding: 1rem 1.25rem;
	background: var(--wp--preset--color--paper); border-left: 3px solid var(--wp--preset--color--gold);
	font-size: var(--wp--preset--font-size--small); line-height: 1.6;
}
.lm-trial-note strong { display: block; font-weight: 600; margin-bottom: .15rem; }
.lm-trial-note a { color: var(--lm-gold-ink); }
.lm-trial-note span { display: block; margin-top: .35rem; font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); }

/* ---------- stock signal on the cards ---------- */
.lm-card__media { position: relative; }
.lm-stock {
	position: absolute; top: .75rem; left: .75rem; z-index: 2;
	padding: .3rem .6rem; font-size: var(--wp--preset--font-size--xs);
	font-weight: 500; letter-spacing: .04em; line-height: 1;
	background: var(--wp--preset--color--paper); color: var(--wp--preset--color--contrast);
	border: 1px solid var(--wp--preset--color--line);
}
.lm-stock--low { color: var(--lm-gold-ink); border-color: var(--lm-gold-ink); }
.lm-stock--out { background: var(--wp--preset--color--contrast); color: var(--wp--preset--color--paper); border-color: transparent; }
/* a sold-out card should read as unavailable at a glance, without disappearing */
.lm-cards li.outofstock .lm-card__media img { opacity: .55; }
.lm-cards li.outofstock .lm-card__title a { color: var(--wp--preset--color--muted); }

/* ---------- My Account dashboard ---------- */
.lm-account__hello {
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--large); font-weight: 400;
	margin: 0 0 var(--wp--preset--spacing--40);
}
.lm-account__hello strong { font-weight: 500; }
.lm-account__links { list-style: none; margin: var(--wp--preset--spacing--50) 0 0; padding: 0; display: grid; gap: 1px; background: var(--wp--preset--color--line); border-block: var(--lm-line); }
.lm-account__links li { background: var(--wp--preset--color--base); }
.lm-account__links a {
	display: block; padding: 1.1rem .25rem; text-decoration: none;
	color: var(--wp--preset--color--contrast);
	transition: background .2s var(--lm-ease);
}
.lm-account__links a:hover, .lm-account__links a:focus-visible { background: var(--wp--preset--color--paper); }
.lm-account__links-title { display: block; font-weight: 500; }
.lm-account__links-desc { display: block; margin-top: .2rem; font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); }
@media (min-width: 720px) { .lm-account__links { grid-template-columns: 1fr 1fr; } }

/* ---------- redeem points in cart / checkout ---------- */
.lm-points-redeem { margin: 0 0 var(--wp--preset--spacing--50); }
.lm-points-redeem__lead { margin: 0 0 .2rem; font-size: var(--wp--preset--font-size--small); color: var(--wp--preset--color--muted); }
.lm-points-redeem__lead strong {
	color: var(--wp--preset--color--contrast); font-weight: 500;
	font-size: var(--wp--preset--font-size--medium);
}
.lm-points-redeem__hint { margin: 0 0 .9rem; font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); max-width: 52ch; }
.lm-points-redeem .wps_wpr_apply_custom_points,
.lm-points-redeem .custom_point_checkout {
	display: flex; flex-wrap: wrap; align-items: center; gap: .6rem;
	background: none; border: 0; padding: 0; margin: 0;
}
.lm-points-redeem input[type="number"] {
	width: 8rem; padding: .7rem .8rem; font-family: inherit;
	font-size: var(--wp--preset--font-size--small);
	border: 1px solid var(--wp--preset--color--line);
	border-radius: var(--wp--custom--radius--sm);
	background: var(--wp--preset--color--paper);
}
/* Our redeem box sits above the cart and states the balance. The loyalty plugin also injects
   its own collapsed copy beside the coupon field in the block summary; two controls for the
   same thing confuse people, so keep ours and hide that one. */
#wps_wpr_button_to_add_points_section,
.wps_wpr_append_points_apply_html { display: none !important; }
.lm-points-redeem button.wps_cart_points_apply {
	appearance: none; cursor: pointer;
	padding: .7rem 1.4rem; border: 0; border-radius: 999px;
	background: var(--wp--preset--color--ink); color: var(--wp--preset--color--paper);
	font: 500 var(--wp--preset--font-size--small)/1.2 var(--wp--preset--font-family--body);
}
.lm-points-redeem button.wps_cart_points_apply:hover { background: var(--wp--preset--color--velvet); }
.lm-points-redeem button.wps_cart_points_apply:focus-visible { outline: 2px solid var(--wp--preset--color--gold); outline-offset: 2px; }

/* The plugin repeats the balance under its own field, which now says the same thing twice
   in a row. It has no class of its own, so target the bare paragraph inside the box. */
.lm-points-redeem .wps_wpr_apply_custom_points > p:not([class]),
.lm-points-redeem .custom_point_checkout > p:not([class]) { display: none; }

/* ---------- Points page ---------- */
.woocommerce-MyAccount-content .wps_wpr_intro_text,
.woocommerce-MyAccount-content .wps_wpr_heading_para { max-width: 60ch; }
.wps_wpr_heading, .woocommerce-MyAccount-content h3 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--large); font-weight: 500;
	margin: var(--wp--preset--spacing--40) 0 .75rem;
}
.wps_wpr_each_section, .wps_wpr_each_section_wrap {
	background: var(--wp--preset--color--paper);
	border: 0; border-left: 2px solid var(--wp--preset--color--gold);
	padding: 1rem 1.25rem; margin: 0 0 1rem; border-radius: 0;
	white-space: pre-line;                    /* the "ways to gain" copy is newline separated */
}
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content textarea {
	width: 100%; padding: .7rem .8rem; font-family: inherit; font-size: var(--wp--preset--font-size--small);
	border: 1px solid var(--wp--preset--color--line); border-radius: var(--wp--custom--radius--sm);
	background: var(--wp--preset--color--paper);
}
.wps_wpr_messages { color: var(--wp--preset--color--muted); font-size: var(--wp--preset--font-size--small); }
.account-points-table { width: 100%; }

/* Points balance: make the number the thing you actually see. */
.lm-points-balance {
	display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap;
	padding: 1.1rem 1.25rem; margin: 0 0 var(--wp--preset--spacing--40);
	background: var(--wp--preset--color--ink); color: var(--wp--preset--color--base);
}
.lm-points-balance strong {
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--x-large); font-weight: 500; line-height: 1;
	color: var(--wp--preset--color--paper);
}
.lm-points-balance span { font-size: var(--wp--preset--font-size--small); opacity: .85; }
.lm-points-balance em { font-style: normal; margin-left: auto; font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--gold); }

/* The loyalty plugin prints its intro copy at heading size with the balance tacked on
   the end; put the copy back to body size and let the number carry the weight. */
.woocommerce-MyAccount-content .wps_wpr_heading_para .wps_wpr_heading {
	font-family: var(--wp--preset--font-family--body);
	font-size: var(--wp--preset--font-size--medium); font-weight: 400;
	color: var(--wp--preset--color--muted);
}
.woocommerce-MyAccount-content .wps_wpr_heading_para {
	display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem;
	padding-bottom: 1rem; margin-bottom: var(--wp--preset--spacing--40);
	border-bottom: var(--lm-line);
}
.woocommerce-MyAccount-content .wps_wpr_heading_para .wps_wpr_points_value,
.woocommerce-MyAccount-content .wps_wpr_heading_para > span:last-child:not(.wps_wpr_heading) {
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--x-large); font-weight: 500;
	color: var(--wp--preset--color--contrast); line-height: 1;
}
.woocommerce-MyAccount-content p.wps_wpr_heading {
	font-family: var(--wp--preset--font-family--body);
	font-size: var(--wp--preset--font-size--xs); font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase; color: var(--wp--preset--color--muted);
	margin: var(--wp--preset--spacing--40) 0 .6rem;
}

/* The loyalty plugin paints its "earns N points" badge with an inline teal that fails
   contrast against white text. Put it back in the brand's colours. */
.wps_wpr_product_point {
	background-color: var(--wp--preset--color--ink) !important;
	color: var(--wp--preset--color--paper) !important;
	display: inline-block; padding: .2rem .6rem; border-radius: var(--wp--custom--radius--sm);
	font-size: var(--wp--preset--font-size--xs); font-weight: 500; letter-spacing: .04em;
}
.wc-block-components-product-details .wps_wpr_product_point,
.wc-block-cart-item__product .wps_wpr_product_point { background-color: transparent !important; color: var(--lm-gold-ink) !important; padding: 0; font-weight: 600; }

/* WooCommerce's show-password toggle is an 18px hit area; give it a thumb-sized target. */
.woocommerce form .password-input { position: relative; display: block; }
.woocommerce form .show-password-input {
	position: absolute; top: 0; right: 0; bottom: 0;
	/* WooCommerce centres it with top:50% + translateY(-50%); we stretch it instead, so drop the shift. */
	transform: none; height: auto;
	width: 3rem;
	display: flex; align-items: center; justify-content: center;
	background: none; border: 0; cursor: pointer; padding: 0;
}
.woocommerce form .show-password-input::after { font-size: 1.05rem; }
.woocommerce form .password-input input.input-text { padding-right: 3.25rem; }

/* ---------- Points: redeem form and the redemption notice ---------- */
.wps_wpr_apply_custom_points {
	display: flex; flex-wrap: wrap; align-items: center; gap: .6rem;
	padding: 1rem 1.15rem; margin: 0 0 var(--wp--preset--spacing--40);
	background: var(--wp--preset--color--paper);
	border-left: 2px solid var(--wp--preset--color--gold);
}
.wps_wpr_apply_custom_points input#wps_cart_points {
	width: 8rem; min-height: 2.9rem; padding: .6rem .75rem;
	border: 1px solid var(--wp--preset--color--line);
	border-radius: var(--wp--custom--radius--sm);
	background: var(--wp--preset--color--base); font-family: inherit;
}
.wps_wpr_apply_custom_points button#wps_cart_points_apply {
	min-height: 2.9rem; padding: .6rem 1.4rem; border: 0; cursor: pointer;
	background: var(--wp--preset--color--ink); color: var(--wp--preset--color--paper);
	border-radius: var(--wp--custom--radius--pill);
	font-family: inherit; font-size: var(--wp--preset--font-size--small); font-weight: 500;
	box-shadow: inset 0 0 0 1px rgba(169, 128, 63, .45);
	transition: background-color .25s var(--lm-ease);
}
.wps_wpr_apply_custom_points button#wps_cart_points_apply:hover:not([disabled]) { background: var(--wp--preset--color--velvet); }
.wps_wpr_apply_custom_points button#wps_cart_points_apply[disabled] { opacity: .45; cursor: not-allowed; }
.wps_wpr_apply_custom_points p {
	flex-basis: 100%; margin: 0;
	font-size: var(--wp--preset--font-size--small); color: var(--wp--preset--color--muted);
}
.wps_wpr_show_restrict_message:empty, .wps_wpr_restrict_user_message:empty { display: none; }

/* The plugin's redemption banner sits above everything; make it a quiet brand strip. */
.wps_wpr_points_notification, .wps_wpr_notification_bar, [class*="wps_wpr"][style*="background-color"] {
	font-size: var(--wp--preset--font-size--xs); letter-spacing: .04em;
}

/* ---------- home: bands section details ---------- */
.lm-bands__points { list-style: none; padding: 0; margin: 1.5rem 0 1.75rem; border-top: var(--lm-line); }
.lm-bands__points li { padding: .8rem 0; border-bottom: var(--lm-line); display: grid; gap: .15rem; }
.lm-bands__points strong { font-weight: 600; letter-spacing: .01em; }
.lm-bands__points span { color: var(--wp--preset--color--muted); font-size: var(--wp--preset--font-size--small); }
.lm-bands__text .lm-section__link { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1.25rem; }
.lm-bands__or { display: none; }

/* ==========================================================================
   Journal (blog index, categories, article cards)
   ========================================================================== */
.lm-journal__head { margin-bottom: var(--wp--preset--spacing--40); }
.lm-journal__head .lm-eyebrow a { color: inherit; text-decoration: none; }
.lm-journal__title { margin: .35rem 0 .9rem; font-size: clamp(2rem, 5vw, var(--wp--preset--font-size--xx-large)); }
.lm-journal__lede { max-width: 40rem; margin: 0; color: var(--wp--preset--color--muted); }
.lm-journal__cats { margin-bottom: var(--wp--preset--spacing--50); }
.lm-journal__cats ul { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.lm-journal__cats a {
	display: inline-flex; align-items: center; min-height: 2.5rem; padding: .35rem 1rem;
	border: 1px solid var(--wp--preset--color--line); border-radius: var(--wp--custom--radius--pill);
	text-decoration: none; font-size: var(--wp--preset--font-size--small);
	transition: background-color .25s var(--lm-ease), color .25s var(--lm-ease), border-color .25s var(--lm-ease);
}
.lm-journal__cats a:hover { border-color: var(--wp--preset--color--contrast); }
.lm-journal__cats a[aria-current] { background: var(--wp--preset--color--contrast); border-color: var(--wp--preset--color--contrast); color: var(--wp--preset--color--paper); }
.lm-journal__empty { color: var(--wp--preset--color--muted); }
.lm-journal__pages { margin-top: var(--wp--preset--spacing--60); gap: 1rem; font-size: var(--wp--preset--font-size--small); }
.lm-journal__pages a { text-decoration: none; }
.lm-journal__pages .current { font-weight: 600; border-bottom: 1px solid currentColor; }

.lm-posts {
	display: grid !important; grid-template-columns: minmax(0, 1fr);
	gap: var(--wp--preset--spacing--60) var(--wp--preset--spacing--40);
	list-style: none; margin: 0; padding: 0;
}
@media (min-width: 600px) { .lm-posts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--wp--preset--spacing--50) var(--wp--preset--spacing--40); } }
@media (min-width: 1024px) { .lm-posts { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.lm-posts > li { margin: 0; padding: 0; }
.lm-post-card { display: flex; flex-direction: column; gap: .55rem; height: 100%; }
.lm-post-card > * { margin: 0; }
.lm-post-card__media { margin: 0 0 .45rem !important; overflow: hidden; background: var(--wp--preset--color--paper); aspect-ratio: 4 / 3; }
.lm-post-card__media a { display: block; height: 100%; }
.lm-post-card__media img { width: 100%; height: 100% !important; object-fit: cover; transition: transform .7s var(--lm-ease); }
.lm-post-card:hover .lm-post-card__media img { transform: scale(1.03); }
.lm-post-card__cat, .lm-post-card__cat a {
	font-size: var(--wp--preset--font-size--xs); font-weight: 500; letter-spacing: .08em;
	color: var(--lm-gold-ink); text-decoration: none;
}
.lm-post-card__cat a:hover { text-decoration: underline; }
.lm-post-card__title { font-family: var(--wp--preset--font-family--heading); font-size: clamp(1.2rem, 1.05rem + .6vw, 1.45rem); font-weight: 400; line-height: 1.4; }
.lm-post-card__title a { text-decoration: none; }
.lm-post-card__title a:hover { color: var(--lm-gold-ink); }
.lm-post-card__excerpt p {
	margin: 0; color: var(--wp--preset--color--muted); font-size: var(--wp--preset--font-size--small);
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.lm-post-card__date { font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); margin-top: auto !important; padding-top: .25rem; }
.lm-home-journal .lm-post-card__title, .lm-article-related .lm-post-card__title { font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); }

/* ---------- article ---------- */
.lm-article__hero { display: grid; gap: var(--wp--preset--spacing--50); align-items: center; margin-bottom: var(--wp--preset--spacing--60); }
@media (min-width: 900px) {
	.lm-article__hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--wp--preset--spacing--60); }
	.lm-article__hero:not(:has(.lm-article__cover)) { grid-template-columns: minmax(0, 46rem); }
}
.lm-article__intro > * { margin: 0; }
.lm-article__kicker { display: flex; flex-wrap: wrap; gap: .5rem; }
.lm-article__kicker a { color: inherit; text-decoration: none; }
.lm-article__kicker a:hover { color: var(--lm-gold-ink); }
.lm-article__kicker span { opacity: .5; }
.lm-article__title { margin: .6rem 0 1rem !important; font-size: clamp(1.85rem, 4.2vw, 2.9rem); line-height: 1.28; }
.lm-article__lede { font-size: var(--wp--preset--font-size--medium); color: var(--wp--preset--color--muted); max-width: 36rem; margin-bottom: 1.25rem !important; }
.lm-article__meta { display: flex; flex-wrap: wrap; gap: .5rem; font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); letter-spacing: .03em; }
.lm-article__cover { margin: 0; }
.lm-article__cover img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 900px) { .lm-article__cover img { aspect-ratio: 1; } }

.lm-article__body { font-size: 1.0625rem; line-height: 1.85; }
.lm-article__body h2 { clear: both; margin-top: var(--wp--preset--spacing--60); margin-bottom: .75rem; font-size: clamp(1.4rem, 3vw, 1.85rem); line-height: 1.35; }
.lm-article__body h3 { margin-top: var(--wp--preset--spacing--40); margin-bottom: .5rem; }
.lm-article__body ul, .lm-article__body ol { padding-left: 1.25rem; }
.lm-article__body li + li { margin-top: .4rem; }
.lm-article__body figure.wp-block-image { margin-top: var(--wp--preset--spacing--50); margin-bottom: var(--wp--preset--spacing--50); }
.lm-article__body .wp-element-caption { font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); text-align: center; margin-top: .6rem; line-height: 1.6; }
.lm-article__body .wp-block-buttons { margin-top: var(--wp--preset--spacing--40); gap: .75rem 1.5rem; }
.lm-article__body .wp-block-table { margin: var(--wp--preset--spacing--40) 0; }
.lm-article__body .wp-block-table table { border-collapse: collapse; font-size: var(--wp--preset--font-size--small); line-height: 1.6; }
.lm-article__body .wp-block-table th, .lm-article__body .wp-block-table td { border: 0; border-bottom: var(--lm-line); padding: .75rem .6rem .75rem 0; text-align: left; vertical-align: top; }
.lm-article__body .wp-block-table thead { border: 0; }
.lm-article__body .wp-block-table thead th { border-bottom: 1px solid var(--wp--preset--color--contrast); font-weight: 600; }
.lm-article__body .wp-block-table td:first-child { color: var(--wp--preset--color--muted); font-weight: 500; }
.lm-article-summary { background: var(--wp--preset--color--paper); border-left: 2px solid var(--wp--preset--color--gold); padding: 1.25rem 1.5rem; margin-bottom: var(--wp--preset--spacing--50); }
.lm-article-summary > * { margin: 0; }
.lm-article-summary__title { font-weight: 600; margin-bottom: .5rem !important; }
.lm-article-summary ul { font-size: var(--wp--preset--font-size--small); line-height: 1.7; }
.lm-charm-thumb { float: right; width: 8.5rem; margin: .4rem 0 1rem 1.25rem !important; }
.lm-charm-thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }
@media (min-width: 782px) { .lm-charm-thumb { width: 11rem; margin-left: 2rem !important; } }
.lm-article__note { clear: both; border-top: var(--lm-line); padding-top: 1rem; margin-top: var(--wp--preset--spacing--60) !important; font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); }

.lm-article-shop { background: var(--wp--preset--color--paper); margin-top: var(--wp--preset--spacing--70) !important; padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--30); }
.lm-article-shop__inner { max-width: var(--wp--style--global--wide-size); margin: 0 auto; }
.lm-article-shop__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; }
.lm-article-shop__head .lm-eyebrow { margin: 0 0 .35rem; }
.lm-article-shop__head h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); }
.lm-article-shop__grid { margin-top: var(--wp--preset--spacing--40) !important; }
@media (min-width: 782px) { .lm-article-shop__grid.lm-cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.lm-article-shop__grid.lm-cards--2 { max-width: 46rem; }
.lm-article-related { margin-top: var(--wp--preset--spacing--70) !important; }
.lm-article-related .lm-section__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; }
.lm-article-related h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); }
.lm-article__product { max-width: 24rem; margin-left: auto !important; margin-right: auto !important; }
.lm-article__product img { background: #fff; }

/* Cart and checkout: the short description is cut to a few characters there ("เครื่องรางเรียก…"), which reads as broken. The product name says enough. */
.wc-block-components-product-metadata__description { display: none; }

/* The PDPA line under the Google button. */
.lm-social-note { margin: .6rem 0 0; font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); line-height: 1.55; }

/* ==========================================================================
   Editorial pass: shorter hero on phones, "worn" lookbook, shop collections
   ========================================================================== */

/* Hero: on a phone the buy button should be in view without scrolling past a wall of type. */
@media (max-width: 781px) {
	.lm-hero { padding-bottom: var(--wp--preset--spacing--50) !important; }
	.lm-hero__title.has-display-font-size { font-size: clamp(2.1rem, 9.5vw, 2.8rem) !important; margin-bottom: .6rem; }
	.lm-hero__lede.has-large-font-size { font-size: 1.05rem !important; margin-bottom: 1.1rem; }
	.lm-hero__actions { margin-bottom: 1rem; }
}

/* Lookbook: a swipeable row on phones, three across on larger screens. */
.lm-lookbook__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; }
.lm-lookbook__head h2 { margin: 0; }
.lm-lookbook__row {
	list-style: none; margin: var(--wp--preset--spacing--40) 0 0; padding: 0 0 .5rem;
	display: grid; grid-auto-flow: column; grid-auto-columns: 78%; gap: 1rem;
	overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.lm-lookbook__row::-webkit-scrollbar { display: none; }
.lm-look { scroll-snap-align: start; margin: 0; }
@media (min-width: 782px) {
	.lm-lookbook__row { grid-auto-flow: row; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--wp--preset--spacing--40); overflow: visible; }
}
.lm-look__figure { margin: 0; overflow: hidden; background: var(--wp--preset--color--paper); }
.lm-look__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .7s var(--lm-ease); }
.lm-look:hover .lm-look__figure img { transform: scale(1.03); }
.lm-look__title { margin: .85rem 0 .25rem; font-family: var(--wp--preset--font-family--heading); font-size: 1.15rem; line-height: 1.35; }
.lm-look__items { margin: 0; font-size: var(--wp--preset--font-size--small); color: var(--wp--preset--color--muted); }
.lm-look__items a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.lm-look__items a:hover { color: var(--lm-gold-ink); }
.lm-how__more { margin-top: var(--wp--preset--spacing--40) !important; }

/* Shop collections: a worn photo beside each collection, sides alternating on wide screens. */
.lm-collections { display: grid; gap: var(--wp--preset--spacing--80); margin-top: var(--wp--preset--spacing--50) !important; }
.lm-coll { display: grid; gap: var(--wp--preset--spacing--40); }
.lm-coll__media { margin: 0; overflow: hidden; background: var(--wp--preset--color--paper); }
.lm-coll__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.lm-coll--bands .lm-coll__media img { object-position: 60% 50%; }
.lm-coll--charms .lm-coll__media img { object-position: 50% 28%; }
.lm-coll__head > * { margin: 0; }
.lm-coll__title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); line-height: 1.25; margin: .35rem 0 .6rem !important; }
.lm-coll__desc { color: var(--wp--preset--color--muted); max-width: 36rem; margin-bottom: .9rem !important; }
.lm-coll__grid { margin-top: var(--wp--preset--spacing--40) !important; }
@media (min-width: 782px) {
	.lm-coll { grid-template-columns: minmax(0, 5fr) minmax(0, 8fr); gap: var(--wp--preset--spacing--60); align-items: start; }
	.lm-coll:nth-child(even) { grid-template-columns: minmax(0, 8fr) minmax(0, 5fr); }
	.lm-coll:nth-child(even) .lm-coll__media { order: 2; }
	.lm-coll__media { position: sticky; top: calc(var(--lm-header-h) + 1.5rem); }
	.lm-coll__media img { aspect-ratio: 4 / 5; }
	.lm-coll__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
	.lm-coll__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

/* Audit fixes: header icons keep their size on 320–360px phones; hidden images stay hidden
   (the base img rule would otherwise show the mini-cart's second thumbnail); the password
   strength line reserves its space so the sign-up button does not jump from under the pointer. */
@media (max-width: 781px) { .lm-bag, .lm-header .lm-nav, .lm-header .wp-block-navigation__responsive-container-open { flex-shrink: 0; min-width: 2.25rem; } }
@media (max-width: 360px) {
	.lm-header__row .lm-header__tools { gap: .3rem; }
	.lm-wordmark__text { letter-spacing: .12em; }
}
img[hidden] { display: none !important; }
.woocommerce-form-register .woocommerce-password-strength { min-height: 1.6em; }

/* ---------- colour options (mu-plugins/luxemore-variants.php) ---------- */
/* Product page: round colour buttons drive WooCommerce's own (hidden) select. */
.lm-product__form table.variations { width: 100%; margin: 0 0 .5rem; border: 0; border-collapse: collapse; }
.lm-product__form table.variations tr { display: grid; gap: .35rem; }
.lm-product__form table.variations th, .lm-product__form table.variations td { display: block; padding: 0; border: 0; text-align: left; }
.lm-product__form table.variations th.label { font-size: var(--wp--preset--font-size--small); font-weight: 500; }
.lm-product__form table.variations tr:has(.lm-swatches) th.label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.lm-product__form .reset_variations { display: inline-block; margin-top: .4rem; font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); }
.lm-product__form .single_variation_wrap { width: 100%; }
.lm-product__form .woocommerce-variation-price { margin-bottom: .4rem; font-size: var(--wp--preset--font-size--medium); }
.lm-product__form .woocommerce-variation-add-to-cart { display: flex; flex-wrap: wrap; gap: .75rem; align-items: stretch; }
.lm-product__form .woocommerce-variation-add-to-cart.woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button { opacity: .45; }
.lm-swatches { display: grid; gap: .55rem; }
.lm-swatches__picked { margin: 0; font-size: var(--wp--preset--font-size--small); font-weight: 500; }
.lm-swatches__row { display: flex; flex-wrap: wrap; gap: .6rem; }
.lm-swatches__select { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.lm-swatch {
	position: relative; width: 2.75rem; height: 2.75rem; padding: 0; border: 1px solid var(--wp--preset--color--line); border-radius: 50%;
	background: #fff; cursor: pointer; transition: border-color .15s, box-shadow .15s;
}
.lm-swatch i { position: absolute; inset: 4px; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .14); }
.lm-swatch:hover { border-color: var(--wp--preset--color--gold); }
.lm-swatch[aria-pressed="true"] { border-color: var(--wp--preset--color--contrast); box-shadow: 0 0 0 1px var(--wp--preset--color--contrast); }
.lm-swatch:focus-visible { outline: 2px solid var(--wp--preset--color--gold); outline-offset: 2px; }
/* A colour with no stock left: still visible, crossed through. */
.lm-swatch.is-off { opacity: .45; }
.lm-swatch.is-off::after { content: ""; position: absolute; left: 50%; top: 3px; bottom: 3px; width: 1.5px; background: var(--wp--preset--color--contrast); transform: rotate(45deg); }
/* Cards: small dots for a product sold in several colours. */
.lm-card__colours { display: flex; align-items: center; gap: .45rem; margin: .45rem 0 0; font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); }
.lm-card__dots { display: inline-flex; gap: .25rem; }
.lm-card__dots i { width: .8rem; height: .8rem; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .18); }

/* ---------- lucky-charm finder (/lucky/) and "lucky colours today" ---------- */
.lm-chips { display: inline-flex; flex-wrap: wrap; gap: .3rem; vertical-align: middle; }
.lm-chip {
	display: inline-flex; align-items: center; gap: .35em;
	padding: .15em .65em .15em .35em; border: var(--lm-line); border-radius: 999px;
	background: #fff; color: var(--wp--preset--color--contrast);
	font-size: var(--wp--preset--font-size--xs); line-height: 1.5; white-space: nowrap;
}
.lm-chip i { flex: none; width: .9em; height: .9em; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .18); }

.lm-lucky { display: grid; gap: var(--wp--preset--spacing--60); min-width: 0; }
.lm-lucky__lede { max-width: 42rem; margin: 0; }
.lm-lucky__form {
	display: grid; gap: var(--wp--preset--spacing--50); width: 100%; max-width: 46rem; min-width: 0; box-sizing: border-box;
	padding: clamp(1.1rem, 4vw, 2.25rem); background: var(--wp--preset--color--paper); border: var(--lm-line);
	border-top: 3px solid var(--wp--preset--color--gold); box-shadow: 0 18px 40px -28px rgba(46, 26, 14, .35);
}
.lm-lucky__step { display: grid; gap: .9rem; min-width: 0; margin: 0; padding: 0; border: 0; }
.lm-lucky__step + .lm-lucky__step { padding-top: var(--wp--preset--spacing--40); border-top: var(--lm-line); }
.lm-lucky__step legend {
	display: flex; align-items: center; gap: .6rem; padding: 0; margin-bottom: .7rem;
	font-family: var(--wp--preset--font-family--heading); font-size: var(--wp--preset--font-size--large);
}
.lm-lucky__num {
	display: inline-grid; place-items: center; flex: none; width: 1.9rem; height: 1.9rem; border-radius: 50%;
	background: var(--wp--preset--color--ink); color: var(--wp--preset--color--paper);
	font-family: var(--wp--preset--font-family--body); font-size: var(--wp--preset--font-size--small);
}
/* Day, month, year: three selects that always fit a 320px phone. */
.lm-lucky__date { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr) minmax(0, 1.25fr); gap: .5rem; min-width: 0; }
.lm-lucky__field { display: grid; gap: .35rem; min-width: 0; font-size: var(--wp--preset--font-size--small); font-weight: 500; }
.lm-lucky__field select {
	-webkit-appearance: none; appearance: none;
	box-sizing: border-box; display: block; width: 100%; max-width: 100%; min-width: 0; min-height: 3rem;
	padding: .55rem 1.9rem .55rem .75rem; font: inherit; font-size: 1rem; font-weight: 400; color: var(--wp--preset--color--contrast);
	text-overflow: ellipsis; border: 1px solid var(--wp--preset--color--line); border-radius: 8px;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%237A5A24' stroke-width='1.6'/%3E%3C/svg%3E") no-repeat right .7rem center;
	cursor: pointer;
}
.lm-lucky__field select:focus-visible { outline: 2px solid var(--wp--preset--color--gold); outline-offset: 1px; border-color: var(--wp--preset--color--gold); }
.lm-lucky__found { margin: 0; min-height: 1.4em; color: var(--lm-gold-ink); font-size: var(--wp--preset--font-size--small); font-weight: 500; }
.lm-lucky__found:empty { display: none; }

.lm-lucky__or { display: flex; align-items: center; gap: .75rem; margin: .2rem 0 0; font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); }
.lm-lucky__or::before, .lm-lucky__or::after { content: ""; flex: 1; border-top: var(--lm-line); }
/* The eight birth days as colour tiles: 4 across on a phone, one row on wider screens. */
.lm-lucky__days { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .45rem; }
@media (min-width: 600px) { .lm-lucky__days { grid-template-columns: repeat(8, minmax(0, 1fr)); } }
.lm-lucky__day { position: relative; min-width: 0; }
.lm-lucky__day input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.lm-lucky__day span {
	display: grid; justify-items: center; align-content: start; gap: .25rem; min-height: 4.4rem; padding: .7rem .2rem .5rem;
	border: 1px solid var(--wp--preset--color--line); border-radius: 10px; background: #fff; text-align: center; cursor: pointer;
	transition: border-color .15s, box-shadow .15s, transform .15s;
}
.lm-lucky__day i { width: 1.35rem; height: 1.35rem; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15); }
.lm-lucky__day b { font-weight: 500; font-size: var(--wp--preset--font-size--small); line-height: 1.2; }
.lm-lucky__day small { font-size: .72rem; line-height: 1; color: var(--wp--preset--color--muted); }
.lm-lucky__day:hover span { border-color: var(--wp--preset--color--gold); }
.lm-lucky__day input:checked + span { border-color: var(--c); box-shadow: inset 0 0 0 2px var(--c); background: color-mix(in srgb, var(--c) 10%, #fff); transform: translateY(-1px); }
.lm-lucky__day input:focus-visible + span { outline: 2px solid var(--wp--preset--color--gold); outline-offset: 2px; }

.lm-lucky__wishes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; }
@media (min-width: 600px) { .lm-lucky__wishes { grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr)); } }
.lm-lucky__wish { position: relative; min-width: 0; }
.lm-lucky__wish input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.lm-lucky__wish span {
	display: flex; align-items: center; justify-content: center; height: 100%; min-height: 3rem; padding: .45rem .75rem; box-sizing: border-box;
	border: 1px solid var(--wp--preset--color--line); border-radius: 999px; background: #fff; text-align: center; line-height: 1.3;
	font-size: var(--wp--preset--font-size--small); cursor: pointer;
}
.lm-lucky__wish:hover span { border-color: var(--wp--preset--color--gold); }
.lm-lucky__wish input:checked + span { background: var(--wp--preset--color--ink); border-color: var(--wp--preset--color--ink); color: var(--wp--preset--color--paper); }
.lm-lucky__wish input:focus-visible + span { outline: 2px solid var(--wp--preset--color--gold); outline-offset: 2px; }
.lm-lucky__go { width: 100%; justify-self: stretch; }
@media (min-width: 600px) { .lm-lucky__go { width: auto; justify-self: start; min-width: 16rem; } }
.lm-lucky__privacy, .lm-lucky__note { margin: 0; font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); }

.lm-lucky__result { display: grid; gap: var(--wp--preset--spacing--40); min-width: 0; scroll-margin-top: calc(var(--lm-header-h) + 1rem); }
/* The answer itself: a dark velvet card, like the home page strip. */
.lm-lucky__head {
	padding: clamp(1.25rem, 5vw, 2.5rem); background: var(--wp--preset--color--velvet); color: var(--wp--preset--color--paper);
	border-radius: 2px; box-shadow: 0 22px 44px -30px rgba(7, 14, 41, .7);
}
.lm-lucky__head .lm-eyebrow { color: var(--wp--preset--color--gold); }
.lm-lucky__head h2 { margin: 0 0 1.1rem; color: var(--wp--preset--color--paper); }
.lm-lucky__verdict { display: grid; gap: .75rem; }
@media (min-width: 600px) { .lm-lucky__verdict { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.lm-lucky__v { display: grid; gap: .5rem; margin: 0; padding: .9rem 1rem; border: 1px solid rgba(253, 244, 233, .18); border-radius: 8px; }
.lm-lucky__v > span { font-size: var(--wp--preset--font-size--xs); letter-spacing: .04em; color: var(--wp--preset--color--line); }
.lm-lucky__v .lm-chip { font-size: var(--wp--preset--font-size--small); padding: .3em .85em .3em .4em; }
.lm-lucky__v .lm-chip i { width: 1.2em; height: 1.2em; }
.lm-lucky__v.is-avoid .lm-chip { opacity: .8; }
.lm-lucky__sub { margin: var(--wp--preset--spacing--30) 0 0; font-size: var(--wp--preset--font-size--large); }
.lm-lucky__why { margin: .45rem 0 0; font-size: var(--wp--preset--font-size--xs); line-height: 1.45; color: var(--lm-gold-ink); }
.lm-lucky__chart { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; margin: 0; padding: 0; list-style: none; }
@media (min-width: 782px) { .lm-lucky__chart { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.lm-lucky__pos {
	display: grid; gap: .35rem; align-content: start; min-width: 0; padding: .85rem .9rem; background: #fff;
	border: var(--lm-line); border-top: 4px solid var(--c, var(--wp--preset--color--line)); border-radius: 4px;
}
.lm-lucky__pos-name { font-family: var(--wp--preset--font-family--heading); font-size: var(--wp--preset--font-size--medium); }
.lm-lucky__pos-mean { font-size: var(--wp--preset--font-size--xs); color: var(--wp--preset--color--muted); line-height: 1.45; }
.lm-lucky__pos.is-wish { border-color: var(--wp--preset--color--gold); border-top-color: var(--c); box-shadow: 0 0 0 1px var(--wp--preset--color--gold); }
.lm-lucky__pos.is-wish .lm-lucky__pos-name::after { content: " ★"; color: var(--wp--preset--color--gold); font-size: .8em; }
.lm-lucky__pos.is-avoid { background: var(--wp--preset--color--paper); opacity: .85; }
.lm-lucky__others { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem .6rem; margin: 0; font-size: var(--wp--preset--font-size--small); }
.lm-lucky__switch { padding: .4rem .85rem; border: var(--lm-line); border-radius: 999px; background: #fff; text-decoration: none; }
.lm-lucky__switch:hover { border-color: var(--wp--preset--color--gold); }

.lm-lucky-today__inner { display: grid; gap: 1rem 2rem; align-items: center; }
@media (min-width: 960px) { .lm-lucky-today__inner { grid-template-columns: auto 1fr auto; } }
.lm-lucky-today__head .lm-eyebrow { margin-bottom: .3rem; }
.lm-lucky-today__title { margin: 0; font-size: var(--wp--preset--font-size--x-large); }
.lm-lucky-today__list { display: flex; flex-wrap: wrap; gap: .55rem 1.3rem; margin: 0; padding: 0; list-style: none; }
.lm-lucky-today__list li { display: inline-flex; align-items: center; gap: .45rem; font-size: var(--wp--preset--font-size--small); }
.lm-lucky-today__k { color: var(--wp--preset--color--muted); }
.lm-lucky-today__list li.is-avoid .lm-chip { opacity: .7; }
.lm-lucky-today__cta { margin: 0; }
.lm-lucky-today--page { display: grid; gap: var(--wp--preset--spacing--40); min-width: 0; padding: clamp(1.1rem, 4vw, 2.25rem); background: var(--wp--preset--color--paper); border: var(--lm-line); }
/* On the finder page today's colours read as a small table: topic on the left, colours on the right. */
.lm-lucky-today--page .lm-lucky-today__list { display: grid; gap: 0; max-width: 34rem; }
.lm-lucky-today--page .lm-lucky-today__list li { display: grid; grid-template-columns: minmax(6.5rem, 38%) 1fr; gap: .75rem; align-items: center; padding: .55rem 0; border-bottom: var(--lm-line); }
.lm-lucky-today--page .lm-lucky-today__list li:last-child { border-bottom: 0; }
/* Home page: a dark band between the charm sections, so the daily colours read as news. */
.lm-lucky-strip { padding-block: var(--wp--preset--spacing--50); background: var(--wp--preset--color--velvet); color: var(--wp--preset--color--base); }
.lm-lucky-strip .lm-lucky-today__inner { max-width: var(--wp--style--global--wide-size, 80rem); margin-inline: auto; padding-inline: var(--wp--style--root--padding-left, 1.25rem) var(--wp--style--root--padding-right, 1.25rem); }
.lm-lucky-strip .lm-eyebrow { color: var(--wp--preset--color--gold); }
.lm-lucky-strip .lm-lucky-today__title { color: var(--wp--preset--color--paper); }
.lm-lucky-strip .lm-lucky-today__k { color: var(--wp--preset--color--line); }
.lm-lucky-strip .wp-element-button { background: var(--wp--preset--color--paper); color: var(--wp--preset--color--contrast); }
.lm-lucky-strip .wp-element-button:hover { background: var(--wp--preset--color--gold); color: var(--wp--preset--color--paper); }

/* ---------- Contact: concierge cards (LINE featured) ---------- */
.lm-reach { display: grid; gap: 1rem; margin-top: var(--wp--preset--spacing--40); }
.lm-reach a { text-decoration: none; color: var(--wp--preset--color--contrast); }
.lm-reach a.lm-reach__hero { color: var(--wp--preset--color--paper); }
.lm-reach__hero, .lm-reach__card { position: relative; display: flex; flex-direction: column; border-radius: 4px; transition: transform .35s var(--lm-ease), border-color .35s var(--lm-ease), box-shadow .35s var(--lm-ease); }
.lm-reach__hero { background: var(--wp--preset--color--ink); color: var(--wp--preset--color--paper); padding: clamp(1.75rem, 5vw, 2.75rem); overflow: hidden; outline: 1px solid rgba(169,128,63,.55); outline-offset: -8px; }
.lm-reach__hero::after { content: ""; position: absolute; right: -15%; top: -40%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(169,128,63,.22), transparent 65%); pointer-events: none; }
.lm-reach__hero:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(7,14,41,.7); }
.lm-reach__tag { position: absolute; top: 1.5rem; right: 1.5rem; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--wp--preset--color--gold); border: 1px solid currentColor; padding: .25rem .7rem; border-radius: 999px; }
.lm-reach__icon { display: inline-grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 1px solid var(--wp--preset--color--gold); color: var(--wp--preset--color--gold); margin-bottom: 1.25rem; }
.lm-reach__icon svg { width: 1.3rem; height: 1.3rem; }
.lm-reach__name { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; opacity: .75; }
.lm-reach__handle { font-family: var(--wp--preset--font-family--display); font-size: clamp(1.5rem, 4.5vw, 2.1rem); line-height: 1.2; margin: .35rem 0 .45rem; overflow-wrap: anywhere; }
.lm-reach__card .lm-reach__handle { font-size: 1.1rem; overflow-wrap: normal; }
.lm-reach__note { font-size: var(--wp--preset--font-size--small); opacity: .8; }
.lm-reach__cta { align-self: flex-start; margin-top: 1.5rem; background: var(--wp--preset--color--gold); color: var(--wp--preset--color--velvet); font-weight: 600; font-size: .9rem; letter-spacing: .06em; padding: .7rem 1.4rem; border-radius: 999px; }
.lm-reach__cta::after { content: " \2192"; }
.lm-reach__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.lm-reach__card { background: var(--wp--preset--color--paper); border: 1px solid rgba(169,128,63,.3); padding: 1.5rem 1.4rem 1.4rem; }
.lm-reach__card::after { content: "\2197"; position: absolute; top: 1.2rem; right: 1.3rem; color: var(--wp--preset--color--gold); transition: transform .35s var(--lm-ease); }
.lm-reach__card:hover { transform: translateY(-3px); border-color: var(--wp--preset--color--gold); box-shadow: 0 14px 30px -24px rgba(46,26,14,.55); }
.lm-reach__card:hover::after { transform: translate(2px,-2px); }
.lm-reach__card .lm-reach__note { color: var(--wp--preset--color--muted); opacity: 1; }
@media (min-width: 782px) { .lm-reach__grid { grid-template-columns: repeat(3, 1fr); } }
@media (prefers-reduced-motion: reduce) { .lm-reach__hero, .lm-reach__card { transition: none; } }
