/* ============================================================
   Benelisse · Main stylesheet
   Palette: sage-green primary, linen accent, warm off-white
   Type:    Playfair Display (display) + Inter (body)
   ============================================================ */

:root {
	--text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
	--text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
	--text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
	--text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
	--text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
	--text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
	--text-hero: clamp(2.5rem, 1rem + 4vw, 4.5rem);

	--space-1: .25rem; --space-2: .5rem; --space-3: .75rem;
	--space-4: 1rem;   --space-5: 1.25rem; --space-6: 1.5rem;
	--space-8: 2rem;   --space-10: 2.5rem; --space-12: 3rem;
	--space-16: 4rem;  --space-20: 5rem;   --space-24: 6rem;

	--color-bg:             #f9f8f5;
	--color-surface:        #ffffff;
	--color-surface-2:      #f4f2ee;
	--color-surface-offset: #edeae3;
	--color-divider:        #e0ddd6;
	--color-border:         #d6d3ca;

	--color-text:           #1e1d1a;
	--color-text-muted:     #6b6960;
	--color-text-faint:     #b5b2ab;
	--color-text-inverse:   #f9f8f5;

	--color-primary:        #4a7c59;
	--color-primary-hover:  #3a6246;
	--color-primary-light:  #e8f0eb;
	--color-primary-highlight: #d4e6da;

	--color-accent:         #9c8660;
	--color-accent-light:   #f2ece0;

	--radius-sm: .25rem; --radius-md: .5rem;
	--radius-lg: .75rem; --radius-xl: 1rem; --radius-2xl: 1.5rem;
	--radius-full: 9999px;

	--shadow-sm: 0 1px 3px rgba(30,29,26,.08);
	--shadow-md: 0 4px 16px rgba(30,29,26,.10);
	--shadow-lg: 0 12px 40px rgba(30,29,26,.14);

	--transition: 180ms cubic-bezier(.16,1,.3,1);
	--content-narrow: 720px;
	--content-default: 960px;
	--content-wide: 1200px;

	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Inter', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; padding: 0; font-family: var(--font-body); font-size: var(--text-base); color: var(--color-text); background: var(--color-bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-hover); }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 .5em; text-wrap: balance; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; }
hr { border: none; border-top: 1px solid var(--color-divider); margin: var(--space-8) 0; }
::selection { background: var(--color-primary-light); color: var(--color-primary-hover); }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 9999; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* ===== LAYOUT ===== */
.container { max-width: var(--content-wide); margin: 0 auto; padding: 0 var(--space-6); }
.container--default { max-width: var(--content-default); margin: 0 auto; padding: 0 var(--space-6); }
.container--narrow { max-width: var(--content-narrow); margin: 0 auto; padding: 0 var(--space-6); }
section { padding: clamp(var(--space-16), 6vw, var(--space-20)) 0; }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-divider); padding: var(--space-4) 0; }
.site-header__inner { display: flex; align-items: center; gap: var(--space-6); }
.site-brand { display: inline-flex; align-items: center; gap: var(--space-3); font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--color-text); }
.site-brand:hover { color: var(--color-text); }
.brand-mark { color: var(--color-primary); display: inline-flex; }
.custom-logo { max-height: 48px; width: auto; }
.site-nav { flex: 1; }
.nav-links { display: flex; align-items: center; gap: var(--space-8); list-style: none; margin: 0; padding: 0; justify-content: center; }
.nav-links a { font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted); }
.nav-links a:hover, .nav-links .current-menu-item > a, .nav-links .current_page_item > a { color: var(--color-text); }
.site-header__actions { display: flex; align-items: center; gap: var(--space-3); }

.nav-toggle { display: none; width: 40px; height: 40px; padding: 8px; border-radius: var(--radius-md); }
.nav-toggle span { display: block; height: 2px; background: var(--color-text); margin: 4px 0; border-radius: 2px; transition: var(--transition); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); padding: .85em 1.6em; border-radius: var(--radius-full); font-size: var(--text-sm); font-weight: 600; transition: var(--transition); text-decoration: none; line-height: 1; cursor: pointer; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: var(--color-surface); color: var(--color-text); border: 1px solid var(--color-border); }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-light { background: #fff; color: var(--color-primary); }
.btn-light:hover { background: var(--color-primary-light); color: var(--color-primary-hover); }
.btn-sm { padding: .6em 1.1em; font-size: 13px; }
.btn-block { width: 100%; }

/* ===== HEADINGS / SECTION-HEAD ===== */
.eyebrow { font-size: var(--text-xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--color-primary); margin-bottom: var(--space-3); }
.section-head { margin-bottom: var(--space-10); max-width: 720px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.section-sub { color: var(--color-text-muted); font-size: var(--text-base); }
.section-cta { margin-top: var(--space-10); text-align: center; }

/* ===== HERO ===== */
.hero { padding: clamp(var(--space-16), 7vw, var(--space-24)) 0; background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent-light) 100%); border-bottom: 1px solid var(--color-divider); }
.hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--space-12); align-items: center; }
.hero__title { font-size: var(--text-hero); margin-bottom: var(--space-5); }
.hero__sub { font-size: var(--text-lg); color: var(--color-text-muted); margin-bottom: var(--space-8); max-width: 56ch; }
.hero__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero__media img { border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); }

/* ===== PLACEHOLDER ===== */
.placeholder { background: var(--color-surface-offset); border: 2px dashed var(--color-border); border-radius: var(--radius-xl); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: var(--color-text-faint); font-size: var(--text-sm); text-align: center; padding: var(--space-6); }
.placeholder--lg { aspect-ratio: 16/10; }

/* ===== STATS ===== */
/* Stats 区域 — v1.7.6 增加标题区，与其他 section 风格统一 */
.stats {
	background: var(--color-surface);
	padding: var(--space-16) 0;
	border-bottom: 1px solid var(--color-divider);
}
/* 标题区与数据网格之间留白 */
.stats__header {
	margin-bottom: var(--space-12);
}
.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-8);
	text-align: center;
}
/* 每个数据项加细分割线和内边距，提升层次感 */
.stat {
	padding: var(--space-6) var(--space-4);
	border-left: 1px solid var(--color-divider);
}
.stat:first-child {
	border-left: none;
}
.stat__num {
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: var(--space-3);
	/* 数字放大一档，增强视觉冲击力 */
	font-size: clamp(2rem, 3.5vw, 2.75rem);
}
.stat__lbl {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: 1.4;
	max-width: 12ch;
	margin: 0 auto;
}

/* ===== VALUES ===== */
.values { background: var(--color-bg); }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.value-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-8) var(--space-6); transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary-highlight); }
.value-card__icon { font-size: 36px; margin-bottom: var(--space-4); }
.value-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.value-card p { color: var(--color-text-muted); font-size: var(--text-sm); margin: 0; }

/* ===== PRODUCT GRIDS ===== */
.products-home { background: var(--color-surface); border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider); }

/* Scent 分类卡片 — v1.7.8 图片横版样式，高度约原来一半 */
.scent-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
	margin-bottom: var(--space-12);
}

/* 图片背景版卡片 */
.scent-card--img {
	position: relative;
	display: block;
	/* 16:9 宽高比，约为原版高度的一半 */
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-xl);
	overflow: hidden;
	background-color: var(--color-primary-light);
	background-size: cover;
	/* 构图焦点：包装图上半部分较好看 */
	background-position: center 30%;
	text-decoration: none;
	transition: transform .3s ease, box-shadow .3s ease;
	border: none;
	padding: 0;
}
.scent-card--img:hover {
	transform: translateY(-4px) scale(1.015);
	box-shadow: 0 12px 32px rgba(0,0,0,0.18);
	color: inherit;
}

/* 底部渐变遮罩，确保文字可读 */
.scent-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0,0,0,0.00) 30%,
		rgba(0,0,0,0.55) 100%
	);
	transition: background .3s ease;
}
.scent-card--img:hover .scent-card__overlay {
	background: linear-gradient(
		to bottom,
		rgba(0,0,0,0.05) 20%,
		rgba(0,0,0,0.65) 100%
	);
}

/* 文字区域贴底排列 */
.scent-card__body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var(--space-4) var(--space-5);
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.scent-card__name {
	color: #fff;
	font-size: var(--text-lg);
	font-weight: 700;
	margin: 0 0 2px;
	text-shadow: 0 1px 6px rgba(0,0,0,0.3);
	line-height: 1.2;
}
.scent-card__count {
	display: none; /* 横版卡片空间有限，隐藏数量 */
}
.scent-card__cta {
	color: rgba(255,255,255,0.90);
	font-size: var(--text-sm);
	font-weight: 600;
	white-space: nowrap;
	padding: 5px 14px;
	background: rgba(255,255,255,0.18);
	border: 1px solid rgba(255,255,255,0.45);
	border-radius: 999px;
	backdrop-filter: blur(4px);
	transition: background .2s ease;
}
.scent-card--img:hover .scent-card__cta {
	background: rgba(255,255,255,0.28);
}

/* 旧版无图卡片兜底（非 img 变体） */
.scent-card:not(.scent-card--img) {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-2xl);
	padding: var(--space-10) var(--space-6);
	text-align: center;
	transition: var(--transition);
	display: block;
}
.scent-card:not(.scent-card--img):hover {
	transform: translateY(-4px);
	border-color: var(--color-primary);
	box-shadow: var(--shadow-md);
	color: var(--color-text);
}
.scent-card--placeholder { opacity: .85; }
.scent-card__icon { font-size: 42px; margin-bottom: var(--space-3); }
.scent-card:not(.scent-card--img) h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); color: var(--color-text); }
.scent-card:not(.scent-card--img) p { color: var(--color-text-muted); font-size: var(--text-sm); margin-bottom: var(--space-4); }
.link-arrow { color: var(--color-primary); font-weight: 600; font-size: var(--text-sm); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.product-grid--home { margin-top: var(--space-10); }

/* ===== PRODUCT CARD ===== */
.product-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary-highlight); }
.product-card__media { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--color-surface-offset); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__media .placeholder { aspect-ratio: 4/3; border: none; }
.product-card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.product-card__title { font-size: var(--text-lg); margin: 0; }
.product-card__title a { color: var(--color-text); }
.product-card__title a:hover { color: var(--color-primary); }
.product-card__tagline { color: var(--color-text-muted); font-size: var(--text-sm); margin: 0; }
.product-card__tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.product-card__btn { margin-top: auto; color: var(--color-primary); font-weight: 600; font-size: var(--text-sm); }

/* ===== BADGES ===== */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600; letter-spacing: .02em; }
.badge-green { background: var(--color-primary-light); color: var(--color-primary); }
.badge-tan { background: var(--color-accent-light); color: var(--color-accent); }

/* ===== FACTORY TEASER ===== */
.factory-teaser { background: var(--color-bg); }
.factory-teaser__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.factory-teaser__media img { border-radius: var(--radius-2xl); box-shadow: var(--shadow-md); }
.factory-teaser__text p { color: var(--color-text-muted); margin-bottom: var(--space-6); font-size: var(--text-base); }

/* ===== BOTTOM CTA BAND ===== */
.cta-band { background: var(--color-primary); color: #fff; padding: var(--space-20) 0; }
.cta-band__inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.cta-band p { color: rgba(255,255,255,.85); font-size: var(--text-base); margin-bottom: var(--space-8); }

/* ===== PAGE HERO ===== */
.page-hero { padding: var(--space-16) 0 var(--space-12); border-bottom: 1px solid var(--color-divider); background: var(--color-surface); }
.page-hero--soft { background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-bg) 100%); border-bottom: none; }
.page-hero--compact { padding: var(--space-8) 0; }
.page-hero__title { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.page-hero__desc { color: var(--color-text-muted); font-size: var(--text-lg); max-width: 60ch; }

.breadcrumbs { font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: var(--space-3); }
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-primary); }

