/**
 * Nutramed theme — main stylesheet.
 * Clone 1:1 landing page.
 */

/* ============ Tokens ============ */
:root {
	--bg: #FDFBF7;
	--surface: #FFFFFF;
	--cream: #F4F1EA;
	--text: #1A2520;
	--muted: #7A8A82;
	--ink2: #3A4A42;
	--primary: #204634;
	--primary-dark: #163227;
	--moss: #4A7C59;
	--terra: #C46551;
	--terra-dark: #A85340;
	--accent: #C9A25A;
	--border: #E2DDD2;
	--radius: 16px;
	--radius-sm: 12px;
	--radius-lg: 24px;
	--shadow-sm: 0 2px 10px rgba(32, 70, 52, 0.06);
	--shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
	--container: 1280px;
	--font-head: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============ Reset ============ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: clip;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4 {
	font-family: var(--font-head);
	font-weight: 600;
	line-height: 1.1;
	margin: 0;
	letter-spacing: -0.01em;
}

p {
	margin: 0;
}

button {
	font-family: inherit;
	cursor: pointer;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 24px;
}

/* ============ Buttons ============ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	border: 1.5px solid transparent;
	transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
	white-space: nowrap;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn--solid {
	background: var(--primary);
	color: #fff;
	box-shadow: var(--shadow-sm);
}

.btn--solid:hover {
	background: var(--primary-dark);
}

.btn--ghost {
	background: transparent;
	color: var(--primary);
	border-color: var(--primary);
}

.btn--ghost:hover {
	background: var(--primary);
	color: var(--bg);
	border-color: var(--primary);
}

.btn--sm {
	padding: 10px 20px;
	font-size: 14px;
}

.btn--gold {
	background: var(--accent);
	color: var(--primary-dark);
	box-shadow: var(--shadow-sm);
}

.btn--gold:hover {
	background: #b8914a;
	color: #fff;
}

/* ============ Topbar ============ */
.topbar {
	background: var(--primary);
	color: #fff;
	overflow: hidden;
	font-size: 12.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.topbar__track {
	display: flex;
	align-items: center;
	white-space: nowrap;
	gap: 0;
	padding: 8px 0;
	width: max-content;
	animation: nutramed-marquee 40s linear infinite;
}

.topbar__item {
	padding-inline: 14px;
	font-weight: 500;
	opacity: 0.92;
}

.topbar__sep {
	color: var(--accent);
	font-size: 10px;
}

@keyframes nutramed-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.topbar__track { animation: none; }
}

/* ============ Header ============ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(253, 251, 247, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
	border-bottom-color: var(--border);
	box-shadow: var(--shadow-sm);
	background: rgba(253, 251, 247, 0.95);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 80px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.brand__text {
	font-family: var(--font-head);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary);
	letter-spacing: -0.02em;
}

/* Leaf mark when no custom logo (match demo) */
.brand:not(:has(img))::before {
	content: '';
	display: inline-flex;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: var(--primary) center / 20px 20px no-repeat
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FDFBF7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12'/%3E%3C/svg%3E");
}

.brand img,
.custom-logo {
	max-height: 40px;
	width: auto;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 32px;
}

.site-nav__list a {
	display: inline-block;
	padding: 0;
	border-radius: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--ink2, var(--text));
	transition: color 0.2s var(--ease);
}

.site-nav__list a:hover {
	color: var(--primary);
	background: transparent;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.header-cart,
.header-user {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--primary);
	border: 1px solid var(--border);
	background: #fff;
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.header-cart:hover,
.header-user:hover {
	background: var(--cream);
	border-color: rgba(32, 70, 52, 0.25);
	color: var(--primary);
}

.header-zalo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--primary);
	color: var(--bg);
	font-size: 14px;
	font-weight: 500;
	transition: background 0.2s var(--ease);
	margin-left: 4px;
}

.header-zalo:hover {
	background: var(--primary-dark);
	color: var(--bg);
}

.header-cart__count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 0 0 2px var(--surface);
}

.header-cart__count.is-empty {
	display: none;
}

