/* ============================================================
   LIORA — Skin over Woodmart + WooCommerce
   Applies the Claude "Liora Interieur & Design" system.
   Tokens are loaded separately (tokens/*.css); this file uses
   the CSS custom properties they define.
   ============================================================ */

/* ---------- 0. Base ---------------------------------------- */
body.liora,
body.liora .site-content,
body.liora #main-page-wrapper {
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
}

body.liora,
body.liora p,
body.liora li,
body.liora a,
body.liora span,
body.liora input,
body.liora textarea,
body.liora select,
body.liora button {
	font-family: var(--font-body);
}

body.liora h1,
body.liora h2,
body.liora h3,
body.liora h4,
body.liora h5,
body.liora .woocommerce-loop-product__title,
body.liora .product_title,
body.liora .widget-title {
	font-family: var(--font-display);
	color: var(--color-text);
	letter-spacing: -0.01em;
	font-weight: var(--weight-medium);
}

body.liora a {
	color: var(--color-terra-600);
}

body.liora a:hover {
	color: var(--color-terra-500);
}

body.liora ::selection {
	background: var(--color-terra-200);
	color: var(--color-dark);
}

body.liora :focus-visible {
	outline: 2px solid var(--color-gold-400);
	outline-offset: 2px;
}

/* ---------- 1. Announcement bar ---------------------------- */
.liora-announcement {
	background: var(--color-terra-500);
	color: #fff;
	overflow: hidden;
	white-space: nowrap;
	font-size: 12px;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	position: relative;
	z-index: var(--z-sticky);
}

.liora-announcement__track {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 9px 0;
	animation: liora-marquee 34s linear infinite;
	will-change: transform;
}

.liora-announcement__group {
	display: flex;
	align-items: center;
	gap: 14px;
}

.liora-announcement__item {
	font-weight: 400;
	opacity: 0.95;
}

.liora-announcement__dot {
	opacity: 0.5;
}

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

@media (prefers-reduced-motion: reduce) {
	/* No marquee means no scroll, so the copy has to fit: let it wrap, and drop
	   the duplicate half that only existed to make the loop seamless. */
	.liora-announcement { white-space: normal; }
	.liora-announcement__track {
		display: flex;
		max-width: 100%;
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		padding: 9px 16px;
	}
	/* min-width:0 lets the group shrink below its max-content width. */
	.liora-announcement__group { flex-wrap: wrap; justify-content: center; min-width: 0; }
	.liora-announcement__group--clone { display: none; }
}

/* ---------- 2. Header (Woodmart) restyle ------------------- */
/* Hide Woodmart's secondary/left header nav (was the demo country switcher;
   emptied it shows "Wrong menu selected"). The Liora nav is centered. */
body.liora .wd-header-secondary-nav,
body.liora .whb-col-left .wd-header-nav {
	display: none !important;
}
/* Swap Woodmart's demo logo for the Liora logo. */
body.liora .wd-logo img,
body.liora .wd-main-logo img {
	content: url("../img/logo-horizontal.png");
	max-height: 44px !important;
	width: auto !important;
	height: auto !important;
	max-width: 200px !important;
}

body.liora .whb-header,
body.liora .whb-general-header,
body.liora .whb-main-header {
	background: #fff !important;
	backdrop-filter: none;
	border-bottom: 1px solid var(--color-border);
}

body.liora .whb-header .item-level-0 > a,
body.liora .main-nav .menu-item > a {
	font-family: var(--font-body);
	font-weight: var(--weight-medium);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text);
}

body.liora .whb-header .item-level-0 > a:hover {
	color: var(--color-terra-500);
}

/* ---------- 3. Buttons ------------------------------------- */
body.liora .button,
body.liora button.button,
body.liora a.button,
body.liora .wd-button,
body.liora input[type="submit"],
body.liora .single_add_to_cart_button,
body.liora .checkout-button,
body.liora .wc-block-components-button,
body.liora .liora-btn {
	background: var(--color-terra-500);
	color: #fff !important;
	border: none;
	border-radius: var(--radius-button);
	font-family: var(--font-body);
	font-weight: var(--weight-semibold);
	font-size: 11px;
	letter-spacing: var(--type-button-tracking);
	text-transform: uppercase;
	text-decoration: none !important;
	padding: 12px 28px;
	box-shadow: none;
	transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
	cursor: pointer;
}

body.liora .button:hover,
body.liora button.button:hover,
body.liora a.button:hover,
body.liora .wd-button:hover,
body.liora input[type="submit"]:hover,
body.liora .single_add_to_cart_button:hover,
body.liora .checkout-button:hover,
body.liora .liora-btn:hover {
	background: var(--color-accent-hover);
	transform: none;
	box-shadow: none;
	color: #fff !important;
}

body.liora .liora-btn--ghost,
body.liora .button.alt.wd-buttons-outline,
body.liora a.button.wc-backward {
	background: transparent;
	color: var(--color-text) !important;
	border: 1px solid var(--color-accent);
	box-shadow: none;
}

body.liora .liora-btn--ghost:hover {
	border-color: var(--color-accent);
	color: var(--color-accent) !important;
	background: transparent;
}

/* ---------- 4. Product cards (loop) ------------------------ */
body.liora ul.products li.product,
body.liora .wd-products .product-grid-item {
	background: var(--color-surface);
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
	border: none;
	padding: 0 !important;
}

body.liora ul.products li.product:hover,
body.liora .wd-products .product-grid-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

body.liora ul.products li.product .product-image-link,
body.liora ul.products li.product img,
body.liora .product-grid-item .product-element-top {
	border-radius: 0;
	margin: 0;
}

body.liora ul.products li.product .wd-entities-title,
body.liora ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: var(--weight-medium);
	line-height: 1.2;
	padding: 0 22px;
	margin-top: 16px;
}

body.liora ul.products li.product .wd-product-cats,
body.liora ul.products li.product .category-grid-item,
body.liora ul.products li.product .product-category {
	padding: 0 22px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

body.liora ul.products li.product .price {
	padding: 0 22px 6px;
	color: var(--color-text);
	font-weight: var(--weight-semibold);
	font-size: 15px;
	font-family: var(--font-body);
}

body.liora ul.products li.product .price del {
	color: var(--color-text-muted);
	font-weight: 400;
}

body.liora ul.products li.product .price ins {
	text-decoration: none;
	color: var(--color-terra-600);
}

body.liora ul.products li.product .wd-add-btn,
body.liora ul.products li.product .add_to_cart_button,
body.liora ul.products li.product .product_type_simple {
	padding: 0 22px 22px;
}

/* Editorial badge pills on cards */
body.liora ul.products li.product .product-labels .out-of-stock,
body.liora ul.products li.product .onsale,
body.liora .liora-badge {
	background: var(--color-taupe-400);
	color: #fff;
	border-radius: var(--radius-badge);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 12px;
	border: none;
	min-height: 0;
	min-width: 0;
	line-height: 1.4;
}

body.liora .liora-badge--nieuw { background: var(--color-taupe-400); }
body.liora .liora-badge--bestseller { background: var(--color-taupe-300); }

/* ---------- 5. Shop page header --------------------------- */
body.liora .liora-shop-hero {
	padding: 52px 0 36px;
	border-bottom: 1px solid var(--color-cream-300);
	margin-bottom: 40px;
}

body.liora .liora-shop-hero__eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-terra-500);
	margin-bottom: 10px;
}

body.liora .liora-shop-hero__title {
	font-family: var(--font-display);
	font-size: clamp(34px, 4vw, 48px);
	font-weight: var(--weight-medium);
	line-height: 1.1;
}

body.liora .liora-shop-hero__title em {
	font-style: italic;
	color: var(--color-terra-500);
}

/* Category filter pills (WooCommerce term links / Woodmart filters) */
body.liora .liora-filter {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 24px;
}

body.liora .liora-filter a {
	display: inline-block;
	padding: 9px 22px;
	border-radius: var(--radius-full);
	border: 1.5px solid var(--color-border);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--color-text-muted);
	text-transform: none;
	background: transparent;
	transition: all var(--transition-base);
}

body.liora .liora-filter a:hover,
body.liora .liora-filter a.is-active {
	border-color: var(--color-terra-500);
	background: var(--color-terra-500);
	color: #fff;
}

/* ---------- 6. Single product (PDP) ----------------------- */
body.liora.liora-pdp .product_title {
	font-family: var(--font-display);
	font-size: clamp(34px, 4vw, 44px);
	font-weight: var(--weight-semibold);
	line-height: 1.1;
	letter-spacing: -0.01em;
}

body.liora.liora-pdp .woocommerce-product-details__short-description,
body.liora.liora-pdp .woocommerce-Tabs-panel p {
	font-size: 15px;
	line-height: 1.75;
	color: var(--color-taupe-600);
	max-width: 560px;
}

body.liora.liora-pdp p.price,
body.liora.liora-pdp .summary .price {
	font-family: var(--font-body);
	font-size: 32px;
	font-weight: var(--weight-semibold);
	color: var(--color-text);
}

body.liora.liora-pdp .woocommerce-product-gallery__image img,
body.liora.liora-pdp .wd-single-image img {
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
}

body.liora.liora-pdp .single_add_to_cart_button {
	width: 100%;
	padding: 16px 40px;
	font-size: 13px;
}

/* Product eyebrow (category · mood) */
body.liora .liora-eyebrow {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 12px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-terra-500);
}

body.liora .liora-eyebrow em {
	font-style: normal;
	color: var(--color-taupe-400);
}

/* Configurator item rows + stepper + summary (handoff §5) */
body.liora .liora-config__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin: 28px 0 6px;
}

body.liora .liora-config__title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: var(--weight-semibold);
	margin: 0;
}

body.liora .liora-config__reset {
	font-size: 12px;
	color: var(--color-taupe-500);
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

body.liora .liora-config__help {
	font-size: 13px;
	color: var(--color-taupe-500);
	margin: 0 0 16px;
}

body.liora .liora-config__addonhead {
	margin: 24px 0 8px;
}

body.liora .liora-config__addonhead h4 {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: var(--weight-semibold);
	margin: 0 0 2px;
}

body.liora .liora-config__addonhead p {
	font-size: 13px;
	color: var(--color-taupe-500);
	margin: 0;
}

body.liora .liora-config__card {
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xs);
	padding: 8px 4px;
	margin-bottom: 20px;
}

body.liora .liora-config__row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--color-cream-200);
}