/* ===== PRODUCTS ARCHIVE ===== */
.products-archive { padding-top: var(--space-12); }
.filter-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-10); }
.chip { padding: 8px 16px; border-radius: var(--radius-full); border: 1px solid var(--color-border); background: var(--color-surface); color: var(--color-text-muted); font-size: var(--text-sm); font-weight: 500; }
.chip:hover { border-color: var(--color-primary); color: var(--color-primary); }
.chip.is-active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.chip--alt.is-active { background: var(--color-accent); border-color: var(--color-accent); }

.empty-state { text-align: center; padding: var(--space-20) 0; color: var(--color-text-muted); }

/* ===== SINGLE PRODUCT ===== */
.product-single { padding: var(--space-12) 0; }
.product-single__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: start; }
.product-single__gallery img { border-radius: var(--radius-2xl); box-shadow: var(--shadow-md); }
.product-single__tags { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-4); }
.product-single__title { font-size: clamp(1.25rem, 3vw, var(--text-2xl)); margin-bottom: var(--space-3); line-height: 1.25; } /* v1.6.6: clamp prevents excessively large title on narrow columns */
.product-single__tagline { font-size: var(--text-lg); color: var(--color-text-muted); margin-bottom: var(--space-5); }
.product-single__desc { color: var(--color-text-muted); margin-bottom: var(--space-6); }
.product-single__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-6); }

.spec-table { width: 100%; border-collapse: collapse; background: var(--color-surface-2); border-radius: var(--radius-lg); overflow: hidden; }
.spec-table th, .spec-table td { padding: var(--space-3) var(--space-4); text-align: left; font-size: var(--text-sm); border-bottom: 1px solid var(--color-divider); }
.spec-table th { font-weight: 600; color: var(--color-text-muted); width: 40%; }
.spec-table td { color: var(--color-text); font-weight: 500; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

.product-content { background: var(--color-surface); padding: var(--space-12) 0; }
.product-inquiry { background: var(--color-primary-light); padding: var(--space-16) 0; }
.product-inquiry .section-title { text-align: center; }
.product-inquiry > .container { text-align: center; }
.product-inquiry .inquiry-form { text-align: left; margin-top: var(--space-8); }
.related-products { background: var(--color-bg); }

/* ===== ABOUT PAGE ===== */
.about-story { background: var(--color-surface); }
.about-story__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-12); align-items: center; }
.about-story__media img { border-radius: var(--radius-2xl); box-shadow: var(--shadow-md); }
.about-story__text h2 { font-size: var(--text-xl); margin-bottom: var(--space-4); }

.timeline-section { background: var(--color-bg); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 880px; margin: 0 auto; }
.timeline__step { padding: var(--space-6) var(--space-4); border-right: 1px dashed var(--color-border); text-align: center; }
.timeline__step:last-child { border-right: none; }
.timeline__year { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-primary); margin-bottom: var(--space-2); }
.timeline__event { color: var(--color-text-muted); font-size: var(--text-sm); }

.certs { background: var(--color-surface); }
.certs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-4); max-width: 880px; margin: 0 auto; }
.cert-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6) var(--space-4); text-align: center; }
.cert-card img { max-height: 60px; width: auto; margin: 0 auto var(--space-3); }
.cert-card__placeholder { font-size: 36px; margin-bottom: var(--space-2); }
.cert-card p { margin: 0; font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }

/* ===== FACTORY PAGE ===== */
.factory-banner { padding: var(--space-8) 0; }
.factory-banner img { border-radius: var(--radius-2xl); box-shadow: var(--shadow-md); width: 100%; max-height: 480px; object-fit: cover; }

.process-section { background: var(--color-surface); }
.process-flow { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-4); counter-reset: step; }
.process-flow--cards { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.process-step { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-6); position: relative; }
.process-step__num { width: 36px; height: 36px; background: var(--color-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: var(--text-sm); margin-bottom: var(--space-4); }
.process-step h3 { font-family: var(--font-body); font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-1); }
.process-step p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; }

.gallery { background: var(--color-bg); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.gallery__item { margin: 0; background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery__item .placeholder { aspect-ratio: 4/3; border: none; border-radius: 0; }
.gallery__item figcaption { padding: var(--space-3) var(--space-4); font-size: var(--text-sm); color: var(--color-text-muted); background: var(--color-surface); }

/* ===== PROCESS / FAQ ===== */
.faq-section { background: var(--color-surface); }
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5); }
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--color-text); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '＋'; color: var(--color-primary); font-size: 18px; flex-shrink: 0; transition: var(--transition); }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding-top: var(--space-3); color: var(--color-text-muted); font-size: var(--text-sm); }

/* ===== CONTACT ===== */
.contact-section { background: var(--color-surface); }
.contact-section__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--space-12); }
.contact-info__item { display: flex; gap: var(--space-3); align-items: flex-start; padding: var(--space-4) 0; border-bottom: 1px solid var(--color-divider); }
.contact-info__item .icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--color-primary-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-info__item a { color: var(--color-text); }
.contact-info__item a:hover { color: var(--color-primary); }
.promise { margin-top: var(--space-6); background: var(--color-primary-light); border: 1px solid var(--color-primary-highlight); border-radius: var(--radius-lg); padding: var(--space-5); color: var(--color-primary); }
.promise p { margin: var(--space-1) 0 0; font-size: var(--text-sm); }

.contact-form-wrap h2 { font-size: var(--text-xl); margin-bottom: var(--space-5); }
.map-section { padding: 0; }
.map-section iframe { display: block; }

/* ===== INQUIRY FORM ===== */
.inquiry-form { display: flex; flex-direction: column; gap: var(--space-4); }
.inquiry-form label { display: flex; flex-direction: column; gap: var(--space-2); font-size: var(--text-sm); color: var(--color-text-muted); font-weight: 500; }
.inquiry-form label span { color: var(--color-text); }
.inquiry-form input, .inquiry-form textarea, .inquiry-form select { width: 100%; padding: 12px 14px; font-size: var(--text-sm); color: var(--color-text); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); font-family: var(--font-body); transition: border-color var(--transition); }
.inquiry-form input:focus, .inquiry-form textarea:focus, .inquiry-form select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.form-notice { padding: var(--space-4); border-radius: var(--radius-md); font-size: var(--text-sm); margin-bottom: var(--space-2); }
.form-notice--success { background: var(--color-primary-light); color: var(--color-primary); border: 1px solid var(--color-primary-highlight); }
.form-notice--error { background: #fdecea; color: #b32d2d; border: 1px solid #f4c8c4; }

/* ===== ENTRY / PAGE / BLOG ===== */
.entry-section { background: var(--color-surface); }
.entry__media { margin-bottom: var(--space-8); border-radius: var(--radius-xl); overflow: hidden; }
.entry__content > * { margin-bottom: 1em; }
.entry__content h2 { font-size: var(--text-xl); margin-top: var(--space-10); margin-bottom: var(--space-3); }
.entry__content h3 { font-size: var(--text-lg); margin-top: var(--space-8); margin-bottom: var(--space-2); }
.entry__content img { border-radius: var(--radius-lg); }
.entry__content blockquote { border-left: 4px solid var(--color-primary); padding: var(--space-3) var(--space-6); margin: var(--space-6) 0; background: var(--color-surface-2); border-radius: var(--radius-md); font-style: italic; color: var(--color-text-muted); }
.entry__footer { margin-top: var(--space-8); padding-top: var(--space-6); border-top: 1px solid var(--color-divider); font-size: var(--text-sm); color: var(--color-text-muted); }

.blog-section { background: var(--color-surface); }
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: var(--space-10); }
.blog-sidebar .widget { margin-bottom: var(--space-8); }
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.post-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; transition: var(--transition); }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-card__media img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.post-card__body { padding: var(--space-5); }
.post-card__meta { font-size: var(--text-xs); color: var(--color-text-faint); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--space-2); }
.post-card__title { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.post-card__title a { color: var(--color-text); }
.post-card__title a:hover { color: var(--color-primary); }
.post-card p { color: var(--color-text-muted); font-size: var(--text-sm); margin-bottom: var(--space-3); }
.post-meta { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-3); }

.pagination { display: flex; justify-content: center; gap: var(--space-2); margin-top: var(--space-10); }
.pagination .page-numbers { padding: 8px 14px; border-radius: var(--radius-md); border: 1px solid var(--color-border); color: var(--color-text-muted); }
.pagination .current, .pagination .page-numbers:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* ===== FOOTER ===== */
.site-footer { background: var(--color-surface-offset); padding: var(--space-16) 0 var(--space-6); margin-top: var(--space-20); border-top: 1px solid var(--color-divider); }
.site-footer__grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: var(--space-12); }
.footer-brand p { color: var(--color-text-muted); font-size: var(--text-sm); max-width: 32ch; margin-top: var(--space-3); }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.footer-social a { color: var(--color-text-muted); font-size: var(--text-sm); }
.footer-social a:hover { color: var(--color-primary); }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.footer-col h4 { font-family: var(--font-body); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .12em; color: var(--color-text-faint); font-weight: 700; margin-bottom: var(--space-4); }
.footer-menu, .footer-contact { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-menu a, .footer-contact a { color: var(--color-text-muted); font-size: var(--text-sm); }
.footer-menu a:hover, .footer-contact a:hover { color: var(--color-primary); }
.footer-contact li { color: var(--color-text-muted); font-size: var(--text-sm); }
.site-footer__bottom { margin-top: var(--space-10); padding-top: var(--space-6); border-top: 1px solid var(--color-divider); display: flex; justify-content: space-between; font-size: var(--text-xs); color: var(--color-text-faint); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.hero__inner, .factory-teaser__inner, .product-single__grid, .about-story__grid, .contact-section__grid { grid-template-columns: 1fr; }
	.stats__grid, .values__grid { grid-template-columns: repeat(2, 1fr); }
	/* 2列时边框改为底边分割 */
	.stats__grid .stat { border-left: none; border-top: 1px solid var(--color-divider); }
	.stats__grid .stat:nth-child(-n+2) { border-top: none; }
	.process-flow { grid-template-columns: repeat(3, 1fr); }
	.process-flow--cards { grid-template-columns: repeat(2, 1fr); }
	.timeline { grid-template-columns: repeat(2, 1fr); }
	.timeline__step:nth-child(2n) { border-right: none; }
	.scent-grid, .product-grid, .gallery__grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
	.product-grid--home { grid-template-columns: repeat(2, 1fr); }
	.blog-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.nav-toggle { display: block; order: 3; }
	.site-header__actions { order: 2; }
	.site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--color-divider); padding: var(--space-6); }
	.site-nav.is-open { display: block; }
	.site-nav .nav-links { flex-direction: column; align-items: stretch; gap: var(--space-3); }
	.site-nav .nav-links a { display: block; padding: var(--space-2) 0; }
	.scent-grid, .product-grid, .product-grid--home, .gallery__grid, .post-grid, .site-footer__grid, .footer-cols { grid-template-columns: 1fr; }
	.values__grid { grid-template-columns: 1fr; }
	.process-flow, .process-flow--cards { grid-template-columns: 1fr; }
	.timeline { grid-template-columns: 1fr; }
	.timeline__step { border-right: none; border-bottom: 1px dashed var(--color-border); }
	.timeline__step:last-child { border-bottom: none; }
	.form-row { grid-template-columns: 1fr; }
	.site-footer__bottom { flex-direction: column; gap: var(--space-2); text-align: center; }
	.hero { padding: var(--space-12) 0; }
	.hero__title { font-size: clamp(2rem, 8vw, 3rem); }
}
@media (max-width: 480px) {
	.stats__grid { grid-template-columns: 1fr 1fr; }
	.stats__grid .stat:nth-child(-n+2) { border-top: none; }
	.btn { padding: .8em 1.3em; }
}

