/* ==========================================================================
   HOME DECORO — Design System
   Warm editorial luxury. Mocha / beige / terracotta. Poppins + Inter.
   ========================================================================== */

:root {
	/* Brand palette */
	--c-mocha:      #8C6A4A;
	--c-mocha-dark: #6F5238;
	--c-beige:      #D8C3A5;
	--c-beige-soft: #E7DAC6;
	--c-terra:      #B85C38;
	--c-terra-dark: #9E4A2B;
	--c-bg:         #FAF8F5;
	--c-text:       #2D2D2D;
	--c-muted:      #6E6A64;
	--c-line:       #E7E1D8;
	--c-gray:       #F3F3F3;
	--c-success:    #3C8D40;
	--c-white:      #FFFFFF;

	/* Typography */
	--font-display: 'Poppins', -apple-system, sans-serif;
	--font-body:    'Inter', -apple-system, sans-serif;

	/* Spacing & shape */
	--radius:    4px;
	--radius-lg: 14px;
	--shadow-sm: 0 2px 10px rgba(45,45,45,.06);
	--shadow:    0 14px 40px -12px rgba(80,60,40,.22);
	--shadow-lg: 0 30px 70px -20px rgba(80,60,40,.30);
	--container: 1280px;
	--ease:      cubic-bezier(.16,.84,.44,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: var(--font-body);
	color: var(--c-text);
	background: var(--c-bg);
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; color: var(--c-text); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
p { color: var(--c-text); }
.text-muted { color: var(--c-muted); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(18px, 4vw, 48px); }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(40px, 5vw, 70px); }

/* Eyebrow + section heads */
.eyebrow {
	font-family: var(--font-display);
	font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
	color: var(--c-terra); display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--c-terra); display: inline-block; }