body.liora .liora-config__row:last-child { border-bottom: none; }
body.liora .liora-config__row.is-zero { opacity: 0.5; }

body.liora .liora-config__thumb {
	display: block;
	width: 58px;
	height: 58px;
	border-radius: var(--radius-image);
	object-fit: cover;
	background-color: var(--color-cream-200);
	background-repeat: no-repeat;
	flex-shrink: 0;
}

body.liora .liora-config__name {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: var(--weight-semibold);
	flex: 1;
}

body.liora .liora-config__unit {
	display: block;
	font-family: var(--font-body);
	font-size: 12px;
	color: var(--color-taupe-400);
	margin-top: 2px;
}

body.liora .liora-stepper {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--color-cream-300);
	border-radius: var(--radius-full);
	overflow: hidden;
}

body.liora .liora-stepper button {
	background: transparent;
	border: none;
	width: 34px;
	height: 34px;
	cursor: pointer;
	color: var(--color-text);
	font-size: 16px;
	padding: 0;
	box-shadow: none;
	border-radius: 0;
}

body.liora .liora-stepper button:hover { background: var(--color-cream-200); transform: none; }
body.liora .liora-stepper button:disabled { opacity: 0.35; cursor: not-allowed; }

body.liora .liora-stepper input {
	width: 40px;
	text-align: center;
	border: none;
	font-weight: 600;
	background: transparent;
}

body.liora .liora-summary {
	background: var(--color-cream-200);
	border-radius: var(--radius-lg);
	padding: 24px;
}

body.liora .liora-summary__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 10px;
	font-size: 14px;
	color: var(--color-taupe-600);
}

body.liora .liora-summary__discount { color: var(--color-olive-500); font-weight: 600; }

body.liora .liora-summary__total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-top: 14px;
	margin-top: 4px;
	border-top: 1px solid var(--color-cream-300);
}

body.liora .liora-summary__total .label {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-taupe-500);
}

body.liora .liora-summary__total .amount {
	font-family: var(--font-display);
	font-size: 34px;
	font-weight: var(--weight-semibold);
}

body.liora .liora-set-add {
	width: 100%;
	margin-top: 18px;
	padding: 16px 34px;
}

body.liora .liora-set-add:disabled {
	background: var(--color-taupe-300);
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

body.liora .liora-summary__trust {
	margin: 12px 0 0;
	font-size: 12px;
	color: var(--color-taupe-500);
	text-align: center;
}

/* PDP eyebrow (room · mood) + stock + pinterest */
body.liora .liora-pdp-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

body.liora .liora-pdp-eyebrow__room {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-terra-500);
}

body.liora .liora-pdp-eyebrow__mood {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 15px;
	color: var(--color-taupe-400);
}

body.liora .liora-pin {
	margin-left: auto;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1.5px solid var(--color-cream-300);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #E60023;
	transition: all var(--transition-base);
}

body.liora .liora-pin:hover { border-color: #E60023; background: #fff; }

body.liora .liora-pdp-stock {
	font-size: 13px;
	color: var(--color-olive-500);
	margin: 0 0 8px;
	font-weight: 500;
}

body.liora .liora-pdp-stock.is-low { color: var(--color-terra-600); }

body.liora .liora-kenmerken.shop_attributes th {
	width: 200px;
	color: var(--color-taupe-500);
	font-weight: 600;
}

/* Content pages */
body.liora .liora-page {
	max-width: 760px;
	margin: 0 auto;
	padding: 8px 0 24px;
}

body.liora .liora-page__lead {
	font-family: var(--font-display);
	font-size: 22px;
	font-style: italic;
	color: var(--color-taupe-500);
	line-height: 1.5;
	margin-bottom: 28px;
}

body.liora .liora-page h2 {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: var(--weight-medium);
	margin: 28px 0 10px;
}

body.liora .liora-page p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--color-taupe-600);
	margin: 0 0 16px;
}

/* ---------- 7. Cart & checkout accents -------------------- */
body.liora .cart_totals h2,
body.liora .woocommerce-checkout h3,
body.liora #order_review_heading {
	font-family: var(--font-display);
}

body.liora .woocommerce-message,
body.liora .woocommerce-info {
	border-top-color: var(--color-terra-500);
	background: var(--color-cream-100);
}

body.liora .woocommerce input.input-text,
body.liora .woocommerce select,
body.liora .woocommerce textarea {
	border-radius: var(--radius-input);
	border: 1px solid var(--color-cream-300);
	background: #fff;
}

body.liora .woocommerce form .form-row input:focus {
	border-color: var(--color-gold-400);
}

/* ---------- 8. USP strip ---------------------------------- */
.liora-usp {
	background: #fff;
	padding: 28px 32px;
	border-top: 1px solid var(--color-cream-200);
	border-bottom: 1px solid var(--color-cream-200);
}

.liora-usp__inner {
	max-width: var(--width-site);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.liora-usp__item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	text-align: left;
}

.liora-usp__icon {
	color: var(--color-gold-500);
	flex-shrink: 0;
	line-height: 0;
}

.liora-usp__text {
	display: flex;
	flex-direction: column;
}

.liora-usp__title {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: var(--weight-semibold);
	color: var(--color-text);
	line-height: 1.1;
}

.liora-usp__sub {
	font-size: 11px;
	color: var(--color-taupe-500);
	margin-top: 2px;
}

@media (max-width: 820px) {
	.liora-usp { padding: 20px 16px; }
	.liora-usp__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ---------- 9. Home (front-page.php) ---------------------- */
.liora-hero {
	position: relative;
	/* svh = viewport with the mobile toolbar showing, so the hero does not
	   resize while the address bar collapses. vh stays as the fallback. */
	height: 100vh;
	height: 100svh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
	color: #fff;
}

.liora-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 45%;
}

.liora-hero__scrim {
	position: absolute;
	inset: 0;
	background: rgba(42, 26, 14, 0.52);
}

.liora-hero__inner {
	position: relative;
	max-width: 760px;
	padding: 0 24px;
}

.liora-hero__eyebrow {
	font-size: 11px;
	font-weight: 300;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	opacity: 0.75;
	margin-bottom: 20px;
}

.liora-hero__title {
	font-family: var(--font-display);
	font-size: clamp(44px, 6vw, 80px);
	font-weight: var(--weight-semibold);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	color: #fff;
}

.liora-hero__sub {
	font-size: 17px;
	font-weight: 300;
	line-height: 1.7;
	opacity: 0.88;
	margin-bottom: 36px;
}

.liora-hero__cta {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.liora-hero .liora-btn {
	box-shadow: 0 4px 20px rgba(184, 84, 64, 0.4);
}

.liora-hero .liora-btn--ghost,
body.liora .liora-hero2 .liora-btn--ghost {
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.6);
}

.liora-section {
	padding: 52px 32px 48px;
}

.liora-section__inner {
	max-width: var(--width-site);
	margin: 0 auto;
}

.liora-section__head {
	text-align: center;
	margin-bottom: 52px;
}

.liora-section__eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-terra-500);
	margin-bottom: 12px;
}

.liora-section__title {
	font-family: var(--font-display);
	font-size: clamp(30px, 3.5vw, 40px);
	font-weight: var(--weight-medium);
	line-height: 1.15;
}

.liora-cardgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* Horizontal carousel (sets, inspiration) */
.liora-carousel { position: relative; }

.liora-carousel__track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding-left: 0;
	padding-bottom: 6px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.liora-carousel__track::-webkit-scrollbar { display: none; }

.liora-carousel__track > * {
	flex: 0 0 340px;
	scroll-snap-align: start;
}

.liora-carousel__arrow {
	position: absolute;
	top: 38%;
	z-index: 5;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: #fff;
	box-shadow: var(--shadow-md);
	color: var(--color-text);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	transition: opacity var(--transition-base), background var(--transition-base);
}

.liora-carousel.is-scrollable .liora-carousel__arrow { display: flex; }
.liora-carousel__arrow:hover { background: var(--color-cream-100); }
.liora-carousel__arrow:disabled { opacity: 0; pointer-events: none; }
.liora-carousel__arrow--prev { left: -18px; }
.liora-carousel__arrow--next { right: -18px; }

/* Category carousel: the card is a 3/4 portrait tile, so a 340px slide would
   be 453px tall. Narrower slides keep the row scannable and show that there is
   more to the right. */
.liora-carousel--cats .liora-carousel__track > * { flex: 0 0 240px; }

/* Product carousel: the loose-product card is drawn ~270px wide on the archive
   (4-up), so a 340px slide would blow it up past every other place it appears. */
.liora-carousel--prods .liora-carousel__track > * { flex: 0 0 260px; }

@media (max-width: 600px) {
	.liora-carousel__track > * { flex: 0 0 78%; }
	.liora-carousel--cats .liora-carousel__track > * { flex: 0 0 62%; max-width: 220px; }
	.liora-carousel__arrow { display: none !important; }
}

@media (max-width: 900px) { .liora-cardgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .liora-cardgrid { grid-template-columns: 1fr; } }

/* PDP "Andere sets" band (full-width, matches prototype Other-sets section) */
.liora-related {
	background: var(--color-cream-200);
	padding: 44px 0 60px;
}
.liora-related__inner {
	max-width: var(--width-site);
	margin: 0 auto;
	padding: 0 32px;
}
.liora-cardgrid--related {
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 820px) {
	.liora-related { padding: 36px 0 44px; }
	.liora-related__inner { padding: 0 16px; }
	.liora-cardgrid--related { grid-template-columns: 1fr 1fr; gap: 12px; }
}

.liora-card {
	display: block;
	background: #fff;
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
	color: inherit;
	text-decoration: none;
}

.liora-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
	color: inherit;
}

.liora-card__media {
	aspect-ratio: 4 / 3;
	position: relative;
	overflow: hidden;
	background: var(--color-cream-200);
}

.liora-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms var(--ease-out);
}

.liora-card:hover .liora-card__media img { transform: scale(1.04); }

/* Type badge (Collectie / Interieurbox) and promo badge (Nieuw / Bestseller)
   both belong top-left, so they stack in one column instead of overlapping. */
.liora-card__badges {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}

.liora-card__badge {
	color: #fff;
	padding: 4px 12px;
	border-radius: var(--radius-full);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: var(--color-terra-500);
}

/* A badge outside the stack (older markup) keeps its own corner. */
.liora-card__media > .liora-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
}

.liora-card__badge--bestseller { background: var(--color-gold-500); }
.liora-card__badge--nieuw { background: var(--color-olive-500); }
.liora-card__badge--collectie { background: var(--color-terra-500); }