/* ============================================================
   CUSTOMIZER TYPOGRAPHY TOKENS
   (overridden dynamically via inline CSS injected by functions.php)
   ============================================================ */
:root {
	--custom-body-font-size: var(--text-base);
	--custom-body-color:     var(--color-text);
	--custom-heading-color:  var(--color-text);
	--custom-link-color:     var(--color-primary);
	--custom-h1-size:        var(--text-2xl);
	--custom-h2-size:        var(--text-xl);
	--custom-h3-size:        var(--text-lg);
	--custom-nav-font-size:  var(--text-sm);
	--custom-footer-font-size: var(--text-sm);
	--custom-footer-color:   var(--color-text-muted);
}

body        { font-size: var(--custom-body-font-size); color: var(--custom-body-color); }
h1, h2, h3, h4, h5, h6 { color: var(--custom-heading-color); }
h1          { font-size: var(--custom-h1-size); }
h2          { font-size: var(--custom-h2-size); }
h3          { font-size: var(--custom-h3-size); }
a           { color: var(--custom-link-color); }
.nav-links a { font-size: var(--custom-nav-font-size); }
.site-footer, .site-footer p, .footer-menu a,
.footer-contact li, .footer-contact a {
	font-size: var(--custom-footer-font-size);
	color: var(--custom-footer-color);
}

/* ============================================================
   SIMPLE CONTACT FORM (Contact page)
   ============================================================ */
.inquiry-form--simple {
	max-width: 540px;
}
.inquiry-form--simple label {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text-muted);
}
.inquiry-form--simple label span {
	color: var(--color-text);
	font-weight: 600;
}
.inquiry-form--simple input,
.inquiry-form--simple textarea {
	width: 100%;
	padding: 13px 16px;
	font-size: var(--text-sm);
	color: var(--color-text);
	background: var(--color-surface);
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-lg);
	font-family: var(--font-body);
	transition: border-color var(--transition), box-shadow var(--transition);
	resize: vertical;
}
.inquiry-form--simple input::placeholder,
.inquiry-form--simple textarea::placeholder {
	color: var(--color-text-faint);
}
.inquiry-form--simple input:focus,
.inquiry-form--simple textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px var(--color-primary-light);
}
.inquiry-form--simple .btn-block {
	margin-top: var(--space-2);
	padding: 1em 1.8em;
	font-size: var(--text-base);
	letter-spacing: .01em;
}

/* ============================================================
   PRODUCT INQUIRY FORM (single-product.php)
   ============================================================ */
.product-inquiry {
	background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-bg) 100%);
	padding: var(--space-20) 0 var(--space-16);
}
.product-inquiry .container--narrow {
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-2xl);
	padding: var(--space-10) var(--space-12);
	box-shadow: var(--shadow-md);
}
.product-inquiry .section-title {
	text-align: center;
	font-size: var(--text-xl);
	margin-bottom: var(--space-2);
}
.product-inquiry > .container--narrow > p {
	text-align: center;
	color: var(--color-text-muted);
	margin-bottom: var(--space-8);
}
.inquiry-form--product {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
}
.inquiry-form--product .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-4);
}
.inquiry-form--product label {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text-muted);
}
.inquiry-form--product label span {
	color: var(--color-text);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: .01em;
}
.inquiry-form--product input,
.inquiry-form--product textarea,
.inquiry-form--product select {
	width: 100%;
	padding: 12px 16px;
	font-size: var(--text-sm);
	color: var(--color-text);
	background: var(--color-bg);
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-lg);
	font-family: var(--font-body);
	transition: border-color var(--transition), box-shadow var(--transition);
}
.inquiry-form--product input::placeholder,
.inquiry-form--product textarea::placeholder {
	color: var(--color-text-faint);
}
.inquiry-form--product input:focus,
.inquiry-form--product textarea:focus,
.inquiry-form--product select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px var(--color-primary-light);
	background: var(--color-surface);
}
.inquiry-form--product textarea {
	resize: vertical;
	min-height: 120px;
}
.inquiry-form--product .btn-block {
	margin-top: var(--space-2);
	padding: 1em 1.8em;
	font-size: var(--text-base);
	letter-spacing: .01em;
}
.inquiry-form--product .form-notice {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.inquiry-form--product .form-row {
		grid-template-columns: 1fr;
	}
	.product-inquiry .container--narrow {
		padding: var(--space-8) var(--space-6);
		border-radius: var(--radius-xl);
	}
}

/* ============================================================
   CONTACT FORM 7 — BENELISSE SKIN
   Matches reference design: warm-white card, rounded fields,
   filled grey inputs, green capsule submit button.
   ============================================================ */

/* ---- Wrapper card ---- */
.wpcf7 {
	background: #f5f4f0;
	border-radius: 20px;
	padding: 40px 44px;
	border: 1px solid rgba(0,0,0,.06);
}

/* ---- Remove CF7 default margins ---- */
.wpcf7 form,
.wpcf7 p,
.wpcf7 br {
	margin: 0;
	padding: 0;
}
.wpcf7 br { display: none; }

/* ---- Field block ---- */
.cf7-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}
.cf7-field:last-of-type { margin-bottom: 0; }

/* ---- Two-column row (inquiry form) ---- */
.cf7-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
}
.cf7-row .cf7-field {
	margin-bottom: 0;
}

/* ---- Label ---- */
.cf7-field label,
.wpcf7 .cf7-field > label {
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 600;
	color: #1e1d1a;
	letter-spacing: .01em;
	display: block;
}
.cf7-field label abbr {
	text-decoration: none;
	color: var(--color-primary);
	margin-left: 2px;
}

/* ---- Input & Textarea ---- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
	display: block;
	width: 100%;
	padding: 14px 18px;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	color: #1e1d1a;
	background: #eceae3;
	border: 1.5px solid transparent;
	border-radius: 12px;
	outline: none;
	transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	resize: vertical;
}
.wpcf7 textarea {
	min-height: 160px;
	line-height: 1.6;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
	color: #9e9b93;
	font-weight: 400;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
	background: #e8e6de;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px rgba(74,124,89,.12);
}

/* ---- Submit button ---- */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
	display: inline-block;
	padding: 15px 36px;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	background: var(--color-primary, #4a7c59);
	border: none;
	border-radius: 999px;
	cursor: pointer;
	letter-spacing: .02em;
	transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
	-webkit-appearance: none;
	appearance: none;
	margin-top: 8px;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
	background: var(--color-primary-hover, #3a6246);
	box-shadow: 0 4px 14px rgba(74,124,89,.28);
	transform: translateY(-1px);
}
.wpcf7 input[type="submit"]:active {
	transform: translateY(0);
	box-shadow: none;
}

/* ---- CF7 response / notices ---- */
.wpcf7-response-output {
	margin: 16px 0 0 !important;
	padding: 12px 18px !important;
	border-radius: 10px !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	border: none !important;
}
.wpcf7-mail-sent-ok {
	background: #e6f4ec !important;
	color: #2d6a40 !important;
}
.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
	background: #fdecea !important;
	color: #b91c1c !important;
}

/* ---- Validation error highlight ---- */
.wpcf7-not-valid {
	border-color: #e53e3e !important;
	background: #fff5f5 !important;
}
.wpcf7-not-valid-tip {
	color: #e53e3e !important;
	font-size: 0.8125rem !important;
	margin-top: 4px !important;
	display: block !important;
}

/* ---- Spinner ---- */
.wpcf7 .wpcf7-spinner {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
	.wpcf7 {
		padding: 28px 22px;
		border-radius: 16px;
	}
	.cf7-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.cf7-row .cf7-field {
		margin-bottom: 20px;
	}
}

/* ============================================================
   CF7 BUG FIXES — v1.4.1
   1. Restore text cursor on inputs (prevent not-allowed icon)
   2. Ensure label span text is always visible
   ============================================================ */

/* Fix: cursor forced back to text on all CF7 inputs */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 textarea {
	cursor: text !important;
	pointer-events: auto !important;
}
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
	cursor: pointer !important;
	pointer-events: auto !important;
}

/* Fix: make the wpcf7-form-control-wrap display correctly inline */
.wpcf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* Fix: label text (the visible title) — must sit above the wrap */
.cf7-field > label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #1e1d1a;
	cursor: default;
}
/* Hide the extra * CF7 injects via .wpcf7-form-control-wrap if label already shows it */
.cf7-field .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
	margin-top: 4px;
}

/* ============================================================
   HERO TYPOGRAPHY — Customizer-controlled tokens (v1.5)
   ============================================================ */
:root {
	--hero-title-size:   3.5rem;
	--hero-title-weight: 700;
	--hero-title-color:  #1e1d1a;
	--hero-desc-size:    1.125rem;
	--hero-desc-color:   #4a4843;
}

/* Hero headline — exact class from front-page.php */
.hero__title {
	font-size:   var(--hero-title-size)   !important;
	font-weight: var(--hero-title-weight) !important;
	color:       var(--hero-title-color)  !important;
}

/* Hero sub-headline / description — exact class from front-page.php */
.hero__sub {
	font-size: var(--hero-desc-size)  !important;
	color:     var(--hero-desc-color) !important;
}

/* ============================================================
   VALUES / WHY BENELISSE SECTION — Center align header block
   Handled by adding .section-head--center class in front-page.php
   (same class used by Our Range / products-home section)
   ============================================================ */
/* No extra CSS needed — .section-head--center already defined at line 114 */

/* ============================================================
   HEADER NAV CTA — match logo height (48px)
   ============================================================ */
.site-header__actions .btn-sm {
	height: 48px;
	padding: 0 1.4em;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

/* ============================================================
   PRODUCT DETAIL PAGE — Extended Attribute Sections (v1.6)
   ============================================================ */

/* ---- General section wrapper ---- */
.pd-section {
	padding: var(--space-16) 0;
	border-top: 1px solid var(--color-divider);
}
.section-title--center { text-align: center; margin-bottom: var(--space-10); }

/* ---- Product single: overall layout ---- */
.product-single { padding: 48px 0 64px; }
.product-single__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}
/* v1.6.6: grid children need min-width:0 so text can wrap inside */
.product-single__gallery,
.product-single__info { min-width: 0; }

/* ---- Category badge above image ---- */
.product-single__cats {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.product-cat-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--color-primary);
	background: rgba(74,124,89,.1);
	border: 1px solid rgba(74,124,89,.2);
	border-radius: var(--radius-full);
	padding: 4px 12px;
	text-decoration: none;
	transition: background .2s;
}
.product-cat-badge:hover { background: rgba(74,124,89,.18); }

/* ---- Gallery: main image + arrows ---- */
.product-single__gallery { position: relative; }

.product-gallery { display: flex; flex-direction: column; gap: 12px; }

.product-gallery__main {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #f5f4f0;
	border-radius: 16px;
	overflow: hidden;
}
.product-gallery__active-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity .25s;
}

/* Left / right arrow buttons */
.gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,.85);
	border: 1px solid #ddd;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	z-index: 3;
	transition: background .2s;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
}
.gallery-arrow:hover { background: #fff; }
.gallery-arrow--prev { left: 12px; }
.gallery-arrow--next { right: 12px; }

/* Thumbnails strip */
.product-gallery__thumbs {
	display: flex;
	gap: 8px;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 2px;
}
.product-gallery__thumbs::-webkit-scrollbar { display: none; }

.product-gallery__thumb {
	flex: 0 0 72px;
	height: 72px;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid transparent;
	background: #f5f4f0;
	cursor: pointer;
	transition: border-color .2s;
	padding: 0;
}
.product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.product-gallery__thumb.is-active {
	border-color: var(--color-primary);
}
.product-gallery__thumb:hover { border-color: rgba(74,124,89,.5); }

/* ---- Bestseller badge on image ---- */
.product-badge {
	position: absolute; top: var(--space-4); left: var(--space-4);
	background: var(--color-primary); color: #fff;
	font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
	padding: 4px 12px; border-radius: var(--radius-full); z-index: 2;
}

/* ---- Scent name + description ---- */
.product-single__scent { font-weight: 600; color: var(--color-primary); margin-bottom: var(--space-1); }
.product-single__scent span { font-weight: 400; color: var(--color-text-muted); }
.product-single__scent-desc { color: var(--color-text-muted); font-style: italic; margin-bottom: var(--space-4); }

/* ---- USP grid (selling points) ---- */
.usp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-6);
}
.usp-card {
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-xl);
	padding: var(--space-6) var(--space-7);
}
.usp-card h3 {
	font-size: var(--text-base);
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: var(--space-2);
}
.usp-card p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; }