.section-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { margin: 14px 0 12px; }
.section-head p { color: var(--c-muted); font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
	font-family: var(--font-display); font-weight: 600; font-size: .92rem;
	letter-spacing: .02em; display: inline-flex; align-items: center; gap: .6em;
	padding: 15px 30px; border-radius: var(--radius); cursor: pointer;
	transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
	border: 1.5px solid transparent; white-space: nowrap;
}
.btn .hd-icon { width: 18px; height: 18px; }
.btn-primary { background: var(--c-mocha); color: #fff; }
.btn-primary:hover { background: var(--c-mocha-dark); transform: translateY(-2px); box-shadow: var(--shadow); color:#fff; }
.btn-terra { background: var(--c-terra); color: #fff; }
.btn-terra:hover { background: var(--c-terra-dark); transform: translateY(-2px); box-shadow: var(--shadow); color:#fff; }
.btn-outline { background: transparent; color: var(--c-text); border-color: var(--c-text); }
.btn-outline:hover { background: var(--c-text); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--c-text); }
.btn-light:hover { background: var(--c-beige-soft); transform: translateY(-2px); }
.btn-ghost { padding-inline: 0; color: var(--c-mocha); }
.btn-ghost:hover { gap: 1em; color: var(--c-terra); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
	background: var(--c-mocha-dark); color: #f3e9dd; font-size: .82rem; letter-spacing: .02em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; }
.topbar a { color: #f3e9dd; }
.topbar a:hover { color: #fff; }
.topbar__promo { display: inline-flex; align-items: center; gap: .5em; font-weight: 500; }
.topbar__promo .hd-icon { width: 16px; height: 16px; color: var(--c-beige); }
.topbar__meta { display: flex; gap: 24px; }
.topbar__meta span { display: inline-flex; align-items: center; gap: .45em; }
.topbar__meta .hd-icon { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: var(--c-bg); }
.site-header.scrolled .header-main { box-shadow: var(--shadow-sm); background: rgba(250,248,245,.92); backdrop-filter: blur(10px); }
.header-main { transition: box-shadow .3s, background .3s; border-bottom: 1px solid var(--c-line); }
.header-main .container { display: flex; align-items: center; gap: 28px; min-height: 82px; }
.site-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; color: var(--c-text); flex-shrink: 0; }
.site-brand span { color: var(--c-terra); }
.site-brand img { max-height: 50px; width: auto; }

.primary-nav { margin-inline: auto; }
.primary-nav > ul { display: flex; gap: 4px; }
.primary-nav > ul > li > a, .nav-cats > button {
	font-family: var(--font-display); font-weight: 500; font-size: .95rem;
	padding: 10px 16px; display: inline-flex; align-items: center; gap: .35em; color: var(--c-text); border-radius: var(--radius);
}
.primary-nav > ul > li > a:hover, .nav-cats > button:hover { color: var(--c-terra); }
.primary-nav .current-menu-item > a, .primary-nav .current_page_item > a { color: var(--c-terra); }
.nav-cats { position: static; }
.nav-cats > button .hd-icon { width: 15px; height: 15px; transition: transform .3s; }
.nav-cats:hover > button .hd-icon { transform: rotate(180deg); }

/* Mega menu */
.mega {
	position: absolute; left: 0; right: 0; top: 100%; background: #fff;
	box-shadow: var(--shadow); border-top: 1px solid var(--c-line);
	opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: all .35s var(--ease); z-index: 210;
}
.nav-cats:hover .mega, .mega:hover { opacity: 1; visibility: visible; transform: translateY(0); }
.mega .container { display: grid; grid-template-columns: 1fr 1fr 1fr 1.1fr; gap: 30px; padding-block: 38px; }
.mega__col h4 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-mocha); margin-bottom: 14px; }
.mega__col li a { display: block; padding: 7px 0; color: var(--c-muted); font-size: .95rem; border-bottom: 1px solid transparent; }
.mega__col li a:hover { color: var(--c-terra); padding-left: 6px; }
.mega__promo { background: var(--c-beige-soft); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 220px; position: relative; overflow: hidden; }
.mega__promo h4 { color: var(--c-text); font-family: var(--font-display); font-size: 1.3rem; text-transform: none; letter-spacing: -.01em; margin-bottom: 8px; }
.mega__promo p { font-size: .9rem; color: var(--c-muted); margin-bottom: 14px; }

/* Header tools */
.header-tools { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.header-tools .tool { position: relative; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--c-text); transition: background .25s, color .25s; }
.header-tools .tool:hover { background: var(--c-beige-soft); color: var(--c-terra); }
.header-tools .tool .hd-icon { width: 21px; height: 21px; }
.tool__count { position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 4px; background: var(--c-terra); color: #fff; font-size: .68rem; font-weight: 700; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); }
.header-tools .nav-toggle { display: none; }

/* Search drawer */
.search-drawer { position: fixed; inset: 0; background: rgba(45,40,35,.5); opacity: 0; visibility: hidden; transition: .3s; z-index: 300; }
.search-drawer.open { opacity: 1; visibility: visible; }
.search-drawer__inner { background: var(--c-bg); padding: clamp(30px,6vw,70px) 0; }
.search-drawer form { display: flex; gap: 14px; max-width: 760px; margin-inline: auto; align-items: center; }
.search-drawer input[type=search] { flex: 1; border: none; border-bottom: 2px solid var(--c-mocha); background: transparent; font-family: var(--font-display); font-size: clamp(1.4rem,3vw,2.4rem); padding: 10px 4px; color: var(--c-text); }
.search-drawer input:focus { outline: none; border-color: var(--c-terra); }

/* ---------- Mobile nav ---------- */
.mobile-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 380px); background: #fff; z-index: 320; transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto; box-shadow: var(--shadow-lg); padding: 24px; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav > ul > li > a { display: block; padding: 14px 4px; font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; border-bottom: 1px solid var(--c-line); }
.mobile-nav .sub a { padding: 9px 14px; color: var(--c-muted); font-size: .95rem; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(45,40,35,.45); opacity: 0; visibility: hidden; transition: .3s; z-index: 310; }
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--c-beige-soft); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; gap: 0; min-height: min(78vh, 760px); }
.hero__content { padding: clamp(40px,6vw,90px); display: flex; flex-direction: column; justify-content: center; max-width: 640px; }
.hero__content .eyebrow { margin-bottom: 20px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--c-terra); position: relative; }
.hero p { font-size: 1.14rem; color: var(--c-muted); max-width: 480px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__media { position: relative; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge { position: absolute; bottom: 30px; left: -54px; background: #fff; border-radius: var(--radius-lg); padding: 18px 22px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; }
.hero__badge .num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--c-terra); line-height: 1; }
.hero__badge .lbl { font-size: .82rem; color: var(--c-muted); }
.hero__deco { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(184,92,56,.18), transparent 70%); top: -120px; right: 36%; filter: blur(8px); }