.liora-card__body { padding: 22px 24px; }

.liora-card__catrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 6px;
}

.liora-card__catrow .liora-card__cat { margin-bottom: 0; }
.liora-card__catrow .liora-stars { flex-shrink: 0; }

.liora-card__cat {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.liora-card__name {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: var(--weight-medium);
	line-height: 1.2;
	margin-bottom: 14px;
}

.liora-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.liora-card__price {
	font-size: 18px;
	font-weight: var(--weight-semibold);
}

.liora-card__link {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--color-taupe-400);
	transition: color var(--transition-base);
}

.liora-card:hover .liora-card__link { color: var(--color-terra-500); }

/* Brand strip */
.liora-brandstrip {
	background: var(--color-terra-500);
	padding: 72px 24px;
	text-align: center;
	color: #fff;
}

.liora-brandstrip__inner { max-width: 680px; margin: 0 auto; }

.liora-brandstrip__eyebrow {
	font-size: 11px;
	font-weight: 300;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 20px;
}

.liora-brandstrip__title {
	font-family: var(--font-display);
	font-size: clamp(30px, 3.5vw, 48px);
	font-weight: var(--weight-medium);
	line-height: 1.2;
	margin-bottom: 20px;
	color: #fff;
}

.liora-brandstrip__body {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.85);
}

.liora-photobanner {
	height: 420px;
	overflow: hidden;
	position: relative;
}

.liora-photobanner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 40%;
}

.liora-photobanner__scrim {
	position: absolute;
	inset: 0;
	background: rgba(42, 26, 14, 0.25);
}

/* ---------- 9b. Home v2 (full pages1 HomeView) ------------ */
.liora-section--sand { background: var(--color-cream-200); }
.liora-section--cream { background: var(--color-cream-100); }
.liora-section--tight { padding-top: 0; }

@media (max-width: 820px) {
	.liora-section { padding: 40px 16px 36px; }
}

/* Split hero */
.liora-hero2 {
	display: flex;
	gap: 3px;
	height: 540px;
}

.liora-hero2__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 44px 52px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	transition: transform var(--transition-base);
}

.liora-hero2__panel--main { flex: 1.45; }
.liora-hero2__panel--sec { flex: 1; padding: 36px 40px; }
.liora-hero2__panel:hover { color: #fff; }
.liora-hero2__panel:hover .liora-hero2__cta { transform: scale(1.03); }

.liora-hero2__sub {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 8px rgba(15, 8, 4, 0.55);
	margin-bottom: 12px;
}

body.liora .liora-hero2__title {
	font-family: var(--font-display);
	font-size: 42px;
	font-weight: var(--weight-medium);
	line-height: 1.1;
	margin: 0 0 28px;
	max-width: 380px;
	color: #fff;
	text-shadow: 0 1px 8px rgba(15, 8, 4, 0.45);
}

.liora-hero2__title--sm { font-size: 28px; max-width: 220px; margin-bottom: 20px; }

.liora-hero2__cta {
	align-self: flex-start;
	display: inline-block;
	transition: transform var(--transition-base);
}

.liora-hero2__note {
	margin-top: 12px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 820px) {
	.liora-hero2 { flex-direction: column; height: auto; }
	.liora-hero2__panel { min-height: 380px; }
	/* Prototype shows only the main hero panel on mobile/tablet */
	.liora-hero2__panel--sec { display: none; }
	body.liora .liora-hero2__title { font-size: 32px; margin-bottom: 20px; }
}

/* Section label header */
.liora-sectionlabel {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 24px;
	gap: 16px;
}

.liora-sectionlabel__top {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-taupe-500);
	margin: 0 0 8px;
}

.liora-sectionlabel__title {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.2vw, 33px);
	font-weight: var(--weight-medium);
	line-height: 1.15;
	margin: 0;
}

.liora-sectionlabel__all {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	text-decoration: none !important;
	color: var(--color-terra-500);
	white-space: nowrap;
	border: 1px solid var(--color-terra-400, #C6795F);
	border-radius: var(--radius-full);
	padding: 9px 20px;
	transition: background var(--transition-base), color var(--transition-base);
}

.liora-sectionlabel__all:hover {
	background: var(--color-terra-500);
	color: #fff;
}

/* Set card extras */
.liora-setcard .liora-card__media { aspect-ratio: 1 / 1; }

/* Lives in the card body: on touch it is a normal, full-width button that can
   wrap, and only a mouse pointer lifts it back over the image on hover. */
.liora-setcard__cta {
	position: static;
	opacity: 1;
	transform: none;
	box-shadow: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 14px;
	padding: 11px 14px;
	min-height: 44px;
	background: var(--color-terra-500);
	color: #fff;
	border-radius: var(--radius-full);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	text-wrap: balance;
	transition: background var(--transition-base);
}

.liora-setcard__rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.liora-stars { display: inline-flex; gap: 1px; }

.liora-setcard__reviews {
	font-size: 12px;
	color: var(--color-taupe-400);
}

.liora-setcard__price {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.liora-setcard__now {
	font-size: 20px;
	font-weight: var(--weight-semibold);
	color: var(--color-text);
}

.liora-setcard__now .amount { color: inherit; }

/* Boxes and loose products print get_price_html() in here, so a sale price
   arrives as <del>old</del> <ins>new</ins> and needs the same treatment the
   set card gives its own was/now pair. */
.liora-setcard__now del {
	font-size: 14px;
	font-weight: var(--weight-regular);
	color: var(--color-taupe-400);
	margin-right: 6px;
}
.liora-setcard__now ins { text-decoration: none; }

.liora-setcard__was {
	font-size: 14px;
	color: var(--color-taupe-400);
	text-decoration: line-through;
}

.liora-setcard__complete {
	font-size: 12px;
	color: var(--color-taupe-400);
}

/* Loose-product / box card (box + product archives) */
.liora-prodcard .liora-card__media { aspect-ratio: 1 / 1; display: block; }
.liora-card__badge--box { background: var(--color-olive-500); }

.liora-prodcard .liora-card__body { padding: 16px 18px 18px; }

.liora-prodcard .liora-card__catrow { margin-bottom: 4px; }

.liora-prodcard .liora-card__name {
	font-size: 17px;
	line-height: 1.28;
	margin-bottom: 14px;
	/* Clamp to two lines so cards align in a tidy grid */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.56em;
}

.liora-prodcard .liora-card__name a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-base);
}

.liora-prodcard:hover .liora-card__name a,
.liora-prodcard .liora-card__name a:hover { color: var(--color-terra-500); }

.liora-prodcard .liora-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.liora-prodcard .liora-card__price { font-size: 17px; color: var(--color-text); }
.liora-prodcard .liora-card__price .amount { color: inherit; }
.liora-prodcard .liora-card__price del { color: var(--color-taupe-400); font-weight: 400; margin-right: 4px; font-size: 14px; }
.liora-prodcard .liora-card__price ins { text-decoration: none; }

/* Media link (image → PDP) sits under the overlaid wish + add-to-cart CTA. */
.liora-card__media-link { display: block; width: 100%; height: 100%; }

/* Loose-product / box add-to-cart CTA. Same story as the set card: part of the
   body flow on touch, hover-reveal over the image only on pointer devices. */
.liora-prodcard__cta {
	position: static;
	opacity: 1;
	transform: none;
	box-shadow: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 12px;
	padding: 11px 14px;
	min-height: 44px;
	background: var(--color-terra-500);
	color: #fff;
	border-radius: var(--radius-full);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.2;
	text-decoration: none;
	transition: background var(--transition-base);
}

