/* =============================================================================
   AkwasiBuyer Theme — Main Stylesheet
   Design: Editorial Market — warm, bold, conversion-focused
   ============================================================================= */

/* ── DESIGN TOKENS ── */
:root {
	--ink:         #0c0c0e;
	--ink2:        #18181c;
	--ink3:        #252530;
	--smoke:       #f7f6f2;
	--mist:        #e8e6df;
	--dim:         #9896a4;
	--green:       #1db954;
	--green-d:     #179944;
	--green-pale:  rgba(29,185,84,.10);
	--amber:       #f5a623;
	--red:         #e8374a;
	--white:       #ffffff;
	--r-sm:        10px;
	--r-md:        16px;
	--r-lg:        24px;
	--r-xl:        36px;
	--r-pill:      50px;
	--shadow-card: 0 2px 16px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
	--shadow-hover:0 8px 40px rgba(0,0,0,.13), 0 0 0 1px rgba(0,0,0,.06);
	--max-w:       1220px;
	--pad:         clamp(18px, 5vw, 56px);
	--header-h:    66px;
	--font-head:   'Clash Display', 'Bricolage Grotesque', system-ui, sans-serif;
	--font-body:   'Bricolage Grotesque', system-ui, sans-serif;
	--font-mono:   'JetBrains Mono', monospace;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	background: var(--smoke);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── LAYOUT ── */
.wrap {
	max-width: var(--max-w);
	margin-inline: auto;
	padding-inline: var(--pad);
}
.section { padding-block: clamp(56px, 8vw, 100px); }

/* ── TICKER ── */
.ab-ticker {
	background: var(--ink);
	color: var(--green);
	font-family: var(--font-mono);
	font-size: .72rem;
	font-weight: 500;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 9px 0;
	overflow: hidden;
	white-space: nowrap;
}
.ab-ticker__inner {
	display: inline-block;
	animation: ab-ticker 30s linear infinite;
	padding-left: 100%;
}
@keyframes ab-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HEADER ── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(247,246,242,.95);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1.5px solid var(--mist);
	height: var(--header-h);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 16px;
}
.site-branding { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-branding a { display: flex; align-items: center; gap: 10px; }
.logo-mark {
	width: 32px; height: 32px;
	background: var(--ink);
	border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
	font-size: .85rem; color: var(--green); font-weight: 700;
	font-family: var(--font-head);
	flex-shrink: 0;
}
.site-title, .site-branding .site-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.3rem;
	letter-spacing: -.02em;
	color: var(--ink);
	line-height: 1;
}
.site-title em { color: var(--green); font-style: normal; }

/* ── NAVIGATION ── */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul { display: flex; align-items: center; gap: 4px; }
.main-navigation a {
	font-size: .875rem;
	font-weight: 500;
	color: var(--dim);
	padding: 7px 13px;
	border-radius: var(--r-sm);
	transition: color .15s, background .15s;
	display: block;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	color: var(--ink);
	background: rgba(0,0,0,.04);
}

/* ── HAMBURGER ── */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px; height: 40px;
	border-radius: var(--r-sm);
	background: transparent;
	border: 1.5px solid var(--mist);
	transition: background .15s;
	padding: 0;
}
.menu-toggle:hover { background: rgba(0,0,0,.04); }
.menu-toggle span {
	display: block;
	width: 18px; height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform .25s, opacity .25s;
	margin: auto;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
	display: none;
	position: fixed;
	inset: var(--header-h) 0 0 0;
	background: rgba(247,246,242,.98);
	backdrop-filter: blur(14px);
	z-index: 850;
	padding: 24px var(--pad);
	flex-direction: column;
	gap: 6px;
	overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--ink);
	padding: 14px 16px;
	border-radius: var(--r-md);
	border: 1.5px solid transparent;
	transition: border-color .15s, background .15s, color .15s;
}
.mobile-menu a:hover {
	background: rgba(29,185,84,.07);
	border-color: rgba(29,185,84,.2);
	color: var(--green);
}
.mobile-menu .mobile-wa {
	margin-top: 12px;
	background: var(--green);
	color: #000;
	border-color: var(--green);
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}
.mobile-menu .mobile-wa:hover {
	background: var(--green-d);
	color: #000;
}