/* ---- Ingredients + Free-From ---- */
.ingredients-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-10);
}
.pd-block h2 { font-size: var(--text-lg); margin-bottom: var(--space-4); }
.key-ingredient {
	background: var(--color-primary-light);
	border-left: 3px solid var(--color-primary);
	padding: var(--space-3) var(--space-4);
	border-radius: var(--radius-md);
	font-size: var(--text-sm);
	color: var(--color-text);
	margin-bottom: var(--space-4);
}
.ingredients-list {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: 1.8;
}
.no-nasties-list {
	list-style: none;
	padding: 0; margin: 0;
	display: flex; flex-direction: column; gap: var(--space-3);
}
.no-nasties-list li {
	font-size: var(--text-sm);
	color: var(--color-text);
	padding: var(--space-2) 0;
	border-bottom: 1px solid var(--color-divider);
}

/* ---- Certifications ---- */
.cert-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	justify-content: center;
}
.cert-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-xl);
	padding: var(--space-5) var(--space-6);
	min-width: 160px;
}
.cert-name {
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: var(--space-1);
}
.cert-desc {
	font-size: 12px;
	color: var(--color-text-muted);
}

/* ---- Dosage guide ---- */
.dosage-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-4);
}
.dosage-card {
	text-align: center;
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-xl);
	padding: var(--space-6) var(--space-4);
}
.dosage-card__icon { font-size: 2rem; margin-bottom: var(--space-3); }
.dosage-card__label { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); margin-bottom: var(--space-2); }
.dosage-card__amount { font-size: var(--text-sm); color: var(--color-primary); font-weight: 700; }

/* ---- Compatibility tags ---- */
.compat-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	justify-content: center;
}
.compat-tag {
	display: inline-block;
	background: #e8f4ec;
	color: var(--color-primary);
	font-size: var(--text-sm);
	font-weight: 500;
	padding: var(--space-2) var(--space-4);
	border-radius: var(--radius-full);
	border: 1px solid rgba(74,124,89,.2);
}

/* ---- B2B spec table ---- */
.spec-table--b2b th { color: var(--color-text-muted); font-weight: 500; }

/* ---- FAQ accordion ---- */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-xl);
	overflow: hidden;
}
.faq-q {
	font-size: var(--text-base);
	font-weight: 600;
	padding: var(--space-5) var(--space-6);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--color-text);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.25rem; color: var(--color-primary); transition: transform .2s; }
details[open] .faq-q::after { content: '−'; }
.faq-a {
	padding: 0 var(--space-6) var(--space-5);
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	line-height: 1.7;
}
.faq-a p { margin: 0; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
	.usp-grid { grid-template-columns: repeat(2, 1fr); }
	.dosage-grid { grid-template-columns: repeat(2, 1fr); }
	.ingredients-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
	.usp-grid { grid-template-columns: 1fr; }
	.dosage-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PRODUCT DETAIL PAGE — v1.6.3 RESTRUCTURE
   ============================================================ */

/* ---- Hero: category label + meta row ---- */
.product-single__meta-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 13px;
}
.product-meta-label {
	color: var(--color-text-muted);
	font-weight: 500;
}
.product-cat-link {
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(74,124,89,.3);
}
.product-cat-link:hover { border-bottom-color: var(--color-primary); }

/* ---- Hero: USP icon strip ---- */
.product-usp-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	margin: 20px 0;
}
.product-usp-strip__item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-dark);
}
.product-usp-strip__icon { flex-shrink: 0; }

/* ---- Hero: divider ---- */
.product-single__divider {
	height: 1px;
	background: var(--color-divider);
	margin: 20px 0;
}

/* ---- Hero: larger CTA buttons ---- */
.btn-lg {
	padding: 14px 28px;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* ============================================================
   SECTION 2: THREE-COLUMN LAYOUT
   ============================================================ */
.pd-three-col { background: var(--color-bg); padding: 64px 0; }

/* Top row: Specs (left) + Inquiry Form (right) */
.pd-two-col__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
	margin-bottom: 32px;
}

/* Full-width Description row below */
.pd-desc-row { }
.pd-col--desc { }

/* Description inner: two-column layout for text + advantages */
.pd-desc-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}
.pd-desc-inner .pd-desc-body { grid-column: 1 / -1; }
.pd-desc-inner .pd-subheading { margin-top: 0; }

/* Advantages in two-col layout flow naturally across both columns */
.pd-advantages--cols {
	column-count: 2;
	column-gap: 32px;
}

.pd-col {
	background: #fff;
	border: 1px solid var(--color-divider);
	border-radius: 12px;
	padding: 28px 24px;
}

.pd-col__heading {
	font-size: 17px;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-primary);
}
.pd-col__subtext {
	font-size: 13px;
	color: var(--color-text-muted);
	margin-bottom: 16px;
	line-height: 1.6;
}

/* Spec table inside column */
.spec-table--full { width: 100%; border-collapse: collapse; font-size: 13px; }
.spec-table--full thead th {
	background: var(--color-surface);
	color: var(--color-text-muted);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 8px 10px;
	text-align: left;
}
.spec-table--full tbody tr { border-bottom: 1px solid var(--color-divider); }
.spec-table--full tbody tr:last-child { border-bottom: none; }
.spec-table--full tbody th {
	padding: 9px 10px;
	font-weight: 600;
	color: var(--color-text-dark);
	white-space: nowrap;
	width: 44%;
}
.spec-table--full tbody td {
	padding: 9px 10px;
	color: var(--color-text-muted);
}

/* Description column */
.pd-desc-body { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 20px; }
.pd-subheading {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-text-dark);
	margin: 18px 0 10px;
}
.pd-advantages {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
}
.pd-advantages li {
	position: relative;
	padding-left: 18px;
	font-size: 13px;
	color: var(--color-text-muted);
	line-height: 1.6;
	margin-bottom: 6px;
}
.pd-advantages li::before {
	content: '●';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-size: 8px;
	top: 5px;
}
.cert-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.cert-chip {
	font-size: 11px;
	font-weight: 700;
	background: rgba(74,124,89,.08);
	color: var(--color-primary);
	border: 1px solid rgba(74,124,89,.2);
	border-radius: 4px;
	padding: 3px 10px;
}

/* Form column — tighten up CF7 styles inside pd-col */
.pd-col--form .wpcf7-form,
.pd-col--form .bel-native-form { display: flex; flex-direction: column; gap: 12px; }
.pd-col--form .cf7-field label,
.pd-col--form .bel-field label { font-size: 12px; }
.pd-col--form .wpcf7-text,
.pd-col--form .wpcf7-textarea,
.pd-col--form input[type="text"],
.pd-col--form input[type="email"],
.pd-col--form textarea {
	width: 100%;
	padding: 9px 12px;
	font-size: 13px;
	border: 1px solid var(--color-divider);
	border-radius: 8px;
	background: var(--color-surface);
}
.pd-col--form .wpcf7-submit,
.pd-col--form button[type="submit"] {
	width: 100%;
	background: var(--color-primary);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s;
}
.pd-col--form .wpcf7-submit:hover,
.pd-col--form button[type="submit"]:hover { background: #3a6246; }

/* ============================================================
   SECTION 3: SAMPLES & CUSTOMIZATION
   ============================================================ */
.pd-customize { background: var(--color-surface); padding: 64px 0; }
.section-sub { color: var(--color-text-muted); font-size: 15px; margin-top: -8px; margin-bottom: 40px; }
.section-sub--center { text-align: center; }

.customize-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.customize-card {
	background: #fff;
	border: 1px solid var(--color-divider);
	border-radius: 12px;
	padding: 28px 20px 24px;
	text-align: center;
	transition: box-shadow .2s;
}
.customize-card:hover { box-shadow: 0 6px 20px rgba(74,124,89,.1); }
.customize-card__icon {
	width: 64px;
	height: 64px;
	background: rgba(74,124,89,.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}
.customize-card h3 {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 6px;
}
.customize-card p {
	font-size: 12px;
	color: var(--color-text-muted);
	line-height: 1.5;
}
.customize-cta { text-align: center; margin-top: 32px; }

/* ============================================================
   SECTION 4: RECENT CUSTOMER INQUIRIES
   ============================================================ */
.pd-inquiries { padding: 64px 0; }
.inquiry-table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--color-divider); margin-top: 24px; }
.inquiry-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.inquiry-table thead { background: var(--color-surface); }
.inquiry-table thead th {
	padding: 12px 16px;
	text-align: left;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--color-primary);
	border-bottom: 2px solid var(--color-divider);
}
.inquiry-table tbody tr { border-bottom: 1px solid var(--color-divider); transition: background .15s; }
.inquiry-table tbody tr:last-child { border-bottom: none; }
.inquiry-table tbody tr:hover { background: rgba(74,124,89,.03); }
.inquiry-table tbody td { padding: 12px 16px; color: var(--color-text-muted); }