.liora-prodcard__cta svg { display: block; flex: none; }
body.liora .liora-prodcard__cta,
body.liora .liora-prodcard__cta:hover { color: #fff; }
.liora-prodcard__cta:hover { background: var(--color-terra-600, #a6512f); }
.liora-prodcard__cta.loading { opacity: 0.7 !important; }
.liora-prodcard__cta--soldout { background: var(--color-taupe-400); box-shadow: none; cursor: not-allowed; }
.liora-prodcard__cta--soldout:hover { background: var(--color-taupe-400); }

/* WooCommerce appends a "Bekijk winkelwagen" link after AJAX — hide it on cards. */
.liora-card__body .added_to_cart { display: none; }

/* From tablet up, and only for a real pointer, the CTA floats back over the
   image. `bottom: calc(100% + 16px)` measures from the body's top edge, which
   is the bottom edge of the media — the same spot as the old overlay. */
@media (min-width: 821px) and (hover: hover) {
	.liora-card__body { position: relative; }

	.liora-setcard__cta,
	.liora-prodcard__cta {
		position: absolute;
		left: 50%;
		bottom: calc(100% + 16px);
		z-index: 3;
		width: auto;
		min-height: 0;
		margin: 0;
		white-space: nowrap;
		text-wrap: nowrap;
		opacity: 0;
		transform: translateX(-50%) translateY(12px);
		transition: all var(--transition-base);
		box-shadow: var(--shadow-md);
	}

	.liora-setcard__cta { padding: 10px 22px; font-size: 11px; letter-spacing: 0.10em; }
	.liora-prodcard__cta { padding: 10px 20px; font-size: 11px; letter-spacing: 0.08em; line-height: 1; }

	.liora-setcard:hover .liora-setcard__cta,
	.liora-prodcard:hover .liora-prodcard__cta { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Denser product grid for the box/product archives (sets stay 2-up) */
.liora-shoppage--simple .liora-cardgrid--shop {
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
@media (max-width: 1100px) {
	.liora-shoppage--simple .liora-cardgrid--shop { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 780px) {
	.liora-shoppage--simple .liora-cardgrid--shop { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
	.liora-shoppage--simple .liora-cardgrid--shop { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ── Mobile card tier ────────────────────────────────────────────────────
   Two cards next to each other on a 360-430px screen leave ~160px per card,
   so the body has to give back padding, the eyebrow has to be allowed to wrap
   and the name needs a third line before Dutch product names get cut. */
@media (max-width: 820px) {
	.liora-card__body { padding: 16px 16px 18px; }
	.liora-card__name { font-size: 20px; margin-bottom: 10px; }

	.liora-card__cat {
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
		letter-spacing: 0.04em;
		line-height: 1.35;
	}
	/* Eyebrow and stars stack, so the eyebrow gets the full card width and
	   "Collectie · 4 objecten" fits on one line instead of being cut to "COLL…". */
	.liora-card__catrow {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
	}

	.liora-prodcard .liora-card__body { padding: 14px 14px 16px; }
	.liora-prodcard .liora-card__name {
		font-size: 16px;
		margin-bottom: 10px;
		-webkit-line-clamp: 3;
		min-height: 0;
	}

	.liora-setcard__cta,
	.liora-prodcard__cta { font-size: 11px; letter-spacing: 0.05em; padding: 11px 10px; }

	/* Price, old price and "complete collectie" on one baseline needs ~200px;
	   on a 360px screen the card is 160px, so let the row wrap. */
	.liora-setcard__price { flex-wrap: wrap; row-gap: 2px; }
}

/* Simple (box/product) archive toolbar + pagination */
.liora-shoppage--simple .liora-shop--simple { display: block; }

.liora-shop__toolbar--simple {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}

.liora-shop__toolbar--simple .woocommerce-result-count { margin: 0; color: var(--color-text-muted); font-size: 13px; }

.liora-shop__toolbar--simple .woocommerce-ordering select,
.liora-shop__toolbar--simple select.orderby {
	padding: 9px 32px 9px 14px;
	border: 1px solid var(--color-cream-300, #e6ddcd);
	border-radius: var(--radius-full);
	background-color: #fff;
	font-size: 13px;
	color: var(--color-text);
}

.liora-shop__pagination { margin-top: 34px; }

.liora-shop__pagination .woocommerce-pagination ul {
	display: flex;
	gap: 6px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
}

.liora-shop__pagination .woocommerce-pagination ul li { border: none; margin: 0; }

.liora-shop__pagination .woocommerce-pagination ul li a,
.liora-shop__pagination .woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: var(--radius-full);
	background: #fff;
	box-shadow: var(--shadow-sm);
	color: var(--color-text);
	text-decoration: none;
	font-size: 14px;
	transition: background var(--transition-base), color var(--transition-base);
}

.liora-shop__pagination .woocommerce-pagination ul li span.current {
	background: var(--color-terra-500);
	color: #fff;
}

.liora-shop__pagination .woocommerce-pagination ul li a:hover { background: var(--color-cream-100); }

/* Room grid */
.liora-roomgrid,
.liora-stylegrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.liora-roomcard {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.liora-roomcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.liora-roomcard img { width: 100%; height: 100%; object-fit: cover; }

.liora-roomcard__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 8, 4, 0.7) 0%, rgba(15, 8, 4, 0.05) 60%);
}

.liora-roomcard__text {
	position: absolute;
	left: 20px;
	bottom: 18px;
	right: 16px;
	color: #fff;
}

.liora-roomcard__name {
	display: block;
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: var(--weight-medium);
	line-height: 1.2;
}

.liora-roomcard__sub { font-size: 12px; color: rgba(255, 255, 255, 0.8); }

/* Style card */
.liora-stylecard {
	position: relative;
	display: block;
	height: 120px;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-xs);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.liora-stylecard:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.liora-stylecard img { width: 100%; height: 100%; object-fit: cover; }

.liora-stylecard__scrim { position: absolute; inset: 0; background: rgba(42, 26, 14, 0.42); }

.liora-stylecard__text {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 20px;
	color: #fff;
}

.liora-stylecard__name { font-family: var(--font-display); font-size: 17px; font-weight: var(--weight-semibold); }
.liora-stylecard__sub { font-size: 11px; color: rgba(255, 255, 255, 0.72); margin-top: 3px; }

@media (max-width: 820px) {
	.liora-roomgrid {
		display: flex;
		grid-template-columns: none;
		gap: 12px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: none;
		scrollbar-width: none;
		margin: 0 -16px;
		padding: 4px 16px 10px;
	}
	.liora-roomgrid::-webkit-scrollbar { display: none; }
	.liora-roomgrid > .liora-roomcard {
		flex: 0 0 62%;
		max-width: 220px;
		scroll-snap-align: start;
	}
	.liora-stylegrid { grid-template-columns: repeat(2, 1fr); }
}

/* Article card */
.liora-artcard__media { aspect-ratio: 16 / 10; }
.liora-artcard__meta {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-terra-500);
	margin: 0 0 8px;
}
.liora-artcard__title {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: var(--weight-semibold);
	line-height: 1.2;
	margin: 0 0 8px;
}
.liora-artcard__excerpt { font-size: 13px; color: var(--color-taupe-600); line-height: 1.6; margin: 0; }

/* Ons verhaal */
.liora-story { background: #fff; padding: 64px 24px; }
.liora-story__inner {
	max-width: var(--width-site);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 56px;
	align-items: center;
}
.liora-story__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-image); box-shadow: var(--shadow-lg); }

.liora-story__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-image);
	background: var(--color-cream-200);
	border: 1px dashed var(--color-cream-400);
	color: var(--color-taupe-400);
	font-size: 13px;
	letter-spacing: 0.02em;
}
.liora-story__eyebrow { color: var(--color-taupe-400); }
.liora-story__title {
	font-family: var(--font-display);
	font-size: clamp(26px, 3vw, 33px);
	font-weight: var(--weight-medium);
	line-height: 1.2;
	margin: 0 0 16px;
}
.liora-story__text p { font-size: 15px; line-height: 1.8; color: var(--color-taupe-600); margin: 0 0 16px; }
.liora-story__text .liora-btn { margin-top: 8px; }

@media (max-width: 820px) {
	.liora-story__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* SEO block */
.liora-seoblock { background: var(--color-cream-100); padding: 64px 24px 72px; }
.liora-seoblock__inner { max-width: 820px; margin: 0 auto; }
.liora-seoblock__title {
	font-family: var(--font-display);
	font-size: clamp(26px, 3vw, 33px);
	font-weight: var(--weight-medium);
	line-height: 1.2;
	margin: 0 0 20px;
}
.liora-seoblock p { font-size: 15px; line-height: 1.8; color: var(--color-taupe-600); margin: 0 0 20px; }
.liora-seoblock__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- 10. Footer ------------------------------------ */
/* Hide Woodmart's own footer; the Liora footer is injected on wp_footer. */
body.liora .wd-footer-container,
body.liora footer.site-footer,
body.liora .footer-container,
body.liora #colophon {
	display: none !important;
}

.liora-footer {
	background: var(--color-taupe-900);
	color: rgba(255, 255, 255, 0.8);
	padding: 56px 24px 0;
}

.liora-footer__top {
	max-width: var(--width-site);
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	flex-wrap: wrap;
}

.liora-footer__pinterest {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7) !important;
	text-decoration: none;
}

.liora-footer__pinterest:hover { color: var(--color-gold-300); }

.liora-footer__cols {
	max-width: var(--width-site);
	margin: 0 auto;
	display: grid;
	grid-template-columns: var(--liora-footer-grid, repeat(5, minmax(0, 1fr)) minmax(0, 1.6fr));
	gap: 32px;
	padding: 40px 0 48px;
}

.liora-footer__logo { height: 44px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.liora-footer__tagline { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, 0.6); max-width: 260px; }

body.liora .liora-footer__col h4,
body.liora .liora-footer__news h4 {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 16px;
}

.liora-footer__col ul { list-style: none; margin: 0; padding: 0; }
.liora-footer__col li { margin-bottom: 10px; }

body.liora .liora-footer__col a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	text-decoration: none;
	transition: color var(--transition-base);
}

body.liora .liora-footer__col a:hover { color: var(--color-gold-300); }

.liora-footer__news p { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-bottom: 14px; line-height: 1.6; }

.liora-news { display: flex; gap: 8px; flex-wrap: wrap; }

.liora-news input {
	flex: 1 1 160px;
	min-width: 0;
	padding: 11px 14px;
	border-radius: var(--radius-input);
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 13px;
}

.liora-news input::placeholder { color: rgba(255, 255, 255, 0.4); }

.liora-news button {
	background: var(--color-terra-500);
	color: #fff;
	border: none;
	border-radius: var(--radius-full);
	padding: 11px 20px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	cursor: pointer;
}

.liora-footer__bar {
	max-width: var(--width-site);
	margin: 0 auto;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 22px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
	.liora-footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
	.liora-footer { padding: 44px 20px 0; }
	.liora-footer__top { padding-bottom: 28px; }
	.liora-footer__cols {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 28px 0 34px;
	}
	.liora-footer__col li { margin-bottom: 2px; }
	body.liora .liora-footer__col a {
		display: inline-flex;
		align-items: center;
		min-height: 42px;
		font-size: 16px;
		padding: 2px 0;
	}
	.liora-footer__news p { margin-bottom: 12px; }
	.liora-news {
		flex-direction: column;
		gap: 10px;
	}
	.liora-news input,
	.liora-news button {
		width: 100%;
		flex: 0 0 auto;
	}
	.liora-news input { min-height: 46px; }
	.liora-news button {
		min-height: 46px;
		font-size: 12px;
	}
	.liora-footer__bar {
		flex-direction: column;
		gap: 10px;
		font-size: 13px;
		padding: 18px 0 24px;
	}
}

/* ---------- 11. Custom shop archive (Fase 5) -------------- */
.liora-shoppage { background: var(--color-cream-100); }

.liora-shophead {
	padding: 44px 0 8px;
}

.liora-shophead__inner,
.liora-shop,
.liora-shop-seo__inner {
	max-width: var(--width-site);
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

.liora-shophead__eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-taupe-500);
	margin: 0 0 8px;
}

.liora-shophead__title {
	font-family: var(--font-display);
	font-size: 42px;
	font-weight: var(--weight-medium);
	line-height: 1.1;
	margin: 0 0 16px;
}

.liora-shophead__title em { font-style: italic; color: var(--color-terra-500); }

.liora-shophead__intro {
	font-size: 15px;
	line-height: 1.7;
	color: var(--color-taupe-600);
	max-width: 760px;
	margin: 0 0 24px;
}

.liora-shophead__more {
	color: var(--color-terra-500) !important;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
	white-space: nowrap;
}

.liora-shophead .liora-filter { margin-top: 0; }

/* Layout */
.liora-shop {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 36px;
	padding-top: 24px;
	padding-bottom: 64px;
	align-items: start;
}

.liora-shop__sidebar {
	position: sticky;
	top: 96px;
	display: block;
}

/* Filter card ("Sorteren & filteren") */
.liora-filtercard {
	background: var(--color-surface);
	border: 1px solid var(--color-cream-300);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xs);
	padding: 6px 20px 20px;
}
.liora-filtercard__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 16px 0 8px;
	border-bottom: 1px solid var(--color-cream-300);
	margin-bottom: 4px;
}
.liora-filtercard__head h2 {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: var(--weight-medium);
	margin: 0;
}