/* ── BUTTONS ── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .95rem;
	padding: 13px 26px;
	border-radius: var(--r-pill);
	cursor: pointer;
	transition: all .18s;
	border: none;
	white-space: nowrap;
	line-height: 1;
	text-decoration: none;
}
.btn-green { background: var(--green); color: #000; }
.btn-green:hover { background: var(--green-d); color: #000; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(29,185,84,.35); }
.btn-dark { background: var(--ink); color: var(--smoke); }
.btn-dark:hover { background: var(--ink2); color: var(--smoke); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid rgba(0,0,0,.15); }
.btn-outline:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.2); }
.btn-outline-light:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-sm { font-size: .82rem; padding: 9px 17px; }
.btn-lg { font-size: 1.05rem; padding: 16px 34px; }
.btn-full { width: 100%; }

/* ── SECTION HEADERS ── */
.sh { margin-bottom: 44px; }
.sh-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-mono);
	font-size: .7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--green);
	background: var(--green-pale);
	padding: 5px 11px;
	border-radius: var(--r-sm);
	margin-bottom: 14px;
	border: 1px solid rgba(29,185,84,.15);
}
.sh-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(1.7rem, 3.5vw, 2.8rem);
	letter-spacing: -.025em;
	line-height: 1.12;
	color: var(--ink);
	margin-bottom: 10px;
}
.sh-sub { font-size: .95rem; color: var(--dim); max-width: 480px; font-weight: 400; line-height: 1.6; }

/* ── HERO ── */
.hero-section {
	background: var(--ink);
	color: var(--smoke);
	overflow: hidden;
	position: relative;
	padding-block: clamp(70px, 10vw, 120px) clamp(60px, 8vw, 100px);
}
.hero-noise {
	position: absolute; inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
	pointer-events: none; opacity: .6;
}
.hero-glow {
	position: absolute; top: -200px; right: -100px;
	width: 600px; height: 600px;
	background: radial-gradient(circle, rgba(29,185,84,.18) 0%, transparent 70%);
	pointer-events: none;
}
.hero-glow2 {
	position: absolute; bottom: -150px; left: -80px;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(245,166,35,.08) 0%, transparent 70%);
	pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-promo-bar {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(29,185,84,.12);
	border: 1px solid rgba(29,185,84,.25);
	padding: 8px 16px;
	border-radius: var(--r-pill);
	margin-bottom: 28px;
	animation: ab-fadeup .5s ease both;
}
.hero-promo-bar .dot {
	width: 7px; height: 7px;
	background: var(--green);
	border-radius: 50%;
	animation: ab-blink 1.6s infinite;
	flex-shrink: 0;
}
.hero-promo-bar span { font-size: .78rem; font-weight: 600; color: var(--green); letter-spacing: .06em; text-transform: uppercase; }
.hero-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(2.4rem, 6.5vw, 5.2rem);
	line-height: 1.06;
	letter-spacing: -.03em;
	color: var(--white);
	margin-bottom: 22px;
	animation: ab-fadeup .6s .1s ease both;
}
.hero-title em { font-style: normal; color: var(--green); }
.hero-sub {
	font-size: 1.05rem;
	color: rgba(247,246,242,.65);
	font-weight: 300;
	max-width: 520px;
	margin-bottom: 18px;
	line-height: 1.7;
	animation: ab-fadeup .6s .15s ease both;
}
.hero-offer-note {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-size: .72rem;
	color: var(--amber);
	background: rgba(245,166,35,.1);
	border: 1px solid rgba(245,166,35,.2);
	padding: 6px 12px;
	border-radius: var(--r-sm);
	margin-bottom: 36px;
	animation: ab-fadeup .6s .2s ease both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: ab-fadeup .6s .25s ease both; }
.hero-stats {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	margin-top: 52px;
	padding-top: 36px;
	border-top: 1px solid rgba(255,255,255,.08);
	animation: ab-fadeup .6s .35s ease both;
}
.hero-stat-num {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.6rem;
	color: var(--white);
	line-height: 1;
	margin-bottom: 4px;
}
.hero-stat-label { font-size: .8rem; color: rgba(247,246,242,.45); }