.toast {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 1000;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	max-width: min(360px, calc(100vw - 48px));
	padding: 14px 18px;
	border-radius: var(--radius-sm);
	background: var(--primary);
	color: #fff;
	box-shadow: 0 12px 32px hsl(150 30% 12% / 0.28);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.toast__icon {
	flex: 0 0 auto;
	color: var(--accent);
}

.toast__text {
	flex: 1 1 auto;
}

/* Ẩn link "Xem giỏ hàng" WooCommerce chèn sau nút AJAX trên grid trang chủ. */
.product-card a.added_to_cart,
.product-card__actions a.added_to_cart {
	display: none !important;
}

@media (max-width: 520px) {
	.toast {
		left: 24px;
		right: 24px;
		justify-content: center;
	}
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: transparent;
	padding: 0;
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: var(--primary);
	border-radius: 2px;
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Sections ============ */
.section {
	padding-block: 96px;
}

.section__head {
	max-width: 680px;
	margin: 0 auto 56px;
	text-align: center;
}

.section__eyebrow,
.hero__eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 16px;
}

.section__title {
	font-size: clamp(30px, 4vw, 46px);
	color: var(--text);
}

.section__desc {
	margin-top: 16px;
	font-size: 17px;
	color: var(--muted);
}

/* ============ Hero ============ */
.hero {
	padding-block: 72px 96px;
	background: var(--cream);
	border-radius: 0 0 2.5rem 2.5rem;
	overflow: hidden;
}

@media (min-width: 768px) {
	.hero {
		border-radius: 0 0 4rem 4rem;
	}
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.hero__title {
	font-size: clamp(40px, 6vw, 72px);
	margin-top: 8px;
	color: var(--text);
}

.hero__title em {
	font-style: italic;
	color: var(--primary);
}

.hero__desc {
	margin-top: 22px;
	font-size: 18px;
	color: var(--muted);
	max-width: 520px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hero__stats {
	display: flex;
	gap: 40px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.hero__stat {
	display: flex;
	flex-direction: column;
}

.hero__stat-num {
	font-family: var(--font-head);
	font-size: 40px;
	font-weight: 700;
	color: var(--primary);
	line-height: 1;
}

.hero__stat-lbl {
	margin-top: 6px;
	font-size: 14px;
	color: var(--muted);
}

.hero__media {
	position: relative;
}

.hero__img {
	width: 100%;
	border-radius: 28px;
	box-shadow: var(--shadow);
	object-fit: cover;
	aspect-ratio: 4 / 5;
	background: var(--cream);
}

.hero__badge {
	position: absolute;
	top: 24px;
	left: 24px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--primary);
	backdrop-filter: blur(6px);
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	box-shadow: var(--shadow-sm);
}

.hero__hotline {
	position: absolute;
	bottom: 24px;
	right: 24px;
	background: var(--surface);
	border-radius: 16px;
	padding: 14px 20px;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
}

.hero__hotline-label {
	font-size: 11px;
	letter-spacing: 0.12em;
	color: var(--muted);
	font-weight: 700;
}

.hero__hotline-num {
	font-family: var(--font-head);
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
}

/* ============ Why (demo: left head, 4 cards, first featured forest) ============ */
.why__head {
	max-width: 42rem;
	margin: 0 0 48px;
	text-align: left;
}

.why__desc {
	margin-top: 16px;
	text-align: left;
}

.why__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.why-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.why-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: rgba(32, 70, 52, 0.1);
	color: var(--primary);
}

.why-card__title {
	margin-top: 20px;
	font-family: var(--font-head);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text);
	line-height: 1.25;
}

.why-card__desc {
	margin-top: 8px;
	font-size: 0.875rem;
	line-height: 1.65;
	color: var(--ink2, var(--muted));
}

.why-card--featured {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--bg);
}

.why-card--featured .why-card__icon {
	background: rgba(253, 251, 247, 0.15);
	color: var(--bg);
}

.why-card--featured .why-card__title {
	color: var(--bg);
}