.liora-filtercard__titlegroup {
	display: flex;
	align-items: center;
	gap: 8px;
}

.liora-filtercard__toggle {
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	width: 20px;
	height: 20px;
	padding: 0;
	color: var(--color-taupe-500);
	transition: color var(--transition-base);
}
.liora-filtercard__toggle:hover { color: var(--color-terra-500); }
.liora-filtercard__toggle::before,
.liora-filtercard__toggle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	transition: opacity var(--transition-base);
}
.liora-filtercard__toggle::before {
	width: 12px;
	height: 1.5px;
	transform: translate(-50%, -50%);
}
.liora-filtercard__toggle::after {
	width: 1.5px;
	height: 12px;
	transform: translate(-50%, -50%);
}
.liora-filtercard__toggle[aria-expanded="true"]::after { opacity: 0; }

/* Collapsible facet sections */
.liora-facet {
	border-bottom: 1px solid var(--color-cream-200);
	padding: 0;
}
.liora-facet > summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--color-text);
}
.liora-facet > summary::-webkit-details-marker { display: none; }
.liora-facet > summary::after {
	content: '';
	width: 13px;
	height: 13px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%237A6450' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	transition: transform var(--transition-base);
}
.liora-facet[open] > summary::after { transform: rotate(180deg); }
.liora-facet__body { padding: 2px 0 16px; }

.liora-check {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	color: var(--color-taupe-600);
	margin-bottom: 9px;
	cursor: pointer;
}

.liora-check > span:not(.liora-check__count) { flex: 1; }

.liora-check__count {
	font-size: 11px;
	color: var(--color-taupe-400);
	flex-shrink: 0;
}

.liora-check input { accent-color: var(--color-terra-500); width: 15px; height: 15px; }

.liora-swatches { display: flex; gap: 8px; flex-wrap: wrap; }

.liora-swatch {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
}

.liora-swatch input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.liora-swatch span {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid var(--color-cream-300);
	box-sizing: border-box;
}
.liora-swatch.is-active span { border-color: var(--color-terra-500); box-shadow: 0 0 0 2px #fff inset; }

.liora-select {
	width: 100%;
	padding: 9px 12px;
	border-radius: var(--radius-input);
	border: 1px solid var(--color-cream-300);
	background: #fff;
	font-size: 13px;
	color: var(--color-text);
}

/* Price range slider (dual handle) */
.liora-range__labels {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-taupe-600);
	margin-top: 10px;
}

.liora-range__track {
	position: relative;
	height: 18px;
	margin: 8px 2px 4px;
}
.liora-range__track::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 7px;
	height: 4px;
	border-radius: var(--radius-full);
	background: var(--color-cream-300);
}
.liora-range__fill {
	position: absolute;
	top: 7px;
	height: 4px;
	border-radius: var(--radius-full);
	background: var(--color-terra-500);
}
.liora-range--dual input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 18px;
	margin: 0;
	background: transparent;
	pointer-events: none;
}
.liora-range--dual input[type="range"]::-webkit-slider-runnable-track { height: 4px; background: transparent; }
.liora-range--dual input[type="range"]::-moz-range-track { height: 4px; background: transparent; }
.liora-range--dual input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	pointer-events: auto;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--color-terra-500);
	cursor: pointer;
	box-shadow: var(--shadow-xs);
	margin-top: -7px;
}
.liora-range--dual input[type="range"]::-moz-range-thumb {
	pointer-events: auto;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--color-terra-500);
	cursor: pointer;
	box-shadow: var(--shadow-xs);
}

.liora-facet__apply { width: 100%; margin-top: 18px; }

.liora-facet__reset {
	font-size: 12px;
	color: var(--color-taupe-500);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.liora-shop-seo__top { margin-top: 32px; }

.liora-shop__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	gap: 16px;
}

.liora-shop__count { font-size: 13px; color: var(--color-taupe-500); }

.liora-shop__sort {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-taupe-500);
}

.liora-shop__sort .liora-select { width: auto; text-transform: none; letter-spacing: 0; }

.liora-cardgrid--shop { grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* Loose products / boxes are denser: 3-up in the faceted main column. */
.liora-cardgrid--products { grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 1024px) {
	.liora-cardgrid--products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ---- Archive view switcher (list + tile density, one control) ------ */
.liora-shop__toolbar-left { display: flex; align-items: center; gap: 16px; }

.liora-viewopts { display: flex; align-items: center; gap: 12px; }

.liora-viewopts__group {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	background: var(--color-surface);
	border: 1px solid var(--color-cream-300);
	/* Matches the sort <select> it sits beside in the toolbar (.liora-select),
	   so the whole row reads as one set of controls. */
	border-radius: var(--radius-input);
	padding: 3px;
}

.liora-viewopts__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	padding: 0 8px;
	border: none;
	background: transparent;
	/* One step tighter than the group so the highlight nests inside the 3px
	   padding instead of fighting the outer corner. */
	border-radius: var(--radius-sm);
	color: var(--color-taupe-500);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background var(--transition-base), color var(--transition-base);
}

.liora-viewopts__btn svg { display: block; }
.liora-viewopts__btn:hover { color: var(--color-text); }
.liora-viewopts__btn[aria-pressed="true"] { background: var(--color-terra-500); color: #fff; }

/* The list icon is drawn in strokes and the density icons in fills; at the same
   box size the dense blocks read lighter, so give them a hair more room. */
.liora-viewopts__btn--cols svg { width: 17px; height: 17px; }

/* List closes the row on the right; a hairline sets it apart from the densities
   without splitting the control into two boxes. */
.liora-viewopts__btn--list { margin-left: 4px; position: relative; }
.liora-viewopts__btn--list::before {
	content: "";
	position: absolute;
	left: -3px;
	top: 5px;
	bottom: 5px;
	width: 1px;
	background: var(--color-cream-300);
}


/* Column-count driven by the switcher (data-cols), clamped on smaller screens. */
[data-liora-grid][data-cols="1"] { grid-template-columns: 1fr; }
[data-liora-grid][data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
[data-liora-grid][data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
[data-liora-grid][data-cols="4"] { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1100px) {
	[data-liora-grid][data-cols="4"] { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
	/* 3- and 4-up collapse to 2 columns here, so those buttons would be no-ops.
	   List and the 1/2-up densities stay reachable. */
	.liora-viewopts__btn--cols[data-liora-cols="3"],
	.liora-viewopts__btn--cols[data-liora-cols="4"] { display: none; }
	[data-liora-grid][data-cols="3"],
	[data-liora-grid][data-cols="4"] { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
	[data-liora-grid][data-cols="2"],
	[data-liora-grid][data-cols="3"],
	[data-liora-grid][data-cols="4"] { grid-template-columns: repeat(2, 1fr); }
}

/* List view — one card per row, image left + details right. Works for both the
   set card (anchor) and the loose-product card. */
[data-liora-grid][data-view="list"] { grid-template-columns: 1fr !important; gap: 16px; }
[data-view="list"] .liora-card { display: grid; grid-template-columns: 260px 1fr; align-items: stretch; }
[data-view="list"] .liora-setcard .liora-card__media,
[data-view="list"] .liora-prodcard .liora-card__media { aspect-ratio: auto; height: 100%; min-height: 210px; }
[data-view="list"] .liora-card__body { display: flex; flex-direction: column; justify-content: center; padding: 26px 30px; }
[data-view="list"] .liora-prodcard .liora-card__name { -webkit-line-clamp: unset; min-height: 0; font-size: 22px; }
/* In list view the card body is the whole right-hand column, so the CTA stays
   in the flow at every width instead of floating over the thumbnail. */
[data-view="list"] .liora-setcard__cta,
[data-view="list"] .liora-prodcard__cta {
	position: static;
	opacity: 1;
	transform: none;
	align-self: flex-start;
	width: auto;
	min-height: 44px;
	margin-top: 14px;
	box-shadow: none;
}

@media (max-width: 640px) {
	[data-view="list"] .liora-card { grid-template-columns: 130px 1fr; }
	[data-view="list"] .liora-setcard .liora-card__media,
	[data-view="list"] .liora-prodcard .liora-card__media { min-height: 150px; }
	[data-view="list"] .liora-card__body { padding: 16px 18px; }
	[data-view="list"] .liora-prodcard .liora-card__name { font-size: 18px; }
	[data-view="list"] .liora-setcard__cta,
	[data-view="list"] .liora-prodcard__cta { align-self: stretch; margin-top: 12px; }
}

/* Mobile-only filter chrome — hidden on desktop (design filters instantly) */
.liora-shop__filtertrigger,
.liora-filtercard__close,
.liora-shop__overlay { display: none; }
.liora-facet__apply { display: none; }

.liora-shop__empty {
	padding: 72px 0 20px;
	text-align: center;
	color: var(--color-taupe-500);
}

.liora-shop__empty-title {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: var(--weight-medium);
	color: var(--color-text);
	margin: 0 0 8px;
}

.liora-shop__empty-sub { font-size: 13px; margin: 0 0 16px; }

.liora-shop__popular { margin-top: 44px; text-align: left; }

.liora-shop__popular-title {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: var(--weight-semibold);
	color: var(--color-text);
	margin: 0 0 16px;
}

.liora-cardgrid--popular { grid-template-columns: repeat(3, 1fr); gap: 20px; }

@media (max-width: 820px) {
	.liora-shop__empty { padding: 60px 0 20px; }
	.liora-shop__empty-title { font-size: 21px; }
	.liora-cardgrid--popular { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* SEO body + FAQ */
.liora-shop-seo { background: var(--color-cream-200); padding: 56px 0; }
.liora-shop-seo__inner { max-width: 820px; }
.liora-shop-seo > .liora-shop-seo__inner > p { font-size: 15px; line-height: 1.8; color: var(--color-taupe-600); margin: 0 0 32px; }

.liora-shop-faq h2 {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: var(--weight-medium);
	margin: 0 0 16px;
}

.liora-faq__item {
	border-bottom: 1px solid var(--color-cream-300);
	padding: 14px 0;
}

.liora-faq__item summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	color: var(--color-text);
	list-style: none;
}

.liora-faq__item summary::-webkit-details-marker { display: none; }
.liora-faq__item summary::after { content: '+'; float: right; color: var(--color-terra-500); font-size: 18px; }
.liora-faq__item[open] summary::after { content: '−'; }
.liora-faq__item p { margin: 10px 0 0; font-size: 14px; line-height: 1.7; color: var(--color-taupe-600); }

@media (max-width: 820px) {
	/* Single column: results full-width, sidebar becomes a slide-in drawer */
	.liora-shop { grid-template-columns: 1fr; gap: 0; }

	.liora-shophead { padding: 28px 0 8px; }
	.liora-shophead__title { font-size: 30px; }

	.liora-cardgrid--shop { grid-template-columns: repeat(2, 1fr); gap: 12px; }

	/* Mobile filter trigger + drawer chrome visible */
	.liora-shop__filtertrigger {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: var(--color-surface);
		border: 1.5px solid var(--color-cream-300);
		border-radius: var(--radius-full);
		padding: 12px 20px;
		font-family: var(--font-body);
		font-size: 13px;
		font-weight: 600;
		color: var(--color-text);
		cursor: pointer;
	}
	.liora-filtercard__close {
		display: block;
		background: none;
		border: none;
		font-size: 26px;
		line-height: 1;
		color: var(--color-taupe-500);
		cursor: pointer;
		padding: 0 4px;
	}
	.liora-facet__apply { display: block; }

	/* Overlay */
	.liora-shop__overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(42, 26, 14, 0.4);
		backdrop-filter: blur(2px);
		z-index: 400;
		opacity: 0;
		visibility: hidden;
		transition: opacity 280ms ease, visibility 280ms ease;
	}

	/* Sidebar → left slide-in drawer */
	.liora-shop__sidebar {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: min(88vw, 360px);
		z-index: 401;
		background: var(--color-surface);
		box-shadow: 8px 0 32px rgba(42, 26, 14, 0.18);
		overflow-y: auto;
		transform: translateX(-100%);
		transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
	}
	.liora-filtercard {
		border: none;
		box-shadow: none;
		border-radius: 0;
		min-height: 100%;
	}

	body.liora-shop-open .liora-shop__sidebar { transform: translateX(0); }
	body.liora-shop-open .liora-shop__overlay { opacity: 1; visibility: visible; }
	body.liora-drawer-lock { overflow: hidden; }
}

/* ---------- 12. Cart / checkout / thank-you (Fase 6) ------ */

/* Free-shipping progress bar */
.liora-freeship {
	background: var(--color-cream-200);
	border-radius: var(--radius-md);
	padding: 14px 16px;
	margin-bottom: 20px;
}

.liora-freeship__label {
	font-size: 13px;
	color: var(--color-taupe-600);
	margin: 0 0 8px;
}

.liora-freeship__label--done { color: var(--color-olive-500); }
.liora-freeship__label strong { color: var(--color-terra-600); font-weight: 600; }
.liora-freeship__label--done strong { color: var(--color-olive-500); }

.liora-freeship__track {
	display: block;
	height: 6px;
	background: var(--color-cream-300);
	border-radius: var(--radius-full);
	overflow: hidden;
}

.liora-freeship__fill {
	display: block;
	height: 100%;
	background: var(--color-terra-500);
	border-radius: var(--radius-full);
	transition: width var(--transition-slow);
}

/* Cart + checkout headings */
body.liora .woocommerce-cart-form h1,
body.liora .woocommerce-checkout h1,
body.liora form.checkout h3,
body.liora .cart_totals h2 {
	font-family: var(--font-display);
	font-weight: var(--weight-medium);
}

/* Checkout: two-column layout (form left, sticky order review right) */
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .woocommerce {
	max-width: var(--width-site);
	margin: 0 auto;
	padding: 8px 32px 64px;
}
body.woocommerce-checkout h1.entry-title,
body.woocommerce-checkout .page-title {
	font-family: var(--font-display);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: var(--weight-medium);
	margin: 0 0 8px;
}
body.liora form.checkout.woocommerce-checkout {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 48px;
	align-items: start;
}
body.liora .woocommerce-checkout #customer_details {
	grid-column: 1;
	width: auto;
	float: none;
}
body.liora .woocommerce-checkout #order_review_heading {
	grid-column: 2;
	grid-row: 1;
	margin: 0 0 16px;
}
body.liora .woocommerce-checkout #order_review {
	grid-column: 2;
	grid-row: 2;
}
/* The billing/shipping inner columns stack in the single left column */
body.liora .woocommerce-checkout #customer_details .col2-set .col-1,
body.liora .woocommerce-checkout #customer_details .col2-set .col-2 {
	width: 100%;
	float: none;
	margin: 0 0 24px;
}
/* Field styling */
body.liora .woocommerce-checkout .woocommerce-billing-fields h3,
body.liora .woocommerce-checkout .woocommerce-shipping-fields h3,
body.liora .woocommerce-checkout .woocommerce-additional-fields h3 {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: var(--weight-medium);
	margin: 0 0 16px;
}
body.liora .woocommerce-checkout .form-row label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--color-taupe-600);
	margin-bottom: 6px;
	display: block;
}
body.liora .woocommerce-checkout .form-row {
	margin-bottom: 16px;
}
body.liora .woocommerce-checkout .input-text,
body.liora .woocommerce-checkout select,
body.liora .woocommerce-checkout .select2-selection {
	width: 100%;
	padding: 12px 14px;
	font-size: 14px;
}

