:root{
  --wood:#6b4226; --wood-dark:#3e2715; --gold:#bd8a3c; --gold-2:#d8a94e;
  --cream:#f7f1e8; --bg:#ffffff; --ink:#2a2018; --muted:#847567; --line:#e9ddcc;
  --radius:14px; --shadow:0 10px 30px rgba(62,39,21,.10);
  --font-head:"Playfair Display",Georgia,"Times New Roman",serif;
  --font-body:"Inter",system-ui,-apple-system,Arial,"PingFang SC","Microsoft YaHei",sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--font-body);color:var(--ink);background:var(--bg);line-height:1.7;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility}
img{max-width:100%;display:block}
a{color:var(--wood);text-decoration:none}
.container{max-width:1180px;margin:0 auto;padding:0 22px}
.muted{color:var(--muted)}
.small{font-size:13px}

/* buttons */
.btn{display:inline-block;padding:13px 26px;border-radius:40px;font-weight:600;font-size:15px;cursor:pointer;border:2px solid transparent;transition:.25s}
.btn-gold{background:linear-gradient(135deg,var(--gold),var(--gold-2));color:#fff;box-shadow:0 6px 18px rgba(189,138,60,.35)}
.btn-gold:hover{filter:brightness(1.05);transform:translateY(-2px)}
.btn-ghost{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.6)}
.btn-ghost:hover{background:rgba(255,255,255,.22)}
.btn-outline{background:transparent;color:var(--wood);border-color:var(--wood)}
.btn-outline:hover{background:var(--wood);color:#fff}
.btn-sm{padding:9px 18px;font-size:13px}

/* header */
.site-header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.96);backdrop-filter:blur(8px);border-bottom:1px solid var(--line)}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;height:70px}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{width:42px;height:42px;border-radius:10px;background:var(--wood);color:#fff;display:grid;place-items:center;font-weight:800;letter-spacing:1px}
.brand-text{display:flex;flex-direction:column;line-height:1.15}
.brand-text strong{font-size:18px;letter-spacing:2px;color:var(--wood-dark)}
.brand-text small{font-size:11px;color:var(--muted)}
.nav{display:flex;gap:26px}
.nav a{font-weight:600;color:var(--ink);position:relative;padding:6px 0}
.nav a:hover{color:var(--gold)}
.nav-cta{margin-left:14px}
.nav-toggle{display:none;background:none;border:none;font-size:26px;color:var(--wood);cursor:pointer}

/* hero */
.hero{min-height:74vh;display:flex;align-items:center;background-size:cover;background-position:center;color:#fff}
.hero-inner{max-width:760px;padding:70px 22px}
.hero h1{font-size:clamp(32px,5vw,56px);line-height:1.1;margin:14px 0}
.eyebrow{display:inline-block;font-size:13px;letter-spacing:2px;text-transform:uppercase;color:var(--gold-2);font-weight:700}
.eyebrow.light{color:#ffe6bd}
.hero-sub{font-size:18px;max-width:620px;margin:18px 0 26px;color:rgba(255,255,255,.92)}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:38px}
.trust-strip{display:flex;gap:30px;flex-wrap:wrap}
.trust-strip div{display:flex;flex-direction:column}
.trust-strip strong{font-size:24px;color:#fff}
.trust-strip span{font-size:12px;color:rgba(255,255,255,.8)}

/* sections */
.section{padding:72px 0}
.section.alt{background:var(--cream)}
.section-head{text-align:center;max-width:680px;margin:0 auto 40px}
.section-head h2{font-size:clamp(26px,3vw,38px);color:var(--wood-dark);margin:0 0 10px}
.section-head p{color:var(--muted);margin:0}

/* categories */
.cat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.cat-card{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);background:#fff;transition:.3s}
.cat-card:hover{transform:translateY(-6px)}
.cat-card img{height:230px;object-fit:cover;width:100%}
.cat-body{position:absolute;left:0;right:0;bottom:0;padding:18px 20px;background:linear-gradient(transparent,rgba(40,25,15,.85));color:#fff}
.cat-body h3{margin:0;font-size:20px}
.cat-body span{font-size:13px;color:rgba(255,255,255,.8)}

/* split */
.split{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.split-img img{border-radius:var(--radius);box-shadow:var(--shadow)}
.split-text h2{font-size:clamp(24px,3vw,34px);color:var(--wood-dark);margin:10px 0 16px}
.split-text p{color:#4a3b2e;margin:0 0 16px}
.tick-list{list-style:none;padding:0;margin:0 0 22px}
.tick-list li{padding-left:28px;position:relative;margin-bottom:10px;color:#4a3b2e}
.tick-list li:before{content:"\2713";position:absolute;left:0;color:var(--gold);font-weight:800}

/* products grid */
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.product{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;transition:.3s;display:flex;flex-direction:column}
.product:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:var(--gold)}
.product img{height:240px;object-fit:cover;width:100%}
.p-body{padding:18px 18px 20px;display:flex;flex-direction:column;gap:8px;flex:1}
.p-body h3{font-size:17px;margin:0;color:var(--wood-dark)}
.p-sub{font-size:13px;color:var(--muted);margin:0}
.p-meta{display:flex;justify-content:space-between;align-items:center;margin-top:auto}
.p-meta .price{font-weight:800;color:var(--wood)}
.p-meta .moq{font-size:12px;color:var(--muted)}
.p-body .btn{margin-top:10px;text-align:center}

/* why / cert */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.why-grid>div{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:26px 22px;transition:.3s}
.why-grid>div:hover{border-color:var(--gold);transform:translateY(-4px)}
.why-num{font-size:30px;font-weight:800;color:var(--gold)}
.why-grid h3{margin:10px 0 8px;font-size:18px;color:var(--wood-dark)}
.why-grid p{margin:0;font-size:14px;color:var(--muted)}
.cert-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.cert{text-align:center;padding:30px 20px;border:1px solid var(--line);border-radius:var(--radius);background:#fff}
.cert-ico{font-size:34px;color:var(--gold)}
.cert h3{margin:12px 0 8px;font-size:18px;color:var(--wood-dark)}
.cert p{margin:0;color:var(--muted);font-size:14px}

/* steps */
.steps{display:grid;grid-template-columns:repeat(6,1fr);gap:16px}
.step{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:22px 16px;text-align:center}
.step span{display:grid;place-items:center;width:40px;height:40px;border-radius:50%;background:var(--wood);color:#fff;font-weight:800;margin:0 auto 12px}
.step h3{margin:0 0 6px;font-size:15px;color:var(--wood-dark)}
.step p{margin:0;font-size:12.5px;color:var(--muted)}

/* faq */
.faq-list{max-width:820px;margin:0 auto}
.faq-list details{border:1px solid var(--line);border-radius:10px;padding:16px 18px;margin-bottom:12px;background:#fff}
.faq-list summary{cursor:pointer;font-weight:600;color:var(--wood-dark)}
.faq-list p{margin:12px 0 0;color:#4a3b2e}

/* cta band + form */
.cta-band{background:linear-gradient(135deg,var(--wood-dark),var(--wood));color:#fff}
.cta-band h2{color:#fff;font-size:clamp(24px,3vw,34px);margin:10px 0 14px}
.cta-band p{color:rgba(255,255,255,.9)}
.cta-band a{margin-right:12px}
.quote-form{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);border-radius:var(--radius);padding:26px;display:grid;gap:14px}
.quote-form input,.quote-form textarea{width:100%;padding:13px 15px;border-radius:10px;border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.95);font-size:15px;font-family:inherit;color:var(--ink)}
.quote-form input:focus,.quote-form textarea:focus{outline:2px solid var(--gold-2)}
.quote-form .btn{width:100%}

/* page hero (sub pages) */
.page-hero{padding:90px 22px 30px;text-align:center}
.page-hero h1{font-size:clamp(30px,4vw,46px);color:var(--wood-dark);margin:0 0 12px}
.page-hero p{color:var(--muted);max-width:640px;margin:0 auto}

/* stat grid */
.stat-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;text-align:center}
.stat strong{display:block;font-size:38px;color:var(--wood)}
.stat span{font-size:13px;color:var(--muted)}

/* product detail */
.breadcrumb{padding:18px 22px 0;font-size:14px;color:var(--muted)}
.breadcrumb a{color:var(--muted)}
.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:44px;padding-top:20px}
.product-gallery img.main-img{width:100%;border-radius:var(--radius);box-shadow:var(--shadow);object-fit:cover;height:460px;cursor:zoom-in}
.thumbs{display:flex;gap:12px;margin-top:14px;flex-wrap:wrap}
.thumbs img{width:84px;height:84px;border-radius:10px;object-fit:cover;border:1px solid var(--line);cursor:zoom-in;transition:transform .15s ease,border-color .15s ease}
.thumbs img:hover{transform:translateY(-2px);border-color:var(--gold)}
.thumbs img.active{border:2px solid var(--gold)}
.zoom-hint{font-size:12px;color:var(--muted);margin-top:10px}
.stars-sm{font-size:13px;letter-spacing:1px}
.p-rating{display:flex;align-items:center;gap:7px;margin:2px 0 6px}
.p-rcount{font-size:12px;color:var(--muted)}
.hero-note{font-size:13.5px;color:#fff;opacity:.92;margin:12px 0 0}
.tick-list.light li{color:#fff;opacity:.95}
.tick-list.light li:before{color:#e8c98a}
.promise-band{text-align:center}
.promise-band h2{font-size:26px;color:var(--wood-dark);margin:0 0 10px}
.promise-lead{font-size:15px;color:var(--muted);max-width:760px;margin:0 auto 24px}
.promise-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;text-align:left;margin-bottom:24px}
.promise-grid>div{background:var(--cream);border-radius:var(--radius);padding:18px 20px}
.promise-grid h3{font-size:15.5px;color:var(--wood-dark);margin:0 0 6px}
.promise-grid p{font-size:13.5px;color:#4a3b2e;margin:0;line-height:1.6}
@media (max-width:900px){.promise-grid{grid-template-columns:1fr 1fr}}
@media (max-width:600px){.promise-grid{grid-template-columns:1fr}}
/* customer reviews */
.reviews h2{font-size:26px;color:var(--wood-dark);margin:0 0 22px}
.reviews-wrap{display:grid;grid-template-columns:260px 1fr;gap:34px;align-items:start}
.review-summary{background:var(--cream);border-radius:var(--radius);padding:24px;position:sticky;top:20px}
.rv-avg{font-size:52px;font-weight:800;color:var(--wood-dark);line-height:1}
.stars{color:#e0a33a;font-size:15px;letter-spacing:2px}
.stars-lg{font-size:20px}
.rv-count{font-size:13px;color:var(--muted);margin:8px 0 16px}
.rv-bars{display:grid;gap:7px;margin-bottom:18px}
.bar-row{display:grid;grid-template-columns:52px 1fr 38px;align-items:center;gap:8px;font-size:12px;color:var(--muted)}
.bar-track{background:#e6ddd0;border-radius:6px;height:8px;overflow:hidden}
.bar-fill{display:block;height:100%;background:#e0a33a;border-radius:6px}
.bar-pct{text-align:right}
.btn-sm{padding:9px 16px;font-size:13px}
.review-list{display:grid;gap:16px}
.review-card{border:1px solid var(--line);border-radius:var(--radius);padding:18px 20px;background:#fff}
.rv-head{display:flex;align-items:center;gap:12px;margin-bottom:8px}
.avatar{width:40px;height:40px;border-radius:50%;background:var(--wood);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:17px;flex:0 0 40px}
.rv-who{display:flex;flex-direction:column;line-height:1.3}
.rv-who strong{font-size:15px;color:var(--wood-dark)}
.rv-role{font-size:12.5px;color:var(--muted)}
.rv-date{margin-left:auto;font-size:12px;color:var(--muted)}
.rv-line{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:8px}
.badge-verified{background:#eaf6ee;color:#2e7d4f;border-radius:20px;padding:3px 10px;font-size:11.5px;font-weight:600}
.rv-title{font-size:15.5px;color:var(--wood-dark);margin:0 0 6px}
.rv-body{font-size:14px;color:#4a3b2e;line-height:1.65;margin:0 0 8px}
.rv-foot{font-size:12.5px;color:var(--muted);margin:0}
.rv-pager{display:flex;align-items:center;gap:8px;margin-top:18px;flex-wrap:wrap}
.rv-pager button{border:1px solid var(--line);background:#fff;color:var(--wood-dark);border-radius:8px;padding:8px 14px;font-size:13px;font-weight:600;cursor:pointer;transition:all .15s ease}
.rv-pager button:hover{border-color:var(--gold);color:var(--wood)}
.rv-pager .rv-page{min-width:36px}
.rv-pager .rv-page.active{background:var(--wood);border-color:var(--wood);color:#fff}
.rv-note{font-size:12px;color:var(--muted);margin-top:16px;font-style:italic}
@media (max-width:860px){.reviews-wrap{grid-template-columns:1fr;gap:20px}.review-summary{position:static}}
/* lightbox */
.lightbox{position:fixed;inset:0;z-index:9999;background:rgba(28,20,14,.92);display:flex;align-items:center;justify-content:center;padding:60px 80px}
.lightbox[hidden]{display:none}
.lb-img-full{max-width:100%;max-height:100%;object-fit:contain;border-radius:8px;box-shadow:0 20px 60px rgba(0,0,0,.5);background:#fff}
.lb-close{position:absolute;top:18px;right:26px;width:44px;height:44px;border:0;border-radius:50%;background:rgba(255,255,255,.14);color:#fff;font-size:30px;line-height:1;cursor:pointer}
.lb-close:hover{background:rgba(255,255,255,.28)}
.lb-nav{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border:0;border-radius:50%;background:rgba(255,255,255,.14);color:#fff;font-size:22px;cursor:pointer}
.lb-nav:hover{background:rgba(255,255,255,.28)}
.lb-prev{left:18px}
.lb-next{right:18px}
.lb-count{position:absolute;bottom:22px;left:0;right:0;text-align:center;color:#fff;font-size:14px;opacity:.85}
@media (max-width:640px){.lightbox{padding:56px 12px}.lb-nav{width:40px;height:40px}.lb-prev{left:6px}.lb-next{right:6px}}
.img-note{font-size:12px;color:var(--muted);margin-top:10px}
.product-info .eyebrow{margin-bottom:6px}
.product-info h1{font-size:30px;color:var(--wood-dark);margin:0 0 12px;line-height:1.2}
.rating-badge{display:inline-block;background:var(--cream);color:var(--wood);padding:6px 14px;border-radius:30px;font-size:14px;font-weight:600;margin-bottom:14px}
.price-row{display:flex;align-items:baseline;gap:16px;margin-bottom:14px}
.price-lg{font-family:var(--font-body);font-size:36px;font-weight:800;color:var(--wood);font-variant-numeric:tabular-nums;letter-spacing:-0.5px;line-height:1}
.moq-lg{font-size:15px;color:var(--muted);font-weight:500}
.lead{font-size:16px;color:#4a3b2e;margin:0 0 14px}
.chips{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.chip-static{background:var(--cream);color:var(--wood);padding:5px 13px;border-radius:30px;font-size:13px}
.quick-spec{list-style:none;padding:0;margin:0 0 20px;display:grid;gap:6px}
.pitch-lead{font-size:16px;line-height:1.6;color:#4a3b2e;margin:0 0 12px}
.pitch-points{list-style:none;padding:0;margin:0 0 14px;display:grid;gap:8px}
.pitch-points li{position:relative;padding-left:24px;font-size:14.5px;color:#4a3b2e;line-height:1.45}
.pitch-points li:before{content:"\2713";position:absolute;left:0;top:0;color:var(--gold);font-weight:800}
.trust-row{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 4px}
.trust-badge{display:inline-flex;align-items:center;gap:5px;background:#f6f0e6;color:var(--wood);padding:5px 11px;border-radius:30px;font-size:12.5px;font-weight:600;border:1px solid var(--line)}
.trust-badge i{font-style:normal;color:var(--gold);font-size:13px}
.quick-spec li{font-size:14px;color:#4a3b2e}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:12px}
.product-desc h2,.product-specs h2,.why-us h2,.related h2{font-size:26px;color:var(--wood-dark);margin:0 0 16px}
.product-desc h3{font-size:18px;color:var(--wood-dark);margin:26px 0 12px}
.mt-2{margin-top:26px}
.intro-cta{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-top:18px}
.product-desc .lead{font-size:17px;line-height:1.65}
.spec-table{width:100%;border-collapse:collapse;background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden}
.spec-table th,.spec-table td{padding:13px 18px;text-align:left;border-bottom:1px solid var(--line);font-size:15px}
.spec-table th{width:38%;background:var(--cream);color:var(--wood-dark);font-weight:700}
.why-us .why-grid,.related .product-grid{margin-top:0}

/* filter */
.filter-bar{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:28px;justify-content:center}
.chip{background:#fff;border:1px solid var(--line);color:var(--wood);padding:9px 18px;border-radius:30px;cursor:pointer;font-size:14px;font-weight:600;transition:.2s}
.chip:hover{border-color:var(--gold)}
.chip.active{background:var(--wood);color:#fff;border-color:var(--wood)}

/* footer */
.site-footer{background:var(--wood-dark);color:#e9d9c6;padding:54px 0 22px;margin-top:0}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:30px}
.site-footer h4{color:#fff;margin:0 0 16px;font-size:16px}
.site-footer a{display:block;color:#d9c4ad;margin-bottom:9px;font-size:14px}
.site-footer a:hover{color:var(--gold-2)}
.footer-alibaba{color:var(--gold-2)!important;font-weight:700}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:30px;padding-top:18px;text-align:center;color:#b39a82;font-size:13px}
.footer-bottom p{margin:0}

/* responsive */
@media(max-width:920px){
  .cat-grid,.product-grid,.why-grid,.cert-grid{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(3,1fr)}
  .stat-grid{grid-template-columns:repeat(3,1fr)}
  .product-detail{grid-template-columns:1fr;gap:24px}
  .product-gallery img.main-img{height:340px}
  .split{grid-template-columns:1fr;gap:28px}
}
@media(max-width:600px){
  .nav{display:none;position:absolute;top:70px;left:0;right:0;background:#fff;flex-direction:column;padding:16px 22px;gap:14px;border-bottom:1px solid var(--line)}
  .nav.open{display:flex}
  .nav-toggle{display:block}
  .nav-cta{display:none}
  .cat-grid,.product-grid,.why-grid,.cert-grid,.steps,.stat-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .trust-strip{gap:18px}
}

/* WhatsApp floating contact widget */
.wa-fab{position:fixed;right:22px;bottom:22px;width:58px;height:58px;border-radius:50%;background:#25D366;display:grid;place-items:center;box-shadow:0 8px 22px rgba(37,211,102,.45);z-index:1000;transition:transform .25s;overflow:visible}
.wa-fab:hover{transform:scale(1.07)}
.wa-fab svg{width:32px;height:32px}
.wa-fab-pulse{position:absolute;inset:0;border-radius:50%;background:#25D366;z-index:-1;animation:waPulse 2.2s infinite}
@keyframes waPulse{0%{transform:scale(1);opacity:.55}70%{transform:scale(1.9);opacity:0}100%{opacity:0}}
.wa-pop{position:fixed;right:22px;bottom:94px;width:300px;max-width:calc(100vw - 44px);background:#fff;border-radius:16px;box-shadow:0 18px 44px rgba(0,0,0,.20);z-index:1000;overflow:hidden;font-family:inherit;transform:translateY(16px);opacity:0;pointer-events:none;transition:opacity .28s,transform .28s}
.wa-pop.show{transform:translateY(0);opacity:1;pointer-events:auto}
.wa-pop[hidden]{display:none}
.wa-pop-close{position:absolute;top:8px;right:11px;border:none;background:none;font-size:22px;line-height:1;color:#fff;cursor:pointer}
.wa-pop-head{background:#25D366;color:#fff;padding:16px 16px 14px;display:flex;align-items:center;gap:12px}
.wa-pop-avatar{width:42px;height:42px;border-radius:50%;background:#fff;color:#25D366;display:grid;place-items:center;font-weight:800;letter-spacing:1px;flex:0 0 auto}
.wa-pop-head strong{display:block;font-size:16px;line-height:1.2}
.wa-pop-status{font-size:12px;opacity:.92;display:flex;align-items:center;gap:6px;margin-top:2px}
.wa-pop-status i{width:8px;height:8px;border-radius:50%;background:#bfffd0;display:inline-block;flex:0 0 auto}
.wa-pop-body{padding:16px;color:var(--ink);font-size:14px}
.wa-pop-body p{margin:0}
.wa-pop-chat{display:flex;align-items:center;justify-content:center;gap:8px;margin:0 16px 16px;background:#25D366;color:#fff;font-weight:700;padding:12px;border-radius:30px;font-size:15px;transition:background .2s}
.wa-pop-chat:hover{background:#1ebe5b;color:#fff}
.wa-pop-chat svg{width:20px;height:20px}
@media(max-width:480px){.wa-fab{right:14px;bottom:14px}.wa-pop{right:14px;bottom:82px}}

/* Category SEO landing sections (products/index.html) */
.cat-section{margin-top:42px;scroll-margin-top:90px}
.cat-head{margin:0 0 18px;padding-bottom:14px;border-bottom:1px solid var(--line)}
.cat-head h2{font-family:"Playfair Display",Georgia,serif;font-size:1.85rem;color:var(--wood-dark);margin:0 0 6px;letter-spacing:-0.2px}
.cat-head p{margin:0;color:var(--muted);max-width:780px;line-height:1.7;font-size:.98rem}

/* Homepage category navigation tiles (link through to products page) */
.cat-nav{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.cat-tile{position:relative;display:block;aspect-ratio:4/3;border-radius:var(--radius);overflow:hidden;background:var(--cream);box-shadow:var(--shadow);text-decoration:none}
.cat-tile img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease}
.cat-tile:hover img{transform:scale(1.06)}
.cat-tile-label{position:absolute;left:0;right:0;bottom:0;padding:16px;display:flex;justify-content:space-between;align-items:center;gap:10px;color:#fff;background:linear-gradient(to top,rgba(62,39,21,.90),rgba(62,39,21,0))}
.cat-tile-label strong{font-family:"Playfair Display",Georgia,serif;font-size:1.08rem;font-weight:700}
.cat-tile-label span{font-size:.85rem;opacity:.92;white-space:nowrap}
@media(max-width:860px){.cat-nav{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.cat-nav{grid-template-columns:1fr}}

/* ===== Typography refinement ===== */
h1,h2,h3,h4{font-family:var(--font-head);color:var(--wood-dark);font-weight:700;line-height:1.15}
.hero h1{font-family:var(--font-head);font-weight:800;letter-spacing:-.5px}
.section-head h2{letter-spacing:-.3px}
.product-info h1{font-family:var(--font-head)}
.brand-text strong{font-family:var(--font-head);letter-spacing:1px}
.price,.p-meta .price,.stat strong{font-family:var(--font-head);font-weight:800}
.eyebrow{font-family:var(--font-body)}
.eyebrow.light{color:#fff}

/* ===== Featured filter + scenes ===== */
.featured-more{text-align:center;margin-top:34px}
.scene-band{padding-bottom:0}
.scene-hero{position:relative;border-radius:var(--radius);overflow:hidden;background-size:cover;background-position:center;min-height:340px;display:flex;align-items:center;margin-bottom:18px}
.scene-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(62,39,21,.82),rgba(62,39,21,.35))}
.scene-hero-inner{position:relative;color:#fff;padding:48px;max-width:640px}
.scene-hero-inner h2{color:#fff}
.scene-hero-inner p{color:rgba(255,255,255,.92);font-size:17px;margin:14px 0 24px}
.scene-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.scene{position:relative;border-radius:var(--radius);overflow:hidden;min-height:220px;background-size:cover;background-position:center;display:flex;align-items:flex-end;text-decoration:none}
.scene:before{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(62,39,21,.78),rgba(62,39,21,0) 62%)}
.scene-label{position:relative;color:#fff;font-family:var(--font-head);font-weight:700;font-size:20px;padding:18px 20px;width:100%;display:block}

@media(max-width:768px){.scene-grid{grid-template-columns:1fr}.scene-hero-inner{padding:32px}.scene-hero{min-height:260px}}