.why-card--featured .why-card__desc {
	color: rgba(253, 251, 247, 0.8);
}

/* ============ Products ============ */
.products {
	background: rgba(244, 241, 234, 0.6); /* demo bg-nm-bg2/60 */
}

.products .container {
	padding-inline: 32px; /* demo lg:px-8 */
}

@media (max-width: 640px) {
	.products .container {
		padding-inline: 16px; /* demo px-4 */
	}
}

.products__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px; /* demo gap-6 */
}

/* Card = demo `p-5 rounded-2xl border bg-white` */
.product-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius); /* 16px ≈ rounded-2xl */
	padding: 20px; /* p-5 */
	overflow: visible;
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.product-card:hover {
	transform: none;
	border-color: var(--moss);
	box-shadow: var(--shadow-lg);
}

/* Ảnh nằm trong padding, bo góc riêng (rounded-xl) */
.product-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--cream);
	border-radius: 12px;
	overflow: hidden;
}

.product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.product-card:hover .product-card__media img {
	transform: scale(1.05);
}

.product-card__tag {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	background: var(--primary);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
	letter-spacing: 0;
}

/* Nội dung dưới ảnh — không padding thêm (đã có p-5 ở card) */
.product-card__body {
	padding: 0;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-card__title {
	margin-top: 20px; /* mt-5 */
	font-size: 1.5rem; /* text-2xl */
	font-weight: 600;
	color: var(--text);
	line-height: 1.2;
}

.product-card__pack {
	margin-top: 4px;
	font-size: 0.875rem;
	color: var(--muted);
	font-weight: 400;
	letter-spacing: 0;
}

.product-card__excerpt {
	margin-top: 12px;
	font-size: 0.875rem;
	color: var(--ink2, var(--muted));
	flex: 1;
	line-height: 1.5;
}

.product-card__price {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	margin-top: 12px;
}

.product-card__price-now {
	font-family: var(--font-head);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary);
	line-height: 1.1;
}

.product-card__price-old {
	font-size: 0.875rem;
	color: var(--muted);
	text-decoration: line-through;
	margin-bottom: 2px;
}

.product-card__actions {
	display: flex;
	align-items: stretch;
	gap: 8px;
	margin-top: 16px;
}

.product-card__actions .btn {
	flex: 1;
	padding: 10px 16px;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 999px;
}

.product-card__cart {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	border: 1px solid var(--primary);
	cursor: pointer;
	transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.product-card__cart:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
}

.product-card__cart.loading {
	opacity: 0.7;
	pointer-events: none;
}

.product-card__cart.added {
	background: var(--accent);
	border-color: var(--accent);
}

.product-card__cart-icon {
	display: block;
}

/* ============ Eyebrow accent (terra — demo) ============ */
.section__eyebrow--terra {
	color: var(--terra);
}

/* ============ Ingredients (demo: left intro+image, right numbered cards) ============ */
.ingredients {
	background: var(--bg);
}

.ingredients__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.ingredients__intro {
	position: relative;
}

@media (min-width: 992px) {
	.ingredients__intro {
		position: sticky;
		top: 112px;
	}
}

.ingredients__desc {
	max-width: 28rem;
	margin-top: 16px;
	text-align: left;
}

.ingredients .section__title,
.ingredients .section__eyebrow {
	text-align: left;
}

.ingredients__media {
	margin-top: 32px;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
}

.ingredients__media img {
	display: block;
	width: 100%;
	height: 288px;
	object-fit: cover;
}

@media (min-width: 768px) {
	.ingredients__media img {
		height: 384px;
	}
}

.ingredients__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ingredients__item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 24px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	transition: border-color 0.2s var(--ease);
}

.ingredients__item:hover {
	border-color: var(--moss);
}

.ingredients__num {
	flex: none;
	font-family: var(--font-head);
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1;
	color: rgba(74, 124, 89, 0.7); /* moss/70 */
}

.ingredients__text {
	min-width: 0;
}

.ingredients__name {
	margin: 0;
	font-family: var(--font-head);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text);
	line-height: 1.25;
}