/* Checkout: sticky order review card */
body.liora .woocommerce-checkout #order_review,
body.liora .woocommerce-checkout .woocommerce-checkout-review-order {
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 24px;
	position: sticky;
	top: 96px;
}

body.liora .woocommerce-checkout #order_review_heading {
	font-family: var(--font-display);
	font-size: 22px;
	margin-bottom: 12px;
}

body.liora .woocommerce-checkout .shop_table th,
body.liora .woocommerce-checkout .shop_table td {
	border: none;
	padding: 10px 0;
}

body.liora .woocommerce-checkout .order-total .amount,
body.liora .cart_totals .order-total .amount {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: var(--weight-semibold);
	color: var(--color-text);
}

body.liora #payment,
body.liora .woocommerce-checkout #payment {
	background: transparent;
	border-radius: var(--radius-lg);
}

body.liora #payment ul.payment_methods {
	border: 1px solid var(--color-cream-300);
	border-radius: var(--radius-lg);
	background: #fff;
	padding: 12px 16px;
}

body.liora .liora-checkout-trust {
	display: flex;
	align-items: center;
	gap: 7px;
	justify-content: center;
	margin-top: 14px;
	font-size: 12px;
	color: var(--color-taupe-500);
}

/* Thank-you / order-received */
body.liora .woocommerce-order {
	max-width: 820px;
	margin: 0 auto;
	padding: 24px 0 40px;
}

/* The custom Liora hero replaces the default "Bestelling ontvangen" notice. */
body.liora .woocommerce-order > .woocommerce-notice--success {
	display: none;
}

/* Liora thank-you hero */
body.liora .liora-thankyou-hero {
	text-align: center;
	padding: 8px 0 28px;
}
body.liora .liora-thankyou-hero__badge {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--color-olive-500);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
body.liora .liora-thankyou-hero__order {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-terra-500);
	margin: 0 0 8px;
}
body.liora .liora-thankyou-hero__title {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 38px);
	font-weight: var(--weight-medium);
	color: var(--color-text);
	margin: 0 0 12px;
	line-height: 1.15;
}
body.liora .liora-thankyou-hero__sub {
	font-size: 15px;
	line-height: 1.7;
	color: var(--color-taupe-600);
	max-width: 520px;
	margin: 0 auto;
}
body.liora .liora-thankyou-actions {
	text-align: center;
	margin-top: 8px;
}

body.liora .woocommerce-order .woocommerce-order-overview,
body.liora .woocommerce-order .woocommerce-order-details,
body.liora .woocommerce-order .woocommerce-customer-details {
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xs);
	padding: 24px 28px;
	margin-bottom: 20px;
	border: none;
}

body.liora .woocommerce-order .woocommerce-order-details__title,
body.liora .woocommerce-order .woocommerce-column__title {
	font-family: var(--font-display);
	font-size: 20px;
	margin-bottom: 12px;
}

/* ---------- 13. Cart drawer (slide-in) -------------------- */
.liora-drawer[hidden] { display: none; }
.liora-drawer {
	position: fixed;
	inset: 0;
	z-index: 500;
}
.liora-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(42, 26, 14, 0.42);
	backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity 320ms var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}
.liora-drawer.is-open .liora-drawer__overlay { opacity: 1; }
.liora-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(92vw, 420px);
	background: var(--color-cream-100);
	box-shadow: -8px 0 32px rgba(42, 26, 14, 0.18);
	display: flex;
	flex-direction: column;
	transform: translateX(105%);
	transition: transform 360ms var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}
.liora-drawer.is-open .liora-drawer__panel { transform: translateX(0); }
body.liora-drawer-lock { overflow: hidden; }

.liora-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid var(--color-cream-300);
}
.liora-drawer__title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: var(--weight-semibold);
	color: var(--color-text);
}
.liora-drawer__close {
	background: none;
	border: none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	color: var(--color-taupe-500);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	transition: color var(--transition-base);
}
.liora-drawer__close:hover { color: var(--color-text); }

.liora-drawer__content {
	flex: 1;
	overflow-y: auto;
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
}
.liora-drawer .liora-freeship { margin-bottom: 12px; }

/* Delivery info line (matches design). */
.liora-drawer__delivery {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: var(--color-cream-200);
	border-radius: var(--radius-sm, 8px);
	font-size: 13px;
	color: var(--color-taupe-600);
	margin-bottom: 18px;
}
.liora-drawer__delivery svg { flex-shrink: 0; color: var(--color-taupe-500); }