.inq-status {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: var(--radius-full);
}
.inq-status--replied  { background: rgba(74,124,89,.12); color: #2d6e45; }
.inq-status--progress { background: rgba(234,179,8,.12);  color: #92660a; }

.inquiry-table-footer { text-align: center; margin-top: 24px; }

/* ============================================================
   RESPONSIVE — three-col collapses on tablet/mobile
   ============================================================ */
@media (max-width: 1100px) {
	.pd-two-col__grid { grid-template-columns: 1fr 1fr; }
	.pd-desc-inner { grid-template-columns: 1fr; }
	.pd-advantages--cols { column-count: 1; }
}
@media (max-width: 768px) {
	.pd-two-col__grid { grid-template-columns: 1fr; }
	.pd-desc-inner { grid-template-columns: 1fr; }
	.pd-advantages--cols { column-count: 1; }
	.customize-grid { grid-template-columns: 1fr 1fr; }
	.product-usp-strip { gap: 12px 16px; }
}
@media (max-width: 480px) {
	.customize-grid { grid-template-columns: 1fr; }
}

/* ---- Hero spec table (compact, in right panel) ---- */
.spec-table--hero {
	width: 100%;
	border-collapse: collapse;
	font-size: 13.5px;
	margin: 16px 0 20px;
	table-layout: fixed; /* v1.6.6: fixed layout prevents th/td overflow */
}
.spec-table--hero tr {
	border-bottom: 1px solid var(--color-divider);
}
.spec-table--hero tr:last-child { border-bottom: none; }
.spec-table--hero th {
	padding: 9px 12px 9px 0;
	font-weight: 600;
	color: var(--color-text-muted);
	white-space: nowrap; /* fine for desktop – overridden for mobile below */
	width: 42%;
	text-align: left;
	vertical-align: top;
	word-break: break-word; /* guard against very long label translations */
}
.spec-table--hero td {
	padding: 9px 0;
	color: var(--color-text-dark);
	font-weight: 500;
	word-break: break-word;   /* v1.6.6: prevent long SKU/value overflow */
	overflow-wrap: break-word;
	min-width: 0;
}

/* ============================================================
   RESPONSIVE — Hero spec table & info panel (v1.6.6)
   ============================================================ */

/* Tablet (1024px): hero grid collapses to single col */
@media (max-width: 1024px) {
	/* Hero info panel takes full width — reduce title size proportionally */
	.product-single__title {
		font-size: clamp(1.3rem, 4vw, 1.75rem);
	}
	/* spec table th can now be wider since full viewport width is available */
	.spec-table--hero th { width: 38%; font-size: 13px; }
	.spec-table--hero td { font-size: 13px; }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
	.product-single__title {
		font-size: clamp(1.15rem, 5vw, 1.5rem);
		line-height: 1.3;
	}
	.product-single__tagline { font-size: 1rem; }
	/* Hero spec table on mobile: allow th labels to wrap naturally */
	.spec-table--hero { font-size: 13px; }
	.spec-table--hero th {
		white-space: normal;   /* allow wrap on mobile */
		width: 40%;
		padding-right: 8px;
	}
	/* USP strip: reduce gap, allow 2 per row */
	.product-usp-strip {
		gap: 10px 14px;
	}
	.product-usp-strip__item { font-size: 12px; }
}

/* Small mobile (480px) */
@media (max-width: 480px) {
	.product-single__title {
		font-size: clamp(1.1rem, 5.5vw, 1.35rem);
	}
	.spec-table--hero { font-size: 12.5px; }
	.spec-table--hero th { width: 44%; } /* slightly wider label col on tiny screens */
	/* CTA buttons stack vertically on very small screens */
	.product-single__cta { flex-direction: column; align-items: stretch; }
	.product-single__cta .btn { justify-content: center; }
}

/* ============================================================
   HERO — Full-Width Immersive Redesign (v1.7)
   Layout: scene photo fills full width as BG,
   left = text overlay, right = product image floats up
   Reference: Tiny Organics / image-2 style
   ============================================================ */

/* ---- Container reset for full-bleed ---- */
.hero--fullbg {
	position: relative;
	padding: 0;
	background-color: #d4e8da;            /* fallback if no BG image */
	background-size: cover;
	/* v1.7.4: 纵向 28% 保留上方搁板；横向居中兼顾女性与洗衣机 */
	background-position: center 28%;
	background-repeat: no-repeat;
	border-bottom: none;
	/* v1.7.4: clamp 弹性高度，max-height 防超宽屏过扁 */
	min-height: clamp(620px, 55vh, 820px);
	max-height: 900px;
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

/* Fallback gradient when no bg image is set */
.hero__bg-fallback {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, #b7d9c4 0%, #e8f5ee 45%, #c5e0d0 100%);
	z-index: 0;
}

/* Semi-transparent overlay — darkness driven by --hero-overlay-alpha CSS var
   set inline from Customizer slider (default 0.40).
   Left-to-right gradient: stronger on left (text side), fades to right (image side). */
.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	--hero-overlay-alpha: 0.40; /* fallback; overridden by inline style from PHP */
	/* v1.9.0: stronger left-side coverage for text legibility */
	background: linear-gradient(
		to right,
		rgba(20, 50, 35, calc(var(--hero-overlay-alpha) * 1.8))   0%,
		rgba(20, 50, 35, calc(var(--hero-overlay-alpha) * 1.2))  35%,
		rgba(20, 50, 35, calc(var(--hero-overlay-alpha) * 0.45)) 58%,
		rgba(20, 50, 35, 0.00)                                   78%
	);
}

/* ---- Inner grid ---- */
.hero--fullbg .hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: flex-end;          /* text top-aligned, product floats from bottom */
	/* v1.7.4: 与外层容器保持一致的弹性高度 */
	min-height: clamp(620px, 55vh, 820px);
	max-height: 900px;
	padding-top: clamp(72px, 6vw, 110px);
	padding-bottom: clamp(48px, 4vw, 80px);
	gap: var(--space-8);
}

/* When no product image is present the grid collapses to a single column,
   giving the text block more breathing room */
.hero--fullbg .hero__inner:has(.hero__text:only-child),
.hero--fullbg .hero__inner--text-only {
	grid-template-columns: 1fr;
	max-width: 680px;
}

/* ---- Left text block ---- */
.hero--fullbg .hero__text {
	padding-bottom: clamp(48px, 6vw, 80px);
	max-width: 560px;
	position: relative;
	z-index: 3;
}
/* v1.9.0: localised dark backdrop behind the text column only.
   Uses a blurred radial wash so the edges fade naturally into the photo. */
.hero--fullbg .hero__text::before {
	content: '';
	position: absolute;
	inset: -5% -12%;
	z-index: -1;
	border-radius: 2rem;
	background: radial-gradient(
		ellipse 90% 80% at 35% 50%,
		rgba(15, 40, 28, 0.52) 0%,
		rgba(15, 40, 28, 0.28) 55%,
		rgba(15, 40, 28, 0.00) 100%
	);
	filter: blur(18px);
	pointer-events: none;
}

/* Eyebrow pill on dark bg */
.hero__eyebrow {
	display: inline-block;
	background: rgba(255,255,255,0.18);
	border: 1px solid rgba(255,255,255,0.35);
	border-radius: 999px;
	padding: 5px 16px;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #fff !important;
	margin-bottom: var(--space-4);
	backdrop-filter: blur(4px);
}

/* Hero title — white on the scene photo */
.hero--fullbg .hero__title {
	color: #ffffff !important;
	font-size: clamp(2rem, 3.5vw, 3.25rem) !important;
	line-height: 1.18;
	text-shadow: 0 2px 16px rgba(0,0,0,0.25);
	margin-bottom: var(--space-5);
}

/* Hero subtitle */
.hero--fullbg .hero__sub {
	color: rgba(255,255,255,0.88) !important;
	font-size: clamp(0.9375rem, 1.2vw, 1.0625rem) !important;
	max-width: 48ch;
	line-height: 1.65;
	text-shadow: 0 1px 6px rgba(0,0,0,0.18);
	/* v1.7.5: subtitle 与 CTA 按钮区保持足够行距 */
	margin-bottom: 32px;
}

/* CTA 按钮组：与上方 subtitle 和下方 Badge 保持行距 */
.hero--fullbg .hero__cta {
	margin-bottom: 0; /* Badge 已有 margin-top，此处不重复叠加 */
}

/* CTA buttons — primary stays green, outline goes white glass */
.hero--fullbg .btn-primary {
	background: var(--color-primary);
	color: #fff;
	box-shadow: 0 4px 20px rgba(45,106,79,0.4);
}
.hero--fullbg .btn-outline {
	background: rgba(255,255,255,0.15);
	border-color: rgba(255,255,255,0.55);
	color: #fff;
	backdrop-filter: blur(6px);
}
.hero--fullbg .btn-outline:hover {
	background: rgba(255,255,255,0.28);
	border-color: #fff;
	color: #fff;
}

/* ── Trust Badges (v1.7.5)
   与 CTA 按钮明显区分：扁平标签风格，无边框，
   半透明底色 + 实心小圆点图标，视觉层级低于按钮 ── */
.hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	/* v1.7.5: 与上方 CTA 按钮保持足够间距，避免视觉粘连 */
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	/* 扁平半透明底色，无边框，区别于按钮的描边胶囊风格 */
	background: rgba(255,255,255,0.12);
	border: none;
	border-radius: 6px;
	padding: 5px 12px 5px 8px;
	font-size: 11.5px;
	font-weight: 500;
	color: rgba(255,255,255,0.90);
	letter-spacing: .04em;
	text-transform: uppercase;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transition: background .2s ease;
	cursor: default;
	white-space: nowrap;
}
.hero__badge:hover {
	background: rgba(255,255,255,0.20);
}
/* 图标换为实心小圆点 + SVG 缩小 */
.hero__badge-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(255,255,255,0.22);
	justify-content: center;
}
.hero__badge-icon svg {
	display: block;
	width: 11px;
	height: 11px;
	color: #fff;
}
.hero__badge-label {
	line-height: 1;
}

/* — 浅色背景变体（非 fullbg Hero）— */
.hero:not(.hero--fullbg) .hero__badges {
	border-top-color: rgba(45,106,79,0.15);
}
.hero:not(.hero--fullbg) .hero__badge {
	background: rgba(45,106,79,0.08);
	color: var(--color-primary);
}
.hero:not(.hero--fullbg) .hero__badge:hover {
	background: rgba(45,106,79,0.15);
}
.hero:not(.hero--fullbg) .hero__badge-icon {
	background: rgba(45,106,79,0.18);
}
.hero:not(.hero--fullbg) .hero__badge-icon svg {
	color: var(--color-primary);
}

/* ---- Right: product floats up from bottom ---- */
.hero__media--float {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 0;
	position: relative;
}

.hero__product-img {
	width: 100%;
	max-width: 480px;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
	display: block;
	filter: drop-shadow(0 24px 48px rgba(0,0,0,0.28));
	transform: translateY(0);
	transition: transform .4s ease;
}
.hero__product-img:hover {
	transform: translateY(-6px);
}

.hero__placeholder {
	border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
	align-self: stretch;
	min-height: 320px;
}

/* ============================================================
   Hero 响应式高度断点 — v1.7.4
   背景图：1920×1080（左女性 | 中洗衣机+产品盒 | 右薰衣草 | 上搁板）
   ============================================================ */

/* 小屏笔记本（≤1280px，典型 1280×768）
   原问题：Hero 占屏高 75%+，压缩正文空间 */
@media (max-width: 1280px) {
	.hero--fullbg {
		min-height: clamp(540px, 50vh, 680px);
		max-height: 720px;
		/* 焦点稍下移，女性头部更完整显示 */
		background-position: center 32%;
	}
	.hero--fullbg .hero__inner {
		min-height: clamp(540px, 50vh, 680px);
		max-height: 720px;
		padding-top: clamp(60px, 5.5vw, 90px);
		padding-bottom: clamp(40px, 3.5vw, 64px);
	}
}

/* 平板 / 大屏手机（≤900px，单列布局）
   原问题：单列后背景图横向裁切增多，女性人物偏左易丢失 */
@media (max-width: 900px) {
	.hero--fullbg {
		/* svh：排除 iOS Safari 工具栏，防止高度抖动 */
		min-height: clamp(500px, 52svh, 660px);
		max-height: none;
		/* 横向 45% 偏左：保护女性人物不被裁切 */
		background-position: 45% 30%;
	}
	.hero--fullbg .hero__inner {
		grid-template-columns: 1fr;
		align-items: center;
		min-height: clamp(500px, 52svh, 660px);
		padding-top: clamp(48px, 8vw, 80px);
		padding-bottom: clamp(36px, 4vw, 60px);
	}
	.hero--fullbg .hero__text {
		padding-bottom: var(--space-8);
		max-width: 100%;
	}
	.hero__media--float {
		justify-content: center;
	}
	.hero__product-img {
		max-width: 360px;
		border-radius: var(--radius-xl) var(--radius-xl) 0 0;
	}
	/* 移动端 overlay 改为从上到下渐变，增强文字可读性 */
	.hero__overlay {
		background: linear-gradient(
			to bottom,
			rgba(20,50,35,0.48) 0%,
			rgba(20,50,35,0.20) 60%,
			rgba(20,50,35,0.00) 100%
		);
	}
}

/* 手机竖屏（≤600px，393px / 390px / 360px）
   原问题：原图 1920px 宽在极窄屏构图严重丢失 */
@media (max-width: 600px) {
	.hero--fullbg {
		/* svh 单位：移动端浏览器 UI 条不影响高度计算 */
		min-height: clamp(480px, 58svh, 600px);
		/* 焦点下移至洗衣机 + 产品盒区域 */
		background-position: center 35%;
	}
	.hero--fullbg .hero__inner {
		min-height: clamp(480px, 58svh, 600px);
		padding-top: clamp(44px, 11vw, 72px);
		padding-bottom: clamp(32px, 6vw, 52px);
	}
	.hero--fullbg .hero__title {
		font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
	}
	.hero__product-img {
		max-width: 280px;
	}
	.hero__badges {
		display: none; /* 极窄屏隐藏，减少视觉拥挤 */
	}
}