/* ── PRODUCTS GRID ── */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 20px;
}

/* ── PRODUCT CARD ── */
.product-card {
	background: var(--white);
	border-radius: var(--r-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-card);
	border: 1.5px solid transparent;
	transition: transform .22s, box-shadow .22s, border-color .22s;
}
.product-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
	border-color: rgba(29,185,84,.2);
}
.product-card__thumb {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: #f0efe8;
	flex-shrink: 0;
}
.product-card__thumb img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0;
	transition: transform .3s;
}
.product-card:hover .product-card__thumb img { transform: scale(1.05); }
.product-card__thumb-placeholder {
	width: 100%; height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	background: linear-gradient(135deg, #f0efe8 0%, #e4e2d8 100%);
	transition: transform .3s;
}
.product-card:hover .product-card__thumb-placeholder { transform: scale(1.08); }

/* Badges */
.product-badge {
	position: absolute;
	top: 12px; left: 12px;
	font-family: var(--font-mono);
	font-size: .62rem;
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: var(--r-sm);
	z-index: 2;
	line-height: 1;
}
.badge-hot     { background: #e8374a; color: #fff; }
.badge-best    { background: var(--ink); color: var(--green); }
.badge-new     { background: var(--green); color: #000; }
.badge-deal    { background: var(--amber); color: #000; }
.badge-promo   { background: #7c3aed; color: #fff; }

.savings-tag {
	position: absolute;
	top: 12px; right: 12px;
	background: var(--ink);
	color: var(--smoke);
	font-family: var(--font-mono);
	font-size: .65rem;
	font-weight: 500;
	padding: 4px 9px;
	border-radius: var(--r-sm);
	z-index: 2;
}

.product-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-card__name {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 1rem;
	color: var(--ink);
	margin-bottom: 6px;
	letter-spacing: -.01em;
	line-height: 1.3;
}
.product-card__name a { color: inherit; transition: color .15s; }
.product-card__name a:hover { color: var(--green); }
.product-card__desc { font-size: .83rem; color: var(--dim); line-height: 1.55; margin-bottom: 16px; flex: 1; }

/* Pricing */
.price-block { margin-bottom: 16px; }
.price-promo-label {
	font-family: var(--font-mono);
	font-size: .65rem;
	font-weight: 500;
	color: var(--green);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 4px;
	display: block;
}
.price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-new {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.45rem;
	color: var(--ink);
	line-height: 1;
}
.price-old { font-size: .9rem; color: var(--dim); text-decoration: line-through; font-weight: 400; }
.price-save {
	font-size: .72rem;
	font-weight: 600;
	color: var(--green);
	background: var(--green-pale);
	padding: 2px 7px;
	border-radius: 4px;
	font-family: var(--font-mono);
}

.product-card__cta { display: grid; grid-template-columns: 1fr auto; gap: 8px; }

/* ── TRUST ── */
.trust-section { background: var(--ink); }
.trust-section .sh-title { color: var(--white); }
.trust-section .sh-sub { color: rgba(247,246,242,.5); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.trust-card {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.07);
	border-radius: var(--r-md);
	padding: 26px 20px;
	transition: border-color .2s, background .2s;
}
.trust-card:hover { background: rgba(29,185,84,.06); border-color: rgba(29,185,84,.25); }
.trust-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.trust-card h4 { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--white); margin-bottom: 5px; letter-spacing: -.01em; }
.trust-card p { font-size: .82rem; color: rgba(247,246,242,.5); margin: 0; line-height: 1.5; }

/* ── DELIVERY ── */
.delivery-box {
	background: var(--white);
	border-radius: var(--r-xl);
	border: 1.5px solid var(--mist);
	padding: clamp(32px, 5vw, 56px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 56px);
	align-items: center;
	box-shadow: var(--shadow-card);
	position: relative;
	overflow: hidden;
}
.delivery-box::after {
	content: '';
	position: absolute; top: -60px; right: -60px;
	width: 240px; height: 240px;
	background: radial-gradient(circle, rgba(29,185,84,.06), transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.delivery-steps { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.dstep { display: flex; align-items: flex-start; gap: 14px; }
.dstep-num {
	width: 34px; height: 34px;
	border-radius: 50%; flex-shrink: 0;
	background: var(--green-pale);
	border: 1.5px solid rgba(29,185,84,.25);
	color: var(--green);
	font-family: var(--font-head);
	font-weight: 700; font-size: .85rem;
	display: flex; align-items: center; justify-content: center;
}
.dstep-t { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 2px; }
.dstep-d { font-size: .82rem; color: var(--dim); margin: 0; }
.delivery-visual { text-align: center; position: relative; z-index: 1; }
.delivery-emoji { font-size: 5.5rem; display: block; margin-bottom: 18px; animation: ab-float 3.5s ease-in-out infinite; }
.coverage-pill {
	display: inline-flex; align-items: center; gap: 7px;
	background: var(--green-pale);
	border: 1.5px solid rgba(29,185,84,.2);
	color: var(--green);
	font-size: .82rem; font-weight: 600;
	padding: 8px 16px; border-radius: var(--r-pill);
}
.coverage-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: ab-blink 1.6s infinite; }

/* ── CTA BANNER ── */
.cta-banner {
	background: linear-gradient(135deg, var(--ink) 0%, #1a1a2e 100%);
	padding: clamp(40px, 6vw, 72px) var(--pad);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cta-banner::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(29,185,84,.09), transparent 70%);
	pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(1.6rem, 4vw, 3rem);
	color: var(--white);
	letter-spacing: -.025em;
	margin-bottom: 12px;
}
.cta-banner p { color: rgba(247,246,242,.55); font-size: .95rem; margin-bottom: 30px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── SINGLE PRODUCT ── */
.single-product-wrap { padding-block: clamp(36px, 6vw, 72px); }
.single-product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 5vw, 56px);
	align-items: start;
}

/* Main image — sharp edges, full fill */
.single-product-image {
	background: #f0efe8;
	border-radius: 0;
	border: 1.5px solid var(--mist);
	overflow: hidden;
	position: sticky;
	top: calc(var(--header-h) + 20px);
	box-shadow: var(--shadow-card);
}
.single-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0;
}
.single-product-image .placeholder-emoji {
	aspect-ratio: 1;
	font-size: 8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 340px;
}

/* Active main image wrapper */
.product-main-image {
	aspect-ratio: 1;
	overflow: hidden;
	position: relative;
	cursor: zoom-in;
}
.product-main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}
.product-main-image:hover img { transform: scale(1.04); }

/* Thumbnail strip */
.product-thumb-strip {
	display: flex;
	gap: 6px;
	padding: 8px;
	background: #f7f6f2;
	border-top: 1.5px solid var(--mist);
	flex-wrap: wrap;
}
.product-thumb-item {
	width: 60px;
	height: 60px;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	flex-shrink: 0;
	transition: border-color .15s;
	background: #e8e6df;
}
.product-thumb-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.product-thumb-item.active { border-color: var(--green); }
.product-thumb-item:hover  { border-color: var(--ink); }

/* Lightbox overlay */
.product-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0,0,0,.92);
	align-items: center;
	justify-content: center;
	cursor: zoom-out;
}
.product-lightbox.open { display: flex; }
.product-lightbox img {
	max-width: 90vw;
	max-height: 90vh;
	object-fit: contain;
	border: none;
	border-radius: 0;
	display: block;
}
.product-lightbox-close {
	position: absolute;
	top: 20px; right: 24px;
	font-size: 2rem;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
	line-height: 1;
	opacity: .7;
	transition: opacity .15s;
}
.product-lightbox-close:hover { opacity: 1; }
.product-lightbox-prev,
.product-lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.2);
	color: #fff;
	font-size: 1.5rem;
	width: 48px; height: 48px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: background .15s;
}
.product-lightbox-prev { left: 20px; }
.product-lightbox-next { right: 20px; }
.product-lightbox-prev:hover,
.product-lightbox-next:hover { background: rgba(255,255,255,.25); }

