/* Bradley Smoker Israel — design system (synced from approved prototype design-prototypes/home.html).
   Dark charcoal header + ember hello bar + 5-slide hero slider. Images served locally. */

/* ============================================================
   BRADLEY SMOKER ISRAEL — SHARED DESIGN SYSTEM (v2 QA)
   Reused verbatim across every store page.
   ============================================================ */
:root{
  --ember:#C85828;          /* Bradley brand orange (sampled from bradleysmoker.com) — NOT KIRO's #CE5C2F */
  --ember-deep:#A4431D;
  --ember-cta:#BD4E1C;      /* AA-safe orange for white button text / small orange text (≥4.5:1 vs the brand --ember 4.3:1) */
  --ember-on-dark:#E0703A; /* brighter Bradley orange for AA contrast on charcoal */
  --ink:#1E1E1E;
  --ink-soft:#3a3735;
  --charcoal:#141210;
  --header-dark:#1E1E1E;    /* header bar — matches bradleysmoker.com so the black logo badge blends into the bar */
  --cream:#F9F6F3;
  --beige:#DEC8BA;
  --beige-fill:#F3ECE6;
  --white:#FFFFFF;
  --line:#e7ded7;
  --link:#E6D8CC;          /* lightened for AA on charcoal */
  --link-dim:#C9B9AB;      /* secondary footer text */
  --muted:#615a54;         /* darkened from #6f6862 for AA on white/cream */
  --font-head:"Heebo","Assistant",sans-serif;
  --font-body:"Assistant","Heebo",sans-serif;
  --fs-base:18px;
  --lh-body:1.75;
  --lh-head:1.18;
  --sp-1:.25rem; --sp-2:.5rem; --sp-3:.75rem; --sp-4:1rem;
  --sp-5:1.5rem; --sp-6:2rem; --sp-7:3rem; --sp-8:4rem; --sp-9:6rem;
  --container:1280px;
  --radius:0px;
  --header-h:118px;
  --ease:cubic-bezier(.22,.61,.36,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
/* background:var(--charcoal) on the ROOT (not body) paints the iOS Safari rubber-band
   overscroll area the same dark as the footer, so pulling past the bottom no longer
   flashes a white gap below the dark footer. html sits behind body (which stays white),
   so content is unaffected — only the overscroll canvas changes. */
html{font-size:var(--fs-base);-webkit-text-size-adjust:100%;overflow-x:clip;background:var(--charcoal)}
/* scroll-behavior:smooth removed — on long pages it left hit-testing unstable mid-scroll,
   so clicks (breadcrumb / add-to-cart) could resolve to a far-down element. */
/* overflow-x:clip (NOT hidden) keeps the off-canvas RTL drawer from causing sideways
   scroll WITHOUT creating a scroll container — `hidden` here silently breaks every
   position:sticky descendant (header, PDP gallery, FAQ jump-nav, asides). */
body{font-family:var(--font-body);font-weight:400;line-height:var(--lh-body);color:var(--ink);background:var(--white);text-align:right;direction:rtl;overflow-x:clip;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none;transition:color .2s var(--ease)}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
ul{list-style:none}
input,button,select,textarea{font-family:inherit;font-size:1rem}
:focus-visible{outline:3px solid var(--ember);outline-offset:2px;border-radius:2px}
.section--dark :focus-visible,.site-header :focus-visible,.site-footer :focus-visible,.club-band :focus-visible,.feature-band :focus-visible{outline-color:#fff}
::selection{background:var(--ember);color:#fff}
/* honor reduced-motion */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
}
[id]{scroll-margin-top:calc(var(--header-h) + 1rem)}
h1,h2,h3,h4{font-family:var(--font-head);font-weight:900;line-height:var(--lh-head);color:var(--ink);letter-spacing:-.01em}
.h-display{font-size:clamp(2.6rem,6vw,4.6rem);font-weight:900;text-transform:uppercase;letter-spacing:.005em}
.h1{font-size:clamp(2rem,4.4vw,3.2rem)}
.h2{font-size:clamp(1.7rem,3.4vw,2.6rem)}
.h3{font-size:clamp(1.25rem,2vw,1.6rem)}
.eyebrow{display:block;font-family:var(--font-head);font-weight:800;text-transform:uppercase;letter-spacing:.18em;font-size:.8rem;color:var(--ember-cta)}
.section--dark .eyebrow,.feature-band .eyebrow,.club-band .eyebrow{color:var(--ember-on-dark)}
.lead{font-size:1.15rem;color:var(--ink-soft);line-height:1.7}
.muted{color:var(--muted)}
.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:clamp(1rem,4vw,2.5rem)}
.section{padding-block:clamp(3.5rem,7vw,6rem)}
.section--warm{background:var(--cream)}
.section--dark{background:var(--charcoal);color:var(--cream)}
.section--dark h1,.section--dark h2,.section--dark h3{color:#fff}
.section-head{margin-bottom:clamp(1.75rem,3.5vw,3rem)}
.section-head--center{text-align:center}
.section-head--row{display:flex;align-items:flex-end;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.grid{display:grid;gap:clamp(1rem,2vw,1.75rem)}
.flow > * + *{margin-top:1rem}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.55rem;font-family:var(--font-head);font-weight:800;text-transform:uppercase;letter-spacing:.06em;font-size:.92rem;line-height:1;padding:1.05rem 2.1rem;border-radius:var(--radius);border:2px solid var(--ink);transition:background .22s var(--ease),color .22s var(--ease),border-color .22s var(--ease),transform .12s var(--ease);white-space:nowrap}
.btn:active{transform:translateY(1px)}
/* Primary CTA = Bradley orange (CRO/UX best practice — CTAs should be the brand
   accent, not black). Covers add-to-cart + every primary button site-wide. */
.btn--primary{background:var(--ember-cta);color:#fff;border-color:var(--ember-cta)}
.btn--primary:hover{background:var(--ember-deep);border-color:var(--ember-deep);color:#fff}
.btn--secondary{background:var(--cream);color:var(--ink);border-color:var(--ink)}
.btn--secondary:hover{background:var(--ink);color:var(--cream)}
.btn--ember{background:var(--ember-cta);color:#fff;border-color:var(--ember-cta)}
.btn--ember:hover{background:var(--ember-deep);border-color:var(--ember-deep)}
.btn--ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.55)}
.btn--ghost:hover{background:#fff;color:var(--ink);border-color:#fff}
/* WooCommerce's `.woocommerce ul.products li.product a` link colour (0-3-3) overrides
   our white CTA text on shop-archive cards, turning the orange buttons' text dark.
   Restore white on the filled buttons (secondary keeps ink on its cream fill). */
.woocommerce ul.products li.product .btn--ember,
.woocommerce ul.products li.product .btn--ember:hover,
.woocommerce ul.products li.product .btn--primary,
.woocommerce ul.products li.product .btn--primary:hover{color:#fff}
.btn--sm{padding:.7rem 1.3rem;font-size:.78rem}
.btn--full{width:100%}
.btn svg{width:1.05em;height:1.05em}
/* arrows inside buttons/links flip for RTL so they point toward reading flow (leftward) */
html[dir="rtl"] .btn .arrow,html[dir="rtl"] .linktext .arrow{transform:scaleX(-1)}
/* position:relative is REQUIRED: it is the containing block for the full-card
   click overlay `.product-card__title a::after{inset:0}` below. Without it the
   overlay escapes to the initial containing block (viewport-sized, anchored at
   document top) and steals clicks over the gallery/breadcrumb/buybox (PDP) and
   hero slider (home) — the long-hunted "hit-test" bug. Keep it. */
.product-card{position:relative;background:var(--white);border:1px solid var(--line);display:flex;flex-direction:column;height:100%;transition:border-color .25s var(--ease),transform .25s var(--ease),box-shadow .25s var(--ease)}
.product-card:hover,.product-card:focus-within{border-color:var(--ink);transform:translateY(-4px);box-shadow:0 16px 32px rgba(20,18,16,.10)}
.product-card__media{position:relative;background:var(--white);aspect-ratio:1/1;overflow:hidden}
/* Absolute-fill so tall/portrait product photos are letterboxed (contain), never
   clipped. height:100% is !important because WooCommerce's own stylesheet
   (.woocommerce ul.products li.product img, specificity 0-3-3) forces height:auto
   on archive cards, which let tall images grow to intrinsic height and overflow. */
.product-card__media img{position:absolute;inset:0;width:100%;height:100%!important;object-fit:contain!important;padding:1.4rem;transition:opacity .45s var(--ease),transform .5s var(--ease)}
.product-card:hover .product-card__media img{transform:scale(1.05)}
.product-card__tag{position:absolute;inset-inline-start:0;inset-block-start:0;background:var(--ember-cta);color:#fff;font-family:var(--font-head);font-weight:800;font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;padding:.4rem .8rem}
.product-card__body{padding:1.3rem 1.4rem 1.5rem;display:flex;flex-direction:column;flex:1;border-top:1px solid var(--line)}
.product-card__title{font-family:var(--font-head);font-weight:800;font-size:1.15rem;line-height:1.25;color:var(--ink)}
.product-card__title a{display:block}
.product-card__title a::after{content:"";position:absolute;inset:0} /* full-card click target = title link */
.product-card__desc{font-size:.95rem;color:var(--muted);margin-top:.45rem;flex:1}
.product-card__price{font-family:var(--font-head);font-weight:900;font-size:1.4rem;color:var(--ink);margin-top:.9rem;unicode-bidi:plaintext}
/* On dark sections (e.g. electric-grill feature-band) the dark price was invisible. */
.feature-band .product-card__price,.section--dark .product-card__price,.feature-band .product-card__price .amount,.section--dark .product-card__price .amount{color:#fff}
.product-card__price .from{font-size:.8rem;font-weight:600;color:var(--muted);margin-inline-end:.3rem}
.product-card__actions{margin-top:1rem;position:relative;z-index:2} /* keep button above the title overlay */
.price-note{font-size:.78rem;color:var(--muted);font-style:italic}
/* Demo-price tag appended to every WooCommerce price (pre-launch, hard rule §4.2). */
.price-demo{display:inline-block;font-family:var(--font-head);font-weight:700;font-size:.62rem;letter-spacing:.02em;text-transform:none;color:var(--ember-deep);background:var(--beige-fill);border-radius:3px;padding:.1em .45em;vertical-align:middle;margin-inline-start:.4em;white-space:nowrap;unicode-bidi:isolate}
/* Generic pages (About / Contact / FAQ / legal) — branded hero + readable content column */
.page-hero{background:var(--cream);padding:clamp(2rem,5vw,3.6rem) 0 clamp(1.4rem,3vw,2rem);border-bottom:1px solid var(--beige-fill)}
.page-hero__title{font-family:var(--font-head);font-weight:900;font-size:clamp(1.8rem,4.2vw,2.8rem);color:var(--ink);margin:.25rem 0 0;line-height:1.12}
.page-content{max-width:74ch;font-size:1.05rem;line-height:1.85;color:var(--ink)}
.page-content h2{font-family:var(--font-head);font-weight:800;font-size:1.5rem;color:var(--ink);margin:2.2rem 0 .6rem;line-height:1.25}
.page-content h2:first-child{margin-top:0}
.page-content h3{font-family:var(--font-head);font-weight:700;font-size:1.15rem;color:var(--ink);margin:1.6rem 0 .4rem}
.page-content p{margin:0 0 1rem}
.page-content ul,.page-content ol{margin:0 0 1.2rem;padding-inline-start:1.4rem}
.page-content li{margin-bottom:.4rem}
.page-content a{color:var(--ember-deep);text-decoration:underline;text-underline-offset:2px}
.page-content a:hover{color:var(--ember)}
.badge{display:inline-flex;align-items:center;gap:.45rem;font-family:var(--font-head);font-weight:700;font-size:.78rem;letter-spacing:.04em;text-transform:uppercase;background:var(--beige-fill);color:var(--ink);padding:.45rem .85rem;border:1px solid var(--line)}
.badge--ember{background:var(--ember);color:#fff;border-color:var(--ember)}
.trust-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.trust-item{display:flex;gap:1rem;align-items:flex-start}
.trust-item__icon{flex:0 0 auto;width:54px;height:54px;display:grid;place-items:center;background:var(--beige-fill);color:var(--ember)}
.trust-item__icon svg{width:28px;height:28px}
.trust-item__title{font-family:var(--font-head);font-size:1.05rem;font-weight:800;margin-bottom:.2rem;color:var(--ink)}
.trust-item p{font-size:.92rem;color:var(--muted);line-height:1.5}
/* the 3-up trust grid crushes to ~130px columns on phones — stack it */
@media (max-width:760px){.trust-row{grid-template-columns:1fr;gap:1.25rem;max-width:30rem;margin-inline:auto}}
.field{display:flex;flex-direction:column;gap:.4rem}
.field label{font-size:.85rem;font-weight:600;color:var(--ink)}
.input{background:var(--beige-fill);border:1px solid #d8ccc2;border-radius:var(--radius);padding:.95rem 1.1rem;font-size:1rem;color:var(--ink);width:100%;transition:border-color .2s var(--ease),background .2s var(--ease)}
.input::placeholder{color:#8c8178}
.input:focus{border-color:var(--ink);outline:none;background:#fff}
.text-center{text-align:center}
.text-ember{color:var(--ember)}
.mt-0{margin-top:0}.mt-4{margin-top:1rem}.mt-6{margin-top:2rem}
.mx-auto{margin-inline:auto}
.maxw-60{max-width:60ch}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.uppercase{text-transform:uppercase}
.divider{height:1px;background:var(--line);border:none;margin-block:var(--sp-6)}
.skip-link{position:absolute;inset-inline-start:0;top:0;transform:translateY(-120%);background:var(--ember);color:#fff;font-family:var(--font-head);font-weight:800;padding:.7rem 1.2rem;z-index:300;transition:transform .2s var(--ease)}
.skip-link:focus{transform:translateY(0)}
.importer-ribbon{background:var(--ember-cta);color:#fff;text-align:center;font-family:var(--font-head);font-weight:700;font-size:.8rem;letter-spacing:.02em;padding:.38rem 1rem;line-height:1.45}/* --ember-cta (#BD4E1C) = white text 4.92:1 AA; was --ember 4.30:1 — Yaniv-approved slight darken (2026-06-19) */
.importer-ribbon a{text-decoration:underline;text-underline-offset:3px;font-weight:800;white-space:nowrap}
.importer-ribbon a:hover{color:var(--charcoal)}
.site-header{position:sticky;top:0;z-index:100;background:var(--header-dark);color:#fff;box-shadow:0 1px 0 rgba(255,255,255,.06);overflow:visible}
.site-header__bar{position:relative;display:flex;align-items:center;gap:1.5rem;justify-content:space-between;min-height:58px;padding-block:.3rem}
/* Logo = oversized BLACK oval badge that breaks OUT below the dark bar onto the page
   below (the Bradley signature look). RTL → it sits on the RIGHT. The link reserves the
   badge width so nav never slides under it; the img is absolutely placed so roughly its
   bottom HALF overflows the slim bar onto the cream. z-index keeps it above the hero. */
.site-header__logo{position:relative;flex:0 0 auto;width:198px;height:58px;align-self:stretch;z-index:30}
/* Bigger badge, same 58px bar, same ~54% overflow → top goes negative so it scales about
   the bar's bottom edge (grows down onto the cream AND up toward the ribbon equally). */
.site-header__logo img{position:absolute;top:-10px;inset-inline-start:0;height:148px;width:auto;display:block}
.main-nav>ul{display:flex;align-items:center;gap:.35rem}
.main-nav a,.main-nav .menu-trigger{display:inline-flex;align-items:center;gap:.35rem;font-family:var(--font-head);font-weight:700;text-transform:uppercase;font-size:.84rem;letter-spacing:.05em;color:#f3efeb;padding:.65rem .8rem;position:relative;background:none}
.main-nav a:hover,.main-nav .menu-trigger:hover,.main-nav a[aria-current="page"]{color:var(--ember-on-dark)}
.main-nav a[aria-current="page"]::before{content:"";position:absolute;inset-inline:.8rem;bottom:.4rem;height:2px;background:var(--ember-on-dark)}
.main-nav .has-menu>.menu-trigger::after{content:"";width:0;height:0;border-inline:4px solid transparent;border-top:5px solid currentColor;margin-inline-start:.25rem;opacity:.7;transition:transform .2s var(--ease)}
.main-nav .has-menu{position:relative}
.dropdown{position:absolute;inset-inline-start:0;top:100%;min-width:230px;background:#fff;color:var(--ink);border-top:3px solid var(--ember);box-shadow:0 18px 40px rgba(0,0,0,.18);padding:.5rem 0;opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .2s var(--ease),visibility .2s var(--ease),transform .2s var(--ease);z-index:20}
.main-nav .has-menu:hover .dropdown,.main-nav .has-menu:focus-within .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown a{display:block;color:var(--ink);font-weight:600;font-size:.85rem;letter-spacing:.02em;text-transform:none;padding:.55rem 1.3rem}
.dropdown a:hover{background:var(--beige-fill);color:var(--ember)}
.header-actions{display:flex;align-items:center;gap:.4rem}
.icon-btn{display:grid;place-items:center;width:44px;height:44px;color:#fff;position:relative;transition:color .2s var(--ease)}
.icon-btn:hover{color:var(--ember-on-dark)}
.icon-btn svg{width:23px;height:23px}
.cart-count{position:absolute;top:5px;inset-inline-end:5px;background:var(--ember);color:#fff;font-size:.62rem;font-weight:800;font-family:var(--font-head);min-width:17px;height:17px;display:grid;place-items:center;border-radius:50%;padding:0 3px;line-height:1}
.nav-toggle{display:none}
.nav-close{display:none}
.search-bar{display:none;background:var(--header-dark);border-top:1px solid rgba(255,255,255,.08);padding:.85rem 0}
.search-bar.open{display:block}
.search-bar__inner{display:flex;gap:.5rem;max-width:680px;margin-inline:auto}
.search-bar form{display:flex;gap:.5rem;flex:1}
.search-bar input{flex:1}
@media (max-width:1080px){
  .nav-toggle{display:grid;place-items:center;width:44px;height:44px;color:#fff;order:-1}
  .nav-toggle svg{width:26px;height:26px}
  /* Logo stays centered on mobile; scaled down but still breaks out below the bar. */
  .site-header__bar{min-height:58px}
  /* Mobile: logo sits FULLY inside the bar, vertically centered, NO overflow. */
  .site-header__logo{width:auto;height:auto;margin-inline:auto;align-self:center;z-index:30}
  .site-header__logo img{position:static;height:42px;width:auto;top:auto;inset-inline-start:auto}
  .main-nav{position:fixed;inset:0 0 0 auto;width:min(86vw,360px);background:var(--header-dark);transform:translateX(100%);transition:transform .3s var(--ease);z-index:200;overflow-y:auto;padding:0 0 3rem;box-shadow:-6px 0 40px rgba(0,0,0,.4)}
  .main-nav.open{transform:translateX(0)}
  /* The header creates its own stacking context (sticky + z-index), which traps the
     drawer BELOW the backdrop. While open, lift the whole header above the backdrop. */
  body.nav-open .site-header{z-index:210}
  /* Drawer top bar with a close button */
  .nav-close{display:flex;align-items:center;justify-content:center;width:42px;height:42px;margin:.9rem .9rem .4rem auto;color:#fff;font-size:1.5rem;line-height:1;border:1px solid rgba(255,255,255,.18);border-radius:4px}
  .nav-close:hover{background:rgba(255,255,255,.08);color:var(--ember-on-dark)}
  .main-nav>ul{flex-direction:column;align-items:stretch;gap:0}
  .main-nav>ul>li{border-bottom:1px solid rgba(255,255,255,.07)}
  .main-nav a,.main-nav .menu-trigger{padding:1rem 1.6rem;font-size:.95rem;justify-content:space-between;width:100%}
  .main-nav .has-menu>.menu-trigger::after{transition:transform .2s var(--ease)}
  .main-nav .has-menu.open-sub>.menu-trigger::after{transform:rotate(180deg)}
  .dropdown{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;background:rgba(255,255,255,.04);border-top:none;padding:0;max-height:0;overflow:hidden;transition:max-height .28s var(--ease)}
  .main-nav .has-menu.open-sub .dropdown{max-height:420px;padding:0 0 .5rem}
  .dropdown a{color:var(--link);padding:.6rem 2.6rem}
  .dropdown a:hover{background:rgba(255,255,255,.06);color:#fff}
  .nav-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:150;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s}
  .nav-backdrop.open{opacity:1;visibility:visible}
}
.site-footer{background:var(--charcoal);color:var(--link)}
.footer-trust{border-bottom:1px solid rgba(255,255,255,.08);padding-block:1.75rem}
.footer-trust__row{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem 2.2rem;align-items:center}
.footer-trust__item{display:flex;align-items:center;gap:.6rem;font-family:var(--font-head);font-weight:700;font-size:.85rem;color:#f3ebe3;letter-spacing:.02em}
.footer-trust__item svg{width:24px;height:24px;color:var(--ember-on-dark);flex:0 0 auto}
.footer-main{padding-block:clamp(2.5rem,5vw,4rem)}
.footer-grid{display:grid;grid-template-columns:1.4fr repeat(4,1fr);gap:2rem}
.footer-brand img{height:48px;margin-bottom:1.1rem}
.footer-brand p{font-size:.9rem;line-height:1.7;color:var(--link);max-width:34ch}
.footer-brand .contact-line{display:flex;align-items:center;gap:.5rem;margin-top:.8rem;font-size:.9rem;color:#f3ebe3}
.footer-brand .contact-line svg{width:17px;height:17px;color:var(--ember-on-dark);flex:0 0 auto}
.footer-brand a.contact-line:hover{color:var(--ember-on-dark)}
.footer-col h2{font-family:var(--font-head);font-weight:800;text-transform:uppercase;letter-spacing:.08em;font-size:.82rem;color:#fff;margin-bottom:1rem}
.footer-col ul li{margin-bottom:.6rem}
.footer-col a{font-size:.9rem;color:var(--link)}
.footer-col a:hover{color:var(--ember-on-dark)}
.footer-social{display:flex;gap:.6rem;margin-top:1.2rem}
.footer-social a{width:40px;height:40px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.18);color:#f3ebe3;transition:background .2s var(--ease),border-color .2s var(--ease),color .2s var(--ease)}
.footer-social a:hover{background:var(--ember);border-color:var(--ember);color:#fff}
.footer-social svg{width:19px;height:19px}
.footer-pay{display:flex;gap:.45rem;margin-top:1rem;flex-wrap:wrap;align-items:center}
.footer-pay .pay-ico{display:inline-flex;line-height:0}
.footer-pay .pay-ico svg{width:44px;height:auto;display:block;border:1px solid rgba(255,255,255,.16);border-radius:4px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-block:1.3rem}
.footer-bottom__inner{display:flex;flex-wrap:wrap;justify-content:space-between;gap:.8rem;align-items:center;font-size:.82rem;color:var(--link-dim)}
.footer-legal{display:flex;flex-wrap:wrap;gap:.4rem 1.3rem}
.footer-legal a{color:var(--link)}
.footer-legal a:hover{color:var(--ember-on-dark)}
@media (max-width:900px){.footer-grid{grid-template-columns:repeat(2,1fr)}.footer-brand{grid-column:1/-1}}
@media (max-width:560px){.footer-grid{grid-template-columns:1fr}}

/* ============================================================
   HOMEPAGE-SPECIFIC
   ============================================================ */
.hero{position:relative;background:var(--cream);overflow:hidden}
.hero__grid{display:grid;grid-template-columns:1fr 1.15fr;align-items:stretch;min-height:min(640px,78vh)}
.hero__copy{display:flex;flex-direction:column;justify-content:center;padding:clamp(2rem,5vw,4.5rem)}
.hero__copy .eyebrow{margin-bottom:1rem}
.hero__title{font-size:clamp(2.6rem,5.2vw,4.4rem);font-weight:900;text-transform:uppercase;line-height:1.04;color:var(--ink)}
.hero__title .em{color:var(--ember);display:block}
.hero__sub{margin-top:1.3rem;font-size:1.15rem;color:var(--ink-soft);max-width:46ch;line-height:1.65}
.hero__ctas{display:flex;gap:.9rem;margin-top:2rem;flex-wrap:wrap}
.hero__fine{margin-top:1.4rem;font-size:.78rem;color:var(--muted);max-width:48ch;line-height:1.5}
.hero__media{position:relative;background:#2a2522}
.hero__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero__media::after{content:"";position:absolute;inset:0;background:linear-gradient(-90deg,rgba(249,246,243,.35),transparent 35%)}
.govx-badge{display:inline-flex;align-items:center;gap:.5rem;margin-top:1.4rem;background:#fff;border:1px solid var(--line);padding:.55rem .9rem;font-size:.78rem;font-weight:700;font-family:var(--font-head);line-height:1.3;max-width:fit-content}
.govx-badge svg{width:18px;height:18px;color:var(--ember);flex:0 0 auto}
@media (max-width:900px){
  .hero__grid{grid-template-columns:1fr}
  .hero__media{min-height:300px;order:-1}
  .hero__media img{position:relative}
  .hero__media::after{background:linear-gradient(0deg,rgba(20,18,16,.35),transparent 55%)}
}
/* ---- hero slider (crossfade grid-stack; RTL-safe, no translate math) ---- */
.hero__viewport{position:relative;overflow:hidden}
.hero__track{display:grid}
.hero__slide{grid-area:1/1;opacity:0;visibility:hidden;transition:opacity .7s var(--ease);pointer-events:none}
.hero__slide.is-active{opacity:1;visibility:visible;pointer-events:auto}
@media (prefers-reduced-motion:reduce){.hero__slide{transition:none}}
.hero__controls{position:absolute;z-index:5;inset-inline:0;bottom:clamp(.85rem,2vw,1.4rem);display:flex;align-items:center;justify-content:center;gap:.9rem;pointer-events:none}
.hero__controls > *{pointer-events:auto}
.hero__arrow{width:44px;height:44px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.92);color:var(--ink);box-shadow:0 6px 18px rgba(20,18,16,.22);transition:background .2s var(--ease),color .2s var(--ease),transform .12s var(--ease)}
.hero__arrow:hover{background:var(--ember);color:#fff}
.hero__arrow:active{transform:translateY(1px)}
.hero__arrow svg{width:20px;height:20px}
.hero__dots{display:flex;align-items:center;gap:.5rem}
/* 24px+ tap target (WCAG 2.5.8); visual dot drawn via ::before so the look is unchanged. */
.hero__dot{min-width:24px;height:24px;padding:0;border:none;background:none;display:grid;place-items:center;border-radius:999px;cursor:pointer}
.hero__dot::before{content:"";width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.65);border:1.5px solid rgba(20,18,16,.5);box-shadow:0 1px 4px rgba(0,0,0,.3);transition:width .25s var(--ease),background .2s var(--ease),border-color .2s var(--ease)}
.hero__dot.is-active::before{width:28px;border-radius:6px;background:var(--ember);border-color:var(--ember)}
.hero__promo{background:var(--cream);display:flex;justify-content:center;padding:0 1rem clamp(1.3rem,3vw,2rem)}
.hero__promo .govx-badge{margin-top:0}
@media (max-width:900px){.hero--slider .hero__copy{padding-bottom:clamp(3.4rem,13vw,4.2rem)}} /* clear the controls over copy on mobile */
.grid--4{grid-template-columns:repeat(4,1fr)}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--5{grid-template-columns:repeat(5,1fr)}
@media (max-width:1080px){.grid--4,.grid--5{grid-template-columns:repeat(3,1fr)}}
@media (max-width:760px){.grid--3,.grid--4,.grid--5{grid-template-columns:repeat(2,1fr)}}
@media (max-width:440px){.grid--3,.grid--4,.grid--5{grid-template-columns:1fr}}
.feature-band{display:grid;grid-template-columns:1.05fr 1fr;align-items:center;background:var(--charcoal);color:var(--cream);overflow:hidden}
.feature-band--reverse{grid-template-columns:1fr 1.05fr}
.feature-band__media{position:relative;min-height:clamp(340px,42vw,540px)}
.feature-band__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.feature-band__copy{padding:clamp(2.2rem,5vw,4.5rem)}
.feature-band__copy h2{color:#fff}
.feature-band__copy p{color:#e2d8cf;margin-top:1.1rem;line-height:1.8;max-width:48ch}
.feature-band__copy .eyebrow{margin-bottom:.9rem}
@media (max-width:860px){.feature-band,.feature-band--reverse{grid-template-columns:1fr}.feature-band__media{min-height:260px;order:-1}}
.secrets-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1.25rem,2.5vw,2rem)}
.secret-card{background:#fff;border:1px solid var(--line);overflow:hidden;transition:border-color .25s var(--ease),box-shadow .25s var(--ease)}
.secret-card:hover{border-color:var(--ink);box-shadow:0 14px 30px rgba(20,18,16,.08)}
.secret-card__media{aspect-ratio:4/3;overflow:hidden}
.secret-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.secret-card:hover .secret-card__media img{transform:scale(1.05)}
.secret-card__body{padding:1.6rem}
.secret-num{font-family:var(--font-head);font-weight:900;font-size:1rem;color:var(--ember);letter-spacing:.05em}
.secret-card h3{margin-top:.4rem;font-size:1.25rem}
.secret-card p{margin-top:.6rem;color:var(--muted);font-size:.95rem;line-height:1.6}
.linktext{display:inline-flex;align-items:center;gap:.4rem;margin-top:1rem;font-family:var(--font-head);font-weight:800;font-size:.85rem;text-transform:uppercase;letter-spacing:.05em;color:var(--ink)}
.linktext:hover{color:var(--ember)}
.linktext .arrow{width:15px;height:15px;transition:transform .2s var(--ease)}
.linktext:hover .arrow{transform:translateX(-4px) scaleX(-1)}
@media (max-width:820px){.secrets-grid{grid-template-columns:1fr}}
/* position:relative REQUIRED — containing block for `.recipe-card h3 a::after{inset:0}`
   (same escaping-overlay class of bug as .product-card above). */
.recipe-card{position:relative;background:#fff;border:1px solid var(--line);overflow:hidden;display:flex;flex-direction:column;transition:transform .25s var(--ease),border-color .25s var(--ease),box-shadow .25s var(--ease)}
.recipe-card:hover,.recipe-card:focus-within{transform:translateY(-4px);border-color:var(--ink);box-shadow:0 16px 32px rgba(20,18,16,.10)}
.recipe-card__media{aspect-ratio:3/2;overflow:hidden}
.recipe-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.recipe-card:hover .recipe-card__media img{transform:scale(1.06)}
.recipe-card__body{padding:1.3rem 1.4rem 1.5rem;position:relative}
.recipe-card__cat{font-family:var(--font-head);font-weight:800;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--ember)}
.recipe-card h3{font-size:1.2rem;margin-top:.4rem}
.recipe-card h3 a::after{content:"";position:absolute;inset:0}
.recipe-card p{color:var(--muted);font-size:.92rem;margin-top:.5rem;line-height:1.55}
.club-band{position:relative;color:#fff;text-align:center;min-height:clamp(380px,46vw,520px);display:grid;place-items:center;overflow:hidden}
.club-band__bg{position:absolute;inset:0}
.club-band__bg img{width:100%;height:100%;object-fit:cover}
.club-band__bg::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(20,18,16,.6),rgba(20,18,16,.82))}
.club-band__inner{position:relative;z-index:2;padding:2rem;max-width:660px}
.club-band h2{color:#fff;font-size:clamp(2rem,4.5vw,3.2rem)}
.club-band p{color:#ece3da;margin-top:1.1rem;font-size:1.1rem;line-height:1.7}
.newsletter{background:var(--cream)}
.newsletter__inner{max-width:760px;margin-inline:auto;text-align:center}
.newsletter__tags{display:flex;justify-content:center;flex-wrap:wrap;gap:.5rem;margin-top:1rem}
.newsletter__tags span{font-family:var(--font-head);font-weight:700;font-size:.78rem;color:var(--ember);text-transform:uppercase;letter-spacing:.06em}
.newsletter__tags span:not(:last-child)::after{content:"\2022";margin-inline-start:.5rem;color:var(--beige)}
.newsletter__form{display:grid;grid-template-columns:1fr 1fr;gap:.8rem;margin-top:2rem;text-align:right}
.newsletter__form .field--wide{grid-column:1/-1}
.newsletter__consent{grid-column:1/-1;font-size:.78rem;color:var(--muted);line-height:1.5;text-align:start}
@media (max-width:560px){.newsletter__form{grid-template-columns:1fr}}
.section-cta{display:flex;justify-content:center;margin-top:clamp(2rem,4vw,3rem)}
.social-strip{display:grid;grid-template-columns:repeat(6,1fr);gap:.5rem}
.social-strip a{position:relative;aspect-ratio:1/1;overflow:hidden;display:block}
.social-strip img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
.social-strip a:hover img{transform:scale(1.08)}
.social-strip a::after{content:"";position:absolute;inset:0;background:rgba(206,92,47,0);transition:background .25s}
.social-strip a:hover::after,.social-strip a:focus-visible::after{background:rgba(206,92,47,.25)}
@media (max-width:760px){.social-strip{grid-template-columns:repeat(3,1fr)}}

/* ============================================================
   WORDPRESS / WOOCOMMERCE INTEGRATION (bradley-il theme overrides)
   ============================================================ */
:root{--header-h:72px}
.admin-bar .site-header{top:32px}
@media screen and (max-width:782px){.admin-bar .site-header{top:46px}}
/* Logo: white-outline oval badge, enlarged to match bradleysmoker.com */
.site-header__logo{display:block;line-height:0}
.site-header__logo img{height:100px;width:auto}
@media (max-width:1080px){.site-header__logo img{height:62px}}
.footer-brand img{height:72px;margin-bottom:1.1rem} /* logo-white.png white-outline badge on the dark footer */

/* ============================================================
   STOREFRONT — SHOP ARCHIVE · PDP · ABOUT · FAQ
   (ported from design-prototypes/{shop,pdp-smoker,about,faq}.html;
   unified on the smoker-PDP design so one single-product template
   serves both simple + variable products. Dark newsletter is scoped
   to .newsletter--dark so it never clobbers the cream homepage one.)
   ============================================================ */
:root{--muted-on-dark:#cdbfb3;--stock:#1f6e3f}

/* ---- Breadcrumb (canonical; used on shop, PDP, about, faq) ---- */
.breadcrumb{padding-block:1.1rem;border-bottom:1px solid var(--line);background:var(--cream)}
.breadcrumb .container,.breadcrumb__inner{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem}
.breadcrumb ol{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;font-size:.88rem;color:var(--muted);font-family:var(--font-head);font-weight:600;list-style:none;margin:0;padding:0}
.breadcrumb li{display:flex;align-items:center;gap:.5rem}
/* Single RTL chevron between crumbs (points to the next, deeper crumb). */
.breadcrumb li:not(:last-child)::after{content:"\2039";color:var(--muted);font-size:1.05rem;font-weight:800}
.breadcrumb a{color:var(--ink-soft);font-weight:600;text-decoration:underline;text-decoration-color:transparent;text-underline-offset:3px;transition:color .18s var(--ease),text-decoration-color .18s var(--ease)}
.breadcrumb a:hover{color:var(--ember);text-decoration-color:currentColor}
.breadcrumb [aria-current],.breadcrumb .current,.breadcrumb li:last-child{color:var(--ink);font-weight:700}
/* WooCommerce breadcrumb inherits the .breadcrumb a affordance (its <ol>/<li> live inside .breadcrumb). */
.woocommerce-breadcrumb{font-family:var(--font-head);font-weight:600;font-size:.88rem;color:var(--muted)}

/* ---- Category hero ---- */
.cat-hero{position:relative;background:var(--charcoal);overflow:hidden}
.cat-hero__media{position:relative;height:clamp(300px,40vw,520px)}
.cat-hero__media img{width:100%;height:100%;object-fit:cover}
.cat-hero__overlay{position:absolute;inset:0;background:linear-gradient(270deg,rgba(20,18,16,.92) 0%,rgba(20,18,16,.62) 45%,rgba(20,18,16,.2) 100%)}
.cat-hero__content{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center}
.cat-hero__content .container{display:flex;flex-direction:column;gap:1rem;align-items:flex-start}
.cat-hero .eyebrow{color:var(--beige)}
.cat-hero h1{color:#fff;max-width:18ch}
.cat-hero p{color:#f1e7dd;max-width:50ch;font-size:1.1rem;line-height:1.65}
.cat-hero__cta{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:.5rem}
.warranty-badge{position:absolute;inset-block-end:1.5rem;inset-inline-end:clamp(1rem,4vw,2.5rem);display:flex;align-items:center;gap:.65rem;background:rgba(20,18,16,.78);border:1px solid rgba(255,255,255,.25);color:#efe7df;padding:.7rem 1rem;font-family:var(--font-head);font-weight:700;font-size:.82rem;max-width:300px;line-height:1.45}
.warranty-badge svg{width:26px;height:26px;color:var(--ember-on-dark);flex:0 0 auto}
/* Hide through the tablet range too — below the desktop-nav breakpoint the cat-hero
   content is bottom-anchored and the absolute badge collided with the CTA buttons. */
@media (max-width:1080px){.warranty-badge{display:none}}
/* Category hero — mobile: the image becomes a full-bleed background layer and the
   text flows in-document with a min-height, so the hero GROWS to fit tall content
   instead of overflowing a fixed-height box and getting clipped at the top by
   .cat-hero{overflow:hidden}. Anchor content to the bottom over a stronger vertical
   gradient (the side gradient left text over the bright image), smaller heading. */
@media (max-width:760px){
  .cat-hero__media{position:absolute;inset:0;height:auto}
  .cat-hero__overlay{background:linear-gradient(0deg,rgba(20,18,16,.95) 0%,rgba(20,18,16,.72) 48%,rgba(20,18,16,.34) 100%)}
  .cat-hero__content{position:relative;min-height:clamp(240px,54vw,320px);justify-content:flex-end;padding-block:1.4rem}
  .cat-hero__content .container{gap:.55rem}
  .cat-hero h1{font-size:clamp(1.9rem,8.5vw,2.6rem);max-width:none}
  .cat-hero p{font-size:.95rem;line-height:1.5;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
  .cat-hero__cta{margin-top:.35rem}
  .cat-hero__cta .btn{padding:.85rem 1.35rem;font-size:.82rem}
}

/* ---- Collection toolbar (result count + sort) ---- */
/* Tight top: the breadcrumb already separates the hero from the grid — the section's
   own top padding + the head's top padding stacked into a large empty gap. */
.collection-head{padding-block:0}
#products{padding-top:clamp(1.5rem,3vw,2.25rem)}
.collection-head h1,.collection-head h2{margin-block:.4rem}
.toolbar{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-top:1.5rem;padding-block:1rem;border-block:1px solid var(--line)}
.toolbar__right{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;margin-inline-start:auto}
.result-count{font-size:.9rem;color:var(--muted)}
.sort-wrap{display:flex;align-items:center;gap:.55rem}
.sort-wrap label{font-family:var(--font-head);font-weight:700;font-size:.86rem;color:var(--ink-soft);white-space:nowrap}
.woocommerce-ordering select,.sort-select{background:var(--beige-fill);border:1px solid var(--line);padding:.6rem 2.2rem .6rem 1rem;font-family:var(--font-head);font-weight:600;font-size:.88rem;color:var(--ink);appearance:none;cursor:pointer;direction:rtl;text-align:right;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231E1E1E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:left 1rem center}
.woocommerce-ordering select:focus,.sort-select:focus{border-color:var(--ink);outline:none}
.woocommerce-ordering{margin:0}

/* ---- Product grid (shop archive + related) ---- */
.products-grid,ul.products{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2vw,1.75rem);margin-top:clamp(1.75rem,4vw,2.5rem);list-style:none;padding:0}
ul.products li.product{margin:0;width:auto;float:none}
@media (max-width:980px){.products-grid,ul.products{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.products-grid,ul.products{grid-template-columns:1fr}}
/* hover image-swap + stock/rating chips on cards */
.product-card__media .img-alt{opacity:0}
.product-card:hover .product-card__media .img-base,.product-card:focus-within .product-card__media .img-base{opacity:0}
.product-card:hover .product-card__media .img-alt,.product-card:focus-within .product-card__media .img-alt{opacity:1}
.product-card__rating{display:flex;align-items:center;gap:.4rem;margin-top:.55rem;font-size:.84rem;color:var(--muted)}
.product-card__rating .stars{color:var(--ember);letter-spacing:.05em;font-size:.9rem;direction:ltr;unicode-bidi:isolate}
.product-card__badge-stock{position:absolute;inset-inline-end:0;inset-block-start:0;background:var(--ink);color:#fff;font-family:var(--font-head);font-weight:700;font-size:.68rem;letter-spacing:0;padding:.4rem .7rem;z-index:2}
.product-card__price .currency{font-size:.7em;margin-inline-end:.05em}

/* ---- Pagination ---- */
.pagination,.woocommerce-pagination ul{display:flex;align-items:center;justify-content:center;gap:.4rem;margin-top:clamp(2.5rem,5vw,3.5rem);list-style:none;padding:0;border:none}
.woocommerce-pagination li{margin:0;border:none}
.pagination a,.pagination span,.woocommerce-pagination a,.woocommerce-pagination span{font-family:var(--font-head);font-weight:700;font-size:.92rem;min-width:46px;height:46px;display:grid;place-items:center;border:1px solid var(--line);background:#fff;color:var(--ink-soft);transition:all .2s var(--ease);padding-inline:.6rem;text-decoration:none}
.pagination a:hover,.woocommerce-pagination a:hover{border-color:var(--ink);color:var(--ink)}
.pagination [aria-current],.woocommerce-pagination .current{background:var(--ink);color:var(--cream);border-color:var(--ink)}

/* ---- Value-prop / trust band on archives ---- */
.secret{background:var(--cream)}
.secret__inner{max-width:760px;margin-inline:auto;text-align:center}
.secret p.lead{margin-top:1rem}
.secret__list{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:2.5rem;text-align:start}
.secret__item{background:#fff;border:1px solid var(--line);border-top:3px solid var(--ember);padding:1.5rem 1.4rem}
.secret__item .num{font-family:var(--font-head);font-weight:900;font-size:1.6rem;color:var(--ember);line-height:1}
.secret__item h4{font-family:var(--font-head);font-weight:800;font-size:1.05rem;margin-block:.7rem .4rem}
.secret__item p{font-size:.92rem;color:var(--muted);line-height:1.55}
@media (max-width:740px){.secret__list{grid-template-columns:1fr}}
.trust-band .trust-row{margin-top:0}
@media (max-width:760px){.trust-band .trust-row{grid-template-columns:1fr;gap:1.75rem}}

/* ============================================================
   PDP — single product (unified design)
   ============================================================ */
.product{padding-block:clamp(2rem,4vw,3.5rem)}
.product__layout{display:grid;grid-template-columns:1.15fr 1fr;gap:clamp(1.75rem,4vw,3.5rem);align-items:start}
/* gallery (RTL: thumbs right, main left) */
/* z-index:1 here is now defense-in-depth. The ACTUAL cause of related-products links
   stealing clicks over the gallery/thumbs was NOT a "Chrome sticky hit-test bug" — it
   was `.product-card__title a::after{inset:0}` escaping its card (the card lacked
   position:relative) to the viewport-sized initial containing block and overlaying the
   top of the page. Fixed at the source by `.product-card{position:relative}` (see ~line
   105). Keeping z-index:1 is harmless and lifts the gallery onto its own layer. Stays
   below the sticky header (z-index:100); inert on mobile where .gallery is static. */
.gallery{display:grid;grid-template-columns:88px 1fr;gap:1rem;position:sticky;top:calc(var(--header-h) + 1rem);z-index:1}
.gallery__thumbs{display:flex;flex-direction:column;gap:.7rem}
.gallery__thumb{border:1px solid var(--line);background:#fff;aspect-ratio:1/1;padding:.45rem;overflow:hidden;transition:border-color .2s var(--ease);cursor:pointer;display:grid;place-items:center}
.gallery__thumb img{width:100%;height:100%;object-fit:contain}
.gallery__thumb:hover{border-color:var(--beige)}
.gallery__thumb.is-active{border-color:var(--ink);border-width:2px}
.gallery__main{position:relative;border:1px solid var(--line);background:#fff;aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;padding:clamp(1rem,3vw,2.4rem);overflow:hidden}
.gallery__main img{width:100%;height:100%;object-fit:contain;transition:opacity .25s var(--ease)}
.gallery__flag{position:absolute;inset-block-start:0;inset-inline-start:0;background:var(--ember);color:#fff;font-family:var(--font-head);font-weight:800;font-size:.72rem;letter-spacing:.02em;padding:.45rem .9rem;z-index:2}
.gallery__counter{position:absolute;inset-block-end:.9rem;inset-inline-end:1rem;background:rgba(20,18,16,.82);color:#fff;font-family:var(--font-head);font-weight:700;font-size:.75rem;padding:.3rem .7rem;letter-spacing:.03em;direction:ltr;unicode-bidi:isolate}
/* buy box */
.buybox__eyebrow{display:flex;align-items:center;gap:.9rem;flex-wrap:wrap;margin-bottom:.75rem}
.buybox__back{font-size:.82rem;font-weight:600;color:var(--muted)}
.buybox__back:hover{color:var(--ember)}
.buybox h1{font-size:clamp(1.8rem,3.6vw,2.7rem);line-height:1.12;margin-bottom:.7rem}
.buybox__tagline{font-size:1.1rem;color:var(--ink-soft);font-weight:600;line-height:1.55;margin-bottom:1.2rem}
.priceblock{border-block:1px solid var(--line);padding-block:1.3rem;margin-bottom:1.3rem}
.priceblock__row{display:flex;align-items:baseline;gap:.8rem;flex-wrap:wrap}
.priceblock .price,.priceblock .amount{font-family:var(--font-head);font-weight:900;font-size:2.3rem;color:var(--ink);line-height:1;unicode-bidi:plaintext}
.priceblock del .amount,.priceblock del{font-size:1.2rem;font-weight:700;color:var(--muted);text-decoration:line-through;opacity:.8}
.priceblock .price-demo{font-size:.62rem;vertical-align:middle}
.priceblock .price-note{margin-top:.55rem;display:block}
.pay-line{display:flex;align-items:center;gap:.55rem;margin-top:.85rem;font-size:.9rem;color:var(--ink-soft)}
.pay-line svg{width:18px;height:18px;color:var(--ember);flex:0 0 auto}
.pay-line strong{font-weight:800}
.stock-line{display:inline-flex;align-items:center;gap:.5rem;font-family:var(--font-head);font-weight:700;font-size:.9rem;color:var(--stock);margin-bottom:1.2rem}
.stock-line .dot{width:9px;height:9px;border-radius:50%;background:#2c9c57;box-shadow:0 0 0 4px rgba(44,156,87,.18);flex:0 0 auto}
.stock-line.is-out{color:var(--muted)}
.stock-line.is-out .dot{background:var(--muted);box-shadow:0 0 0 4px rgba(97,90,84,.15)}
/* purchase row — style WooCommerce's native add-to-cart form to match the prototype */
.buybox form.cart{display:flex;gap:.55rem;align-items:stretch;flex-wrap:wrap;margin-bottom:1.1rem}
/* Quantity stepper — segmented [−][n][+], unified for single + grouped products.
   (Was display:grid blocks that stacked vertically inside the grouped rows.) */
.qty-btn{flex:0 0 auto;width:46px;min-height:48px;display:grid;place-items:center;font-family:var(--font-head);font-weight:800;font-size:1.3rem;line-height:1;color:var(--ink);background:#fff;border:2px solid var(--ink);transition:background .15s var(--ease),color .15s var(--ease)}
.qty-btn:hover{background:var(--ink);color:#fff}
.buybox form.cart .quantity,.group_table .quantity{display:inline-flex;align-items:stretch;border:2px solid var(--ink);background:#fff;margin:0}
.buybox form.cart .quantity input.qty,.group_table .quantity input.qty{width:56px;min-height:48px;text-align:center;border:none;font-family:var(--font-head);font-weight:800;font-size:1.05rem;color:var(--ink);background:#fff;-moz-appearance:textfield;direction:ltr;padding:0}
.quantity input.qty::-webkit-outer-spin-button,.quantity input.qty::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
/* Variable products (bisquette pack size): the qty stepper + add-to-cart live nested
   in .woocommerce-variation-add-to-cart, which (unlike the simple-product form.cart row)
   wasn't flexed — so − / qty / + stacked vertically. Lay it out horizontally to match. */
.buybox form.cart .single_variation_wrap{flex:1 0 100%}
.buybox .woocommerce-variation-add-to-cart{display:flex;gap:.55rem;align-items:stretch;flex-wrap:wrap}
/* Grouped product (starter kit) — clean rows + horizontal qty steppers */
.group_table{width:100%;border-collapse:collapse;margin-bottom:1.3rem}
.group_table tr{border-bottom:1px solid var(--line)}
.group_table td{padding:1rem .5rem;vertical-align:middle}
.woocommerce-grouped-product-list-item__quantity{display:flex;align-items:stretch;gap:.4rem;justify-content:flex-start;white-space:nowrap;width:1%}
.woocommerce-grouped-product-list-item__label{font-family:var(--font-head);font-weight:700;line-height:1.45}
.woocommerce-grouped-product-list-item__label a{color:var(--ink)}
.woocommerce-grouped-product-list-item__label a:hover{color:var(--ember)}
.woocommerce-grouped-product-list-item__price{font-family:var(--font-head);font-weight:800;color:var(--ink);white-space:nowrap;text-align:start;font-size:1.05rem}
.grouped_form button.single_add_to_cart_button{width:100%;flex:1 0 100%}
.buybox form.cart button.single_add_to_cart_button,.buybox .btn--buynow{flex:1;min-width:220px;display:inline-flex;align-items:center;justify-content:center;gap:.55rem;font-family:var(--font-head);font-weight:800;text-transform:uppercase;letter-spacing:.06em;font-size:.92rem;line-height:1;padding:1.05rem 2.1rem;border:2px solid var(--ember);background:var(--ember);color:#fff;transition:background .22s var(--ease),border-color .22s var(--ease),color .22s var(--ease);cursor:pointer}
.buybox form.cart button.single_add_to_cart_button:hover{background:var(--ember-deep);border-color:var(--ember-deep);color:#fff}
/* variation selectors (variable products: bisquette pack size) */
.buybox .variations{width:100%;border-collapse:collapse;margin-bottom:1rem}
.buybox .variations th,.buybox .variations td{padding:.4rem 0;text-align:start;vertical-align:middle}
.buybox .variations th{font-family:var(--font-head);font-weight:700;font-size:.9rem;color:var(--ink);padding-inline-end:1rem;white-space:nowrap}
.buybox .variations select{width:100%;background:var(--beige-fill);border:1px solid #d8ccc2;padding:.7rem 1rem;font-size:1rem;color:var(--ink);appearance:none}
.buybox .reset_variations{font-size:.82rem;color:var(--muted);margin-inline-start:.5rem}
.buybox .woocommerce-variation-price{font-family:var(--font-head);font-weight:900;font-size:1.8rem;color:var(--ink);margin-bottom:.8rem;unicode-bidi:plaintext}
.assurance{display:flex;flex-direction:column;gap:.65rem;background:var(--cream);border:1px solid var(--line);padding:1.2rem 1.3rem;margin-top:1.4rem;max-width:62ch;margin-inline:auto}
.assurance__item{display:flex;gap:.8rem;align-items:flex-start;font-size:.92rem;color:var(--ink-soft);line-height:1.5}
.assurance__item svg{width:22px;height:22px;color:var(--ember);flex:0 0 auto;margin-top:2px}
.assurance__item strong{font-family:var(--font-head);font-weight:800;color:var(--ink);display:block;margin-bottom:.1rem}
.highlights{margin-top:1.6rem}
.highlights h2{font-family:var(--font-head);font-weight:800;font-size:1rem;letter-spacing:.06em;color:var(--ink);margin-bottom:.9rem}
.highlights ul{display:grid;grid-template-columns:1fr 1fr;gap:.7rem 1.4rem;list-style:none}
.highlights li{display:flex;gap:.6rem;align-items:flex-start;font-size:.95rem;color:var(--ink-soft);line-height:1.45}
.highlights li svg{width:19px;height:19px;color:var(--ember);flex:0 0 auto;margin-top:3px}
/* accordion (description / specs / warranty) */
.accordion{border-top:1px solid var(--line)}
.acc__item{border-bottom:1px solid var(--line)}
.acc__head{width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;text-align:start;padding:1.4rem 0;font-family:var(--font-head);font-weight:800;font-size:1.15rem;color:var(--ink)}
.acc__head .acc__icon{flex:0 0 auto;width:30px;height:30px;display:grid;place-items:center;border:2px solid var(--ink);position:relative;transition:background .2s var(--ease)}
.acc__head .acc__icon::before,.acc__head .acc__icon::after{content:"";position:absolute;background:var(--ink);transition:transform .25s var(--ease),background .2s var(--ease)}
.acc__head .acc__icon::before{width:13px;height:2px}
.acc__head .acc__icon::after{width:2px;height:13px}
.acc__head[aria-expanded="true"] .acc__icon{background:var(--ember);border-color:var(--ember)}
.acc__head[aria-expanded="true"] .acc__icon::before,.acc__head[aria-expanded="true"] .acc__icon::after{background:#fff}
.acc__head[aria-expanded="true"] .acc__icon::after{transform:scaleY(0)}
.acc__panel{display:grid;grid-template-rows:0fr;transition:grid-template-rows .3s var(--ease)}
.acc__panel.open{grid-template-rows:1fr}
.acc__panel-inner{overflow:hidden}
.acc__body{padding-bottom:1.6rem;font-size:1rem;color:var(--ink-soft);line-height:1.8}
.acc__body p+p,.acc__body p+ul,.acc__body ul+p{margin-top:1rem}
.acc__body ul{padding-inline-start:1.3rem;list-style:disc}
.acc__body li{margin-bottom:.4rem}
.acc__body bdi{unicode-bidi:isolate}
.spec-table{width:100%;border-collapse:collapse;font-size:.95rem}
.spec-table tr{border-bottom:1px solid var(--line)}
.spec-table tr:nth-child(odd){background:var(--cream)}
.spec-table th{text-align:start;font-family:var(--font-head);font-weight:700;color:var(--ink);padding:.7rem 1rem;width:46%;vertical-align:top}
.spec-table td{padding:.7rem 1rem;color:var(--ink-soft);vertical-align:top}
.spec-table td bdi{unicode-bidi:isolate}
/* editorial brand rows (smokers) */
.editorial-row{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:0;min-height:clamp(340px,44vw,520px)}
.editorial-row__media{height:100%;min-height:320px;overflow:hidden}
.editorial-row__media img{width:100%;height:100%;object-fit:cover}
.editorial-row__text{padding:clamp(2rem,5vw,4.5rem)}
.editorial-row--alt .editorial-row__media{order:2}
.editorial-row--alt .editorial-row__text{order:1}
.editorial-row__text .eyebrow{margin-bottom:.7rem}
.editorial-row__text h2{margin-bottom:1rem}
.editorial-row__text p{color:var(--ink-soft);font-size:1.08rem;margin-bottom:1.6rem;max-width:46ch}
.editorial-row.section--dark .editorial-row__text p{color:#e2d8cf}
.related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1rem,2vw,1.6rem)}
/* PDP reviews — buybox rating + snapshot + bars (SVG stars sized so they don't blow up) */
.stars{display:inline-flex;gap:1px;color:var(--ember);align-items:center;vertical-align:middle}
.stars svg{width:18px;height:18px}
.buybox__rating{display:flex;align-items:center;gap:.6rem;margin-bottom:1.2rem;font-size:.92rem;color:var(--muted)}
.buybox__rating a{font-weight:700;color:var(--ink);text-decoration:underline;text-underline-offset:3px}
.buybox__rating a:hover{color:var(--ember)}
.buybox__rating bdi{font-weight:800;color:var(--ink)}
.review-snap{display:grid;grid-template-columns:auto 1fr;gap:clamp(2rem,5vw,4rem);align-items:center;max-width:1040px}
.review-snap__score{text-align:center}
.review-snap__num{font-family:var(--font-head);font-weight:900;font-size:4rem;line-height:1;color:var(--ink)}
.review-snap__stars{color:var(--ember);display:inline-flex;gap:2px;margin-block:.5rem}
.review-snap__stars svg{width:22px;height:22px}
.review-snap__count{font-size:.9rem;color:var(--muted)}
.review-bars{display:flex;flex-direction:column;gap:.55rem;width:100%}
.review-bar{display:flex;align-items:center;gap:.8rem;font-size:.85rem;color:var(--muted)}
.review-bar__label{font-family:var(--font-head);font-weight:700;color:var(--ink);min-width:70px;text-align:start}
.review-bar__track{flex:1;height:10px;background:var(--beige-fill);overflow:hidden;border-radius:5px}
/* display:block — the fill is a <span>; inline elements ignore width/height, so the
   inline width:NN% was a no-op and the bar showed empty. */
.review-bar__fill{display:block;height:100%;background:var(--ember);border-radius:5px}
.review-bar__pct{min-width:42px;text-align:start;font-weight:600}
.review-card .stars svg{width:15px;height:15px}
.review-card__top{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
@media (max-width:760px){.review-snap{grid-template-columns:1fr;text-align:center;gap:1.5rem}.review-snap__score{margin-inline:auto}}
@media (max-width:1080px){.product__layout{grid-template-columns:1fr}.gallery{position:static}}
@media (max-width:760px){.editorial-row{grid-template-columns:1fr}.editorial-row--alt .editorial-row__media,.editorial-row--alt .editorial-row__text{order:0}.related-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:540px){.gallery{grid-template-columns:68px 1fr}.highlights ul{grid-template-columns:1fr}.spec-table th{width:50%}.buybox form.cart button.single_add_to_cart_button{min-width:0}}

/* ============================================================
   ABOUT page
   ============================================================ */
/* About lead — two-column hero (image beside the headline, like bradleysmoker.com) */
.about-lead{background:var(--cream)}
.about-lead__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.about-lead__copy .eyebrow{display:block;margin-bottom:1rem}
.about-lead__copy h1{margin-bottom:1.2rem}
.about-lead__copy .lead{margin-bottom:1.6rem;max-width:52ch}
.about-lead__copy .badge{display:inline-flex}
.about-lead__media{border:1px solid var(--line);overflow:hidden}
.about-lead__media img{width:100%;height:auto;display:block}
@media (max-width:860px){.about-lead__grid{grid-template-columns:1fr;gap:1.75rem}.about-lead__media{order:-1}}
.about-hero{position:relative;background:var(--charcoal)}
.about-hero__media{position:relative;height:clamp(340px,48vw,580px);overflow:hidden}
.about-hero__media img{width:100%;height:100%;object-fit:cover}
.about-hero__media::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(20,18,16,.7) 0%,rgba(20,18,16,.15) 45%,rgba(20,18,16,.35) 100%)}
.about-hero__tag{position:absolute;inset-block-start:clamp(1.2rem,4vw,2.5rem);inset-inline-end:clamp(1rem,4vw,2.5rem);z-index:2}
.about-intro{background:var(--white);text-align:center}
.about-intro .eyebrow{display:block;margin-bottom:1rem}
.about-intro .lead{max-width:62ch;margin-inline:auto;margin-top:1.2rem}
.story-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.75rem,4vw,3.5rem);align-items:start}
.story-block h3{margin-bottom:.85rem}
.story-block p{color:var(--ink-soft);font-size:1.05rem}
.story-block p+p{margin-top:1rem}
.story-rule{display:block;width:64px;height:4px;background:var(--ember);margin-bottom:1.4rem}
@media (max-width:780px){.story-grid{grid-template-columns:1fr;gap:2.25rem}}
.pullquote{position:relative;text-align:center;max-width:60ch;margin-inline:auto;padding-top:2.6rem}
.pullquote::before{content:"\201F";position:absolute;inset-block-start:-1.4rem;inset-inline:0;font-family:var(--font-head);font-weight:900;font-size:clamp(5rem,12vw,9rem);line-height:1;color:var(--ember);opacity:.85}
.pullquote blockquote{font-family:var(--font-head);font-weight:800;font-size:clamp(1.5rem,3.4vw,2.4rem);line-height:1.32;color:#fff;letter-spacing:-.01em}
.pullquote cite{display:block;margin-top:1.4rem;font-style:normal;font-family:var(--font-head);font-weight:700;font-size:.92rem;letter-spacing:.06em;color:var(--ember-on-dark)}
.duo-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.75rem,4vw,3.5rem)}
.duo-card{background:var(--white);border:1px solid var(--line);padding:clamp(1.6rem,3vw,2.5rem)}
.duo-card .eyebrow{display:block;margin-bottom:.7rem}
.duo-card h3{margin-bottom:.7rem}
.duo-card p{color:var(--ink-soft)}
@media (max-width:780px){.duo-grid{grid-template-columns:1fr}}
.stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.stat-card{border:1px solid rgba(255,255,255,.14);padding:clamp(1.75rem,3vw,2.5rem);text-align:center;background:rgba(255,255,255,.03);transition:border-color .25s var(--ease),background .25s var(--ease)}
.stat-card:hover{border-color:var(--ember);background:rgba(200,88,40,.07)}
.stat-card__label{font-family:var(--font-head);font-weight:700;font-size:.82rem;letter-spacing:.08em;color:var(--ember-on-dark)}
.stat-card__num{font-family:var(--font-head);font-weight:900;font-size:clamp(2.6rem,6vw,3.6rem);line-height:1;color:#fff;margin-block:.55rem .35rem;direction:ltr;unicode-bidi:isolate}
.stat-card__sub{font-family:var(--font-head);font-weight:800;font-size:1.05rem;color:#fff;margin-bottom:.65rem}
.stat-card__desc{font-size:.94rem;color:var(--muted-on-dark);line-height:1.55;max-width:30ch;margin-inline:auto}
@media (max-width:760px){.stats-grid{grid-template-columns:1fr;gap:1rem}}
.importer-band{display:grid;grid-template-columns:1.05fr 1fr;gap:clamp(1.75rem,4vw,4rem);align-items:center}
.importer-band__copy .eyebrow{display:block;margin-bottom:.9rem}
.importer-band__copy p{color:var(--ink-soft);font-size:1.08rem;margin-top:1rem;max-width:48ch}
.importer-band__media{position:relative;aspect-ratio:4/3;overflow:hidden;border:1px solid var(--line)}
.importer-band__media img{width:100%;height:100%;object-fit:cover}
.trust-list{margin-top:1.6rem}
@media (max-width:860px){.importer-band{grid-template-columns:1fr;gap:2rem}.importer-band__media{order:-1}}
.community{position:relative}
.community__media{position:relative;height:clamp(320px,46vw,520px);overflow:hidden}
.community__media img{width:100%;height:100%;object-fit:cover}
.community__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(20,18,16,.86) 8%,rgba(20,18,16,.3) 60%,rgba(20,18,16,.45) 100%);display:flex;align-items:flex-end}
.community__inner{padding-block:clamp(2rem,5vw,3.5rem);max-width:64ch}
.community__inner .eyebrow{display:block;margin-bottom:.8rem}
.community__inner h2{color:#fff;margin-bottom:1rem}
.community__inner p{color:#f1e9e2;font-size:1.08rem}
.community__inner .btn{margin-top:1.8rem}

/* ============================================================
   FAQ page
   ============================================================ */
/* Hero masthead (ported from design-prototypes/faq.html — was never copied to the theme,
   so the FAQ hero image rendered full-height/uncropped with an invisible label). */
.faq-hero{position:relative;width:100%;height:clamp(220px,34vw,440px);overflow:hidden;background:var(--charcoal)}
.faq-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.faq-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(20,18,16,.55) 0%,rgba(20,18,16,.12) 45%,rgba(20,18,16,.28) 100%)}
.faq-hero__label{position:absolute;inset-block-end:1.4rem;inset-inline-start:0;width:100%;text-align:center;color:#fff;font-family:var(--font-head);font-weight:800;letter-spacing:.16em;text-transform:uppercase;font-size:.78rem;text-shadow:0 1px 8px rgba(0,0,0,.55);opacity:.95}
.faq-title{background:var(--white);text-align:center;padding-block:clamp(2.5rem,5vw,4rem) clamp(1.5rem,3vw,2.25rem)}
.faq-title .eyebrow{display:inline-block;margin-bottom:.9rem}
.faq-title h1{margin-bottom:1rem}
.faq-title p{max-width:62ch;margin-inline:auto;color:var(--ink-soft);font-size:1.1rem}
.faq-jump{position:sticky;top:var(--header-h);z-index:40;background:rgba(249,246,243,.96);backdrop-filter:blur(6px);border-block:1px solid var(--line)}
.faq-jump__inner{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center;padding-block:1rem}
.jump-tab{display:inline-flex;align-items:center;gap:.5rem;font-family:var(--font-head);font-weight:800;text-transform:uppercase;letter-spacing:.05em;font-size:.82rem;color:var(--ink);background:var(--white);border:2px solid var(--ink);padding:.7rem 1.4rem;transition:all .2s var(--ease)}
.jump-tab:hover,.jump-tab:focus-visible{background:var(--ink);color:var(--cream)}
.jump-tab svg{width:18px;height:18px;color:var(--ember);transition:color .2s var(--ease)}
.jump-tab:hover svg,.jump-tab:focus-visible svg{color:#fff}
.jump-tab .num{font-size:.72rem;background:var(--beige-fill);color:var(--ink-soft);padding:.05rem .45rem;font-weight:700}
.jump-tab:hover .num,.jump-tab:focus-visible .num{background:rgba(255,255,255,.16);color:#fff}
.faq-wrap{padding-block:clamp(2.5rem,5vw,4.5rem)}
.faq-col{max-width:860px;margin-inline:auto}
.faq-group{scroll-margin-top:calc(var(--header-h) + 80px)}
.faq-group+.faq-group{margin-top:clamp(2.75rem,5vw,4rem)}
.faq-group__head{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:2px solid var(--ink)}
.faq-group__icon{flex:0 0 auto;width:56px;height:56px;display:grid;place-items:center;background:var(--ink);color:var(--ember-on-dark)}
.faq-group__icon svg{width:30px;height:30px}
.faq-group__head h2{font-size:clamp(1.5rem,3vw,2.1rem)}
.faq-group__head .count{font-family:var(--font-head);font-weight:700;font-size:.85rem;color:var(--muted);margin-top:.15rem}
.acc-faq{border:1px solid var(--line);background:var(--white);transition:border-color .2s var(--ease)}
.acc-faq+.acc-faq{margin-top:.85rem}
.acc-faq[open]{border-color:var(--ink)}
.acc-faq summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.15rem 1.4rem;font-family:var(--font-head);font-weight:800;font-size:1.08rem;color:var(--ink);line-height:1.35}
.acc-faq summary::-webkit-details-marker{display:none}
.acc-faq summary:hover{color:var(--ember)}
.acc-faq summary:focus-visible{outline:3px solid var(--ember);outline-offset:-3px}
.acc-faq .acc__icon{flex:0 0 auto;width:30px;height:30px;display:grid;place-items:center;border:2px solid var(--ink);transition:all .25s var(--ease);position:relative}
.acc-faq .acc__icon::before,.acc-faq .acc__icon::after{content:"";position:absolute;background:var(--ink);transition:all .25s var(--ease)}
.acc-faq .acc__icon::before{width:12px;height:2px}
.acc-faq .acc__icon::after{width:2px;height:12px}
.acc-faq[open] .acc__icon{background:var(--ember);border-color:var(--ember)}
.acc-faq[open] .acc__icon::before,.acc-faq[open] .acc__icon::after{background:#fff}
.acc-faq[open] .acc__icon::after{transform:scaleY(0)}
.acc-faq .acc__body{padding:0 1.4rem 1.3rem;color:var(--ink-soft);font-size:1.02rem;line-height:1.8}
.acc-faq .acc__body p+p{margin-top:.85rem}
.acc-faq .acc__body a{color:var(--ember-deep);font-weight:700;text-decoration:underline;text-underline-offset:3px}
.acc-faq .acc__body a:hover{color:var(--ember)}
.acc-faq .acc__body ul.steps{list-style:none;counter-reset:step;margin-top:.5rem;padding:0}
.acc-faq .acc__body ul.steps li{position:relative;padding-inline-start:2.5rem;margin-top:.7rem}
.acc-faq .acc__body ul.steps li::before{counter-increment:step;content:counter(step);position:absolute;inset-inline-start:0;top:.15rem;width:1.7rem;height:1.7rem;display:grid;place-items:center;background:var(--beige-fill);color:var(--ember);font-family:var(--font-head);font-weight:800;font-size:.85rem}
.acc__note{display:flex;gap:.6rem;align-items:flex-start;margin-top:1rem;padding:.9rem 1rem;background:var(--beige-fill);border-inline-start:3px solid var(--ember);font-size:.95rem;color:var(--ink-soft)}
.acc__note svg{flex:0 0 auto;width:20px;height:20px;color:var(--ember);margin-top:.15rem}
.faq-help{margin-top:clamp(3rem,5vw,4.5rem);background:var(--cream);border:1px solid var(--line);padding:clamp(1.75rem,3.5vw,2.75rem);text-align:center}
.faq-help h3{font-size:clamp(1.4rem,2.6vw,1.9rem);margin-bottom:.7rem}
.faq-help p{color:var(--ink-soft);max-width:54ch;margin-inline:auto;margin-bottom:1.5rem}
.faq-help__actions{display:flex;gap:.8rem;justify-content:center;flex-wrap:wrap}
@media (max-width:760px){.faq-group__icon{width:48px;height:48px}.faq-group__icon svg{width:25px;height:25px}.acc-faq summary{font-size:1rem;padding:1rem 1.1rem}.acc-faq .acc__body{padding:0 1.1rem 1.1rem}.faq-jump__inner{justify-content:flex-start;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}.faq-jump__inner::-webkit-scrollbar{display:none}.jump-tab{flex:0 0 auto}}

/* ---- Contact page ---- */
.contact-grid{display:grid;grid-template-columns:1fr .8fr;gap:clamp(1.75rem,4vw,3.5rem);align-items:start}
.contact-main .page-content{max-width:none}
.contact-aside{background:var(--cream);border:1px solid var(--line);padding:clamp(1.5rem,3vw,2.2rem);position:sticky;top:calc(var(--header-h) + 1rem)}
.contact-aside h2{font-family:var(--font-head);font-weight:800;font-size:1.15rem;margin-bottom:1.2rem}
.contact-method{display:flex;gap:.85rem;align-items:flex-start;padding-block:1rem;border-bottom:1px solid var(--line)}
.contact-method:last-of-type{border-bottom:none}
.contact-method svg{width:24px;height:24px;color:var(--ember);flex:0 0 auto;margin-top:2px}
.contact-method strong{display:block;font-family:var(--font-head);font-weight:800;color:var(--ink);font-size:.95rem;margin-bottom:.15rem}
.contact-method a,.contact-method span{color:var(--ink-soft);font-size:.95rem}
.contact-method a:hover{color:var(--ember)}
.contact-method .temp{font-size:.78rem;color:var(--muted);font-style:italic}
.contact-aside .btn{margin-top:1.4rem}
@media (max-width:860px){.contact-grid{grid-template-columns:1fr}.contact-aside{position:static}}

/* ============================================================
   RECIPE / BLOG ARTICLE (single.php) — ported from recipe.html
   ============================================================ */
.article-hero{background:var(--cream)}
.article-hero__media{max-width:1000px;margin-inline:auto;aspect-ratio:16/9;overflow:hidden;background:var(--charcoal)}
.article-hero__media img{width:100%;height:100%;object-fit:cover}
.article-head{max-width:820px;margin-inline:auto;text-align:center;padding-block:clamp(2rem,4vw,3rem)}
.article-head .eyebrow{display:inline-block;margin-bottom:.9rem}
.article-head h1{font-size:clamp(2rem,4.6vw,3.4rem);margin-bottom:1.1rem}
.article-head .lead{font-size:1.18rem;max-width:64ch;margin-inline:auto;text-align:start}
.recipe-meta{display:flex;flex-wrap:wrap;justify-content:center;gap:.75rem;margin-top:1.8rem}
.recipe-meta__item{display:flex;align-items:center;gap:.55rem;background:var(--white);border:1px solid var(--line);padding:.6rem 1.1rem;font-family:var(--font-head);font-weight:700;font-size:.85rem;color:var(--ink)}
.recipe-meta__item svg{width:20px;height:20px;color:var(--ember);flex:0 0 auto}
.recipe-meta__item .lbl{color:var(--muted);font-weight:600;font-size:.76rem;letter-spacing:.02em}
.recipe-meta__item .val{unicode-bidi:isolate}
.recipe-layout{display:grid;grid-template-columns:340px 1fr;gap:clamp(2rem,4vw,4rem);align-items:start;max-width:1100px;margin-inline:auto}
.ingredients-card{background:var(--cream);border:1px solid var(--line);border-top:4px solid var(--ember);padding:1.8rem 1.6rem;position:sticky;top:calc(var(--header-h) + 1rem)}
.ingredients-card h2{font-size:1.5rem;margin-bottom:.4rem}
.ingredients-card .yield{font-size:.92rem;color:var(--muted);margin-bottom:1.2rem;border-bottom:1px dashed var(--beige);padding-bottom:1rem}
.ing-list{list-style:none;padding:0}
.ing-list li{display:flex;gap:.7rem;align-items:flex-start;font-size:.95rem;line-height:1.6;padding-block:.45rem;border-bottom:1px solid rgba(222,200,186,.45);color:var(--ink-soft)}
.ing-list li:last-child{border-bottom:none}
.ing-list li::before{content:"";width:7px;height:7px;background:var(--ember);flex:0 0 auto;margin-top:.55rem}
.prep-block{margin-bottom:2.6rem}
.prep-block:last-child{margin-bottom:0}
.prep-block > h2{font-size:clamp(1.7rem,3vw,2.3rem);margin-bottom:1.4rem;padding-bottom:.7rem;border-bottom:2px solid var(--line)}
.step-list{counter-reset:step;margin-top:1rem;list-style:none;padding:0}
.step-list li{position:relative;padding-inline-start:3.2rem;padding-block:.7rem;line-height:1.75;color:var(--ink-soft);font-size:1.02rem}
.step-list li::before{counter-increment:step;content:counter(step);position:absolute;inset-inline-start:0;top:.65rem;width:2.2rem;height:2.2rem;display:grid;place-items:center;font-family:var(--font-head);font-weight:900;font-size:.95rem;background:var(--ink);color:var(--cream)}
.step-list li:not(:last-child){border-bottom:1px solid var(--line)}
.protip{background:var(--charcoal);color:var(--cream);padding:1.8rem 1.7rem;border-inline-start:4px solid var(--ember);margin-block:2.2rem}
.protip h4{font-family:var(--font-head);font-weight:900;font-size:1.1rem;color:#fff;display:flex;align-items:center;gap:.6rem;margin-bottom:.6rem}
.protip h4 svg{width:22px;height:22px;color:var(--ember-on-dark);flex:0 0 auto}
.protip p{font-size:.98rem;line-height:1.75;color:var(--link)}
.protip p + p{margin-top:.7rem}
.recipe-credit{font-size:.9rem;color:var(--muted);font-style:italic;border-top:1px solid var(--line);padding-top:1.4rem;margin-top:2.2rem}
.recipe-intro{max-width:760px;margin-inline:auto;font-size:1.08rem;line-height:1.85;color:var(--ink)}
.recipe-intro p{margin-bottom:1rem}
.recipe-intro p strong{color:var(--ink)}
.promo{display:grid;grid-template-columns:.85fr 1fr;gap:clamp(1.5rem,3vw,3rem);align-items:center;background:var(--cream);border:1px solid var(--line);padding:clamp(1.5rem,3vw,2.6rem)}
.promo__media{background:var(--white);border:1px solid var(--line);aspect-ratio:1/1;display:grid;place-items:center;padding:1.5rem}
.promo__media img{width:100%;height:100%;object-fit:contain}
.promo__body .eyebrow{display:block;margin-bottom:.6rem}
.promo__body h3{font-size:clamp(1.5rem,3vw,2.1rem);margin-bottom:.8rem}
.promo__body p{color:var(--ink-soft);margin-bottom:1.4rem;max-width:48ch}
@media (max-width:720px){.promo{grid-template-columns:1fr}}
.recipe-make{display:grid;gap:.6rem;margin-top:1.2rem}
.recipe-make a{display:inline-flex;align-items:center;gap:.5rem;font-family:var(--font-head);font-weight:700;font-size:.95rem;color:var(--ink)}
.recipe-make a:hover{color:var(--ember)}
.recipe-make a::before{content:"›";color:var(--ember);font-weight:900;transform:scaleX(-1);display:inline-block}
/* recipe-card index variant (the homepage cards use h3/p; the hub uses __title/__excerpt/__meta) */
.recipe-card__body{display:flex;flex-direction:column;flex:1}
.recipe-card__title{font-family:var(--font-head);font-weight:800;font-size:1.18rem;line-height:1.32;color:var(--ink);margin-bottom:.5rem}
.recipe-card__title a{color:inherit}
.recipe-card:hover .recipe-card__title a{color:var(--ember)}
.recipe-card__excerpt{font-size:.92rem;color:var(--muted);line-height:1.65;flex:1}
.recipe-card__meta{display:flex;gap:1rem;margin-top:1rem;font-size:.82rem;color:var(--muted);font-weight:600}
.recipe-card__meta span{display:flex;align-items:center;gap:.35rem}
.recipe-card__meta .val{unicode-bidi:isolate}
.recipe-card__meta svg{width:15px;height:15px;color:var(--ember);flex:0 0 auto}
@media (max-width:900px){.recipe-layout{grid-template-columns:1fr}.ingredients-card{position:static}}
@media print{.importer-ribbon,.site-header,.nav-backdrop,.site-footer,.search-bar,.promo,.section--dark{display:none!important}.article-hero,.section{padding-block:0}body{font-size:13px;color:#000}.protip{background:#fff;color:#000;border:1px solid #999}.protip h4,.protip p{color:#000}}

/* ============================================================
   REVENUE LANDINGS — comparison + wood-pairing tables, gift hub,
   guide intro blocks (buying guide / שבבי עץ category / wood pairing).
   ============================================================ */
/* Horizontally-scrollable wrapper so wide tables never break RTL layout on mobile. */
.tbl-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;margin-top:clamp(1.5rem,3vw,2.25rem);border:1px solid var(--line)}
.data-table{width:100%;border-collapse:collapse;font-size:.95rem;min-width:680px;background:#fff}
.data-table caption{text-align:start;font-family:var(--font-head);font-weight:800;font-size:1.05rem;padding:1rem 1rem .4rem;color:var(--ink)}
.data-table thead th{background:var(--charcoal);color:#fff;font-family:var(--font-head);font-weight:700;font-size:.9rem;text-align:start;padding:.85rem 1rem;white-space:nowrap}
.data-table tbody tr{border-bottom:1px solid var(--line)}
.data-table tbody tr:nth-child(even){background:var(--cream)}
.data-table th[scope=row]{text-align:start;font-family:var(--font-head);font-weight:800;color:var(--ink);padding:.85rem 1rem;vertical-align:top;width:22%}
.data-table td{padding:.85rem 1rem;color:var(--ink-soft);vertical-align:top;line-height:1.5}
.data-table td bdi{unicode-bidi:isolate}
.data-table .row-link{font-family:var(--font-head);font-weight:800;font-size:.85rem;color:var(--ember);white-space:nowrap}
.data-table .row-link:hover{color:var(--ember-deep);text-decoration:underline}
.data-table tbody tr:hover{background:var(--beige-fill)}
/* Head-to-head versus table (Ninja vs Bradley etc.) — comparison/pSEO hub. Bradley
   columns get .is-bradley (set in bsil_compare_versus_table) so "our" products read
   as the highlighted choice; attribute column gets a tint to anchor the row labels. */
.data-table--versus th[scope=row]{background:var(--beige-fill);white-space:normal;width:24%}
.data-table--versus thead th.is-bradley{background:var(--ember-deep)}
.data-table--versus .is-bradley{background:rgba(200,88,40,.06)}
.data-table--versus tbody tr:hover .is-bradley{background:rgba(200,88,40,.12)}
/* Comparison CARD grid — responsive head-to-head for the comparison/pSEO hub. 3-across
   on desktop, stacks to 1 on mobile (no horizontal scroll); Bradley cards highlighted. */
.compare-cards{display:grid;gap:1.1rem;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));margin-top:clamp(1.5rem,3vw,2.25rem)}
.compare-card{background:#fff;border:1px solid var(--line);border-radius:10px;overflow:hidden;display:flex;flex-direction:column}
.compare-card--bradley{border-color:var(--ember);box-shadow:0 10px 34px rgba(200,88,40,.12)}
.compare-card__head{padding:1.1rem 1.15rem .95rem;background:var(--beige-fill);border-bottom:1px solid var(--line)}
.compare-card--bradley .compare-card__head{background:var(--ember-deep);color:#fff}
.compare-card__badge{display:inline-block;font-family:var(--font-head);font-weight:800;font-size:.62rem;letter-spacing:.08em;text-transform:uppercase;background:#fff;color:var(--ember-deep);border-radius:3px;padding:.22em .6em;margin-bottom:.55rem}
.compare-card__name{font-family:var(--font-head);font-weight:800;font-size:1.05rem;line-height:1.25;margin:0}
.compare-card__price{font-family:var(--font-head);font-weight:700;font-size:1rem;margin-top:.45rem}
.compare-card--bradley .compare-card__price,.compare-card--bradley .compare-card__price *{color:#fff}
.compare-card__specs{margin:0;padding:.3rem 1.15rem 1.1rem}
.compare-card__specs .cspec{padding:.6rem 0;border-bottom:1px solid var(--line)}
.compare-card__specs .cspec:last-child{border-bottom:0;padding-bottom:0}
.compare-card__specs dt{font-family:var(--font-head);font-weight:800;font-size:.7rem;letter-spacing:.04em;text-transform:uppercase;color:var(--ink-soft);margin-bottom:.18rem}
.compare-card__specs dd{margin:0;color:var(--ink);line-height:1.45;font-size:.92rem}
/* Auto-balance any .secret__list with exactly 4 items (sitewide, desktop only): 4-up
   ≥961px, 2x2 on tablet. The base @media(max-width:740px) rule keeps mobile at 1 column
   untouched, so this never affects phones. :has() avoids needing a per-page class. */
@media (min-width:961px){.secret__list:has(> .secret__item:nth-child(4):last-child){grid-template-columns:repeat(4,1fr)}}
@media (min-width:741px) and (max-width:960px){.secret__list:has(> .secret__item:nth-child(4):last-child){grid-template-columns:repeat(2,1fr)}}
/* Intensity pill (wood pairing) */
.intensity{display:inline-block;font-family:var(--font-head);font-weight:800;font-size:.74rem;letter-spacing:.04em;padding:.22rem .6rem;border:1px solid var(--line);white-space:nowrap}
.intensity--light{background:#eef6ef;color:#2f6b3a;border-color:#cfe6d3}
.intensity--med{background:#fdf3e7;color:#9a5a1c;border-color:#f1ddc2}
.intensity--strong{background:#f6ebe6;color:#8a3417;border-color:#e8cdc1}
/* Lead intro band for guide/landing pages */
.guide-intro{max-width:62ch;margin-inline:auto;text-align:center}
.guide-intro p{margin-top:1rem;line-height:1.8;color:var(--ink-soft);text-align:start}
.guide-intro .cat-hero__cta{justify-content:center}
.guide-intro p:first-child{font-size:1.15rem;color:var(--ink)}
/* Gift occasion mini-cards (reuses secret grid rhythm) */
.occasion-list{display:grid;grid-template-columns:repeat(4,1fr);gap:1.1rem;margin-top:2.25rem;text-align:start}
.occasion-item{background:#fff;border:1px solid var(--line);border-top:3px solid var(--ember);padding:1.3rem 1.2rem}
.occasion-item svg{width:30px;height:30px;color:var(--ember)}
.occasion-item h4{font-family:var(--font-head);font-weight:800;font-size:1rem;margin-block:.6rem .35rem}
.occasion-item p{font-size:.9rem;color:var(--muted);line-height:1.55}
@media (max-width:880px){.occasion-list{grid-template-columns:repeat(2,1fr)}}
@media (max-width:460px){.occasion-list{grid-template-columns:1fr}}
/* Q&A as plain text (no FAQ schema, per §10) — used on gift + buying-guide pages */
.qa-list{max-width:64ch;margin-top:1.5rem;margin-inline:auto}
.qa-item{padding-block:1.2rem;border-bottom:1px solid var(--line)}
.qa-item h3{font-family:var(--font-head);font-weight:800;font-size:1.12rem;margin-bottom:.5rem}
.qa-item p{color:var(--ink-soft);line-height:1.75}

/* ---- Dark newsletter (scoped — about/faq/shop; never touches the cream homepage one) ---- */
.newsletter--dark{background:var(--charcoal);color:var(--cream)}
.newsletter--dark h2{color:#fff}
.newsletter--dark .newsletter__sub,.newsletter--dark p{color:var(--muted-on-dark)}
.newsletter--dark .newsletter__tags span,.newsletter--dark .newsletter__tag span{color:var(--ember-on-dark)}
.newsletter--dark .field label{color:#efe7df}
.newsletter--dark .input{background:rgba(255,255,255,.06);color:#fff;border-color:rgba(255,255,255,.16)}
.newsletter--dark .input::placeholder{color:#a59c93}
.newsletter--dark .input:focus{background:rgba(255,255,255,.1);border-color:var(--ember-on-dark)}
.newsletter--dark .newsletter__note,.newsletter--dark .newsletter__legal{color:var(--muted-on-dark)}

/* ============================================================
   POLISH PASS — mobile PDP gallery, newsletter status, cart/checkout brand
   ============================================================ */

/* Mobile PDP gallery: stack the main image full-width with a horizontal thumb strip
   below (was a cramped desktop side-by-side strip that shrank the main image). */
@media (max-width:760px){
  .gallery{grid-template-columns:1fr;gap:.7rem;position:static;top:auto}
  .gallery__main{order:0}
  .gallery__thumbs{order:1;flex-direction:row;overflow-x:auto;gap:.5rem;padding-bottom:.3rem;-webkit-overflow-scrolling:touch}
  .gallery__thumb{flex:0 0 64px;width:64px}
}

/* Newsletter signup status message (after the now-working AJAX form). */
.newsletter__status{margin-top:1rem;font-family:var(--font-head);font-weight:700;font-size:.96rem;line-height:1.5}
.newsletter__status.is-ok{color:#1c7d3e}
.newsletter__status.is-error{color:#c0392b}
.newsletter--dark .newsletter__status.is-ok{color:#6fe39a}
.newsletter--dark .newsletter__status.is-error{color:#ff9c8f}

/* WooCommerce block cart/checkout — match the brand accent on the primary actions. */
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-button.contained{background:var(--ember)!important;border-color:var(--ember)!important;color:#fff!important}
.wc-block-components-button.contained:hover{background:var(--ember-deep)!important}

/* PDP gallery main image: allow vertical scroll while we capture horizontal swipe. */
.gallery__main{touch-action:pan-y;cursor:pointer}

/* Out-of-stock badge on product cards. */
.product-card__tag--oos{background:var(--ink);color:#fff}

/* ============================================================
   WooCommerce notices — high-class redesign (add-to-cart success / info / error)
   Sitewide so it's premium even where Kadence's Woo sheet is dequeued.
   ============================================================ */
.woocommerce-notices-wrapper{margin-block:var(--sp-5)}
.woocommerce-notices-wrapper:empty{margin:0}

.woocommerce-message,
.woocommerce-info{
  display:flex !important;align-items:center;flex-wrap:wrap;gap:.6rem 1.1rem;
  margin:0 !important;padding:1.15rem 1.4rem !important;
  background:var(--white) !important;
  border:1px solid var(--line) !important;
  border-inline-start:4px solid var(--ember-cta) !important;
  border-radius:var(--radius) !important;
  box-shadow:0 14px 38px rgba(20,18,16,.10) !important;
  font-family:var(--font-body);font-size:1.04rem;line-height:1.5;
  color:var(--ink);font-weight:600;
  list-style:none !important;
}
.woocommerce-message::before,
.woocommerce-info::before{
  content:"";flex:0 0 auto;width:46px;height:46px;border-radius:50%;
  background:#F3E7E0 center/24px 24px no-repeat;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BD4E1C' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.woocommerce-message{letter-spacing:.005em}

.woocommerce-message:focus,
.woocommerce-info:focus,
.woocommerce-error:focus{
  outline:none !important;
  box-shadow:0 14px 38px rgba(20,18,16,.10),0 0 0 3px rgba(200,88,40,.14) !important;
}

.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-message .button.wc-forward,
.woocommerce-info .button.wc-forward{
  order:5;margin-inline-start:auto;
  display:inline-flex;align-items:center;gap:.45rem;
  background:var(--ember-cta) !important;color:#fff !important;
  border:2px solid var(--ember-cta) !important;border-radius:var(--radius) !important;
  font-family:var(--font-head);font-weight:800;text-transform:uppercase;
  letter-spacing:.06em;font-size:.78rem;line-height:1;
  padding:.8rem 1.5rem !important;min-height:0;white-space:nowrap;
  text-shadow:none;box-shadow:none;
  transition:background .22s var(--ease),border-color .22s var(--ease),transform .12s var(--ease);
}
.woocommerce-message a.button::after,
.woocommerce-info a.button::after{content:"←";font-size:1.05em;line-height:1}
.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover{
  background:var(--ember-deep) !important;border-color:var(--ember-deep) !important;
  color:#fff !important;transform:translateY(-1px);
}
.woocommerce-message a.button:active,
.woocommerce-info a.button:active{transform:translateY(0)}

.woocommerce-info{border-inline-start-color:var(--ink) !important}
.woocommerce-info::before{
  background-color:#ECE6E1;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E1E1E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 11v5'/%3E%3Cpath d='M12 7.6h.01'/%3E%3C/svg%3E");
}

.woocommerce-error{
  margin:0 !important;padding:1.1rem 1.4rem !important;
  background:var(--white) !important;border:1px solid var(--line) !important;
  border-inline-start:4px solid #b3261e !important;border-radius:var(--radius) !important;
  box-shadow:0 14px 38px rgba(20,18,16,.10) !important;
  font-family:var(--font-body);color:var(--ink);font-weight:600;
  list-style:none !important;
}
.woocommerce-error li{list-style:none;margin:0;padding-inline-start:1.9rem;position:relative}
.woocommerce-error li::before{
  content:"";position:absolute;inset-inline-start:0;top:.15em;width:20px;height:20px;
  background:center/contain no-repeat;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b3261e' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7.6v5'/%3E%3Cpath d='M12 16.2h.01'/%3E%3C/svg%3E");
}

/* "מעבר לסל הקניות" — WooCommerce .added_to_cart view-cart link → secondary button */
.buybox .added_to_cart.wc-forward,
.buybox a.added_to_cart,
.woocommerce div.product form.cart ~ .added_to_cart.wc-forward,
.added_to_cart.wc-forward{
  display:flex !important;align-items:center;justify-content:center;gap:.5rem;
  width:100%;margin-top:.75rem;
  background:var(--cream) !important;color:var(--ink) !important;
  border:2px solid var(--ink) !important;border-radius:var(--radius) !important;
  font-family:var(--font-head);font-weight:800;text-transform:uppercase;
  letter-spacing:.06em;font-size:.82rem;line-height:1;
  padding:.95rem 1.5rem !important;
  text-decoration:none;white-space:nowrap;
  transition:background .2s var(--ease),color .2s var(--ease),transform .12s var(--ease);
}
.buybox .added_to_cart.wc-forward::after,
.added_to_cart.wc-forward::after{content:"←";font-size:1.05em;line-height:1}
.buybox .added_to_cart.wc-forward:hover,
.added_to_cart.wc-forward:hover{background:var(--ink) !important;color:var(--cream) !important}
.buybox .added_to_cart.wc-forward:active,
.added_to_cart.wc-forward:active{transform:translateY(1px)}

@media (max-width:560px){
  .woocommerce-message,
  .woocommerce-info{
    flex-direction:column !important;align-items:center;text-align:center;
    gap:.7rem;padding:1.25rem 1.15rem !important;font-size:1rem;
  }
  .woocommerce-message::before,
  .woocommerce-info::before{order:0 !important;width:48px;height:48px;background-size:24px 24px}
  .woocommerce-message a.button,
  .woocommerce-info a.button{order:2 !important;width:100%;justify-content:center;margin-inline-start:0;padding:.95rem 1.2rem !important;font-size:.82rem}
}