/* 小屏手机（≤390px，360px Android / iPhone SE）*/
@media (max-width: 390px) {
	.hero--fullbg {
		min-height: clamp(440px, 56svh, 560px);
		/* 极窄屏：焦点锁定洗衣机 + 产品盒核心区 */
		background-position: 50% 38%;
	}
	.hero--fullbg .hero__inner {
		min-height: clamp(440px, 56svh, 560px);
		padding-top: clamp(40px, 10vw, 64px);
		padding-bottom: clamp(28px, 5vw, 44px);
	}
}

/* 手机横屏（高度≤500px，如 iPhone 横屏 852×393）
   原问题：无横屏断点，520px min-height 超出 393px 视口 */
@media (orientation: landscape) and (max-height: 500px) {
	.hero--fullbg {
		/* dvh：动态适配，确保不超出视口 */
		min-height: clamp(240px, 85dvh, 380px);
		max-height: 85dvh;
		background-position: center 40%;
	}
	.hero--fullbg .hero__inner {
		min-height: clamp(240px, 85dvh, 380px);
		max-height: 85dvh;
		padding-top: clamp(20px, 5vw, 40px);
		padding-bottom: clamp(16px, 3vw, 28px);
	}
}

/* 超宽屏 / 4K（≥1920px）
   原问题：580px 仅占屏高 40%，Hero 极度扁平失去沉浸感 */
@media (min-width: 1920px) {
	.hero--fullbg {
		min-height: clamp(680px, 58vh, 900px);
		/* 纵向 25%：确保木质搁板与垂吊植物完整可见 */
		background-position: center 25%;
	}
	.hero--fullbg .hero__inner {
		min-height: clamp(680px, 58vh, 900px);
		padding-top: clamp(80px, 5.5vw, 120px);
		padding-bottom: clamp(60px, 4vw, 90px);
	}
}