.single-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.single-badges .product-badge { position: static; }
.single-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(1.5rem, 3.5vw, 2.4rem);
	letter-spacing: -.025em;
	line-height: 1.12;
	color: var(--ink);
	margin-bottom: 20px;
}
.single-price-card {
	background: var(--white);
	border: 1.5px solid var(--mist);
	border-radius: var(--r-lg);
	padding: 22px;
	margin-bottom: 22px;
	box-shadow: var(--shadow-card);
}
.single-promo-tag {
	font-family: var(--font-mono);
	font-size: .7rem;
	color: var(--green);
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 500;
	margin-bottom: 10px;
	display: flex; align-items: center; gap: 6px;
}
.single-promo-tag::before {
	content: '';
	display: block;
	width: 6px; height: 6px;
	background: var(--green);
	border-radius: 50%;
	animation: ab-blink 1.6s infinite;
}
.single-price-new {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 2.4rem;
	color: var(--ink);
	line-height: 1;
	margin-bottom: 8px;
}
.single-price-row { display: flex; align-items: center; gap: 12px; }
.single-price-old { font-size: 1.1rem; color: var(--dim); text-decoration: line-through; }
.single-price-save {
	background: rgba(29,185,84,.1);
	color: var(--green);
	font-size: .8rem; font-weight: 700;
	padding: 4px 10px;
	border-radius: var(--r-sm);
	font-family: var(--font-mono);
}
.single-price-note {
	margin-top: 12px;
	font-size: .78rem;
	color: var(--dim);
	background: rgba(0,0,0,.03);
	border-radius: var(--r-sm);
	padding: 8px 12px;
	border-left: 3px solid var(--green);
}