.ingredients__note {
	margin: 4px 0 0;
	font-size: 0.875rem;
	color: var(--ink2, var(--muted));
	line-height: 1.5;
}

/* ============ Order steps (demo: dark forest rounded band) ============ */
.order {
	padding-block: 0;
	background: transparent;
}

.order__shell {
	background: var(--primary);
	color: var(--bg);
	border-radius: 2.5rem;
	margin-inline: 8px;
	padding-block: 64px;
}

@media (min-width: 768px) {
	.order__shell {
		border-radius: 4rem;
		margin-inline: 24px;
		padding-block: 96px;
	}
}

.order__head {
	max-width: 42rem;
	margin: 0 0 48px;
	text-align: left;
}

.order__title {
	color: var(--bg);
	margin-top: 12px;
}

.order .section__eyebrow--terra {
	color: var(--terra);
}

.order__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.order-step {
	position: relative;
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	text-align: left;
}

.order-step__num {
	display: block;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	background: transparent;
	border-radius: 0;
	font-family: var(--font-head);
	font-size: 3.75rem; /* text-6xl */
	font-weight: 600;
	line-height: 1;
	color: rgba(253, 251, 247, 0.25);
}

.order-step__title {
	margin-top: 8px;
	font-family: var(--font-head);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--bg);
	line-height: 1.25;
}

.order-step__desc {
	margin-top: 8px;
	font-size: 0.875rem;
	line-height: 1.7;
	color: rgba(253, 251, 247, 0.75);
}

/* ============ Testimonials (demo: light bg, white cards + quote icon) ============ */
.testimonials {
	background: var(--bg);
	color: var(--text);
}

.testimonials__head {
	max-width: 42rem;
	margin: 0 0 48px;
	text-align: left;
}

.testimonials .section__title {
	color: var(--text);
}

.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.tm-card {
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px;
	margin: 0;
}

.tm-card__quote-icon {
	color: rgba(74, 124, 89, 0.4);
	flex: none;
}

.tm-card__quote {
	flex: 1;
	margin: 16px 0 0;
	font-family: var(--font-body);
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
	color: var(--ink2, var(--muted));
}

.tm-card__stars {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: 20px;
	margin-bottom: 0;
	color: var(--terra);
	letter-spacing: 0;
}

.tm-card__stars svg {
	width: 16px;
	height: 16px;
}

.tm-card__meta {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tm-card__name {
	font-weight: 600;
	color: var(--text);
	font-size: 1rem;
}

.tm-card__city {
	font-size: 0.875rem;
	color: var(--muted);
	opacity: 1;
}

/* ============ FAQ (demo: cream band, centered head, white accordion) ============ */
.faq {
	background: rgba(244, 241, 234, 0.6);
}

.faq__inner {
	max-width: 48rem; /* max-w-3xl */
	margin-inline: auto;
}

.faq__head {
	text-align: center;
	margin-bottom: 40px;
}

.faq__head .section__title,
.faq__head .section__eyebrow {
	text-align: center;
}

.faq__list {
	display: grid;
	gap: 12px;
	margin-top: 0;
}

.faq-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	padding-inline: 20px;
}

.faq-item__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	background: transparent;
	border: 0;
	text-align: left;
	font-family: var(--font-head);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text);
	line-height: 1.35;
}

.faq-item__chevron {
	flex-shrink: 0;
	color: var(--muted);
	transition: transform 0.3s var(--ease);
}

.faq-item.is-open .faq-item__chevron {
	transform: rotate(180deg);
}

.faq-item__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s var(--ease);
}

.faq-item__a p {
	padding: 0 0 18px;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--muted);
}

/* ============ Contact (demo: 2-col info cards + form) ============ */
.contact {
	background: var(--bg);
}

.contact__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	max-width: none;
	text-align: left;
}

.contact__content .section__title,
.contact__content .section__eyebrow {
	text-align: left;
}

.contact__desc {
	max-width: 28rem;
	margin-top: 16px;
	text-align: left;
}

.contact__cards {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 32px;
}

