/* =========================================================================
   chrome.css — ONE site chrome (v7 navy header + footer) for the WooCommerce
   FUNNEL and any default Astra page.

   The isolated bespoke pages (homepage, 404, page-* templates that call
   get_header('mhsite')) already get this chrome from inner.css / home.css and
   never load this file — the isolation allowlist strips it there. This file
   exists for the pages that run the FULL Astra + WooCommerce + Dokan stack
   (shop, product, cart, checkout, account, vendor), where we cannot isolate
   without breaking add-to-cart / checkout AJAX / gateways. It is purely
   additive and loads after the parent + legacy child CSS so it wins.

   The header markup is rendered by mh_site_header_markup() (functions.php),
   the footer by mh_site_footer_markup(); both are shared with the mhsite
   partials so the look is byte-identical everywhere. The selectors below are
   COPIED VERBATIM from assets/inner.css §1 (header) + §2 (footer) so the two
   stay in lockstep — edit both if you touch one.

   All custom properties (--navy, --ft-*, --gold, --bkash, --nagad, --green*,
   --font-*, --r-*) come from tokens.css, which loads site-wide.
   ========================================================================= */

/* Astra's own header is already hidden site-wide by style.css
   (header.site-header{display:none}); hide its widget footer here so only the
   v7 footer shows on funnel pages. Scoped to this file = only where it loads. */
footer.site-footer{ display:none !important; }

.mhsite-header *, .ft *, .ftd *{ box-sizing:border-box; }


/* =========================================================================
   1. SITE HEADER  (mh_site_header_markup)  — verbatim from inner.css §1
   ========================================================================= */
.mhsite-header{ background:var(--navy); }
.mhsite-header a{ text-decoration:none; }

/* ---- mobile header (.mhh-mobile) ---- */
.mhh-mobile{ display:block; }

.mhh-util{ background:var(--navy-deep); color:var(--ft-mut); font-size:11px; font-weight:500; padding:6px 14px;
  display:flex; align-items:center; gap:10px; white-space:nowrap; overflow:hidden; border-bottom:1px solid var(--navy-line); }