.liora-drawer__items {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.liora-drawer__set-group {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 0 6px;
	border-bottom: 1px dashed var(--color-cream-300);
}
.liora-drawer__set-label {
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--color-taupe-500);
}
.liora-drawer__set-title {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: var(--weight-semibold);
	color: var(--color-text);
}
.liora-drawer__item {
	position: relative;
	display: flex;
	gap: 14px;
	padding: 16px 32px 16px 0;
	border-bottom: 1px solid var(--color-cream-200);
}
.liora-drawer__item--set {
	padding-top: 12px;
}
.liora-drawer__thumb {
	width: 68px;
	height: 68px;
	flex-shrink: 0;
	border-radius: var(--radius-sm, 8px);
	overflow: hidden;
	background: var(--color-cream-200);
}
.liora-drawer__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.liora-drawer__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.liora-drawer__name {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: var(--weight-semibold);
	color: var(--color-text);
	line-height: 1.2;
}
.liora-drawer__meta {
	font-size: 12px;
	color: var(--color-taupe-500);
}
.liora-drawer__saving { color: var(--color-olive-500); font-weight: 600; }
.liora-drawer__itemfoot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 6px;
}
.liora-drawer__qty {
	font-size: 12px;
	color: var(--color-taupe-500);
}
.liora-drawer__price {
	font-weight: var(--weight-semibold);
	color: var(--color-text);
}
.liora-drawer__remove {
	position: absolute;
	top: 14px;
	right: 0;
	background: transparent;
	border: 0;
	padding: 4px;
	color: var(--color-taupe-500);
	cursor: pointer;
	line-height: 0;
	border-radius: var(--radius-xs);
}
.liora-drawer__remove:hover { color: var(--color-terra-500); background: var(--color-cream-200); }

.liora-drawer__foot {
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid var(--color-cream-300);
}
.liora-drawer__subtotal {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 15px;
	margin-bottom: 14px;
}
.liora-drawer__subtotal span:first-child { font-weight: var(--weight-semibold); }
.liora-drawer__subtotal span:last-child {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: var(--weight-semibold);
}
.liora-drawer__checkout,
.liora-drawer__cartlink {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	border-radius: var(--radius-button);
	text-align: center;
}
.liora-drawer__cartlink {
	margin-top: 12px;
	text-decoration: none;
	background: var(--color-surface) !important;
	color: var(--color-taupe-600) !important;
	border-color: var(--color-terra-300) !important;
	border-width: 1.5px;
	box-shadow: none !important;
	min-height: 48px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.14em;
	padding: 0 22px;
}
.liora-drawer__cartlink:hover {
	background: var(--color-cream-100) !important;
	border-color: var(--color-terra-500) !important;
	color: var(--color-terra-500) !important;
	transform: none;
	box-shadow: none !important;
}

.liora-drawer__empty {
	text-align: center;
	padding: 48px 12px;
	margin: auto 0;
}
.liora-drawer__emptytitle {
	font-family: var(--font-display);
	font-size: 22px;
	color: var(--color-text);
	margin: 0 0 8px;
}
.liora-drawer__emptysub {
	font-size: 14px;
	color: var(--color-taupe-500);
	margin: 0 0 20px;
	line-height: 1.6;
}
.liora-drawer__loading {
	text-align: center;
	padding: 48px 12px;
	color: var(--color-taupe-500);
	font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
	.liora-drawer__panel,
	.liora-drawer__overlay { transition: none; }
}

@media (max-width: 560px) {
	.liora-drawer__panel {
		width: 100vw;
		max-width: none;
	}
}

/* ---------- 14. Cart page (fallback layout) --------------- */
body.woocommerce-cart .entry-content,
body.woocommerce-cart .woocommerce {
	max-width: var(--width-site);
	margin: 0 auto;
	padding: 8px 32px 64px;
}

body.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper + .liora-freeship,
body.woocommerce-cart .liora-freeship { max-width: 760px; }

body.woocommerce-cart .page-title,
body.woocommerce-cart h1.entry-title {
	font-family: var(--font-display);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: var(--weight-medium);
	margin: 0 0 24px;
}

/* Cart table */
body.liora .woocommerce-cart-form table.cart {
	border: none;
	margin-bottom: 28px;
}
body.liora .woocommerce-cart-form table.cart thead th {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-taupe-500);
	border-bottom: 1px solid var(--color-cream-300);
	padding: 0 12px 12px;
	background: none;
}
body.liora .woocommerce-cart-form table.cart td {
	border-top: none;
	border-bottom: 1px solid var(--color-cream-200);
	padding: 20px 12px;
	vertical-align: middle;
	background: none;
}
body.liora .woocommerce-cart-form .cart_item .product-thumbnail img {
	width: 84px;
	height: 84px;
	object-fit: cover;
	border-radius: var(--radius-sm, 8px);
}
body.liora .woocommerce-cart-form .product-name a {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: var(--weight-semibold);
	color: var(--color-text);
}
body.liora .woocommerce-cart-form .product-name .variation,
body.liora .woocommerce-cart-form .product-name dl {
	font-size: 12px;
	color: var(--color-taupe-500);
	margin-top: 6px;
}
body.liora .woocommerce-cart-form .product-name dl dt { font-weight: 600; }
body.liora .woocommerce-cart-form .coupon .input-text {
	width: 180px;
}

/* Collaterals: totals card */
body.liora .cart-collaterals {
	display: flex;
	justify-content: flex-end;
}
body.liora .cart-collaterals .cart_totals {
	width: 100%;
	max-width: 420px;
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 24px 28px;
}
body.liora .cart-collaterals .cart_totals h2 {
	font-family: var(--font-display);
	font-size: 22px;
	margin: 0 0 16px;
}
body.liora .cart-collaterals .cart_totals table {
	border: none;
}
body.liora .cart-collaterals .cart_totals th,
body.liora .cart-collaterals .cart_totals td {
	border-top: 1px solid var(--color-cream-200);
	padding: 12px 0;
}
body.liora .cart-collaterals .cart_totals .order-total .amount {
	font-family: var(--font-display);
	font-size: 24px;
}
body.liora .wc-proceed-to-checkout .checkout-button {
	width: 100%;
	text-align: center;
}

/* ---------- 15. Wishlist ---------------------------------- */
.liora-card__media { position: relative; }
.liora-card__wish {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.92);
	color: var(--color-taupe-500);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: var(--shadow-xs);
	transition: color var(--transition-base), background var(--transition-base), transform var(--transition-base);
	z-index: 3;
}
.liora-card__wish:hover { color: var(--color-terra-500); transform: scale(1.08); }
.liora-card__wish.is-active {
	color: #fff;
	background: var(--color-terra-500);
}
.liora-card__wish.is-active svg { fill: #fff; }

/* Wishlist page */
.liora-wishlist {
	max-width: var(--width-site);
	margin: 0 auto;
	padding: 8px 32px 64px;
}
.liora-wishlist__header {
	padding: 16px 0 24px;
}
.liora-wishlist__eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-terra-500);
	margin: 0 0 10px;
}
.liora-wishlist__title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: var(--weight-medium);
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1.1;
	margin: 0;
	color: var(--color-text);
}
.liora-wishlist__empty {
	text-align: center;
	padding: 80px 20px 96px;
}
.liora-wishlist__icon {
	display: block;
	margin: 0 auto 24px;
	color: var(--color-terra-300, #d9a894);
	opacity: 0.7;
}
.liora-wishlist__emptytitle {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 22px;
	color: var(--color-text);
	margin: 0 0 10px;
}
.liora-wishlist__emptysub {
	font-size: 14px;
	color: var(--color-taupe-500);
	margin: 0 0 28px;
	line-height: 1.6;
}
/* Hide default WP page title on Liora wishlist/inspiratie pages (title is inside the shortcode). */
body.liora-page-wishlist .entry-header,
body.liora-page-wishlist .entry-title,
body.liora-page-wishlist .page-title,
body.liora-page-inspiratie .entry-header,
body.liora-page-inspiratie .entry-title,
body.liora-page-inspiratie .page-title { display: none !important; }

/* ---------- 16. Responsive fixes (mobile/tablet) ---------- */
@media (max-width: 900px) {
	/* Checkout collapses to one column (placed last to beat the base grid). */
	body.liora form.checkout.woocommerce-checkout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	body.liora .woocommerce-checkout #customer_details,
	body.liora .woocommerce-checkout #order_review_heading,
	body.liora .woocommerce-checkout #order_review {
		grid-column: 1;
		grid-row: auto;
	}
	body.liora .woocommerce-checkout #order_review { position: static; }
	body.woocommerce-checkout .entry-content,
	body.woocommerce-checkout .woocommerce,
	body.woocommerce-cart .entry-content,
	body.woocommerce-cart .woocommerce {
		padding-left: 20px;
		padding-right: 20px;
	}
	body.liora .cart-collaterals { justify-content: stretch; }
	body.liora .cart-collaterals .cart_totals { max-width: none; }

	/* Order review + cart tables must not exceed the viewport. */
	body.liora .woocommerce table.shop_table {
		width: 100%;
		table-layout: fixed;
	}
	body.liora .woocommerce table.shop_table th,
	body.liora .woocommerce table.shop_table td {
		word-break: break-word;
		overflow-wrap: anywhere;
	}
	/* Product gallery never wider than its column. */
	body.liora-pdp .woocommerce-product-gallery,
	body.liora-pdp .woocommerce-product-gallery__image img {
		max-width: 100%;
	}
}

/* Global belt-and-suspenders: never allow horizontal page scroll. */
html, body.liora { overflow-x: hidden; max-width: 100%; }