.contact-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	transition: border-color 0.2s var(--ease);
	text-align: left;
}

a.contact-card:hover {
	border-color: var(--moss);
}

.contact-card__icon {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
}

.contact-card__icon--forest {
	background: rgba(32, 70, 52, 0.1);
	color: var(--primary);
}

.contact-card__icon--terra {
	background: rgba(196, 101, 81, 0.12);
	color: var(--terra);
}

.contact-card__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.contact-card__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.contact-card__value {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text);
	line-height: 1.35;
}

.contact-card__sub {
	font-size: 0.875rem;
	color: var(--ink2, var(--muted));
	line-height: 1.45;
}

/* Form card */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 36px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-form__field {
	margin: 0;
}

.contact-form__label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--ink2, var(--text));
	margin-bottom: 6px;
}

.contact-form__input,
.contact-form__textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 12px 16px;
	font-family: inherit;
	font-size: 1rem;
	color: var(--text);
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.2s var(--ease);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
	border-color: var(--primary);
}

.contact-form__textarea {
	resize: none;
	min-height: 110px;
	line-height: 1.5;
}

.contact-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 4px;
	padding: 14px 24px;
	border: 0;
	border-radius: 999px;
	background: var(--primary);
	color: var(--bg);
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s var(--ease), opacity 0.2s var(--ease);
}

.contact-form__submit:hover {
	background: var(--primary-dark);
}

.contact-form__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.contact-form__note {
	margin: 0;
	font-size: 0.875rem;
	color: var(--moss);
	text-align: center;
}

.contact-form__note[hidden] {
	display: none !important;
}

@media (max-width: 992px) {
	.contact__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-form {
		padding: 28px;
	}
}

/* ============ Footer ============ */
.site-footer {
	background: var(--primary-dark);
	color: rgba(255, 255, 255, 0.82);
	padding-top: 72px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1.2fr;
	gap: 48px;
	padding-bottom: 48px;
}

.brand--light .brand__text {
	color: #fff;
}

.site-footer__desc {
	margin-top: 18px;
	font-size: 15px;
	max-width: 340px;
	line-height: 1.7;
}

.site-footer__social {
	display: flex;
	gap: 12px;
	margin-top: 22px;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.site-footer__social a:hover {
	background: var(--accent);
	border-color: var(--accent);
}

.site-footer__heading {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 18px;
}

.site-footer__links li,
.site-footer__contact li {
	margin-bottom: 12px;
}

.site-footer__links a:hover {
	color: var(--accent);
}

.site-footer__contact li {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.site-footer__contact-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.6;
}

.site-footer__contact a,
.site-footer__contact span:not(.site-footer__contact-label) {
	color: #fff;
	font-size: 15px;
}

.site-footer__disclaimer {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 24px;
}

.site-footer__disclaimer p {
	font-size: 13.5px;
	font-style: italic;
	opacity: 0.7;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 28px;
	padding-block: 22px;
}

.site-footer__bottom-inner {
	font-size: 13.5px;
	opacity: 0.7;
	text-align: center;
}

/* ============ WooCommerce pages ============ */
.wc-page {
	padding-block: 64px;
}

.wc-page .container {
	max-width: var(--container);
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--primary);
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background: var(--primary);
	color: #fff;
	border-radius: 999px;
	font-weight: 600;
	padding: 12px 24px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
	background: var(--primary-dark);
}

/* ============ Reveal animation ============ */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
	.hero__inner { grid-template-columns: 1fr; gap: 40px; }
	.hero__media { order: -1; max-width: 480px; margin-inline: auto; }
	.why__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.products__grid { grid-template-columns: repeat(2, 1fr); }
	.ingredients__inner { grid-template-columns: 1fr; gap: 40px; }
	.ingredients__intro { position: static; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.order__grid { grid-template-columns: 1fr; gap: 40px; }
	.testimonials__grid { grid-template-columns: 1fr; }
	.order__shell {
		border-radius: 2.5rem;
		margin-inline: 8px;
		padding-block: 64px;
	}
}