.mhh-util .loc{ display:flex; align-items:center; gap:5px; color:#cdd3e3; }
.mhh-util .loc b{ color:#fff; font-weight:600; }
.mhh-util svg{ width:13px; height:13px; }
.mhh-util .right{ margin-left:auto; display:flex; align-items:center; gap:12px; }
.mhh-util .right a{ color:var(--ft-mut); }
.mhh-util .right .lang{ color:#fff; font-weight:600; border:1px solid var(--navy-line); border-radius:var(--r-pill);
  padding:2px 8px; cursor:pointer; }

.mhh-head{ background:var(--navy); padding:10px 14px 12px; }
.mhh-head__row{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.mhh-head__row .mhh-logo img{ height:38px; width:auto; display:block; }
.mhh-head__row .sp{ flex:1; }
.mhh-iconbtn{ position:relative; border:0; background:rgba(255,255,255,.08); color:#fff; width:36px; height:36px;
  border-radius:10px; display:grid; place-items:center; cursor:pointer; }
.mhh-iconbtn svg{ width:20px; height:20px; }
.mhh-iconbtn .n{ position:absolute; top:-4px; right:-4px; background:var(--brand); color:#fff; font-size:10px;
  font-weight:700; min-width:16px; height:16px; border-radius:8px; display:grid; place-items:center; padding:0 4px;
  border:1.5px solid var(--navy); }
.mhh-search{ display:flex; align-items:center; gap:9px; background:#fff; border:1.8px solid var(--brand);
  border-radius:var(--r-pill); padding:9px 9px 9px 14px; }
.mhh-search svg{ width:18px; height:18px; flex:none; color:var(--ink-3); }
.mhh-search input{ flex:1; min-width:0; border:0; outline:0; background:transparent; font-family:var(--font-body);
  font-size:14px; color:var(--ink); }
.mhh-search input::placeholder{ color:var(--ink-3); }
.mhh-search .go{ background:linear-gradient(180deg,var(--brand-bright),var(--brand)); border:0; color:#fff; padding:0;
  width:38px; height:34px; border-radius:var(--r-pill); display:grid; place-items:center; cursor:pointer; flex:none; }
.mhh-search .go svg{ width:18px; height:18px; color:#fff; }

.mhh-deptnav{ background:#fff; border-bottom:1px solid var(--line); display:flex; align-items:stretch; gap:0; overflow:hidden; }
.mhh-deptnav .all{ flex:none; display:flex; align-items:center; gap:7px; padding:11px 13px; background:var(--brand-soft);
  color:var(--brand-ink); font-weight:700; font-size:13px; border-right:1px solid var(--line); text-decoration:none; }
.mhh-deptnav .all svg{ width:16px; height:16px; }
.mhh-deptnav .links{ display:flex; gap:2px; overflow-x:auto; padding:0 4px; scrollbar-width:none; }
.mhh-deptnav .links::-webkit-scrollbar{ display:none; }
.mhh-deptnav .links a{ flex:none; display:flex; align-items:center; padding:11px 11px; color:var(--ink-2);
  text-decoration:none; font-size:13.5px; font-weight:600; }
.mhh-deptnav .links a:hover{ color:var(--brand); }

.mhh-marquee{ background:var(--navy); color:#dfe4f1; overflow:hidden; padding:7px 0; }
.mhh-marquee__track{ display:inline-flex; white-space:nowrap; will-change:transform; animation:mhh-marq 26s linear infinite; }
.mhh-marquee__track > span{ display:inline-flex; align-items:center; gap:9px; font-size:12px; font-weight:600; padding:0 22px; }
.mhh-marquee__track b{ color:#fff; } .mhh-marquee__track .o{ color:var(--brand-bright); }
.mhh-marquee__track .pip{ width:5px; height:5px; border-radius:50%; background:var(--brand); }
@keyframes mhh-marq{ to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .mhh-marquee__track{ animation:none; } }

/* ---- desktop header (.mhh-desktop) — the homepage .dk-* masthead, CSS copied
   VERBATIM from home.css so the funnel header is byte-identical to the homepage.
   The bands are full-bleed (background reaches both edges) with content centred
   in a ~1240 column, the same Alibaba/Amazon pattern home-shell.css uses. ---- */
.mhh-desktop{ display:none; }
/* full-bleed: each band's content centres in 1240, background bleeds edge-to-edge */
.mhh-desktop > .dk-promo, .mhh-desktop > .dk-bar, .mhh-desktop > .dk-subnav, .mhh-desktop > .dk-hero{
  padding-inline: max(24px, calc(50% - 620px)); }

.dk-promo{ background:linear-gradient(90deg,#fdeadf,#fdf3ee); color:var(--ink); display:flex; align-items:center; gap:12px; padding:9px 22px; font-size:13px; font-weight:600; white-space:nowrap; overflow:hidden; }
.dk-promo>span:nth-of-type(2){ min-width:0; overflow:hidden; text-overflow:ellipsis; }
.dk-promo .spk{ color:var(--brand); display:flex; align-items:center; gap:7px; font-weight:800; }
.dk-promo .spk svg{ width:15px; height:15px; }
.dk-promo b{ color:var(--ink); }
.dk-promo .cta{ margin-left:auto; flex:none; display:flex; align-items:center; gap:8px; background:var(--navy); color:#fff; font-weight:700; padding:6px 16px; border-radius:var(--r-pill); text-decoration:none; white-space:nowrap; }
.dk-promo .cta svg{ width:15px; height:15px; }
.dk-bar{ background:var(--navy); display:flex; align-items:center; gap:26px; padding:15px 22px; }
.dk-bar img{ height:38px; width:auto; }
/* compact inline search — inner/funnel pages only (the homepage uses the big hero search) */
.dk-bar__search{ flex:1; min-width:0; max-width:620px; display:flex; align-items:center; background:#fff; border:2px solid var(--brand); border-radius:var(--r-pill); overflow:hidden; height:42px; }
.dk-bar__search input{ flex:1; min-width:0; border:0; outline:0; background:transparent; font-family:var(--font-body); font-size:14px; color:var(--ink); padding:0 16px; height:100%; }
.dk-bar__search input::placeholder{ color:var(--ink-3); }
.dk-bar__search .go{ flex:none; background:linear-gradient(180deg,var(--brand-bright),var(--brand)); border:0; color:#fff; padding:0; width:54px; height:100%; display:grid; place-items:center; cursor:pointer; }
.dk-bar__search .go svg{ width:18px; height:18px; }
.dk-bar .right{ margin-left:auto; display:flex; align-items:center; gap:22px; }
.dk-deliver{ display:flex; flex-direction:column; line-height:1.15; font-size:11.5px; color:#9aa3bd; font-weight:500; }
.dk-deliver b{ color:#fff; font-size:13.5px; font-weight:700; display:flex; align-items:center; gap:6px; margin-top:1px; }
.dk-flag{ width:18px; height:12px; border-radius:2px; background:#006a4e; position:relative; flex:none; }
.dk-flag::after{ content:""; position:absolute; left:42%; top:50%; transform:translate(-50%,-50%); width:7px; height:7px; border-radius:50%; background:#f42a41; }
.dk-lang{ display:flex; align-items:center; gap:7px; color:#fff; font-weight:600; font-size:13.5px; cursor:pointer; }
.dk-lang svg{ width:18px; height:18px; color:#aeb6cb; }
.dk-iconrow{ display:flex; align-items:center; gap:18px; }
.dk-iconrow a{ position:relative; color:#dfe4f1; display:grid; place-items:center; }
.dk-iconrow a svg{ width:23px; height:23px; }
.dk-iconrow a .n{ position:absolute; top:-6px; right:-8px; background:var(--brand); color:#fff; font-size:10px; font-weight:700; min-width:16px; height:16px; border-radius:8px; display:grid; place-items:center; padding:0 4px; border:1.5px solid var(--navy); }
.dk-subnav{ background:#fff; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:22px; padding:11px 22px; font-size:13.5px; white-space:nowrap; overflow:hidden; }
.dk-subnav a{ color:var(--ink-2); text-decoration:none; font-weight:600; display:flex; align-items:center; gap:7px; }
.dk-subnav a svg{ width:16px; height:16px; }
.dk-subnav .allcat{ color:var(--ink); font-weight:700; }
.dk-subnav .right{ margin-left:auto; display:flex; gap:22px; }
.dk-subnav .right a .o{ color:var(--brand); }
.dk-hero{ padding:20px 22px 26px; background:linear-gradient(180deg,#fdf4ee,#fff 65%); }
.dk-tabs{ display:flex; justify-content:center; align-items:center; gap:22px; }
.dk-tabs a{ font-size:23px; font-weight:800; color:var(--ink); text-decoration:none; position:relative; letter-spacing:-.01em; padding-bottom:8px; white-space:nowrap; }
.dk-tabs a.is-active{ color:var(--brand); }
.dk-tabs a.is-active::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:3px; background:var(--brand); border-radius:3px; }
.dk-tabs .ai .sup{ font-size:11px; color:var(--brand); vertical-align:super; font-weight:800; }
.dk-tabs .sep{ width:1px; height:24px; background:var(--line); }
.dk-bigsearch{ max-width:1040px; margin:18px auto 0; border:2px solid var(--brand); border-radius:22px; padding:15px 20px 13px; background:#fff; box-shadow:0 12px 32px -18px rgba(224,83,15,.45); }
.dk-bigsearch .q{ color:var(--ink-3); font-size:17px; font-weight:500; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dk-bigsearch input.q{ width:100%; border:0; outline:0; background:transparent; color:var(--ink); font-family:var(--font-body); padding:0; }
.dk-bigsearch input.q::placeholder{ color:var(--ink-3); }
.dk-bigsearch .row{ display:flex; align-items:center; margin-top:14px; }
.dk-bigsearch .img{ display:flex; align-items:center; gap:9px; color:var(--ink-2); font-weight:600; font-size:14.5px; white-space:nowrap; }
.dk-bigsearch .img svg{ width:21px; height:21px; }
.dk-bigsearch .go{ margin-left:auto; display:flex; align-items:center; gap:9px; background:linear-gradient(180deg,var(--brand-bright),var(--brand)); color:#fff; border:0; font-weight:700; font-size:15px; padding:0 30px; height:46px; border-radius:var(--r-pill); cursor:pointer; }
.dk-bigsearch .go svg{ width:18px; height:18px; }

@media (min-width:960px){
  .mhh-mobile{ display:none; }
  .mhh-desktop{ display:block; }
}


/* =========================================================================
   2. SITE FOOTER  (mh_site_footer_markup) — verbatim from inner.css §2
   Mobile = .ft, desktop = .ftd.
   ========================================================================= */

/* ---- 2a. Mobile footer (.ft) ---- */
.ft{ background:var(--navy); color:var(--ft-fg); font-size:14px; display:block; }
.ft a{ color:inherit; text-decoration:none; }

.ft-trust{ background:var(--navy-deep); border-bottom:1px solid var(--ft-line); }
.ft-trust__in{ display:flex; gap:8px; padding:12px 14px; overflow-x:auto; scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch; scrollbar-width:none; }
.ft-trust__in::-webkit-scrollbar{ display:none; }
.ft-sig{ flex:0 0 auto; scroll-snap-align:start; display:flex; align-items:center; gap:7px; white-space:nowrap;
  padding:6px 11px 6px 7px; border-radius:var(--r-pill); background:rgba(255,255,255,.04); border:1px solid var(--ft-line); }
.ft-sig .ic{ width:24px; height:24px; border-radius:7px; flex:none; display:grid; place-items:center;
  background:color-mix(in srgb,var(--gold) 16%,transparent); color:var(--gold); }
.ft-sig .ic svg{ width:13px; height:13px; }
.ft-sig b{ font-size:11.5px; font-weight:700; color:var(--ft-fg); }

.ft-news{ padding:16px 16px 18px; border-bottom:1px solid var(--ft-line); }
.ft-news h4{ font-family:var(--font-display); font-weight:600; font-size:16px; margin:0 0 3px; color:#fff; }
.ft-news p{ margin:0 0 10px; font-size:12px; color:var(--ft-mut); }
.ft-news form{ display:flex; gap:8px; }
.ft-field{ flex:1; min-width:0; display:flex; align-items:center; gap:8px; background:#fff; border-radius:var(--r-pill);
  padding:0 4px 0 13px; height:42px; border:1px solid transparent; }
.ft-field:focus-within{ border-color:var(--gold); box-shadow:0 0 0 3px color-mix(in srgb,var(--gold) 30%,transparent); }
.ft-field svg{ width:16px; height:16px; color:var(--ink-3); flex:none; }
/* Force-strip Astra/WooCommerce default input chrome so only the pill .ft-field
   shows (otherwise the email field renders its own square bordered box inside). */
.ft-field input{ flex:1; min-width:0; border:0 !important; outline:0; font-family:var(--font-body); font-size:13.5px; color:var(--ink); background:transparent !important; box-shadow:none !important; border-radius:0 !important; padding:0 !important; margin:0; height:100%; }
.ft-field input::placeholder{ color:var(--ink-3); }
.ft-sub{ flex:none; border:0; cursor:pointer; background:linear-gradient(180deg,var(--brand-bright),var(--brand)); color:#fff;
  font-family:var(--font-body); font-weight:700; font-size:13px; padding:0 16px; height:42px; border-radius:var(--r-pill);
  display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
.ft-news__ok{ margin:9px 0 0; font-size:11.5px; color:var(--gold); font-weight:600; display:none; align-items:center; gap:6px; }
.ft-news__ok svg{ width:13px; height:13px; }
.ft-news.is-done .ft-news__ok{ display:flex; }

.ft-cols{ border-bottom:1px solid var(--ft-line); }
.ft-col{ border-bottom:1px solid var(--ft-line); }
.ft-col:last-child{ border-bottom:0; }
.ft-col__btn{ width:100%; background:none; border:0; cursor:pointer; color:var(--ft-fg); font-family:var(--font-body);
  display:flex; align-items:center; gap:10px; padding:14px 16px; font-size:13.5px; font-weight:700; text-align:left; }
.ft-col__btn .chev{ margin-left:auto; width:16px; height:16px; color:var(--ft-mut-2); transition:transform .28s cubic-bezier(.45,.02,.18,1); flex:none; }
.ft-col.is-open .ft-col__btn .chev{ transform:rotate(180deg); color:var(--gold); }
.ft-col__panel{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .3s cubic-bezier(.45,.02,.18,1); }
.ft-col.is-open .ft-col__panel{ grid-template-rows:1fr; }
.ft-col__inner{ overflow:hidden; }
.ft-col__panel ul{ list-style:none; margin:0; padding:0 16px 12px; display:flex; flex-direction:column; gap:0; }
.ft-col__panel a{ display:block; padding:6px 0; font-size:13px; color:var(--ft-mut); font-weight:500; }
.ft-col__panel a:active{ color:#fff; }
.ft-col__panel a .badge{ margin-left:6px; font-size:9px; font-weight:800; letter-spacing:.04em; text-transform:uppercase;
  color:var(--gold); border:1px solid color-mix(in srgb,var(--gold) 40%,transparent); padding:1px 5px; border-radius:var(--r-pill); }

.ft-compact{ padding:14px 16px 16px; border-bottom:1px solid var(--ft-line); display:flex; flex-direction:column; gap:14px; }
.ft-charity-line{ display:flex; align-items:center; gap:9px; font-size:12.5px; color:var(--ft-mut); }
.ft-charity-line svg{ width:16px; height:16px; flex:none; color:var(--gold); }
.ft-charity-line b{ color:var(--gold); font-weight:700; }
.ft-marks{ display:flex; flex-wrap:wrap; gap:7px; }
.ft-mark{ height:30px; min-width:40px; padding:0 9px; border-radius:6px; background:#fff; display:inline-flex; align-items:center;
  justify-content:center; gap:4px; white-space:nowrap; font-weight:800; font-size:11px; color:var(--ink); border:1px solid rgba(255,255,255,.5); }
.ft-mark.bk{ color:var(--bkash); font-family:var(--font-display); font-style:italic; letter-spacing:-.02em; font-size:12px; }
.ft-mark.ng{ color:var(--nagad); font-family:var(--font-display); font-size:12px; }
.ft-mark .visa{ background:#1a1f71; color:#fff; font-size:8px; font-weight:800; padding:2px 4px; border-radius:2px; line-height:1; }
.ft-mark .mc{ background:#eb001b; color:#fff; font-size:8px; font-weight:800; padding:2px 4px; border-radius:2px; line-height:1; }
.ft-mark.cod{ background:transparent; color:var(--ft-fg); border:1px solid var(--ft-line); font-size:11px; }
.ft-mark.cod svg{ width:14px; height:14px; }
.ft-contact-row{ display:flex; flex-wrap:wrap; gap:8px 20px; font-size:12px; color:var(--ft-mut); }
.ft-contact-row a{ display:flex; align-items:center; gap:6px; color:var(--ft-fg); font-weight:500; font-size:12.5px; }
.ft-contact-row svg{ width:14px; height:14px; color:var(--gold); flex:none; }
.ft-social{ display:flex; gap:8px; }
.ft-social a{ width:34px; height:34px; border-radius:9px; display:grid; place-items:center; color:var(--ft-fg);
  background:rgba(255,255,255,.06); border:1px solid var(--ft-line); }
.ft-social a svg{ width:16px; height:16px; }

.ft-bottom{ background:var(--navy-deep); padding:14px 16px; display:flex; flex-wrap:wrap; align-items:center; gap:10px 14px; }
.ft-bottom img{ height:22px; width:auto; }
.ft-bottom .cc{ font-size:11px; color:var(--ft-mut-2); }
.ft-seg{ display:inline-flex; background:rgba(255,255,255,.05); border:1px solid var(--ft-line); border-radius:var(--r-pill); padding:2px; }
.ft-seg button{ border:0; cursor:pointer; background:transparent; color:var(--ft-mut); font-family:var(--font-body); font-weight:600;
  font-size:11px; padding:4px 10px; border-radius:var(--r-pill); white-space:nowrap; }
.ft-seg button.bn{ font-family:var(--font-bn); }
.ft-seg button.on{ background:var(--gold); color:#23200f; }
.ft-legal{ display:flex; flex-wrap:wrap; gap:4px 12px; }
.ft-legal a{ font-size:11px; color:var(--ft-mut-2); font-weight:500; }

/* ---- 2b. Desktop footer (.ftd) ---- */
.ftd{ background:var(--navy); color:var(--ft-fg); font-size:13px; display:none; }
.ftd a{ color:inherit; text-decoration:none; }

.ftd-trust{ background:var(--navy-deep); border-bottom:1px solid var(--ft-line); }
.ftd-trust__in{ max-width:1140px; margin:0 auto; display:flex; align-items:center; justify-content:center; gap:28px; padding:11px 24px; flex-wrap:wrap; }
.ftd-sig{ display:flex; align-items:center; gap:8px; white-space:nowrap; }
.ftd-sig .ic{ width:22px; height:22px; flex:none; display:grid; place-items:center; color:var(--gold); }
.ftd-sig .ic svg{ width:16px; height:16px; }
.ftd-sig b{ font-size:12px; font-weight:700; color:var(--ft-fg); }
.ftd-sig span{ font-size:11px; color:var(--ft-mut-2); margin-left:2px; }

.ftd-main{ max-width:1140px; margin:0 auto; padding:32px 24px 28px; display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1fr; gap:32px; }
.ftd-brandcol{ display:flex; flex-direction:column; gap:12px; }
.ftd-brandcol img{ height:30px; width:auto; align-self:flex-start; }
.ftd-brandcol .blurb{ font-size:12.5px; color:var(--ft-mut); max-width:30ch; line-height:1.5; }
.ftd-news{ margin-top:4px; }
.ftd-news p{ margin:0 0 8px; font-size:11.5px; color:var(--ft-mut-2); }
.ftd-news form{ display:flex; gap:6px; max-width:300px; }
.ftd-news .ft-field{ height:38px; font-size:12.5px; padding:0 4px 0 11px; }
.ftd-news .ft-field input{ font-size:12.5px; }
.ftd-news .ft-sub{ height:38px; padding:0 14px; font-size:12px; }
.ftd-news .ft-news__ok{ margin-top:8px; font-size:11px; }
.ftd-news.is-done .ft-news__ok{ display:flex; }

.ftd-col h5{ margin:0 0 12px; font-weight:700; font-size:12.5px; color:#fff; letter-spacing:.01em; }
.ftd-col h5 .badge{ font-size:8.5px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; color:var(--gold);
  border:1px solid color-mix(in srgb,var(--gold) 40%,transparent); padding:1px 5px; border-radius:var(--r-pill); margin-left:5px; }
.ftd-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; }
.ftd-col a{ font-size:12.5px; color:var(--ft-mut); font-weight:500; }
.ftd-col a:hover{ color:#fff; }

.ftd-bottom{ background:var(--navy-deep); border-top:1px solid var(--ft-line); }
.ftd-bottom__in{ max-width:1140px; margin:0 auto; padding:14px 24px; display:flex; align-items:center; gap:14px 20px; flex-wrap:wrap; }
.ftd-charity-line{ display:flex; align-items:center; gap:7px; font-size:11.5px; color:var(--ft-mut); }
.ftd-charity-line svg{ width:15px; height:15px; flex:none; color:var(--gold); }
.ftd-charity-line b{ color:var(--gold); font-weight:700; }
.ftd-sep{ width:1px; height:18px; background:var(--ft-line); flex:none; }
.ftd-marks{ display:flex; align-items:center; gap:7px; }
.ftd-marks .ft-mark{ height:26px; min-width:36px; padding:0 8px; border-radius:5px; font-size:10px; }
.ftd-marks .ft-mark.bk{ font-size:11px; } .ftd-marks .ft-mark.ng{ font-size:11px; }
.ftd-marks .ft-mark .visa,.ftd-marks .ft-mark .mc{ font-size:7.5px; padding:1px 3px; }
.ftd-marks .ft-mark.cod{ font-size:10px; }
.ftd-marks .ft-mark.cod svg{ width:13px; height:13px; }
.ftd-right{ margin-left:auto; display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.ftd-social{ display:flex; gap:6px; }
.ftd-social a{ width:28px; height:28px; border-radius:7px; display:grid; place-items:center; color:var(--ft-mut);
  background:rgba(255,255,255,.05); border:1px solid var(--ft-line); }
.ftd-social a:hover{ color:#fff; }
.ftd-social a svg{ width:14px; height:14px; }
.ftd-legal{ display:flex; gap:12px; }
.ftd-legal a{ font-size:11px; color:var(--ft-mut-2); font-weight:500; }
.ftd-legal a:hover{ color:#fff; }

/* full-bleed: navy-deep must reach both page edges like .ftd-bottom above it, or
   the parent .ftd navy shows through at the bottom corners (the "holes" bug). */
.ftd-copy{ padding:10px 24px; text-align:center; font-size:11px; color:var(--ft-mut-2);
  background:var(--navy-deep); border-top:1px solid color-mix(in srgb,var(--ft-line) 50%,transparent); }
.ftd-copy b{ color:var(--ft-mut); font-weight:600; }

/* footer mobile/desktop switch */
@media (min-width:960px){
  .ft{ display:none; }
  .ftd{ display:block; }
}
@media (prefers-reduced-motion: reduce){ .ft-col__panel,.ft-col__btn .chev{ transition:none; } }


/* =========================================================================
   3. AUTH — branded login / register  (logged-out My Account)
   Markup: woocommerce/myaccount/form-login.php (.mh-auth). Ports the v7
   "Authentication" board's split layout onto WooCommerce's real
   username/password forms. Scoped to body.woocommerce-account:not(.logged-in)
   so the logged-IN account dashboard is untouched.
   ========================================================================= */

/* 3.0  Astra full-width neutralisation (logged-out account only) */
body.woocommerce-account:not(.logged-in) #secondary{ display:none !important; width:0 !important; overflow:hidden !important; }
body.woocommerce-account:not(.logged-in) #primary{ width:100% !important; max-width:100% !important; padding-top:0 !important; }
body.woocommerce-account:not(.logged-in) .ast-container{ max-width:1080px !important; }
body.woocommerce-account:not(.logged-in) .entry-header,
body.woocommerce-account:not(.logged-in) .page-title,
body.woocommerce-account:not(.logged-in) .ast-archive-description,
body.woocommerce-account:not(.logged-in) .woocommerce-breadcrumb{ display:none !important; }
body.woocommerce-account:not(.logged-in) #content .ast-article-single{ margin:0 !important; padding:0 !important; border:0 !important; background:transparent !important; box-shadow:none !important; }
body.woocommerce-account:not(.logged-in) #content{ background:#f4f5f7 !important; }

/* 3.1  Shell */
.mh-account--auth{ padding:clamp(18px,4vw,40px) 16px; }
.mh-auth{ max-width:1000px; margin:0 auto; color:var(--ink); font-family:var(--font-body); }
.mh-auth *{ box-sizing:border-box; }
.mh-auth__split{ display:grid; grid-template-columns:1fr 1fr; background:#fff; border:1px solid var(--line);
  border-radius:18px; overflow:hidden; box-shadow:0 18px 50px -28px rgba(20,29,51,.45); min-height:540px; }

/* 3.2  Brand panel (left) */
.mh-auth__brand{ background:linear-gradient(155deg,#fde7da 0%,#fef6ee 100%); padding:clamp(28px,4vw,44px);
  position:relative; overflow:hidden; display:flex; flex-direction:column; justify-content:center; }
.mh-auth__brand::after{ content:""; position:absolute; right:-80px; bottom:-80px; width:280px; height:280px; border-radius:50%;
  background:radial-gradient(circle,rgba(224,83,15,.18),transparent 70%); pointer-events:none; }
.mh-auth__brand .kicker{ font-size:12px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--brand-ink); }
.mh-auth__brand h2{ font-family:var(--font-display); font-weight:700; font-size:clamp(26px,3vw,34px); line-height:1.12;
  letter-spacing:-.015em; margin:12px 0 14px; max-width:15ch; color:var(--ink); }
.mh-auth__brand h2 em{ font-style:italic; color:var(--brand); font-weight:600; }
.mh-auth__brand p{ font-size:15px; color:var(--ink-2); max-width:38ch; line-height:1.55; margin:0 0 22px; }
.mh-auth__brand .promises{ display:flex; flex-direction:column; gap:12px; max-width:34ch; margin:0; padding:0; }
.mh-auth__brand .promises li{ list-style:none; display:flex; align-items:flex-start; gap:10px; font-size:13.5px;
  color:var(--ink); font-weight:500; line-height:1.4; }
.mh-auth__brand .promises li svg{ width:18px; height:18px; flex:none; margin-top:1px; color:var(--green); }
.mh-auth__brand .promises b{ font-weight:700; }

/* 3.3  Form panel (right) */
.mh-auth__form{ padding:clamp(26px,3.4vw,42px) clamp(24px,3vw,44px) clamp(22px,3vw,34px); display:flex; flex-direction:column; }
.mh-auth__top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.mh-auth__brandchip{ display:inline-flex; align-items:center; background:var(--navy); border-radius:10px; padding:8px 14px; }
.mh-auth__brandchip img{ height:26px; width:auto; display:block; }
.mh-auth__form h3{ font-family:var(--font-display); font-weight:700; font-size:clamp(20px,2.4vw,24px); margin:2px 0 18px; color:var(--ink); }

/* 3.4  Tabs (radio-driven, no JS) */
.mh-auth__radio{ position:absolute; opacity:0; pointer-events:none; }
.mh-auth__tabs{ display:grid; grid-template-columns:1fr 1fr; border-bottom:1px solid var(--line); margin-bottom:20px; }
.mh-auth__tab{ padding:13px 0; text-align:center; font-weight:700; font-size:14px; color:var(--ink-3); cursor:pointer;
  position:relative; user-select:none; }
.mh-auth__tab::after{ content:""; position:absolute; left:0; right:0; bottom:-1px; height:2.5px; background:var(--brand);
  border-radius:3px 3px 0 0; transform:scaleX(0); transition:transform .18s; }
#mh-tab-login:checked ~ .mh-auth__tabs .mh-auth__tab--login,
#mh-tab-reg:checked ~ .mh-auth__tabs .mh-auth__tab--reg{ color:var(--ink); }
#mh-tab-login:checked ~ .mh-auth__tabs .mh-auth__tab--login::after,
#mh-tab-reg:checked ~ .mh-auth__tabs .mh-auth__tab--reg::after{ transform:scaleX(1); }
/* reg hidden by default; login shows. When the reg tab is picked, swap. */
.mh-auth__panel--reg{ display:none; }
#mh-tab-reg:checked ~ .mh-auth__panel--login{ display:none; }
#mh-tab-reg:checked ~ .mh-auth__panel--reg{ display:block; }

/* 3.5  Fields */
.mh-auth .form-row{ display:flex; flex-direction:column; margin:0 0 15px; padding:0; }
.mh-auth label{ font-size:13px; font-weight:700; color:var(--ink-2); margin-bottom:7px; }
.mh-auth label .required{ color:var(--brand); border:0; text-decoration:none; }
.mh-auth input.input-text,
.mh-auth input[type=text],
.mh-auth input[type=email],
.mh-auth input[type=password],
.mh-auth input[type=tel]{ width:100%; font-family:var(--font-body); font-size:15.5px; color:var(--ink);
  padding:13px 15px; border:1.5px solid var(--line); border-radius:12px; background:#fff; outline:0;
  transition:border-color .15s, box-shadow .15s; }
.mh-auth input:focus{ border-color:var(--brand); box-shadow:0 0 0 3px var(--brand-soft); }
.mh-auth input::placeholder{ color:var(--ink-3); }

/* 3.6  Remember + forgot row */
.mh-auth__row{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin:4px 0 18px; flex-wrap:wrap; }
.mh-auth__remember{ display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--ink-2); font-weight:500; cursor:pointer; margin:0; }
.mh-auth__remember input{ width:16px; height:16px; accent-color:var(--brand); }
.mh-auth__forgot{ font-size:13.5px; font-weight:700; color:var(--brand-ink); text-decoration:none; }
.mh-auth__forgot:hover{ text-decoration:underline; }

/* 3.7  Submit (primary, full, lg) */
.mh-auth__submit{ width:100%; display:flex; align-items:center; justify-content:center; gap:9px;
  background:linear-gradient(180deg,var(--brand-bright),var(--brand)) !important; color:#fff !important; border:0 !important;
  border-radius:var(--r-pill) !important; padding:14px 22px !important; font-family:var(--font-body); font-weight:700;
  font-size:15.5px; cursor:pointer; box-shadow:0 10px 24px -12px rgba(224,83,15,.7); transition:filter .15s, transform .05s; }
.mh-auth__submit:hover{ filter:brightness(1.04); }
.mh-auth__submit:active{ transform:translateY(1px); }
.mh-auth__submit svg{ width:18px; height:18px; }

/* 3.8  Switch link, hint, notices, trust */
.mh-auth__switch{ text-align:center; margin-top:16px; font-size:13.5px; color:var(--ink-2); }
.mh-auth__link{ color:var(--brand-ink); font-weight:700; cursor:pointer; text-decoration:underline; text-underline-offset:3px; }
.mh-auth__hint{ font-size:13px; color:var(--ink-3); line-height:1.5; margin:0 0 15px; }
.mh-auth .woocommerce-error,
.mh-auth .woocommerce-message,
.mh-auth .woocommerce-info{ margin:0 0 16px; padding:11px 14px 11px 14px; border-radius:12px; font-size:13.5px;
  list-style:none; line-height:1.45; }
.mh-auth .woocommerce-error{ background:var(--red-soft,#fdeaea); border:1px solid #f5c5c5; color:#7a1010; }
.mh-auth .woocommerce-error::before,
.mh-auth .woocommerce-message::before,
.mh-auth .woocommerce-info::before{ display:none; }
.mh-auth__trust{ display:flex; flex-wrap:wrap; gap:12px 18px; justify-content:center; margin-top:auto; padding-top:22px;
  border-top:1px solid var(--line-2); }
.mh-auth__trust span{ display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:600; color:var(--ink-3); }
.mh-auth__trust svg{ width:15px; height:15px; color:var(--green); }

/* 3.9  Responsive — collapse to a single form card on phones */
@media (max-width:840px){
  .mh-auth__split{ grid-template-columns:1fr; min-height:0; }
  .mh-auth__brand{ display:none; }
}


/* =========================================================================
   4. DOKAN VENDOR DASHBOARD — targeted tweaks (full reskin pending via Claude
   Design). chrome.css loads here, so these scoped rules apply on /dashboard/.
   ========================================================================= */

/* 4.1 + 4.2 (order-status "Edit" button restyle + downloadable-panel hide) were
   interim tweaks for the DEFAULT Dokan order detail. They are SUPERSEDED by the
   full Orders reskin (dokan/orders/details.php — bespoke status stepper, no
   downloadable panel), so they have been removed. */

/* 4.3  Vendor ID chip (legacy mh_vendorid hook, now disabled — the navy
   sidebar's .vside__brand carries the ID on every tab). Kept for safety. */
.mh-vendorid{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin:0 0 16px; padding:9px 14px;
  background:#fff; border:1px solid var(--line); border-left:3px solid var(--brand); border-radius:10px;
  font-family:var(--font-body); }
.mh-vendorid__lbl{ font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-3); }
.mh-vendorid__num{ font-size:15px; font-weight:800; color:var(--ink); font-variant-numeric:tabular-nums; }
.mh-vendorid__copy{ display:inline-flex; align-items:center; gap:5px; padding:4px 10px; border:1px solid var(--line);
  background:var(--app-bg,#f4f5f7); border-radius:var(--r-pill); color:var(--ink-2); font-weight:600; font-size:12px; cursor:pointer; }
.mh-vendorid__copy svg{ width:14px; height:14px; }
.mh-vendorid__copy:hover{ border-color:var(--brand); color:var(--brand-ink); }
.mh-vendorid__copy.is-copied{ background:var(--green-soft,#e6f5ec); border-color:var(--green,#1a9d5a); color:var(--green-ink,#0c3a27); }
.mh-vendorid__hint{ font-size:11.5px; color:var(--ink-3); margin-left:auto; }
@media (max-width:560px){ .mh-vendorid__hint{ display:none; } }

/* 4.4  Kill storefront floating widgets that leak onto the seller dashboard
   (Modern Cart's floating cart button, Power Coupons drawer). A vendor managing
   their shop has no use for a shopper cart bubble, and it overlapped the money
   card on mobile. Covers every dashboard tab (chrome.css loads on all of them). */
body.dokan-dashboard #moderncart-floating-cart,
body.dokan-dashboard [id*="moderncart"],
body.dokan-dashboard [class*="moderncart"],
body.dokan-dashboard [class*="power-coupons"],
body.dokan-dashboard [id*="power-coupons"]{ display:none !important; }

/* 4.5  ModernCart's English "Added to cart" toast is redundant (adds are already
   confirmed by the cart badge, the button state, and the Bangla cart-page notice)
   and it leaked onto inner pages like /my-account/. Hide the toast, keep the FAB. */
.moderncart-add-to-cart-notification,
.moderncart-floating-cart-button-notification{ display:none !important; }