/* ============================================================
   SERVICE CARDS v1.9.0
   Replaces scent-grid in the "Our Range" section
   ============================================================ */
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card__top {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  flex: 1;
}
.service-card__icon-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,.85);
  box-shadow: 0 1px 4px rgba(30,29,26,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card__content {
  flex: 1;
  min-width: 0;
}
.service-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-2);
  line-height: 1.3;
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}
.service-card__footer {
  display: flex;
  justify-content: center;
}
.service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  padding: 11px var(--space-6);
  border-radius: var(--radius-full);
  border: 1.5px solid #c8c4bc;
  background: transparent;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
  white-space: nowrap;
  line-height: 1;
}
.service-card__btn:hover {
  border-color: var(--color-primary, #4a7c59);
  background: var(--color-primary, #4a7c59);
  color: #fff;
}
@media (max-width: 640px) {
  .service-cards { grid-template-columns: 1fr; }
  .service-card { padding: var(--space-5); }
  .service-card__icon-wrap { width: 48px; height: 48px; }
  .service-card__btn { max-width: 100%; }
}

/* ============================================================
 *  BENELISSE V2.0 — PRODUCT MODULE EXTENSIONS
 *  Appended to main.css
 * ============================================================ */

/* ── Variables (extend existing palette) ─────────────────── */
:root {
  --clr-whatsapp: #25d366;
  --clr-whatsapp-dark: #1ebe5d;
  --clr-cert: #4a6fa0;
  --clr-accent-light: #f5f0e8;
  --clr-success: #2e7d32;
  --clr-neutral-100: #f9f8f5;
  --shadow-card: 0 2px 16px rgba(0,0,0,.08);
  --shadow-sticky: 0 -2px 20px rgba(0,0,0,.12);
  --radius-card: 12px;
  --radius-btn: 8px;
  --transition: all .2s ease;
}

/* ── Section helpers ──────────────────────────────────────── */
.section-padded          { padding: 64px 0; }
.section-padded--alt     { background: var(--clr-neutral-100, #f9f8f5); }
.section-title           { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); color: #1e1d1a; margin-bottom: .75rem; }
.section-title--center   { text-align: center; }
.section-subtitle        { font-size: 1rem; color: #6b6960; max-width: 640px; margin: 0 auto 2rem; }
.section-subtitle--center{ text-align: center; }

/* ═══════════════════════════════════════════════════════════
   TRUST BADGE BAR
═══════════════════════════════════════════════════════════ */
.trust-badge-bar {
  background: #4a7c59;
  padding: 10px 0;
  overflow: hidden;
}
.trust-badge-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  align-items: center;
}
.trust-badge-bar__item {
  color: #fff;
  font-size: .8125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.trust-badge-bar__icon {
  font-size: 1rem;
  color: #a8d5b5;
}

/* ═══════════════════════════════════════════════════════════
   ARCHIVE — LAYOUT
═══════════════════════════════════════════════════════════ */
.products-archive-v2 { background: #f9f8f5; }

.archive-hero {
  background: linear-gradient(135deg, #e8f0eb 0%, #f4f2ee 100%);
  padding: 56px 0 40px;
  text-align: center;
}
.archive-hero__eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4a7c59;
  margin-bottom: 8px;
}
.archive-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #1e1d1a;
  margin-bottom: 12px;
}
.archive-hero__sub {
  font-size: 1.0625rem;
  color: #6b6960;
  max-width: 540px;
  margin: 0 auto;
}

.archive-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 56px;
  align-items: start;
}

/* ═══════════════════════════════════════════════════════════
   SIDEBAR FILTERS
═══════════════════════════════════════════════════════════ */
.sidebar-filters {
  background: #fff;
  border: 1px solid #e8e5e0;
  border-radius: var(--radius-card);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.sidebar-filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sidebar-filters__title {
  font-weight: 700;
  font-size: .9375rem;
  color: #1e1d1a;
}
.sidebar-filters__close {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #6b6960;
  padding: 2px 6px;
}
.filter-group {
  border-bottom: 1px solid #f0ede8;
  padding: 12px 0;
}
.filter-group:last-of-type { border-bottom: none; }
.filter-group__toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
  font-weight: 600;
  color: #1e1d1a;
  padding: 0;
  text-align: left;
}
.filter-group__toggle:hover { color: #4a7c59; }
.filter-group__arrow { font-size: .75rem; color: #9c8660; }
.filter-group__body  { padding-top: 10px; }
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 4px 0;
  font-size: .875rem;
  color: #3d3c39;
}
.filter-checkbox input[type="checkbox"] { accent-color: #4a7c59; }
.filter-checkbox__count { color: #9c8660; font-size: .8125rem; margin-left: auto; }
.filter-actions   { padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.filter-reset     { text-align: center; font-size: .8125rem; color: #9c8660; text-decoration: none; }
.filter-reset:hover { color: #4a7c59; }

.sidebar-b2b-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #e8e5e0;
  text-align: center;
}
.sidebar-b2b-cta__label { font-size: .8125rem; color: #6b6960; margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════════════
   ARCHIVE TOOLBAR
═══════════════════════════════════════════════════════════ */
.archive-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.archive-toolbar__count       { font-size: .875rem; color: #6b6960; flex: 1; }
.archive-toolbar__sort-label  { font-size: .875rem; color: #3d3c39; }
.archive-toolbar__sort        { font-size: .875rem; border: 1px solid #e8e5e0; border-radius: 6px; padding: 6px 10px; background: #fff; color: #1e1d1a; }
.archive-toolbar__filter-toggle { display: none; }

/* ═══════════════════════════════════════════════════════════
   ACTIVE FILTER CHIPS
═══════════════════════════════════════════════════════════ */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
.active-filters__label { font-size: .8125rem; color: #6b6960; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e8f0eb;
  color: #4a7c59;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .8125rem;
  font-weight: 500;
}
.filter-chip__remove { color: #4a7c59; text-decoration: none; font-weight: 700; }
.filter-clear-all    { font-size: .8125rem; color: #9c8660; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   PRODUCTS GRID
═══════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARD V2.0
═══════════════════════════════════════════════════════════ */
.product-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid #e8e5e0;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

/* Thumb */
.product-card__thumb         { position: relative; aspect-ratio: 1; overflow: hidden; background: #f4f2ee; }
.product-card__thumb img     { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; display: block; }
.product-card:hover .product-card__thumb img { transform: scale(1.04); }

.product-card__thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e8f0eb, #f4f2ee);
  gap: 8px;
}
.product-card__thumb-icon { font-size: 3rem; }
.product-card__thumb-text { font-size: .75rem; color: #9c8660; }

/* Badges */
.product-card__badges     { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 4px; }
.product-card__badge      { display: inline-block; border-radius: 4px; padding: 3px 8px; font-size: .6875rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.product-card__badge--bestseller { background: #9c8660; color: #fff; }
.product-card__badge--cert        { background: rgba(74,124,89,.85); color: #fff; }

/* Per-load cost chip */
.product-card__per-load {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,.72);
  color: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .875rem;
  font-weight: 700;
}
.product-card__per-load-label { font-size: .75rem; font-weight: 400; opacity: .8; }

/* Body */
.product-card__body     { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.product-card__title    { font-family: 'Playfair Display', serif; font-size: 1.0625rem; line-height: 1.35; margin: 0; }
.product-card__title a  { color: #1e1d1a; text-decoration: none; }
.product-card__title a:hover { color: #4a7c59; }
.product-card__tagline  { font-size: .875rem; color: #6b6960; margin: 0; }

/* Audience chips */
.product-card__audience { display: flex; flex-wrap: wrap; gap: 5px; }
.audience-chip {
  background: #e8f0eb;
  color: #4a7c59;
  border-radius: 20px;
  padding: 3px 9px;
  font-size: .75rem;
  font-weight: 500;
}

/* USP checklist */
.product-card__usps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.product-card__usp  { font-size: .8125rem; color: #3d3c39; display: flex; gap: 6px; align-items: flex-start; }
.product-card__check { color: #4a7c59; font-weight: 700; flex-shrink: 0; }

/* Specs row */
.product-card__specs { display: flex; flex-wrap: wrap; gap: 6px; }
.product-card__spec  { font-size: .75rem; background: #f4f2ee; border-radius: 4px; padding: 3px 8px; color: #6b6960; }
.spec-label          { font-weight: 600; color: #3d3c39; }

/* CTA — single full-width button */
.product-card__cta {
  margin-top: auto;
  padding-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT EMPTY STATE
═══════════════════════════════════════════════════════════ */
.products-empty {
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
}
.products-empty__icon { font-size: 3rem; margin-bottom: 16px; }
.products-empty__title { font-size: 1.25rem; color: #1e1d1a; margin-bottom: 8px; }
.products-empty__desc  { color: #6b6960; margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════════ */
.archive-pagination { text-align: center; padding: 32px 0 0; }
.archive-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 2px;
  border-radius: 6px;
  border: 1px solid #e8e5e0;
  color: #1e1d1a;
  text-decoration: none;
  font-size: .875rem;
}
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover { background: #4a7c59; color: #fff; border-color: #4a7c59; }

/* ═══════════════════════════════════════════════════════════
   SINGLE PRODUCT — HERO / GALLERY
═══════════════════════════════════════════════════════════ */
.product-single-v2 { background: #fff; }

.product-hero { padding: 48px 0; background: #fff; }
.product-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.product-gallery          { position: sticky; top: 90px; }
.product-gallery__main    { position: relative; border-radius: 12px; overflow: hidden; background: #f4f2ee; aspect-ratio: 1; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery__zoom    { display: block; }
.product-gallery__zoom-icon {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(255,255,255,.85); border-radius: 6px;
  padding: 4px 8px; font-size: .875rem; cursor: zoom-in;
}
.product-gallery__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.9); border: none; cursor: pointer;
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: var(--transition);
  z-index: 2;
}
.product-gallery__arrow:hover { background: #4a7c59; color: #fff; }
.product-gallery__arrow--prev { left: 10px; }
.product-gallery__arrow--next { right: 10px; }

/* ── Thumbnail carousel wrap ── */
.product-gallery__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

/* Carousel scroll buttons */
.product-gallery__carousel-btn {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: var(--transition);
  padding: 0;
}
.product-gallery__carousel-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.product-gallery__carousel-btn:disabled {
  opacity: .35;
  cursor: default;
}

/* Scrollable thumbnail track */
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
  flex: 1;
  padding: 2px 0;
}
.product-gallery__thumbs::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* Individual thumbnail button */
.product-gallery__thumb {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-surface-2);
  padding: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
  position: relative;
}
.product-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s ease;
}
.product-gallery__thumb:hover img   { transform: scale(1.06); }
.product-gallery__thumb.is-active   {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary-light);
}
.product-gallery__thumb:hover:not(.is-active) {
  border-color: var(--color-primary-highlight);
}

/* Active overlay tick */
.product-gallery__thumb.is-active::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(74, 124, 89, .08);
  border-radius: 6px;
  pointer-events: none;
}

/* Dot indicators */
.product-gallery__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.product-gallery__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.product-gallery__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

.product-gallery__placeholder {
  aspect-ratio: 1; background: linear-gradient(135deg, #e8f0eb, #f4f2ee);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 12px; gap: 12px;
}
.product-gallery__placeholder-icon { font-size: 4rem; }

/* ─ Breadcrumb ─ */
.product-breadcrumb { font-size: .8125rem; color: #9c8660; margin-bottom: 16px; }
.product-breadcrumb a { color: #6b6960; text-decoration: none; }
.product-breadcrumb a:hover { color: #4a7c59; }

/* ─ Product Info ─ */
.product-info__badge  { display: inline-block; background: #9c8660; color: #fff; border-radius: 4px; padding: 3px 10px; font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.product-info__title  { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 4vw, 2.5rem); color: #1e1d1a; margin-bottom: 10px; line-height: 1.25; }
.product-info__tagline { font-size: 1.125rem; color: #6b6960; margin-bottom: 20px; }

/* ─ Quick Specs ─ */
.product-quick-specs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.quick-spec {
  background: #f4f2ee; border-radius: 8px; padding: 8px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.quick-spec--highlight { background: #e8f0eb; }
.quick-spec__label { font-size: .6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: #9c8660; }
.quick-spec__value { font-size: .9375rem; font-weight: 600; color: #1e1d1a; }

/* ═══════════════════════════════════════════════════════════
   TRUST BADGE ROW (product detail inline)
═══════════════════════════════════════════════════════════ */
.trust-badge-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px;
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  background: #e8f0eb; border-radius: 6px; padding: 6px 12px;
  font-size: .8125rem; color: #4a7c59; font-weight: 500;
  cursor: default;
}
.trust-badge__icon { font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════
   CTA BUTTON GROUP
═══════════════════════════════════════════════════════════ */
.product-cta-group {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px;
}
/* btn--whatsapp full definition is in the BUTTON SYSTEM section below */
.product-cta__pdf {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; color: #4a6fa0; text-decoration: none;
  padding: 10px 0; font-weight: 500;
}
.product-cta__pdf:hover { color: #3a5c8a; text-decoration: underline; }

/* Guarantee strip */
.product-guarantees { display: flex; flex-wrap: wrap; gap: 8px; }
.guarantee-chip {
  font-size: .8125rem; color: #6b6960;
  display: flex; align-items: center; gap: 4px;
}

/* ═══════════════════════════════════════════════════════════
   STICKY CTA BAR
═══════════════════════════════════════════════════════════ */
.sticky-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: #fff; border-top: 1px solid #e8e5e0;
  box-shadow: var(--shadow-sticky);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-cta-bar.is-visible { transform: translateY(0); }
.sticky-cta-bar__inner {
  display: flex; align-items: center; gap: 12px; justify-content: space-between;
}
.sticky-cta-bar__title {
  font-weight: 600; color: #1e1d1a; font-size: .9375rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 300px;
}
.sticky-cta-bar__actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   PRODUCT VIDEO
═══════════════════════════════════════════════════════════ */
.product-video__wrap {
  position: relative; padding-bottom: 56.25%;
  height: 0; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.product-video__wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ═══════════════════════════════════════════════════════════
   SPEC TABLE
═══════════════════════════════════════════════════════════ */
.spec-table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid #e8e5e0; }
.spec-table      { width: 100%; border-collapse: collapse; }
.spec-table__row { border-bottom: 1px solid #f0ede8; }
.spec-table__row:last-child { border-bottom: none; }
.spec-table__row:nth-child(even) { background: #faf9f7; }
.spec-table__label {
  width: 220px; padding: 14px 20px;
  font-size: .875rem; font-weight: 600; color: #3d3c39;
  vertical-align: top; white-space: nowrap;
}
.spec-table__value {
  padding: 14px 20px;
  font-size: .875rem; color: #1e1d1a;
}

/* ═══════════════════════════════════════════════════════════
   USP COMPARE TABLE
═══════════════════════════════════════════════════════════ */
.usp-compare-table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid #e8e5e0; margin-bottom: 40px; }
.usp-compare-table      { width: 100%; border-collapse: collapse; }
.usp-compare-table thead th {
  padding: 14px 18px;
  font-size: .875rem; font-weight: 700;
  background: #f4f2ee; color: #1e1d1a;
  border-bottom: 2px solid #e8e5e0;
  text-align: left;
}
.usp-compare-table__brand--highlight {
  background: #e8f0eb !important;
  color: #4a7c59;
}
.usp-compare-table tbody td {
  padding: 12px 18px;
  font-size: .875rem;
  border-bottom: 1px solid #f0ede8;
  vertical-align: middle;
}
.usp-compare-table tbody tr:last-child td { border-bottom: none; }
.usp-compare-table__feature { font-weight: 600; color: #3d3c39; white-space: nowrap; }
.usp-compare-table td.is-good    { color: var(--clr-success); font-weight: 500; }
.usp-compare-table td.is-neutral { color: #6b6960; }
.usp-compare-logo { max-height: 28px; width: auto; }
.usp-compare-logo-text { font-weight: 700; color: #4a7c59; }

/* USP Cards */
.usp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.usp-card {
  background: #fff; border: 1px solid #e8e5e0; border-radius: 10px;
  padding: 20px; display: flex; gap: 14px; align-items: flex-start;
}
.usp-card__check { color: #4a7c59; font-size: 1.25rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.usp-card__title { font-weight: 700; color: #1e1d1a; font-size: .9375rem; margin-bottom: 4px; }
.usp-card__body  { font-size: .875rem; color: #6b6960; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   FREE-FROM ICON GRID
═══════════════════════════════════════════════════════════ */
.free-from-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.free-from-item {
  display: flex; flex-direction: column; align-items: center;
  background: #fff; border: 1px solid #e8e5e0; border-radius: 10px;
  padding: 18px 10px; text-align: center;
  transition: var(--transition);
}
.free-from-item:hover { border-color: #4a7c59; background: #e8f0eb; }
.free-from-item__icon  { font-size: 1.75rem; margin-bottom: 8px; }
.free-from-item__label { font-size: .75rem; font-weight: 600; color: #3d3c39; line-height: 1.3; }

/* ═══════════════════════════════════════════════════════════
   LOAD / DOSAGE GUIDE GRID
═══════════════════════════════════════════════════════════ */
.load-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.load-guide-card {
  background: #fff; border: 1px solid #e8e5e0; border-radius: 12px;
  padding: 24px 20px; text-align: center;
  box-shadow: var(--shadow-card);
}
.load-guide-card__icon  {
  font-size: 2.25rem; font-weight: 700; color: #4a7c59;
  margin-bottom: 12px; font-family: 'Playfair Display', serif;
}
.load-guide-card__label { font-size: .875rem; font-weight: 700; color: #1e1d1a; margin-bottom: 6px; }
.load-guide-card__value { font-size: .9375rem; color: #4a7c59; font-weight: 600; margin-bottom: 4px; }
.load-guide-card__sub   { font-size: .8125rem; color: #6b6960; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════════════════ */
.faq-accordion    { max-width: 780px; margin: 0 auto; }
.faq-item         { border-bottom: 1px solid #e8e5e0; }
.faq-item:first-child { border-top: 1px solid #e8e5e0; }
.faq-item__question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 4px; text-align: left;
  font-size: .9375rem; font-weight: 600; color: #1e1d1a;
  gap: 12px;
}
.faq-item__question:hover { color: #4a7c59; }
.faq-item__arrow { color: #9c8660; font-size: .875rem; flex-shrink: 0; }
.faq-item__answer { padding: 0 4px 16px; }
.faq-item__answer p { font-size: .9375rem; color: #6b6960; line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   INQUIRY & SAMPLE FORMS
═══════════════════════════════════════════════════════════ */
.product-inquiry-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.inquiry-form-wrap,
.sample-form-wrap {
  background: #fff; border: 1px solid #e8e5e0; border-radius: 12px;
  padding: 32px; box-shadow: var(--shadow-card);
}
.inquiry-form__title,
.sample-form__title {
  font-family: 'Playfair Display', serif; font-size: 1.375rem;
  color: #1e1d1a; margin-bottom: 6px;
}
.inquiry-form__subtitle,
.sample-form__subtitle { font-size: .9rem; color: #6b6960; margin-bottom: 24px; }
.inquiry-form__or {
  font-size: .875rem; color: #9c8660; text-align: center; margin-top: 16px;
}
.sample-form__note { font-size: .8125rem; color: #9c8660; text-align: center; margin-top: 16px; }
.whatsapp-link {
  color: var(--clr-whatsapp); font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
}
.whatsapp-link:hover { text-decoration: underline; }
.whatsapp-link__icon { font-size: 1rem; }

/* Form fields */
.form-row      { margin-bottom: 16px; }
.form-row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row--submit { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.form-field    { display: flex; flex-direction: column; gap: 5px; }
.form-label    { font-size: .8125rem; font-weight: 600; color: #3d3c39; }
.req           { color: #c0392b; }
.form-input,
.form-select,
.form-textarea {
  border: 1px solid #ddd9d3; border-radius: 7px; padding: 10px 14px;
  font-size: .9375rem; color: #1e1d1a; background: #fff; width: 100%;
  font-family: inherit;
  transition: border-color .2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none; border-color: #4a7c59;
  box-shadow: 0 0 0 3px rgba(74,124,89,.15);
}
.form-textarea { resize: vertical; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .875rem; color: #6b6960; cursor: pointer;
}
.form-checkbox input { margin-top: 2px; accent-color: #4a7c59; flex-shrink: 0; }
.form-checkbox a { color: #4a7c59; }

/* Form notice */
.form-notice {
  border-radius: 8px; padding: 14px 18px; margin-bottom: 20px; font-size: .9rem;
}
.form-notice--success { background: #e8f0eb; color: #2e6b42; border: 1px solid #b5d4be; }

/* ═══════════════════════════════════════════════════════════
   BUTTON SYSTEM — V2.0 BEM variants
   Base .btn is inherited from the original theme (line ~101).
   All --modifier classes below map 1-to-1 to theme CSS vars.
═══════════════════════════════════════════════════════════ */

/* ── Sizes ─────────────────────────────────────────────── */
.btn--sm {
  padding: .55em 1.1em;
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
  line-height: 1;
}
.btn--lg {
  padding: .95em 2em;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  line-height: 1;
}

/* ── Primary — outline → sage green fill on hover ─────────────── */
.btn--primary {
  background: transparent;
  color: var(--color-text, #333);
  border: 1.5px solid #c8c4bc;
  padding: 11px 1.6em;
  line-height: 1;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-primary, #4a7c59);
  border-color: var(--color-primary, #4a7c59);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ── Secondary — light green tinted fill ────────────────── */
.btn--secondary {
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  border: 2px solid var(--color-primary-highlight);
}
.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--color-primary-highlight);
  border-color: var(--color-primary);
  color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74,124,89,.18);
}
.btn--secondary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ── Outline — transparent with border ──────────────────── */
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ── Accent — linen/tan fill ────────────────────────────── */
.btn--accent {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
}
.btn--accent:hover,
.btn--accent:focus-visible {
  background: #8a7050;
  border-color: #8a7050;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--accent:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ── WhatsApp ───────────────────────────────────────────── */
.btn--whatsapp {
  background: var(--clr-whatsapp);
  color: #fff;
  border: 2px solid var(--clr-whatsapp);
}
.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: var(--clr-whatsapp-dark);
  border-color: var(--clr-whatsapp-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,.30);
}
.btn--whatsapp:active {
  transform: translateY(0);
}

/* ── Full width ─────────────────────────────────────────── */
.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── Shared focus ring (accessibility) ──────────────────── */
.btn--primary:focus-visible,
.btn--secondary:focus-visible,
.btn--outline:focus-visible,
.btn--accent:focus-visible,
.btn--whatsapp:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

/* ── Arrow icon helper ──────────────────────────────────── */
.btn__arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform .2s ease;
}
.btn:hover .btn__arrow,
.btn--primary:hover .btn__arrow,
.btn--secondary:hover .btn__arrow,
.btn--outline:hover .btn__arrow,
.btn--accent:hover .btn__arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   RELATED PRODUCTS
═══════════════════════════════════════════════════════════ */
.related-products .section-title { margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .archive-layout { grid-template-columns: 220px 1fr; gap: 24px; }
  .product-hero__inner { gap: 36px; }
  .product-inquiry-wrap { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .usp-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section-padded { padding: 40px 0; }

  /* Archive */
  .archive-layout { grid-template-columns: 1fr; }
  .sidebar-filters {
    position: fixed; top: 0; left: 0; bottom: 0; width: 80%; max-width: 320px;
    z-index: 200; overflow-y: auto; transform: translateX(-100%);
    transition: transform .3s ease; border-radius: 0;
  }
  .sidebar-filters.is-open { transform: translateX(0); }
  .sidebar-filters__close  { display: block; }
  .archive-toolbar__filter-toggle { display: inline-flex; }

  /* Products grid */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Product hero */
  .product-hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .product-gallery { position: static; }

  /* CTA group */
  .product-cta-group { flex-direction: column; }
  .product-cta-group .btn { width: 100%; justify-content: center; }

  /* Sticky bar */
  .sticky-cta-bar__title { display: none; }
  .sticky-cta-bar__actions { flex: 1; justify-content: stretch; }
  .sticky-cta-bar__actions .btn { flex: 1; text-align: center; }

  /* Forms */
  .form-row--2col { grid-template-columns: 1fr; }

  /* Tables */
  .usp-compare-table thead th:nth-child(4),
  .usp-compare-table tbody td:nth-child(4) { display: none; }

  /* USP + Free-from */
  .usp-cards { grid-template-columns: 1fr; }
  .free-from-grid { grid-template-columns: repeat(3, 1fr); }
  .load-guide-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .free-from-grid { grid-template-columns: repeat(2, 1fr); }
  .load-guide-grid { grid-template-columns: 1fr; }
  .trust-badge-bar__inner { justify-content: flex-start; gap: 8px 16px; padding: 4px 0; }
}

/* =====================================================
   Hide WooCommerce default category / tag meta output
   (span.posted_in, span.tagged_as rendered by
    woocommerce_template_single_meta)
   ===================================================== */
.posted_in,
.tagged_as,
.product_meta .posted_in,
.product_meta .tagged_as {
  display: none !important;
}

/* =====================================================
   Contact Form 7 — theme integration styles
   ===================================================== */

/* Product inquiry CF7 wrapper */
.product-inquiry-cf7 {
  max-width: 760px;
  margin: 0 auto;
}
.product-inquiry-cf7__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--color-primary, #4a7c59);
  margin-bottom: .5rem;
  text-align: center;
}
.product-inquiry-cf7__subtitle {
  color: var(--color-text-muted, #666);
  text-align: center;
  margin-bottom: 2rem;
}

/* CF7 form controls */
.wpcf7 .wpcf7-form,
.contact-form-wrap .wpcf7-form {
  display: grid;
  gap: 1rem;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #d8d5ce;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  background: #fff;
  color: #333;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--color-primary, #4a7c59);
  box-shadow: 0 0 0 3px rgba(74,124,89,.15);
}
.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
}

/* CF7 submit button — match .btn--primary */
.wpcf7 input[type="submit"] {
  display: inline-block;
  padding: .75rem 2rem;
  background: var(--color-primary, #4a7c59);
  color: #fff;
  border: 2px solid var(--color-primary, #4a7c59);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--color-primary-dark, #3a6246);
  border-color: var(--color-primary-dark, #3a6246);
  transform: translateY(-1px);
}
.wpcf7 input[type="submit"]:active {
  transform: translateY(0);
}

/* CF7 validation messages */
.wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: .82rem;
  margin-top: .25rem;
}
.wpcf7-response-output {
  margin-top: 1rem;
  padding: .75rem 1rem;
  border-radius: 6px;
  font-size: .9rem;
}
.wpcf7-mail-sent-ok {
  background: #eaf5ec;
  border: 1px solid #4a7c59;
  color: #2e6b3e;
}
.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background: #fdf0ee;
  border: 1px solid #c0392b;
  color: #c0392b;
}

/* =====================================================================
   Product Detail Page v2.0.6 — New Layout Styles
   (pd- prefix = product detail)
   ===================================================================== */

/* ── ZONE 1: Hero ── */
.pd-hero {
  padding: 3rem 0 2.5rem;
  background: #fff;
}
.pd-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

/* Gallery */
.pd-gallery {
  position: sticky;
  top: 80px;
}
.pd-gallery__main {
  position: relative;
  background: #f9f8f5;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity .3s;
}
.pd-gallery__zoom {
  display: block;
  width: 100%;
  height: 100%;
}
.pd-gallery__zoom-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,.85);
  border-radius: 6px;
  padding: 6px;
  color: #4a7c59;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.pd-gallery__zoom:hover .pd-gallery__zoom-icon { background: #fff; }
.pd-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.9);
  border: 1px solid #e8e4dc;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4a7c59;
  transition: background .2s, box-shadow .2s;
  z-index: 2;
}
.pd-gallery__arrow:hover { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.pd-gallery__arrow--prev { left: 10px; }
.pd-gallery__arrow--next { right: 10px; }

/* Thumbnails */
.pd-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.pd-gallery__thumbs::-webkit-scrollbar { display: none; }
.pd-gallery__thumb {
  flex: 0 0 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f4f2ee;
  transition: border-color .2s;
  padding: 0;
}
.pd-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-gallery__thumb.is-active,
.pd-gallery__thumb:hover { border-color: #4a7c59; }

/* Gallery placeholder */
.pd-gallery__placeholder {
  aspect-ratio: 1 / 1;
  background: #f4f2ee;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aaa;
  gap: .75rem;
}

/* Product Info */
.pd-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: #888;
  flex-wrap: wrap;
}
.pd-breadcrumb a { color: #888; text-decoration: none; }
.pd-breadcrumb a:hover { color: #4a7c59; }
.pd-breadcrumb span[aria-hidden] { color: #bbb; }

.pd-info__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0;
}
.pd-info__tagline {
  font-size: .95rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* Quick specs bar */
.pd-quick-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid #e8e4dc;
  border-radius: 10px;
  overflow: hidden;
}
.pd-quick-specs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .85rem .5rem;
  text-align: center;
  border-right: 1.5px solid #e8e4dc;
}
.pd-quick-specs__item:last-child { border-right: none; }
.pd-quick-specs__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.pd-quick-specs__value {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* CTA Buttons */
.pd-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.pd-cta-buttons .btn { flex: 1; min-width: 140px; }

/* Trust badges */
.pd-trust-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: #666;
}

/* Spec PDF link */
.pd-spec-pdf { margin-top: -.25rem; }

/* ── ZONE 2: Specs + Inquiry Form ── */
.pd-specs-inquiry { background: #f9f8f5; }
.pd-specs-inquiry__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch; /* equal height for both cards */
}
.pd-spec-table-wrap,
.pd-inquiry-form-wrap {
  display: flex;
  flex-direction: column;
}

.pd-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin: 0 0 1.25rem;
}
.pd-section-title--center { text-align: center; }

/* Spec table */
.pd-spec-table-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.pd-spec-table tr { border-bottom: 1px solid #f0ede7; }
.pd-spec-table tr:last-child { border-bottom: none; }
.pd-spec-table th {
  text-align: left;
  padding: .7rem .75rem;
  font-weight: 500;
  color: #666;
  width: 45%;
  vertical-align: top;
}
.pd-spec-table td {
  padding: .7rem .75rem;
  color: #1a1a1a;
  font-weight: 500;
  vertical-align: top;
}

/* Inquiry form wrap */
.pd-inquiry-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.pd-inquiry-form-wrap__subtitle {
  font-size: .85rem;
  color: #777;
  margin: -.75rem 0 1.25rem;
  line-height: 1.5;
}

/* ── ZONE 3: Description ── */
.pd-description { background: #fff; }

.pd-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e8e4dc;
  margin-bottom: 2rem;
}
.pd-tab-btn {
  padding: .7rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.pd-tab-btn.is-active,
.pd-tab-btn:hover { color: #4a7c59; border-bottom-color: #4a7c59; }

.pd-tab-panel { display: none; }
.pd-tab-panel.is-active { display: block; }

.pd-tab-panel__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
}

/* Video */
.pd-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.75rem;
  background: #111;
}
.pd-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Post content */
.pd-content { font-size: .95rem; line-height: 1.75; color: #444; margin-bottom: 2rem; }
.pd-content p { margin: 0 0 1rem; }

/* Key Features */
.pd-key-features__heading {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem;
}
.pd-key-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.pd-key-features__list li {
  font-size: .9rem;
  line-height: 1.65;
  color: #444;
  padding-left: 1.1rem;
  position: relative;
}
.pd-key-features__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4a7c59;
  font-weight: 700;
}
.pd-key-features__list li strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* ── ZONE 4: Related ── */
.pd-related { background: #f9f8f5; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pd-hero__inner,
  .pd-specs-inquiry__inner { grid-template-columns: 1fr; gap: 2rem; }
  .pd-gallery { position: static; }
  .pd-quick-specs { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .pd-quick-specs { grid-template-columns: repeat(2,1fr); }
  .pd-cta-buttons { flex-direction: column; }
  .pd-cta-buttons .btn { flex: unset; width: 100%; }
  .pd-trust-badges { gap: .5rem; font-size: .75rem; }
  .pd-spec-table-wrap,
  .pd-inquiry-form-wrap { padding: 1.25rem; }
  .pd-gallery__thumb { flex: 0 0 56px; height: 56px; }
}

/* =====================================================
   Product Card v2.1.0 — Scent + Sheets pill tags
   ===================================================== */
.product-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: .6rem 0 1rem;
}
.product-card__pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1.5px solid #d4d0c8;
  background: transparent;
  font-size: .78rem;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
  line-height: 1.4;
}

/* =====================================================
   AUDIT FIX v2.1.2
   Issue 2+3: CF7 撑满询盘卡片高度 + 移除双重背景装饰
   ===================================================== */
.pd-inquiry-form-wrap .wpcf7 {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.pd-inquiry-form-wrap .wpcf7 form.wpcf7-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* 让 Message 文本域自动填充剩余空间 */
.pd-inquiry-form-wrap .wpcf7 textarea {
  flex: 1;
  min-height: 120px;
}

/* Issue 4: ≤1024px 询盘区最小高度保障 */
@media (max-width: 1024px) {
  .pd-inquiry-form-wrap {
    min-height: 0; /* 单列无需强制高度 */
  }
}