@media (max-width: 720px) {
	.section { padding-block: 64px; }
	.nav-toggle { display: flex; }
	.site-nav {
		position: fixed;
		inset: 72px 0 auto 0;
		background: var(--bg);
		border-bottom: 1px solid var(--border);
		padding: 16px 24px 24px;
		transform: translateY(-120%);
		transition: transform 0.35s var(--ease);
		box-shadow: var(--shadow);
		z-index: 99;
	}
	body.nav-open .site-nav { transform: translateY(0); }
	.site-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
	.site-nav__list a { padding: 12px 14px; }
	.hero__stats { gap: 28px; }
	.why__grid { grid-template-columns: 1fr; }
	.products__grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
	/* keep cart + user on mobile; hide only Zalo if needed via order */
	.header-zalo { display: none; }

	.site-header__inner {
		gap: 12px;
		min-height: 68px;
	}

	.site-header__actions {
		gap: 8px;
	}

	.brand__text {
		font-size: 1.25rem;
	}
}

/* ============ Product Detail (.pd) — match demo 1:1 ============ */
/* Single product: full-bleed layout (pd__wrap handles container). */
body.single-product .site-main.wc-page > .container,
.wc-page--product > .container {
	max-width: none;
	padding-inline: 0;
}

.pd {
	padding-block: 0;
	background: var(--bg);
}

.pd__wrap {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding: 32px 32px 0;
}

@media (max-width: 640px) {
	.pd__wrap {
		padding: 24px 16px 0;
	}
}

.pd__breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 32px;
	line-height: 1.4;
}

.pd__breadcrumb a {
	color: var(--muted);
	transition: color 0.2s var(--ease);
}

.pd__breadcrumb a:hover {
	color: var(--primary);
}

.pd__breadcrumb-chevron {
	flex: none;
	width: 16px;
	height: 16px;
	color: var(--muted);
	opacity: 0.85;
}

.pd__breadcrumb-current {
	color: var(--text);
	font-weight: 500;
}

.pd__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
	padding-bottom: 48px;
}

.pd__media {
	position: relative;
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 0;
	box-shadow: var(--shadow);
	aspect-ratio: 1 / 1;
}

@media (min-width: 901px) {
	.pd__media {
		position: sticky;
		top: 112px;
	}
}

.pd__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pd__summary {
	min-width: 0;
}

.pd__tag {
	display: inline-block;
	background: var(--primary);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
	line-height: 1.5;
}

.pd__title {
	margin-top: 12px;
	margin-bottom: 0;
	font-size: 2.25rem; /* text-4xl */
	font-weight: 600;
	line-height: 1;
	color: var(--text);
}

@media (min-width: 768px) {
	.pd__title {
		font-size: 3rem; /* text-5xl — match demo */
	}
}

.pd__pack {
	margin-top: 8px;
	margin-bottom: 0;
	font-size: 1rem;
	color: var(--muted);
	line-height: 1.5;
}

.pd__price {
	display: flex;
	align-items: flex-end;
	gap: 12px;
	margin-top: 20px;
}

.pd__price-now {
	font-family: var(--font-head);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.1;
	color: var(--primary);
	letter-spacing: normal;
}

.pd__price-old {
	font-size: 1.125rem;
	line-height: 1.55;
	color: var(--muted);
	text-decoration: line-through;
	margin-bottom: 4px;
}

.pd__stock {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 500;
}

.pd__stock-icon {
	flex: none;
}

.pd__stock.is-in {
	color: var(--moss);
}

.pd__stock.is-out {
	color: var(--terra-dark);
}

.pd__actions {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 12px;
	margin-top: 24px;
	flex-wrap: wrap;
}

.pd__btn {
	flex: 1 1 0;
	min-width: 140px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 16px;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
	text-align: center;
}

.pd__btn--ghost {
	background: transparent;
	color: var(--primary);
	border: 1px solid var(--primary);
}

.pd__btn--ghost:hover {
	background: var(--primary);
	color: var(--bg);
}