/* Benefits */
.benefits-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.benefit-item { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--ink); }
.benefit-item::before {
	content: '✓';
	width: 20px; height: 20px;
	background: var(--green-pale);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: var(--green); font-size: .7rem; font-weight: 700;
	flex-shrink: 0;
}

/* Trust mini-row */
.trust-mini { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.trust-mini span { font-size: .78rem; color: var(--dim); display: flex; align-items: center; gap: 5px; }

/* ── ORDER FORM ── */
.order-form-box {
	background: var(--white);
	border: 1.5px solid var(--mist);
	border-radius: var(--r-lg);
	padding: 22px;
	margin-bottom: 18px;
	box-shadow: var(--shadow-card);
}
.order-form-box h3 {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 1rem;
	color: var(--ink);
	margin-bottom: 16px;
}
.form-grid { display: flex; flex-direction: column; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: .78rem; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.form-field input,
.form-field textarea,
.form-field select {
	background: #f7f6f2;
	border: 1.5px solid var(--mist);
	border-radius: var(--r-sm);
	padding: 11px 14px;
	color: var(--ink);
	font-size: .9rem;
	transition: border-color .15s, background .15s;
	width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
	outline: none;
	border-color: rgba(29,185,84,.5);
	background: rgba(29,185,84,.03);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--dim); }
.form-note { font-size: .73rem; color: var(--dim); margin-top: 6px; line-height: 1.5; }

/* ── ARCHIVE / BLOG ── */
.archive-wrap { padding-block: clamp(40px, 6vw, 72px); }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.post-card {
	background: var(--white);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	border: 1.5px solid transparent;
	transition: transform .22s, box-shadow .22s, border-color .22s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(29,185,84,.2); }
.post-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--mist); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__body { padding: 20px; }
.post-card__date { font-family: var(--font-mono); font-size: .68rem; color: var(--dim); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.post-card__title { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; line-height: 1.3; letter-spacing: -.01em; }
.post-card__title a { color: inherit; transition: color .15s; }
.post-card__title a:hover { color: var(--green); }
.post-card__excerpt { font-size: .83rem; color: var(--dim); line-height: 1.55; margin-bottom: 14px; }
.post-card__link { font-size: .82rem; font-weight: 600; color: var(--green); transition: color .15s; }
.post-card__link:hover { color: var(--green-d); }

/* ── PAGE / SINGLE POST ── */
.page-wrap, .single-wrap { padding-block: clamp(40px, 6vw, 72px); max-width: 760px; }
.entry-header { margin-bottom: 32px; }
.entry-title { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -.025em; line-height: 1.1; color: var(--ink); margin-bottom: 12px; }
.entry-meta { font-family: var(--font-mono); font-size: .72rem; color: var(--dim); letter-spacing: .06em; text-transform: uppercase; }
.entry-content { color: var(--ink); }
.entry-content h2, .entry-content h3, .entry-content h4 { font-family: var(--font-head); color: var(--ink); margin-block: 1.5em .6em; letter-spacing: -.02em; }
.entry-content p { color: var(--dim); margin-bottom: 1.2em; line-height: 1.75; }
.entry-content ul, .entry-content ol { margin: 0 0 1.2em 1.5em; color: var(--dim); }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.entry-content img { border-radius: var(--r-md); margin-block: 1.5em; }
.entry-content blockquote {
	border-left: 3px solid var(--green);
	padding-left: 20px;
	margin-block: 1.5em;
	color: var(--dim);
	font-style: italic;
}

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: 8px; padding-block: 48px; flex-wrap: wrap; }
.page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px;
	background: var(--white);
	border: 1.5px solid var(--mist);
	border-radius: var(--r-sm);
	font-size: .875rem;
	color: var(--dim);
	transition: all .15s;
	font-family: var(--font-head);
	font-weight: 600;
}
.page-numbers:hover, .page-numbers.current {
	border-color: var(--green);
	color: var(--green);
	background: var(--green-pale);
}

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: var(--smoke); }
.footer-main {
	padding-block: clamp(48px, 7vw, 80px);
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr;
	gap: 40px;
}
.footer-brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--white); margin-bottom: 12px; letter-spacing: -.02em; }
.footer-brand-name em { color: var(--green); font-style: normal; }
.footer-desc { font-size: .85rem; color: rgba(247,246,242,.45); line-height: 1.65; margin-bottom: 22px; max-width: 300px; }
.footer-wa-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: .875rem; font-weight: 600; transition: opacity .15s; }
.footer-wa-link:hover { opacity: .75; }
.footer-col-h { font-family: var(--font-mono); font-size: .7rem; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; color: rgba(247,246,242,.35); margin-bottom: 16px; }
.footer-menu { display: flex; flex-direction: column; gap: 10px; }
.footer-menu a { font-size: .875rem; color: rgba(247,246,242,.5); transition: color .15s; }
.footer-menu a:hover { color: var(--white); }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.06);
	padding-block: 20px;
	display: flex; align-items: center; justify-content: space-between;
	flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .78rem; color: rgba(247,246,242,.3); margin: 0; }