/* ---------- 17. Inspiratie page --------------------------- */
.liora-inspiratie {
	max-width: var(--width-site);
	margin: 0 auto;
	padding: 8px 32px 64px;
}
.liora-inspiratie__hero {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.liora-inspiratie__hero > div {
	flex: 1 1 420px;
	min-width: 0;
}
.liora-inspiratie__eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-terra-500);
	margin: 0 0 10px;
}
.liora-inspiratie__title {
	font-family: var(--font-display);
	font-size: clamp(32px, 4vw, 44px);
	font-weight: var(--weight-medium);
	line-height: 1.1;
	margin: 0 0 12px;
}
.liora-inspiratie__sub {
	font-size: 15px;
	line-height: 1.7;
	color: var(--color-taupe-600);
	max-width: 520px;
	margin: 0;
}
.liora-inspiratie__pinterest {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.liora-inspiratie__toolbar {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 18px;
	width: 100%;
}

/* Keep article text readable in both tile and list variants. */
.liora-inspiratie [data-view="list"] .liora-artcard .liora-card__body {
	justify-content: flex-start;
	gap: 6px;
}
.liora-inspiratie [data-view="list"] .liora-artcard__title {
	font-size: clamp(18px, 2.2vw, 21px);
	margin-bottom: 0;
}
.liora-inspiratie [data-view="list"] .liora-artcard__excerpt {
	display: block;
	overflow: visible;
}

/* Inspiratie only ever renders the 1- and 2-up densities (see liora_view_toolbar
   call in inc/cards.php), so the shared mobile rule that drops 3/4-up is enough
   here — no archive-specific override needed. */

@media (max-width: 600px) {
	.liora-inspiratie { padding-left: 20px; padding-right: 20px; }
	.liora-inspiratie__hero { align-items: flex-start; }
	.liora-inspiratie__toolbar { justify-content: flex-end; margin-bottom: 12px; }
	/* Product-list CSS uses side-by-side card columns; for articles this clips
	   text on small screens. Keep list mode stacked and readable. */
	.liora-inspiratie [data-view="list"] .liora-artcard { display: block; }
	.liora-inspiratie [data-view="list"] .liora-artcard .liora-artcard__media {
		aspect-ratio: 16 / 10;
		min-height: 0;
	}
	.liora-inspiratie [data-view="list"] .liora-artcard .liora-card__body {
		padding: 16px 14px 18px;
		justify-content: flex-start;
	}
	.liora-inspiratie [data-view="list"] .liora-artcard__title {
		font-size: 20px;
		line-height: 1.25;
	}
	.liora-inspiratie [data-view="list"] .liora-artcard__excerpt {
		font-size: 13px;
		line-height: 1.6;
		display: block;
		overflow: visible;
	}
	.liora-inspiratie [data-view="grid"] .liora-artcard .liora-card__body { padding: 14px 12px 16px; }
	.liora-inspiratie [data-view="grid"] .liora-artcard__title { font-size: 17px; margin-bottom: 6px; }
	.liora-inspiratie [data-view="grid"] .liora-artcard__excerpt {
		font-size: 12px;
		line-height: 1.5;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
		overflow: hidden;
	}
}

/* ---------- 18. Single article ---------------------------- */
.liora-article {
	background: var(--color-cream-200);
	padding-bottom: 72px;
}
.liora-article--nohero { padding-top: 48px; }
.liora-article__hero {
	height: clamp(220px, 30vw, 340px);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.liora-article__card {
	position: relative;
	z-index: 1;
	max-width: 620px;
	margin: -80px auto 0;
	background: #fff;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-lg);
	padding: 40px 48px 44px;
}
.liora-article--nohero .liora-article__card { margin-top: 0; }
.liora-article__back {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-taupe-600);
	text-decoration: none;
	margin-bottom: 20px;
}
.liora-article__back:hover { color: var(--color-terra-500); }
.liora-article__eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-terra-500);
	margin: 0 0 10px;
}
.liora-article__title {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.2vw, 34px);
	font-weight: var(--weight-medium);
	line-height: 1.2;
	margin: 0 0 24px;
}
.liora-article__body {
	font-size: 15px;
	line-height: 1.8;
	color: var(--color-taupe-700);
}
.liora-article__body > * { margin: 0 0 18px; }
.liora-article__body > *:last-child { margin-bottom: 0; }
.liora-article__body h2 {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: var(--weight-medium);
	line-height: 1.3;
	color: var(--color-text);
	margin: 32px 0 10px;
}
.liora-article__body h3 {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin: 26px 0 8px;
}
.liora-article__body a { color: var(--color-terra-600); }
.liora-article__body ul,
.liora-article__body ol { padding-left: 20px; }
.liora-article__body li { margin-bottom: 6px; }
.liora-article__body blockquote {
	border-left: 2px solid var(--color-gold-300);
	padding-left: 18px;
	font-family: var(--font-display);
	font-size: 19px;
	line-height: 1.5;
	color: var(--color-taupe-700);
}
.liora-article__body img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-image);
}
.liora-article__cta {
	border-top: 1px solid var(--color-taupe-200);
	margin-top: 36px;
	padding-top: 32px;
	text-align: center;
}
.liora-article__ctatitle {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: var(--weight-medium);
	margin: 0 0 18px;
}
@media (max-width: 700px) {
	.liora-article__card {
		margin: -48px 20px 0;
		padding: 28px 24px 32px;
	}
	.liora-article__body { font-size: 14px; }
}

/* ---------- 19. Content pages ----------------------------- */
body.liora-page-content .site-content,
body.liora-page-content #liora-content {
	background: var(--color-cream-100);
}
body.liora-page-content #primary {
	max-width: 620px;
	margin: 0 auto;
	padding: 72px 32px 88px;
}
body.liora-page-content .entry-header { margin: 0 0 8px; }
body.liora-page-content .entry-title {
	font-family: var(--font-display);
	font-size: clamp(30px, 3.6vw, 40px);
	font-weight: var(--weight-medium);
	line-height: 1.15;
	margin: 0;
}
/* The page excerpt, rendered as the italic standfirst from the design. */
body.liora-page-content .liora-page__lead {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 17px;
	line-height: 1.6;
	color: var(--color-taupe-600);
	margin: 0 0 36px;
}
body.liora-page-content .entry-content {
	font-size: 15px;
	line-height: 1.8;
	color: var(--color-taupe-700);
}
body.liora-page-content .entry-content > * { margin: 0 0 18px; }
body.liora-page-content .entry-content > *:last-child { margin-bottom: 0; }
body.liora-page-content .entry-content h2 {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: var(--weight-medium);
	line-height: 1.3;
	color: var(--color-text);
	margin: 34px 0 10px;
}
body.liora-page-content .entry-content h3 {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin: 26px 0 8px;
}
body.liora-page-content .entry-content a { color: var(--color-terra-600); }
body.liora-page-content .entry-content ul,
body.liora-page-content .entry-content ol { padding-left: 20px; }
body.liora-page-content .entry-content li { margin-bottom: 6px; }
body.liora-page-content .entry-content blockquote {
	border-left: 2px solid var(--color-gold-300);
	padding-left: 18px;
	font-family: var(--font-display);
	font-size: 19px;
	line-height: 1.5;
	color: var(--color-taupe-700);
}
body.liora-page-content .entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-image);
}
/* Editor button blocks render as the terra pill, centred like the design. */
body.liora-page-content .entry-content .wp-block-buttons,
body.liora-page-content .entry-content .wp-block-button {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
body.liora-page-content .entry-content .wp-block-button__link {
	background: var(--color-terra-500);
	color: #fff !important;
	border: none;
	border-radius: var(--radius-button);
	font-family: var(--font-body);
	font-weight: var(--weight-semibold);
	font-size: 11px;
	letter-spacing: var(--type-button-tracking);
	text-transform: uppercase;
	text-decoration: none !important;
	padding: 12px 28px;
	box-shadow: none;
	transition: background var(--transition-base), transform var(--transition-base);
}
body.liora-page-content .entry-content .wp-block-button__link:hover {
	background: var(--color-accent-hover);
	transform: none;
}
@media (max-width: 700px) {
	body.liora-page-content #primary { padding: 48px 20px 64px; }
	body.liora-page-content .entry-content { font-size: 14px; }
}

/* ── Touch target tier ───────────────────────────────────────────────────
   Below 820px every control is thumb-driven. Nothing interactive may end up
   under 44x44; where the visual size has to stay small the hit area is grown
   with padding + a negative margin so the layout does not shift. */
@media (max-width: 820px) {
	.liora-card__wish { width: 44px; height: 44px; }

	.liora-header__hamburger,
	.liora-header__icon { min-width: 44px; min-height: 44px; }

	.liora-viewopts__btn { min-width: 44px; height: 44px; }

	.liora-filtercard__toggle,
	.liora-filtercard__close {
		width: 44px;
		height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.liora-drawer__remove {
		padding: 12px;
		margin: -12px -12px 0 0;
		display: grid;
		place-items: center;
	}

	.liora-drawer__close,
	.liora-mnav__close { width: 44px; height: 44px; }

	/* Inline text links that act as buttons. */
	.liora-facet__reset,
	.liora-shophead__more,
	.liora-sectionlabel__all,
	.liora-footer__pinterest {
		display: inline-flex;
		align-items: center;
		min-height: 44px;
	}

	/* Dual price slider: a 18px handle on a 18px track is unhittable. */
	.liora-range__track { height: 44px; margin: 4px 2px 0; }
	.liora-range--dual input[type="range"] { height: 44px; }
	.liora-range__track::before,
	.liora-range__fill { top: 20px; }
	.liora-range--dual input[type="range"]::-webkit-slider-thumb { width: 26px; height: 26px; }
	.liora-range--dual input[type="range"]::-moz-range-thumb { width: 26px; height: 26px; }

	/* iOS zooms the whole page when a focused field renders under 16px. */
	body.liora input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
	body.liora select,
	body.liora textarea { font-size: 16px; }

	body.liora input[type="checkbox"],
	body.liora input[type="radio"] { width: 22px; height: 22px; }

	/* Facet rows: the label is the target, the box only has to be visible. */
	.liora-check { min-height: 44px; align-items: center; }
	.liora-select { min-height: 44px; }
	.liora-swatch { width: 40px; height: 40px; }

	.liora-facet__apply,
	.liora-btn,
	.liora-faq__item > summary { min-height: 44px; }
	.liora-faq__item > summary { display: flex; align-items: center; }

	/* 10px uppercase with wide tracking is unreadable at arm's length. */
	.liora-card__cat { font-size: 11px; }
}

/* ── Mobile layout fixes ─────────────────────────────────────────────────
   `1fr` floors at min-content, so an unshrinkable toolbar pushed the whole
   shop column ~6px past the viewport. minmax(0, 1fr) lets it shrink. */
@media (max-width: 820px) {
	.liora-shop { grid-template-columns: minmax(0, 1fr); }
	.liora-shop__main { min-width: 0; }
	.liora-shop__toolbar { flex-wrap: wrap; row-gap: 10px; }
}

/* Images in default WordPress templates (search results, 404, posts) ship
   without a max-width and run off the side of a phone screen. */
body.liora .entry-content img,
body.liora .page-content img,
body.liora .widget img { max-width: 100%; height: auto; }

/* A width:100% field on a content-box input adds its padding on top and pushes
   past its column — the footer newsletter field did exactly that. */
body.liora input,
body.liora select,
body.liora textarea,
body.liora button { box-sizing: border-box; }

@media (max-width: 820px) {
	/* WooCommerce's own buttons (account, 404 widgets, search) never went
	   through the Liora button styles and stayed around 38px. */
	/* min-height does nothing on an inline <a>, which is what most of these
	   "buttons" are, so give them a box first. */
	body.liora .liora-btn,
	body.liora .button,
	body.liora button[type="submit"],
	body.liora .woocommerce-button,
	body.liora .liora-shop__filtertrigger {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 44px;
	}

	body.liora .woocommerce-form__label-for-checkbox { display: flex; align-items: center; min-height: 44px; }

	/* Storefront's default product tiles (404 page) clip their own captions. */
	body.liora ul.products li.product { overflow: visible; }
}