.pd__btn--solid {
	background: var(--primary);
	color: var(--bg);
	border: 1px solid var(--primary);
}

.pd__btn--solid:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
}

.pd__hotline {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	min-width: 52px;
	border-radius: 999px;
	background: transparent;
	border: 1px solid var(--border);
	color: var(--primary);
	transition: background 0.2s var(--ease);
}

.pd__hotline:hover {
	background: var(--cream);
}

.pd__detail {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 32px;
}

.pd__block {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: none;
}

.pd__block-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--primary);
}

.pd__block-icon {
	flex: none;
}

.pd__list {
	margin-top: 12px;
	padding-left: 20px;
	list-style: disc;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.pd__list li {
	position: static;
	padding-left: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--ink2);
}

.pd__list li::before {
	display: none;
}

.pd__ingredients {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0;
}

.pd__ingredients li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 8px 0;
	border-bottom: 1px solid var(--border);
	font-size: 1rem;
}

.pd__ingredients li:last-child {
	border-bottom: none;
}

.pd__ing-name {
	color: var(--text);
}

.pd__ing-amount {
	font-weight: 600;
	color: var(--primary);
	white-space: nowrap;
}

.pd__text {
	margin-top: 12px;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--ink2);
}

.pd__block--warn {
	background: rgba(196, 101, 81, 0.08);
	border-color: rgba(196, 101, 81, 0.3);
}

.pd__block--warn .pd__block-title {
	color: var(--terra-dark);
}

.pd__block--note {
	background: rgba(201, 162, 90, 0.08);
	border-color: rgba(201, 162, 90, 0.3);
}

.pd__block--note .pd__block-title {
	color: #9a7420;
}

/* Reviews */
.pd__reviews {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-bottom: 0;
	padding: 64px 0 80px;
	background: rgba(244, 241, 234, 0.6);
}

.pd__reviews-inner {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 32px;
}

@media (max-width: 640px) {
	.pd__reviews-inner {
		padding-inline: 16px;
	}
}

.pd-reviews__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.pd-reviews__heading {
	font-family: var(--font-head);
	font-size: 1.875rem;
	font-weight: 600;
	color: var(--text);
	margin: 0;
	line-height: 1.2;
}

.pd-reviews__list {
	margin-top: 24px;
}

.pd-reviews__empty {
	color: var(--muted);
	font-size: 1rem;
	margin: 0;
}

.pd-reviews__items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pd-review-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 20px 22px;
}

.pd-review-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	margin-bottom: 10px;
}

.pd-review-card__stars {
	display: inline-flex;
	gap: 2px;
}

.pd-review-card__star {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: center / contain no-repeat
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5b8a0' stroke-width='2'%3E%3Cpath d='M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z'/%3E%3C/svg%3E");
}

.pd-review-card__star.is-on {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C47B4A' stroke='%23C47B4A' stroke-width='2'%3E%3Cpath d='M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z'/%3E%3C/svg%3E");
}

.pd-review-card__author {
	font-weight: 600;
	color: var(--text);
	font-size: 0.95rem;
}

.pd-review-card__date,
.pd-review-card__pending {
	font-size: 0.85rem;
	color: var(--muted);
}

.pd-review-card__body {
	color: var(--muted);
	font-size: 0.98rem;
	line-height: 1.6;
}

.pd-review-card__body p {
	margin: 0;
}

.pd-reviews__form-wrap {
	margin-top: 24px;
}

.pd-reviews__form.comment-form,
form.pd-reviews__form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 24px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
}

.pd-reviews__field {
	margin: 0;
	padding: 0;
}

.pd-reviews__label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--ink2);
	margin-bottom: 6px;
}

.pd-reviews__input,
.pd-reviews__textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 12px 16px;
	font-family: inherit;
	font-size: 1rem;
	color: var(--text);
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	outline: none;
	transition: border-color 0.2s var(--ease);
	box-sizing: border-box;
}

.pd-reviews__input:focus,
.pd-reviews__textarea:focus {
	border-color: var(--primary);
}