.footer-disclaimer { font-size: .72rem; color: rgba(247,246,242,.25); text-align: right; max-width: 500px; }

/* ── SHOP FILTER BAR ── */
.shop-filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.shop-count { margin-left: auto; font-size: .82rem; color: var(--dim); font-family: var(--font-mono); }

/* ── WP CORE ── */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption-text { font-size: .82rem; color: var(--dim); text-align: center; margin-top: 6px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── ANIMATIONS ── */
@keyframes ab-fadeup { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ab-blink  { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes ab-float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes ab-popin  { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--smoke); }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,.2); border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
	.footer-main { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
	.main-navigation { display: none; }
	.menu-toggle { display: flex; }
	.header-wa-cta { display: none; }
	.single-product-grid { grid-template-columns: 1fr; }
	.single-product-image { position: static; aspect-ratio: 3/2; }
	.single-product-image .placeholder-emoji { font-size: 5rem; }
	.delivery-box { grid-template-columns: 1fr; }
	.delivery-visual { order: -1; }
}
@media (max-width: 600px) {
	.footer-main { grid-template-columns: 1fr; }
	.footer-brand { grid-column: auto; }
	.hero-actions { flex-direction: column; }
	.cta-btns { flex-direction: column; align-items: center; }
	.products-grid { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; text-align: center; }
	.footer-disclaimer { text-align: center; }
}
@media (max-width: 420px) {
	.trust-grid { grid-template-columns: 1fr; }
	.product-card__cta { grid-template-columns: 1fr; }
}