/* ---------- Marquee trust strip ---------- */
.trust-strip { background: var(--c-mocha); color: #f3e9dd; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding-block: 22px; }
.trust-strip__item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 500; font-size: .95rem; }
.trust-strip__item .hd-icon { width: 26px; height: 26px; color: var(--c-beige); }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; display: block; box-shadow: var(--shadow-sm); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.cat-card:hover img { transform: scale(1.07); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(45,40,35,.7) 0%, rgba(45,40,35,.05) 55%); }
.cat-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; z-index: 2; color: #fff; }
.cat-card__body h3 { color: #fff; font-size: 1.4rem; margin-bottom: 4px; }
.cat-card__body span { font-size: .85rem; opacity: .85; display: inline-flex; align-items: center; gap: .4em; }
.cat-card__body .hd-icon { width: 16px; height: 16px; transition: transform .3s; }
.cat-card:hover .hd-icon { transform: translateX(5px); }
.cat-card.tall { aspect-ratio: auto; grid-row: span 2; }

/* ---------- Product grid & cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 0; }
ul.products { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 30px !important; margin: 0 0 40px !important; }
ul.products li.product { width: auto !important; max-width: none !important; clear: none !important; }
ul.products::before, ul.products::after { content: none !important; display: none !important; }
ul.products li.product, .product-card { width: auto !important; margin: 0 !important; float: none !important; }

.product-card, ul.products li.product {
	background: #fff; border-radius: var(--radius-lg); overflow: hidden; position: relative;
	box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
	display: flex; flex-direction: column;
}
.product-card:hover, ul.products li.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .thumb, ul.products li.product > a img { position: relative; }
ul.products li.product { padding: 0 !important; }
ul.products li.product > a { display: block; }
ul.products li.product img { width: 100%; aspect-ratio: 1/1; object-fit: cover; margin: 0 !important; transition: transform .8s var(--ease); }
ul.products li.product:hover img { transform: scale(1.05); }
.pc-media { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product-card:hover .pc-media img { transform: scale(1.05); }

.onsale { position: absolute !important; top: 0 !important; left: 0 !important; right: auto !important; bottom: auto !important; z-index: 5; background: var(--c-terra) !important; color: #fff !important; font-family: var(--font-display) !important; font-weight: 700 !important; font-size: .82rem !important; line-height: 1 !important; padding: 8px 14px !important; border-radius: 0 0 3px 0 !important; text-transform: uppercase; letter-spacing: .04em; box-shadow: 0 4px 12px rgba(184,92,56,.3); margin: 0 !important; min-height: 0 !important; min-width: 0 !important; width: auto !important; height: auto !important; }
.pc-actions { position: absolute; top: 14px; right: 14px; z-index: 3; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(12px); transition: all .35s var(--ease); }
.product-card:hover .pc-actions, ul.products li.product:hover .pc-actions { opacity: 1; transform: translateX(0); }
.pc-actions button, .pc-actions a { width: 42px; height: 42px; background: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); color: var(--c-text); transition: background .25s, color .25s; }
.pc-actions button:hover, .pc-actions a:hover { background: var(--c-terra); color: #fff; }
.pc-actions .hd-icon { width: 19px; height: 19px; }

ul.products li.product .woocommerce-loop-product__title, .pc-body h3 { padding: 0; font-family: var(--font-display); font-size: 1.02rem !important; font-weight: 600; margin: 0 0 6px !important; line-height: 1.3; }
.pc-body, ul.products li.product { text-align: left; }
ul.products li.product { padding: 0 !important; }
.pc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pc-cat { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-mocha); }
.hd-stars { display: inline-flex; gap: 2px; padding-inline: 18px; }
.pc-body .hd-stars { padding-inline: 0; }
.hd-stars .star { color: var(--c-beige); font-size: .95rem; line-height: 1; }
.hd-stars .star.full { color: #E0A458; }
.hd-stars .star.half { background: linear-gradient(90deg, #E0A458 50%, var(--c-beige) 50%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
ul.products li.product .price, .pc-price { color: var(--c-text) !important; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; margin: 4px 0 0; padding-inline: 0; }
.price del { color: var(--c-muted); font-weight: 400; font-size: .9em; margin-right: 6px; opacity: .7; }
.price ins { text-decoration: none; color: var(--c-terra); }
ul.products li.product .button, .pc-body .button { margin-top: 10px !important; background: var(--c-mocha) !important; color: #fff !important; border-radius: var(--radius) !important; font-family: var(--font-display) !important; font-weight: 600 !important; padding: 11px 16px !important; font-size: .85rem !important; text-align:center; transition: background .3s !important; }
ul.products li.product .button:hover, .pc-body .button:hover { background: var(--c-terra) !important; }
.added_to_cart { display:none !important; }

/* ---------- Promo banner ---------- */
.promo { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo::after { content:""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(45,40,35,.78), rgba(45,40,35,.15)); }
.promo__body { position: relative; z-index: 2; color: #fff; padding: clamp(34px,6vw,72px); max-width: 560px; }
.promo__body h2 { color: #fff; margin: 14px 0 18px; }
.promo__body p { color: rgba(255,255,255,.85); margin-bottom: 26px; }
.promo .eyebrow { color: var(--c-beige); }
.promo .eyebrow::before { background: var(--c-beige); }

/* ---------- Feature boxes ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature { background: #fff; border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease); border: 1px solid var(--c-line); }
.feature:hover { transform: translateY(-6px); }
.feature__icon { width: 62px; height: 62px; border-radius: 16px; background: var(--c-beige-soft); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--c-mocha); }
.feature__icon .hd-icon { width: 28px; height: 28px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--c-muted); font-size: .94rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--c-beige-soft); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; }
.testi .hd-stars .star { font-size: 1.05rem; }
.testi p { font-size: 1.02rem; line-height: 1.6; color: var(--c-text); }
.testi__person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi__person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi__person strong { font-family: var(--font-display); display: block; font-size: .98rem; }
.testi__person span { font-size: .82rem; color: var(--c-muted); }

/* ---------- Instagram grid ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.insta-grid a { position: relative; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insta-grid a::after { content: ""; position: absolute; inset: 0; background: rgba(140,106,74,.0); transition: background .3s; }
.insta-grid a:hover::after { background: rgba(140,106,74,.35); }
.insta-grid a:hover img { transform: scale(1.1); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--c-mocha); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px,6vw,72px); text-align: center; position: relative; overflow: hidden; }
.newsletter::before { content:""; position:absolute; width: 420px; height: 420px; border-radius:50%; background: radial-gradient(circle, rgba(184,92,56,.4), transparent 70%); top:-180px; left:-100px; }
.newsletter > * { position: relative; z-index: 2; }
.newsletter .eyebrow { color: var(--c-beige); justify-content: center; }
.newsletter .eyebrow::before { display:none; }
.newsletter h2 { color: #fff; margin: 14px auto 12px; max-width: 640px; }
.newsletter p { color: rgba(255,255,255,.82); max-width: 520px; margin: 0 auto 28px; }
.newsletter form { display: flex; gap: 12px; max-width: 520px; margin-inline: auto; }
.newsletter input[type=email] { flex: 1; padding: 16px 20px; border-radius: var(--radius); border: none; }
.newsletter input:focus { outline: 2px solid var(--c-beige); }

/* ---------- New arrivals carousel ---------- */
.hd-carousel { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 52px) / 3); gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; scrollbar-width: none; }
.hd-carousel::-webkit-scrollbar { display: none; }
.hd-carousel > * { scroll-snap-align: start; }
@media (max-width: 960px) { .hd-carousel { grid-auto-columns: calc((100% - 20px) / 2); gap: 20px; } }
@media (max-width: 560px) { .hd-carousel { grid-auto-columns: 78%; gap: 16px; } }

/* ---------- Section bg helpers ---------- */
.bg-soft { background: var(--c-gray); }
.bg-beige { background: var(--c-beige-soft); }

/* ---------- Page hero / breadcrumb ---------- */
.page-hero { background: var(--c-beige-soft); padding: clamp(48px,7vw,90px) 0 clamp(40px,6vw,70px); text-align: center; position: relative; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--c-muted); max-width: 560px; margin-inline: auto; }
.breadcrumb, .woocommerce-breadcrumb { font-size: .85rem; color: var(--c-muted); margin-bottom: 16px; }
.breadcrumb a, .woocommerce-breadcrumb a { color: var(--c-mocha); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card__media { aspect-ratio: 16/11; overflow: hidden; position: relative; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__cat { position: absolute; top: 14px; left: 14px; background: #fff; color: var(--c-mocha); font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 30px; }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__meta { font-size: .8rem; color: var(--c-muted); display: flex; gap: 14px; }
.blog-card__body h3 { font-size: 1.2rem; line-height: 1.3; }
.blog-card__body h3 a:hover { color: var(--c-terra); }
.blog-card__body p { color: var(--c-muted); font-size: .94rem; }
.blog-card__body .btn-ghost { margin-top: auto; }

.post-single { max-width: 820px; margin-inline: auto; }
.post-single .entry-content > * { margin-bottom: 1.3em; }
.post-single .entry-content h2 { margin-top: 1.6em; }
.post-single p { font-size: 1.08rem; line-height: 1.8; }
.post-single img { border-radius: var(--radius-lg); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item__q { width: 100%; text-align: left; padding: 22px 26px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--c-text); }
.faq-item__q .hd-icon { width: 20px; height: 20px; color: var(--c-terra); transition: transform .35s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-item__q .hd-icon { transform: rotate(180deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item__a-inner { padding: 0 26px 24px; color: var(--c-muted); }

/* ---------- About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split--rev > :first-child { order: 2; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value { padding: 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--c-line); }
.value .num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--c-beige); line-height: 1; margin-bottom: 10px; }
.value h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value p { color: var(--c-muted); font-size: .94rem; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { text-align: center; }
.team-card img { width: 190px; height: 190px; aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; margin: 0 auto 16px; display: block; box-shadow: var(--shadow-sm); border: 4px solid #fff; }
.team-card h3 { font-size: 1.1rem; }
.team-card span { color: var(--c-terra); font-size: .88rem; font-family: var(--font-display); font-weight: 500; }
.stat-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,4vw,3.2rem); color: var(--c-terra); line-height: 1; }
.stat .lbl { color: var(--c-muted); font-size: .92rem; margin-top: 6px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,5vw,56px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.contact-info__item { display: flex; gap: 18px; align-items: center; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 22px 24px; box-shadow: var(--shadow-sm); flex: 1; transition: transform .3s var(--ease); }
.contact-info__item:hover { transform: translateY(-3px); }
.contact-info__item .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--c-beige-soft); display: inline-flex; align-items: center; justify-content: center; color: var(--c-mocha); flex-shrink: 0; }
.contact-info__item .ic .hd-icon { width: 24px; height: 24px; }
.contact-info__item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-info__item p { color: var(--c-muted); font-size: .95rem; line-height: 1.5; margin: 0; }
.contact-info__item p a { color: var(--c-muted); }
.contact-info__item p a:hover { color: var(--c-terra); }
.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); box-shadow: var(--shadow-sm); border: 1px solid var(--c-line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: .88rem; margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 13px 16px; border: 1.5px solid var(--c-line); border-radius: var(--radius); background: var(--c-bg); transition: border .25s; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--c-mocha); }
.form-field textarea { min-height: 140px; resize: vertical; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 40px; }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: .94rem; }
.alert-success { background: #e8f5e9; color: var(--c-success); }
.alert-error { background: #fdecea; color: #b3261e; }

/* ---------- 404 ---------- */
.error-404 { text-align: center; padding: clamp(60px,10vw,140px) 0; }
.error-404 .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(6rem,18vw,13rem); line-height: 1; color: var(--c-beige); letter-spacing: -.04em; }
.error-404 h1 { margin: 0 0 14px; }
.error-404 p { color: var(--c-muted); max-width: 480px; margin: 0 auto 28px; }

/* ---------- WooCommerce single product ---------- */
.single-product div.product { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px); }
.single-product .woocommerce-product-gallery { margin: 0 !important; width: 100% !important; }
.single-product .woocommerce-product-gallery img { border-radius: var(--radius-lg); }
.single-product .product_title { font-size: clamp(1.8rem,3vw,2.6rem); margin-bottom: 12px; }
.single-product .price { font-size: 1.6rem !important; color: var(--c-terra) !important; font-family: var(--font-display); font-weight: 700; }
.single-product .woocommerce-product-rating { margin-bottom: 16px; }
.single-product form.cart { margin: 26px 0; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.single-product .quantity input { width: 80px; padding: 13px; border: 1.5px solid var(--c-line); border-radius: var(--radius); text-align: center; }
.single-product form.cart .button, .single-product .single_add_to_cart_button { background: var(--c-mocha) !important; color: #fff !important; padding: 15px 34px !important; border-radius: var(--radius) !important; font-family: var(--font-display) !important; font-weight: 600 !important; font-size: 1rem !important; }
.single-product form.cart .button:hover { background: var(--c-terra) !important; }
.single-product .product_meta { font-size: .88rem; color: var(--c-muted); border-top: 1px solid var(--c-line); padding-top: 18px; margin-top: 20px; }
.single-product .product_meta > span { display: block; margin-bottom: 6px; }
.woocommerce-tabs { grid-column: 1 / -1; margin-top: clamp(40px,5vw,70px); }
.woocommerce-tabs ul.tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--c-line); margin-bottom: 28px; flex-wrap: wrap; padding: 0; }
.woocommerce-tabs ul.tabs li { list-style: none; }
.woocommerce-tabs ul.tabs li a { display: block; padding: 12px 22px; font-family: var(--font-display); font-weight: 600; color: var(--c-muted); border-bottom: 2px solid transparent; }
.woocommerce-tabs ul.tabs li.active a { color: var(--c-terra); border-color: var(--c-terra); }
.related.products, .upsells.products { grid-column: 1 / -1; margin-top: clamp(40px,5vw,70px); }
.related.products > h2, .upsells > h2 { font-size: 1.8rem; margin-bottom: 24px; }

/* ---------- WooCommerce cart / checkout / account ---------- */
.woocommerce table.shop_table { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-line); border-collapse: separate; }
.woocommerce table.shop_table th { font-family: var(--font-display); background: var(--c-gray); }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout #order_review { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 24px; }
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
	background: var(--c-mocha) !important; color: #fff !important; border-radius: var(--radius) !important;
	font-family: var(--font-display) !important; font-weight: 600 !important; padding: 13px 26px !important; transition: background .3s !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit:hover { background: var(--c-terra) !important; }
.woocommerce .button.alt, .woocommerce #place_order { background: var(--c-terra) !important; }
.woocommerce .button.alt:hover { background: var(--c-terra-dark) !important; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce-account .woocommerce-form input { border: 1.5px solid var(--c-line) !important; border-radius: var(--radius) !important; padding: 12px 14px !important; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex; flex-direction: column; gap: 4px; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 12px 16px; border-radius: var(--radius); font-family: var(--font-display); font-weight: 500; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--c-mocha); color: #fff; }
.woocommerce-account .woocommerce-MyAccount-navigation { width: 24%; float: left; }
.woocommerce-account .woocommerce-MyAccount-content { width: 72%; float: right; }
.woocommerce .woocommerce-message, .woocommerce-info { border-top-color: var(--c-mocha); }
.woocommerce .woocommerce-message::before, .woocommerce-info::before { color: var(--c-mocha); }
.woocommerce-shop ul.products li.product .onsale { top: 14px; }

/* Shop toolbar */
.woocommerce .woocommerce-result-count { color: var(--c-muted); }
.woocommerce .woocommerce-ordering select { padding: 10px 14px; border: 1.5px solid var(--c-line); border-radius: var(--radius); }
.woocommerce nav.woocommerce-pagination ul { border: none; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { border: 1px solid var(--c-line); border-radius: var(--radius); padding: 10px 16px; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--c-mocha); color: #fff; border-color: var(--c-mocha); }

/* Shop layout with sidebar */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.shop-sidebar .widget { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 22px; }
.shop-sidebar .widget-title { font-size: 1.05rem; margin-bottom: 14px; }
.filter-group { margin-bottom: 18px; }
.filter-group h4 { font-family: var(--font-display); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-mocha); margin-bottom: 12px; }
.filter-group label { display: flex; align-items: center; gap: 9px; padding: 5px 0; color: var(--c-muted); font-size: .94rem; cursor: pointer; }
.filter-group label:hover { color: var(--c-text); }
.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.color-swatch { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--c-line); cursor: pointer; }

/* ---------- Footer ---------- */
.site-footer { background: #20201d; color: #cfc7bb; padding-top: clamp(56px,7vw,90px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col h4 { color: #fff; font-size: 1rem; letter-spacing: .04em; margin-bottom: 18px; font-family: var(--font-display); }
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; margin-bottom: 16px; display: inline-block; }
.footer-brand span { color: var(--c-terra); }
.footer-col p { font-size: .92rem; line-height: 1.7; color: #a9a195; margin-bottom: 18px; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a { color: #cfc7bb; font-size: .93rem; }
.footer-col li a:hover { color: var(--c-terra); padding-left: 5px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; color: #a9a195; }
.footer-contact .hd-icon { width: 17px; height: 17px; color: var(--c-terra); margin-top: 3px; flex-shrink: 0; }
.footer-news input { width: 100%; padding: 13px 15px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); color: #fff; margin-bottom: 12px; }
.footer-news input::placeholder { color: #8a8378; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: inline-flex; align-items: center; justify-content: center; color: #cfc7bb; transition: all .25s; font-family: var(--font-display); font-weight: 600; font-size: .8rem; }
.footer-social a:hover { background: var(--c-terra); border-color: var(--c-terra); color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-block: 24px; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: .86rem; color: #8a8378; }
.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icons span { background: #fff; color: #222; border-radius: 4px; padding: 5px 10px; font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .02em; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ---------- Quick view modal ---------- */
.qv-overlay { position: fixed; inset: 0; background: rgba(45,40,35,.55); z-index: 400; display: none; align-items: center; justify-content: center; padding: 20px; }
.qv-overlay.open { display: flex; }
.qv-modal { background: #fff; border-radius: var(--radius-lg); max-width: 880px; width: 100%; max-height: 90vh; overflow: auto; display: grid; grid-template-columns: 1fr 1fr; }
.qv-modal img { width: 100%; height: 100%; object-fit: cover; }
.qv-modal__body { padding: 34px; }
.qv-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
	.product-grid, ul.products { grid-template-columns: repeat(3, 1fr); }
	.mega .container { grid-template-columns: 1fr 1fr; }
	.mega__promo { display: none; }
	.team-grid { grid-template-columns: repeat(2,1fr); }
	.insta-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 960px) {
	.primary-nav, .header-tools .tool--search { display: none; }
	.header-tools .nav-toggle { display: inline-flex; }
	.hero__grid { grid-template-columns: 1fr; }
	.hero__media { min-height: 360px; order: -1; }
	.hero__badge { left: 20px; }
	.features, .cat-grid, .testi-grid, .blog-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
	.cat-card.tall { grid-row: span 1; aspect-ratio: 4/5; }
	.split, .contact-grid, .single-product div.product { grid-template-columns: 1fr; }
	.split--rev > :first-child { order: 0; }
	.shop-layout { grid-template-columns: 1fr; }
	.stat-band { grid-template-columns: repeat(2,1fr); }
	.qv-modal { grid-template-columns: 1fr; }
	.woocommerce-account .woocommerce-MyAccount-navigation, .woocommerce-account .woocommerce-MyAccount-content { width: 100%; float: none; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.product-grid, ul.products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.features, .cat-grid, .testi-grid, .blog-grid, .values-grid, .team-grid, .footer-grid, .stat-band, .form-row { grid-template-columns: 1fr; }
	.topbar__meta { display: none; }
	.trust-strip .container { justify-content: center; gap: 24px; }
	.hero__actions .btn { flex: 1; justify-content: center; }
	.newsletter form { flex-direction: column; }
	.insta-grid { grid-template-columns: repeat(2,1fr); }
}