.pd-reviews__textarea {
	resize: none;
	min-height: 110px;
	line-height: 1.5;
}

.pd-reviews__field--email {
	display: none !important;
}

.pd-reviews__stars {
	display: flex;
	align-items: center;
	gap: 4px;
}

.pd-reviews__star {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #C47B4A;
	cursor: pointer;
	line-height: 0;
}

.pd-reviews__star::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: center / contain no-repeat
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C47B4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z'/%3E%3C/svg%3E");
	transition: transform 0.15s var(--ease);
}

.pd-reviews__star.is-active::before,
.pd-reviews__star.is-hover::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C47B4A' stroke='%23C47B4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z'/%3E%3C/svg%3E");
}

.pd-reviews__star:hover::before {
	transform: scale(1.08);
}

.pd-reviews__rating-select {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.pd-reviews__submit-wrap {
	margin: 0;
	padding: 0;
}

.pd-reviews__submit,
.pd-reviews__form .form-submit .pd-reviews__submit,
.pd-reviews__form .form-submit input[type="submit"],
.pd-reviews__form button[type="submit"] {
	display: block;
	width: 100%;
	margin: 0;
	padding: 14px 24px;
	border: 0;
	border-radius: 999px;
	background: var(--primary);
	color: var(--bg);
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s var(--ease), opacity 0.2s var(--ease);
}

.pd-reviews__submit:hover,
.pd-reviews__form button[type="submit"]:hover {
	background: var(--primary-dark);
}

.pd-reviews__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.pd-reviews__form .comment-notes,
.pd-reviews__form .comment-form-cookies-consent,
.pd-reviews__form .logged-in-as,
.pd-reviews .woocommerce-Reviews-title,
.pd-reviews__form .comment-form-rating > p.stars,
.pd-reviews__form p.stars {
	display: none !important;
}

.pd-reviews__form .form-submit {
	margin: 0;
	padding: 0;
}

.pd-reviews__pagination {
	margin-top: 20px;
}

/* Related products */
.pd__related {
	padding: 64px 0 80px;
	margin: 0;
}

.pd__related-title {
	font-size: clamp(1.875rem, 3vw, 2.25rem);
	font-weight: 600;
	color: var(--text);
	text-align: left;
	margin: 0 0 32px;
	line-height: 1.15;
}

.pd__related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 0;
}

.pd__related-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
	box-shadow: none;
	text-align: left;
	transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.pd__related-card:hover {
	transform: none;
	border-color: var(--moss);
	box-shadow: var(--shadow-lg);
}

.pd__related-media {
	overflow: hidden;
	border-radius: 12px;
	background: var(--cream);
	aspect-ratio: 1 / 1;
	height: auto;
	margin-bottom: 0;
	display: block;
}

.pd__related-media img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.pd__related-card:hover .pd__related-media img {
	transform: scale(1.05);
}

.pd__related-name {
	margin-top: 16px;
	margin-bottom: 0;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text);
	line-height: 1.3;
}

.pd__related-price {
	display: block;
	margin-top: 4px;
	font-size: 1rem;
	font-weight: 600;
	font-family: var(--font-body);
	color: var(--primary);
}

.pd__related-all {
	text-align: left;
	margin-top: 40px;
}

.pd__related-all-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary);
	font-weight: 500;
	font-size: 1rem;
	transition: gap 0.2s var(--ease);
}

.pd__related-all-link:hover {
	gap: 12px;
}

@media (max-width: 900px) {
	.pd__top {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.pd__media {
		position: static;
		max-width: 480px;
		margin-inline: auto;
	}

	.pd-reviews__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.pd__reviews {
		padding: 48px 0 56px;
	}

	.pd__related-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pd__actions {
		flex-direction: column;
	}

	.pd__btn {
		flex: 1 1 auto;
		width: 100%;
	}

	.pd__hotline {
		min-height: 48px;
		width: 100%;
	}
}

@media (max-width: 620px) {
	.pd__related-grid {
		grid-template-columns: 1fr;
	}

	.pd__related {
		padding: 48px 0 64px;
	}
}

