/* ============ MONOLITH MARKETPLACE - Premium Custom Styles ============ */
:root{
  --brand:#ff5b1f;
  --brand-2:#ff8a4c;
  --brand-dark:#e64a0f;
  --brand-grad:linear-gradient(135deg,#ff7a18 0%,#ff3d00 100%);
  --brand-soft:#fff2ea;
  --ink:#0b1220;
  --ink-2:#1f2937;
  --muted:#64748b;
  --line:#eef1f6;
  --bg:#f7f8fc;
  --card:#ffffff;
  --success:#16a34a;
  --warn:#f59e0b;
  --info:#2563eb;
  --shadow-sm:0 4px 14px rgba(15,23,42,.06);
  --shadow:0 10px 30px rgba(15,23,42,.08);
  --shadow-lg:0 24px 60px rgba(15,23,42,.14);
  --shadow-brand:0 14px 34px rgba(255,91,31,.35);
  --radius:16px;
  --radius-sm:10px;
  --radius-lg:24px;
}

*{ -webkit-font-smoothing:antialiased; }
html,body{ background:var(--bg); color:var(--ink); font-family:'Inter','Poppins',system-ui,sans-serif; }
h1,h2,h3,h4,h5,h6,.display-1,.display-2,.display-3,.display-4{ font-family:'Poppins','Inter',sans-serif; font-weight:800; letter-spacing:-.02em; color:var(--ink); }
h1{ font-size:clamp(2.2rem,4.5vw,3.6rem); line-height:1.05; }
h2{ font-size:clamp(1.8rem,3.3vw,2.6rem); line-height:1.1; }
h3{ font-size:clamp(1.35rem,2.2vw,1.75rem); }
p{ color:#475569; line-height:1.65; }
a{ text-decoration:none; color:inherit; }
.section{ padding:80px 0; }
.section-sm{ padding:56px 0; }
.section-title{ font-weight:800; margin-bottom:8px; }
.eyebrow{ color:var(--brand); font-weight:700; letter-spacing:.18em; text-transform:uppercase; font-size:.78rem; }
.text-brand{ color:var(--brand)!important; }
.bg-brand{ background:var(--brand-grad)!important; color:#fff; }
.bg-soft{ background:var(--brand-soft)!important; }
.divider{ height:1px; background:var(--line); }

/* ---------- BUTTONS ---------- */
.btn{
  font-weight:700; border-radius:999px; padding:.85rem 1.6rem;
  transition:transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  display:inline-flex; align-items:center; gap:.55rem; border:0; font-size:1rem;
}
.btn-lg{ padding:1.05rem 2rem; font-size:1.08rem; }
.btn-sm{ padding:.55rem 1rem; font-size:.9rem; }
.btn-brand{ background:var(--brand-grad); color:#fff; box-shadow:var(--shadow-brand); }
.btn-brand:hover{ color:#fff; transform:translateY(-2px); box-shadow:0 20px 44px rgba(255,91,31,.45); }
.btn-dark-pill{ background:var(--ink); color:#fff; }
.btn-dark-pill:hover{ background:#000; color:#fff; transform:translateY(-2px); }
.btn-outline-brand{ background:#fff; color:var(--brand); border:2px solid var(--brand); }
.btn-outline-brand:hover{ background:var(--brand); color:#fff; transform:translateY(-2px); box-shadow:var(--shadow-brand); }
.btn-ghost{ background:#f1f5f9; color:var(--ink); }
.btn-ghost:hover{ background:#e2e8f0; color:var(--ink); }
.btn-white{ background:#fff; color:var(--ink); }
.btn-white:hover{ background:#f1f5f9; }

/* ---------- HEADER ---------- */
.top-bar{ background:linear-gradient(90deg,#0b1220,#111827); color:#cbd5e1; font-size:.83rem; padding:8px 0; }
.top-bar a{ color:#cbd5e1; margin-right:14px; }
.top-bar a:hover{ color:#fff; }
.top-bar .badge-hot{ background:var(--brand); color:#fff; border-radius:999px; padding:2px 10px; font-weight:700; margin-right:8px; }

.site-header{ background:#fff; border-bottom:1px solid var(--line); position:sticky; top:0; z-index:1030; box-shadow:0 4px 20px rgba(15,23,42,.04); }
.site-header .logo img{ height:44px; }
.search-wrap{ position:relative; flex:1; max-width:720px; }
.search-input{
  width:100%; height:52px; border-radius:999px; border:2px solid var(--line);
  padding:0 130px 0 52px; background:#f8fafc; font-size:1rem; transition:.2s;
}
.search-input:focus{ outline:none; background:#fff; border-color:var(--brand); box-shadow:0 0 0 6px rgba(255,91,31,.12); }
.search-wrap .bi-search{ position:absolute; left:20px; top:50%; transform:translateY(-50%); color:var(--muted); font-size:1.1rem; }
.search-wrap .mic{ position:absolute; right:100px; top:50%; transform:translateY(-50%); color:var(--muted); background:none; border:0; }
.search-btn{
  position:absolute; right:6px; top:50%; transform:translateY(-50%);
  background:var(--brand-grad); color:#fff; border:0; height:40px; padding:0 22px;
  border-radius:999px; font-weight:700; box-shadow:var(--shadow-brand);
}
.trending-pop{
  position:absolute; top:calc(100% + 10px); left:0; right:0; background:#fff;
  border-radius:20px; box-shadow:var(--shadow-lg); padding:18px 22px; z-index:20; display:none;
}
.trending-pop.show{ display:block; }
.trending-pop h6{ color:var(--muted); font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; margin-bottom:12px; }
.trending-pop .chip{ display:inline-block; background:#f1f5f9; color:var(--ink); padding:8px 16px; border-radius:999px; margin:4px 6px 4px 0; font-size:.9rem; font-weight:600; transition:.2s; cursor:pointer; }
.trending-pop .chip:hover{ background:var(--brand); color:#fff; }

.header-actions{ display:flex; align-items:center; gap:6px; }
.icon-btn{
  width:46px; height:46px; border-radius:50%; background:#f1f5f9; color:var(--ink);
  display:inline-flex; align-items:center; justify-content:center; position:relative;
  border:0; transition:.2s; font-size:1.15rem;
}
.icon-btn:hover{ background:var(--brand); color:#fff; transform:translateY(-2px); }
.icon-btn .dot{ position:absolute; top:8px; right:10px; width:9px; height:9px; border-radius:50%; background:var(--brand); border:2px solid #fff; }
.icon-btn .count{
  position:absolute; top:-4px; right:-4px; background:var(--brand); color:#fff;
  font-size:.72rem; font-weight:800; min-width:22px; height:22px; border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center; padding:0 6px; border:2px solid #fff;
}

.cat-btn{
  display:inline-flex; align-items:center; gap:8px; background:#fff; border:2px solid var(--line);
  color:var(--ink); padding:10px 18px; border-radius:999px; font-weight:700; transition:.2s;
}
.cat-btn:hover{ border-color:var(--brand); color:var(--brand); }

/* Category Mega Menu - Nested Tree */
.cat-mega{
  position:absolute; top:100%; left:0; right:0; background:#fff; box-shadow:var(--shadow-lg);
  border-top:1px solid var(--line); display:none; z-index:25; padding:20px 0;
}
.cat-mega.show{ display:block; }
.cat-tree{ display:flex; flex-wrap:wrap; gap:0; padding:10px 0; }
.cat-tree-item{ position:relative; }
.cat-tree-link{
  display:flex; align-items:center; gap:8px; padding:10px 20px; color:var(--ink); font-weight:600;
  font-size:.95rem; transition:.15s; white-space:nowrap; border-radius:8px; margin:2px 4px;
}
.cat-tree-link:hover{ background:var(--brand-soft); color:var(--brand); }
.cat-tree-link .cat-arrow{ font-size:.7rem; color:var(--muted); transition:transform .25s ease; margin-left:auto; }
.cat-tree-item:hover > .cat-tree-link .cat-arrow{ transform:rotate(90deg); }
.cat-tree-item.has-children > .cat-tree-link .cat-arrow.open{ transform:rotate(90deg); }
.cat-tree-sub{
  display:none; position:absolute; top:0; left:100%; background:#fff; min-width:220px;
  box-shadow:var(--shadow-lg); border-radius:var(--radius-sm); padding:8px 0; z-index:30;
  max-height:420px; overflow-y:auto; animation:fadeSlideIn .2s ease;
}
.cat-tree-item:hover > .cat-tree-sub{ display:block; }
.cat-tree-sub.open{ display:block; }
.cat-tree-sub .cat-tree-link{ padding:8px 18px; font-size:.9rem; font-weight:500; border-radius:6px; margin:1px 6px; transition:background .15s, color .15s; }
.cat-tree-sub .cat-tree-link:hover{ background:var(--brand-soft); color:var(--brand); }
.cat-tree-sub .cat-tree-sub{ top:-8px; }

@keyframes fadeSlideIn{
  from{ opacity:0; transform:translateX(-8px); }
  to{ opacity:1; transform:translateX(0); }
}

/* Mobile nav drawer */
.mobile-nav{ position:fixed; inset:0 30% 0 0; background:#fff; z-index:1050; transform:translateX(-105%); transition:.3s; padding:22px; overflow-y:auto; box-shadow:var(--shadow-lg); }
.mobile-nav.open{ transform:translateX(0); }
.mobile-nav a{ display:block; padding:14px 6px; border-bottom:1px solid var(--line); font-weight:600; color:var(--ink); }
.mobile-nav a:hover{ color:var(--brand); }
.overlay{ position:fixed; inset:0; background:rgba(0,0,0,.4); z-index:1040; display:none; }
.overlay.show{ display:block; }

/* ---------- HERO SLIDER ---------- */
.hero{
  position:relative; border-radius:var(--radius-lg); overflow:hidden;
  margin:24px 0 0; box-shadow:var(--shadow-lg);
}
.hero .slide{
  min-height:460px; padding:60px; display:grid; grid-template-columns:1.1fr .9fr;
  align-items:center; color:#fff; position:relative; background:#0b1220;
}
.hero .slide::before{ content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(11,18,32,.92) 0%, rgba(11,18,32,.6) 55%, rgba(11,18,32,0) 100%); }
.hero .slide > *{ position:relative; z-index:2; }
.hero .slide .bg{ position:absolute; inset:0; z-index:0; background-size:cover; background-position:center; opacity:.75; }
.hero .badge-pill{ display:inline-flex; align-items:center; gap:6px; background:var(--brand-grad); color:#fff; padding:8px 18px; border-radius:999px; font-weight:700; font-size:.85rem; box-shadow:var(--shadow-brand); }
.hero h1{ color:#fff; font-size:clamp(2.4rem,5vw,4.2rem); margin:18px 0; }
.hero h1 span{ background:linear-gradient(90deg,#ffb37a,#ff5b1f); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p{ color:#cbd5e1; font-size:1.15rem; max-width:520px; }
.hero-dots{ position:absolute; bottom:22px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:5; }
.hero-dots button{ width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.4); border:0; padding:0; transition:.2s; }
.hero-dots button.active{ width:32px; border-radius:999px; background:var(--brand); }
.hero-arrows button{
  position:absolute; top:50%; transform:translateY(-50%); z-index:5;
  width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,.15); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.25); color:#fff; font-size:1.4rem;
}
.hero-arrows .prev{ left:20px; } .hero-arrows .next{ right:20px; }
.hero-arrows button:hover{ background:var(--brand); border-color:var(--brand); }
@media (max-width:768px){
  .hero .slide{ grid-template-columns:1fr; padding:32px 22px; min-height:420px; text-align:left; }
}

/* ---------- USP BAR ---------- */
.usp-bar{ background:#fff; border-radius:var(--radius); padding:22px; margin-top:-40px; position:relative; z-index:5; box-shadow:var(--shadow); }
.usp-item{ display:flex; align-items:center; gap:14px; padding:12px; }
.usp-item .ic{ width:54px; height:54px; border-radius:14px; background:var(--brand-soft); color:var(--brand); display:grid; place-items:center; font-size:1.4rem; flex-shrink:0; }
.usp-item h6{ margin:0; font-weight:800; font-size:1rem; }
.usp-item small{ color:var(--muted); }

/* ---------- SECTION HEADER ---------- */
.sec-head{ display:flex; align-items:end; justify-content:space-between; margin-bottom:32px; gap:20px; flex-wrap:wrap; }
.sec-head .eyebrow{ display:block; margin-bottom:6px; }

/* ---------- CATEGORY CARDS ---------- */
.cat-card{
  position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:1/1.05;
  box-shadow:var(--shadow-sm); transition:.3s; cursor:pointer;
}
.cat-card img{ width:100%; height:100%; object-fit:cover; transition:.5s; }
.cat-card::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.85) 100%);
}
.cat-card .lbl{
  position:absolute; left:0; right:0; bottom:0; padding:18px 20px; color:#fff; z-index:2;
}
.cat-card .lbl h5{ color:#fff; font-weight:800; margin:0 0 4px; font-size:1.15rem; }
.cat-card .lbl small{ color:rgba(255,255,255,.85); }
.cat-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.cat-card:hover img{ transform:scale(1.08); }

/* ---------- PRODUCT CARD ---------- */
.product-card{
  background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm);
  transition:.3s; position:relative; height:100%; display:flex; flex-direction:column;
}
.product-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.product-card .thumb{ position:relative; aspect-ratio:1/1; overflow:hidden; background:#f8fafc; }
.product-card .thumb img{ width:100%; height:100%; object-fit:cover; transition:.4s; }
.product-card:hover .thumb img{ transform:scale(1.08); }
.product-card .badge-tag{
  position:absolute; top:12px; left:12px; background:var(--brand-grad); color:#fff;
  padding:5px 12px; border-radius:999px; font-size:.72rem; font-weight:800; box-shadow:var(--shadow-brand);
}
.product-card .badge-tag.new{ background:linear-gradient(135deg,#22c55e,#16a34a); box-shadow:0 8px 20px rgba(34,197,94,.35); }
.product-card .fav{
  position:absolute; top:12px; right:12px; width:40px; height:40px; border-radius:50%;
  background:#fff; border:0; color:#94a3b8; display:grid; place-items:center; box-shadow:var(--shadow-sm); transition:.2s;
}
.product-card .fav:hover, .product-card .fav.active{ color:#fff; background:var(--brand); }
.product-card .body{ padding:18px; display:flex; flex-direction:column; gap:8px; flex:1; }
.product-card .vendor{ color:var(--muted); font-size:.78rem; font-weight:600; text-transform:uppercase; letter-spacing:.08em; }
.product-card .title{ font-weight:700; color:var(--ink); font-size:1rem; line-height:1.35; min-height:2.7em; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.product-card .stars{ color:#f59e0b; font-size:.85rem; }
.product-card .stars small{ color:var(--muted); margin-left:6px; }
.product-card .price{ display:flex; align-items:baseline; gap:8px; margin-top:4px; }
.product-card .price .now{ font-size:1.25rem; font-weight:800; color:var(--ink); }
.product-card .price .was{ text-decoration:line-through; color:var(--muted); font-size:.9rem; }
.product-card .price .off{ color:var(--brand); font-weight:800; font-size:.85rem; }
.product-card .btn-add{ margin-top:10px; }

/* ---------- BRAND CARD ---------- */
/* ---------- BRAND CARDS ---------- */
.brand-card-new{
  display:flex; flex-direction:column; align-items:center; padding:20px 12px 16px;
  background:#fff; border-radius:var(--radius); border:1px solid var(--line);
  box-shadow:var(--shadow-sm); transition:all .25s; text-decoration:none; color:var(--ink);
}
.brand-card-new:hover{
  border-color:var(--brand); box-shadow:0 8px 24px rgba(255,91,31,.12); transform:translateY(-4px);
}
.brand-img-wrap{
  width:80px; height:80px; border-radius:50%; overflow:hidden; background:var(--brand-soft);
  display:grid; place-items:center; margin-bottom:12px; border:3px solid var(--line);
  transition:border-color .25s;
}
.brand-card-new:hover .brand-img-wrap{ border-color:var(--brand); }
.brand-img-wrap img{ width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.brand-card-new:hover .brand-img-wrap img{ transform:scale(1.08); }
.brand-name{ font-weight:700; font-size:.85rem; text-align:center; line-height:1.3; }

/* ---------- DEAL BANNER ---------- */
.deal-banner{
  position:relative; border-radius:var(--radius-lg); overflow:hidden; color:#fff; padding:56px;
  background:linear-gradient(135deg,#0b1220,#1f2937);
}
.deal-banner .bg{ position:absolute; inset:0; background-size:cover; opacity:.35; }
.deal-banner > *{ position:relative; z-index:2; }
.countdown{ display:flex; gap:12px; margin:22px 0; }
.countdown .box{ background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15); border-radius:14px; padding:14px 18px; text-align:center; min-width:80px; backdrop-filter:blur(10px); }
.countdown .box b{ display:block; font-size:2rem; font-weight:800; }
.countdown .box small{ opacity:.75; font-size:.75rem; text-transform:uppercase; letter-spacing:.1em; }

/* ---------- TESTIMONIALS ---------- */
.testi-card{ background:#fff; border-radius:var(--radius); padding:28px; box-shadow:var(--shadow-sm); transition:.3s; height:100%; }
.testi-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.testi-card .stars{ color:#f59e0b; margin-bottom:12px; }
.testi-card p{ font-size:1rem; color:var(--ink-2); }
.testi-card .u{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.testi-card .u img{ width:48px; height:48px; border-radius:50%; object-fit:cover; }
.testi-card .u b{ display:block; }
.testi-card .u small{ color:var(--muted); }

/* ---------- NEWSLETTER ---------- */
.newsletter{
  background:var(--brand-grad); color:#fff; border-radius:var(--radius-lg);
  padding:56px; box-shadow:var(--shadow-brand); position:relative; overflow:hidden;
}
.newsletter::before{ content:""; position:absolute; right:-80px; top:-80px; width:300px; height:300px; border-radius:50%; background:rgba(255,255,255,.1); }
.newsletter::after{ content:""; position:absolute; left:-60px; bottom:-100px; width:260px; height:260px; border-radius:50%; background:rgba(0,0,0,.08); }
.newsletter > *{ position:relative; z-index:2; }
.newsletter h2{ color:#fff; }
.newsletter form{ display:flex; gap:10px; max-width:560px; margin-top:22px; background:#fff; padding:6px; border-radius:999px; }
.newsletter input{ flex:1; border:0; padding:0 20px; border-radius:999px; font-size:1rem; }
.newsletter input:focus{ outline:none; }
.newsletter button{ background:var(--ink); color:#fff; border:0; padding:12px 26px; border-radius:999px; font-weight:700; }

/* ---------- FOOTER ---------- */
footer{ background:#0b1220; color:#cbd5e1; padding:72px 0 20px; margin-top:80px; }
footer h6{ color:#fff; font-weight:800; margin-bottom:18px; text-transform:uppercase; letter-spacing:.08em; font-size:.85rem; }
footer a{ color:#94a3b8; display:block; padding:5px 0; transition:.2s; }
footer a:hover{ color:var(--brand); padding-left:4px; }
footer .about-col p{ color:#94a3b8; }
footer .about-col .ic{ display:flex; align-items:start; gap:12px; margin-bottom:14px; color:#cbd5e1; }
footer .about-col .ic i{ color:var(--brand); font-size:1.1rem; margin-top:3px; }
footer .socials{ display:flex; gap:10px; margin-top:18px; }
footer .socials a{ width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,.06); display:grid; place-items:center; color:#fff; padding:0; }
footer .socials a:hover{ background:var(--brand); padding-left:0; }
footer .bar{ border-top:1px solid rgba(255,255,255,.08); margin-top:52px; padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.9rem; }

/* ---------- BREADCRUMB ---------- */
.crumb{ background:#fff; padding:14px 22px; border-radius:14px; box-shadow:var(--shadow-sm); }
.crumb a{ color:var(--muted); font-weight:600; }
.crumb a:hover{ color:var(--brand); }
.crumb .sep{ margin:0 8px; color:#cbd5e1; }
.crumb .cur{ color:var(--ink); font-weight:700; }

/* ---------- PAGE HEADER ---------- */
.page-header{ padding:40px 0 24px; }
.page-header h1{ font-size:clamp(2rem,4vw,3rem); margin:14px 0 6px; }
.page-header p{ color:var(--muted); font-size:1.1rem; }

/* ---------- SHOP: FILTERS ---------- */
.filter-card{ background:#fff; border-radius:var(--radius); padding:22px; box-shadow:var(--shadow-sm); margin-bottom:20px; }
.filter-card h6{ font-weight:800; margin-bottom:14px; letter-spacing:.02em; }
.filter-card .form-check{ margin-bottom:6px; }
.filter-card .form-check-input:checked{ background-color:var(--brand); border-color:var(--brand); }
.range-pills{ display:flex; flex-wrap:wrap; gap:8px; }
.range-pills .pill{ background:#f1f5f9; padding:7px 14px; border-radius:999px; font-size:.85rem; font-weight:600; cursor:pointer; transition:.15s; }
.range-pills .pill:hover, .range-pills .pill.active{ background:var(--brand); color:#fff; }

/* ---------- CART ---------- */
.cart-item{ background:#fff; border-radius:var(--radius); padding:18px; margin-bottom:14px; display:grid; grid-template-columns:110px 1fr auto; gap:18px; align-items:center; box-shadow:var(--shadow-sm); }
.cart-item img{ width:110px; height:110px; border-radius:12px; object-fit:cover; }
.cart-item h6{ font-weight:800; margin:0 0 4px; }
.cart-item small{ color:var(--muted); }
.qty{ display:inline-flex; align-items:center; border:2px solid var(--line); border-radius:999px; overflow:hidden; }
.qty button{ background:#fff; border:0; width:38px; height:38px; font-weight:800; color:var(--ink); }
.qty button:hover{ background:var(--brand); color:#fff; }
.qty input{ border:0; width:44px; text-align:center; font-weight:700; }
.qty input:focus{ outline:none; }

.summary{ background:#fff; border-radius:var(--radius); padding:26px; box-shadow:var(--shadow); position:sticky; top:110px; }
.summary h5{ font-weight:800; margin-bottom:18px; }
.summary .row-line{ display:flex; justify-content:space-between; padding:10px 0; color:#475569; }
.summary .row-line.total{ border-top:1px dashed var(--line); margin-top:10px; padding-top:16px; font-size:1.2rem; font-weight:800; color:var(--ink); }
.summary .promo{ display:flex; gap:8px; margin:14px 0; }
.summary .promo input{ flex:1; border:2px solid var(--line); border-radius:999px; padding:10px 16px; }
.summary .promo input:focus{ outline:none; border-color:var(--brand); }

/* ---------- CHECKOUT ---------- */
.form-card{ background:#fff; border-radius:var(--radius); padding:28px; box-shadow:var(--shadow-sm); margin-bottom:20px; }
.form-card h5{ font-weight:800; margin-bottom:20px; display:flex; align-items:center; gap:10px; }
.form-card h5 i{ color:var(--brand); }
.form-label{ font-weight:700; color:var(--ink); font-size:.9rem; margin-bottom:6px; }
.form-control, .form-select{ border:2px solid var(--line); border-radius:12px; padding:.75rem 1rem; font-size:1rem; background:#fff; transition:.2s; }
.form-control:focus, .form-select:focus{ border-color:var(--brand); box-shadow:0 0 0 4px rgba(255,91,31,.12); }
.pay-method{ display:flex; align-items:center; gap:14px; padding:16px 18px; border:2px solid var(--line); border-radius:14px; cursor:pointer; transition:.2s; margin-bottom:10px; }
.pay-method:hover{ border-color:var(--brand); background:#fff8f3; }
.pay-method.active{ border-color:var(--brand); background:#fff5ed; box-shadow:0 0 0 4px rgba(255,91,31,.1); }
.pay-method .badge-p{ width:52px; height:36px; border-radius:8px; display:grid; place-items:center; font-weight:800; font-size:.85rem; color:#fff; }
.pay-method b{ font-size:1.05rem; }
.pay-method small{ color:var(--muted); display:block; }

/* ---------- DASHBOARD ---------- */
.dash-side{ background:#fff; border-radius:var(--radius); padding:22px; box-shadow:var(--shadow-sm); }
.dash-side .avatar{ width:84px; height:84px; border-radius:50%; background:var(--brand-grad); color:#fff; font-size:1.8rem; font-weight:800; display:grid; place-items:center; margin:0 auto 12px; box-shadow:var(--shadow-brand); }
.dash-side .u-name{ text-align:center; font-weight:800; }
.dash-side .u-email{ text-align:center; color:var(--muted); font-size:.9rem; margin-bottom:18px; }
.dash-menu a{ display:flex; align-items:center; gap:12px; padding:12px 14px; border-radius:12px; color:var(--ink); font-weight:600; margin-bottom:4px; transition:.15s; }
.dash-menu a:hover{ background:#f1f5f9; color:var(--brand); }
.dash-menu a.active{ background:var(--brand-grad); color:#fff; box-shadow:var(--shadow-brand); }
.dash-menu a.text-danger{ color:#dc2626; }
.stat-card{ background:#fff; border-radius:var(--radius); padding:22px; box-shadow:var(--shadow-sm); text-align:center; transition:.2s; }
.stat-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.stat-card .ic{ width:56px; height:56px; margin:0 auto 12px; border-radius:16px; background:var(--brand-soft); color:var(--brand); display:grid; place-items:center; font-size:1.4rem; }
.stat-card b{ font-size:2rem; font-weight:800; display:block; }
.stat-card small{ color:var(--muted); font-weight:600; }

.table-card{ background:#fff; border-radius:var(--radius); padding:22px; box-shadow:var(--shadow-sm); }
.table-clean{ width:100%; }
.table-clean th{ text-align:left; padding:12px 10px; font-size:.85rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); font-weight:700; border-bottom:1px solid var(--line); }
.table-clean td{ padding:14px 10px; border-bottom:1px solid var(--line); font-weight:600; }
.status-pill{ display:inline-block; padding:5px 12px; border-radius:999px; font-size:.78rem; font-weight:800; }
.status-pill.delivered{ background:#dcfce7; color:#166534; }
.status-pill.transit{ background:#fef3c7; color:#92400e; }
.status-pill.pending{ background:#e0e7ff; color:#3730a3; }
.status-pill.cancel{ background:#fee2e2; color:#991b1b; }

/* ---------- ABOUT ---------- */
.about-hero{ background:linear-gradient(135deg,#0b1220 0%,#1f2937 100%); color:#fff; border-radius:var(--radius-lg); padding:80px 60px; position:relative; overflow:hidden; }
.about-hero::before{ content:""; position:absolute; right:-100px; top:-80px; width:400px; height:400px; border-radius:50%; background:var(--brand-grad); opacity:.15; }
.about-hero h1{ color:#fff; font-size:clamp(2.4rem,5vw,4rem); }
.about-hero p{ color:#cbd5e1; font-size:1.15rem; max-width:640px; }
.value-card{ background:#fff; border-radius:var(--radius); padding:32px 28px; text-align:center; box-shadow:var(--shadow-sm); height:100%; transition:.3s; }
.value-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.value-card .ic{ width:72px; height:72px; margin:0 auto 18px; border-radius:20px; background:var(--brand-grad); color:#fff; display:grid; place-items:center; font-size:1.8rem; box-shadow:var(--shadow-brand); }
.value-card h5{ font-weight:800; margin-bottom:8px; }
.team-card{ background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); text-align:center; transition:.3s; }
.team-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.team-card img{ width:100%; aspect-ratio:1/1; object-fit:cover; }
.team-card .body{ padding:22px; }
.team-card h6{ font-weight:800; margin:0; }
.team-card small{ color:var(--brand); font-weight:700; }
.metric-big{ text-align:center; padding:22px; }
.metric-big b{ display:block; font-size:2.6rem; font-weight:800; background:var(--brand-grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.metric-big small{ color:var(--muted); font-weight:700; text-transform:uppercase; letter-spacing:.08em; }

/* ---------- CONTACT ---------- */
.contact-card{ background:#fff; border-radius:var(--radius); padding:30px; box-shadow:var(--shadow-sm); }
.contact-card h5{ font-weight:800; margin-bottom:20px; }

/* ---------- FAQ ACCORDION ---------- */
.faq-accordion .accordion-item{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-sm)!important;
  margin-bottom:12px; box-shadow:var(--shadow-sm); overflow:hidden; transition:box-shadow .25s, transform .25s;
}
.faq-accordion .accordion-item:hover{ box-shadow:var(--shadow); transform:translateY(-1px); }
.faq-accordion .accordion-item:last-child{ margin-bottom:0; }
.faq-accordion .accordion-button{
  font-weight:700; font-size:1.05rem; color:var(--ink); padding:18px 22px;
  background:#fff; transition:background .2s, color .2s;
}
.faq-accordion .accordion-button:not(.collapsed){
  background:var(--brand-soft); color:var(--brand-dark);
}
.faq-accordion .accordion-button:focus{
  box-shadow:none; border-color:var(--line);
}
.faq-accordion .accordion-button::after{
  width:1.2rem; height:1.2rem; background-size:1.2rem;
  transition:transform .3s cubic-bezier(.4,0,.2,1);
}
.faq-accordion .accordion-button:not(.collapsed)::after{
  transform:rotate(-180deg);
}
.faq-accordion .accordion-collapse{ transition:height .3s cubic-bezier(.4,0,.2,1); }
.faq-accordion .accordion-body{
  padding:0 22px 20px; font-size:.98rem; line-height:1.7; color:var(--muted);
  animation:fadeInUp .3s ease;
}
@keyframes fadeInUp{
  from{ opacity:0; transform:translateY(-8px); }
  to{ opacity:1; transform:translateY(0); }
}
.contact-info li{ display:flex; gap:14px; align-items:start; padding:12px 0; border-bottom:1px dashed var(--line); }
.contact-info li:last-child{ border:0; }
.contact-info .ic{ width:44px; height:44px; border-radius:12px; background:var(--brand-soft); color:var(--brand); display:grid; place-items:center; flex-shrink:0; }
.contact-info b{ display:block; }
.contact-info small{ color:var(--muted); }

/* ---------- PRODUCT DETAIL TABS ---------- */
.product-tabs .nav-tabs{
  border-bottom:2px solid var(--line); gap:4px;
}
.product-tabs .nav-tabs .nav-link{
  border:none; padding:12px 22px; font-weight:700; font-size:.9rem;
  color:var(--muted); border-radius:10px 10px 0 0; transition:all .2s;
  border-bottom:2px solid transparent; margin-bottom:-2px;
}
.product-tabs .nav-tabs .nav-link:hover{
  color:var(--brand); background:var(--brand-soft);
}
.product-tabs .nav-tabs .nav-link.active{
  color:var(--brand); background:var(--brand-soft);
  border-bottom-color:var(--brand);
}
.product-tabs .tab-content{
  padding:0; margin-top:0;
}
.tab-body{
  padding:24px 4px; font-size:.95rem; line-height:1.8; color:var(--ink-2);
}
.tab-body h1,.tab-body h2,.tab-body h3,.tab-body h4,.tab-body h5,.tab-body h6{
  color:var(--ink); margin-top:20px; margin-bottom:10px;
}
.tab-body p{ margin-bottom:12px; }
.tab-body ul,.tab-body ol{ padding-left:20px; margin-bottom:12px; }
.tab-body li{ margin-bottom:6px; }
.tab-body table{ width:100%; border-collapse:collapse; margin:12px 0; }
.tab-body table th,.tab-body table td{ padding:10px 14px; border:1px solid var(--line); font-size:.9rem; }
.tab-body table th{ background:var(--brand-soft); font-weight:700; color:var(--ink); }
.tab-body table td{ background:#fff; }
.tab-body img{ max-width:100%; border-radius:8px; margin:10px 0; }

/* ---------- PRODUCT DETAIL ---------- */
.gallery-main{ background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); aspect-ratio:1/1; }
.gallery-main img{ width:100%; height:100%; object-fit:cover; }
.gallery-thumbs{ display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:12px; }
.gallery-thumbs img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:12px; cursor:pointer; border:3px solid transparent; transition:.15s; }
.gallery-thumbs img.active{ border-color:var(--brand); }
.pd-title{ font-size:2.2rem; font-weight:800; }
.pd-price{ font-size:2.2rem; font-weight:800; color:var(--brand); }
.color-dots button{ width:36px; height:36px; border-radius:50%; border:3px solid transparent; margin-right:8px; cursor:pointer; box-shadow:0 0 0 1px var(--line); }
.color-dots button.active{ border-color:var(--brand); }
.size-btns button{ background:#f1f5f9; border:0; padding:10px 18px; border-radius:12px; font-weight:700; margin-right:8px; margin-bottom:8px; }
.size-btns button.active{ background:var(--brand); color:#fff; }

/* ---------- BACK TO TOP ---------- */
.back-top{ position:fixed; right:22px; bottom:22px; width:52px; height:52px; border-radius:50%; background:var(--brand-grad); color:#fff; border:0; box-shadow:var(--shadow-brand); z-index:100; opacity:0; visibility:hidden; transition:.3s; }
.back-top.show{ opacity:1; visibility:visible; }
.back-top:hover{ transform:translateY(-4px); }

/* ---------- PAGINATION ---------- */
.pagination{ display:flex; gap:6px; list-style:none; padding:0; margin:0; justify-content:center; }
.page-item .page-link{
  display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px;
  padding:0 12px; border-radius:10px; border:1px solid var(--line); background:#fff;
  color:var(--ink); font-weight:600; font-size:.9rem; text-decoration:none; transition:all .15s;
}
.page-item .page-link:hover{ background:var(--brand-soft); color:var(--brand); border-color:var(--brand); }
.page-item.active .page-link{ background:var(--brand); color:#fff; border-color:var(--brand); }
.page-item.disabled .page-link{ color:#cbd5e1; pointer-events:none; border-color:var(--line); }

/* ---------- TOAST ---------- */
.toast-mini{ position:fixed; top:100px; right:22px; background:#0b1220; color:#fff; padding:14px 22px; border-radius:14px; box-shadow:var(--shadow-lg); z-index:2000; opacity:0; transform:translateX(30px); transition:.25s; display:flex; align-items:center; gap:10px; }
.toast-mini.show{ opacity:1; transform:translateX(0); }
.toast-mini i{ color:var(--brand); font-size:1.2rem; }
.toast-mini.error{ background:#dc2626; }
.toast-mini.error i{ color:#fff; }

/* ---------- AUTH ---------- */
.auth-wrap{ min-height:80vh; display:grid; place-items:center; padding:40px 0; }
.auth-card{ background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); overflow:hidden; display:grid; grid-template-columns:1fr 1fr; max-width:960px; width:100%; }
.auth-side{ background:var(--brand-grad); color:#fff; padding:50px; display:flex; flex-direction:column; justify-content:center; position:relative; overflow:hidden; }
.auth-side::before{ content:""; position:absolute; right:-80px; bottom:-80px; width:260px; height:260px; border-radius:50%; background:rgba(255,255,255,.12); }
.auth-side h2{ color:#fff; }
.auth-form{ padding:50px 44px; }
@media (max-width:768px){ .auth-card{ grid-template-columns:1fr; } .auth-side{ padding:36px; } .auth-form{ padding:32px 24px; } }

/* ---------- RESPONSIVE ---------- */
@media (max-width:991px){
  .site-header .desktop-only{ display:none!important; }
  .cart-item{ grid-template-columns:88px 1fr; }
  .cart-item .cart-actions{ grid-column:1/-1; display:flex; justify-content:space-between; padding-top:10px; border-top:1px solid var(--line); margin-top:6px; }
  .about-hero{ padding:48px 28px; }
  .newsletter{ padding:36px 28px; }
  .deal-banner{ padding:36px 28px; }
  .hero .slide{ padding:36px 24px; }
}
@media (min-width:992px){ .mobile-only{ display:none!important; } }

/* ================================================================
   ============ MONOLITH v2 — BD-FIRST UI/UX OVERRIDES ============
   ================================================================ */

/* --- Palette retune: warmer, Bangladeshi-premium --- */
:root{
  --brand:#e11d48;            /* sindoor red */
  --brand-2:#f59e0b;          /* saffron */
  --brand-dark:#9f1239;
  --brand-grad:linear-gradient(135deg,#e11d48 0%,#f59e0b 100%);
  --brand-soft:#fff1f2;
  --accent:#0f766e;           /* deep teal */
  --accent-2:#059669;         /* trust green (bKash / verified) */
  --ink:#1a1330;
  --ink-2:#2a1f4a;
  --soft:#fff7ee;
  --shadow-brand:0 14px 34px rgba(225,29,72,.32);
}

/* Section rhythm on mobile */
@media (max-width:576px){
  .section{ padding:44px 0; }
  .section-sm{ padding:36px 0; }
  .container{ padding-left:14px; padding-right:14px; }
}

/* Alternate section backgrounds so each block reads as separate */
.section.bg-alt-1{ background:var(--soft); }
.section.bg-alt-2{ background:linear-gradient(180deg,#ffffff 0%,#fff2e6 100%); }

/* --- TOP BAR: high-contrast CTA pills for Track Order / Vendor --- */
.top-bar{ background:linear-gradient(90deg,#1a1330,#2a1f4a); color:#f8fafc; }
.top-bar a{ color:#f1f5f9; opacity:.92; font-weight:600; }
.top-bar a:hover{ color:#fff; opacity:1; }
.top-bar .pill-cta{
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,255,255,.08); color:#fff !important;
  padding:4px 12px; border-radius:999px; margin-right:8px;
  border:1px solid rgba(255,255,255,.14); opacity:1 !important;
  transition:.2s;
}
.top-bar .pill-cta:hover{ background:var(--brand-grad); border-color:transparent; box-shadow:var(--shadow-brand); }
.top-bar .pill-cta.hot{ background:var(--brand-grad); border-color:transparent; }
.top-bar .badge-hot{ background:#fff; color:var(--brand); }

/* --- USP BAR: colorful gradient cards, unique per item --- */
.usp-bar{ background:linear-gradient(180deg,#ffffff,#fff9f0); border:1px solid rgba(225,29,72,.06); }
.usp-item{ padding:14px 12px; border-radius:14px; transition:.25s; }
.usp-item:hover{ transform:translateY(-3px); box-shadow:0 10px 24px rgba(15,23,42,.08); }
.usp-item h6{ letter-spacing:-.01em; }
.usp-item .ic{ box-shadow:inset 0 0 0 2px rgba(255,255,255,.6); }
.usp-bar .col-lg-2:nth-child(1) .usp-item .ic,
.usp-bar .col-usp:nth-child(1) .usp-item .ic{ background:#eef2ff; color:#4f46e5; }
.usp-bar .col-usp:nth-child(2) .usp-item .ic{ background:#ecfdf5; color:#059669; }
.usp-bar .col-usp:nth-child(3) .usp-item .ic{ background:#fef3c7; color:#b45309; }
.usp-bar .col-usp:nth-child(4) .usp-item .ic{ background:#fce7f3; color:#be185d; }
.usp-bar .col-usp:nth-child(5) .usp-item .ic{ background:#dbeafe; color:#1d4ed8; }

@media (max-width:576px){
  .usp-bar{ padding:14px; margin-top:-24px; }
  .usp-item{ padding:10px 6px; gap:10px; }
  .usp-item .ic{ width:42px; height:42px; font-size:1.1rem; border-radius:12px; }
  .usp-item h6{ font-size:.85rem; }
  .usp-item small{ font-size:.72rem; }
}

/* --- TRUSTED VENDORS: dedicated banner section --- */
.trusted-vendors{
  position:relative; overflow:hidden; border-radius:var(--radius-lg);
  background:linear-gradient(135deg,#0f766e 0%,#059669 60%,#f59e0b 130%);
  color:#fff; padding:44px 48px; box-shadow:0 20px 50px rgba(15,118,110,.28);
}
.trusted-vendors::before{
  content:""; position:absolute; right:-80px; top:-80px; width:280px; height:280px;
  border-radius:50%; background:rgba(255,255,255,.08);
}
.trusted-vendors::after{
  content:""; position:absolute; left:-60px; bottom:-100px; width:240px; height:240px;
  border-radius:50%; background:rgba(0,0,0,.08);
}
.trusted-vendors > *{ position:relative; z-index:2; }
.trusted-vendors .tv-badge{
  display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.28); border-radius:999px; padding:6px 14px;
  font-weight:700; font-size:.8rem; letter-spacing:.06em; text-transform:uppercase;
}
.trusted-vendors h2{ color:#fff; margin:14px 0 8px; font-size:clamp(1.6rem,3vw,2.4rem); }
.trusted-vendors p{ color:rgba(255,255,255,.92); max-width:640px; margin-bottom:20px; }
.trusted-vendors .tv-stats{ display:flex; flex-wrap:wrap; gap:22px; margin-top:22px; }
.trusted-vendors .tv-stats .s{ }
.trusted-vendors .tv-stats b{ display:block; font-size:1.8rem; font-weight:800; }
.trusted-vendors .tv-stats small{ opacity:.85; text-transform:uppercase; letter-spacing:.08em; font-size:.72rem; }
.trusted-vendors .btn-white{ background:#fff; color:var(--ink); }
.trusted-vendors .btn-white:hover{ background:var(--ink); color:#fff; }
@media (max-width:576px){ .trusted-vendors{ padding:32px 22px; } .trusted-vendors .tv-stats{ gap:14px; } .trusted-vendors .tv-stats b{ font-size:1.4rem; } }

/* --- SHOP BY BRAND: colorful cards --- */
/* old brand-card styles removed */

/* Brand section band */
section.section-sm:has(#brandGrid){
  background:linear-gradient(180deg,#fff8f3 0%,#fef3f2 50%,#fff8f3 100%) !important;
}

/* --- PRODUCT CARD: tighter on mobile, "Add" instead of full label --- */
@media (max-width:576px){
  .product-card .body{ padding:12px; gap:6px; }
  .product-card .title{ font-size:.88rem; min-height:2.4em; }
  .product-card .vendor{ font-size:.68rem; }
  .product-card .price .now{ font-size:1rem; }
  .product-card .price .was{ font-size:.75rem; }
  .product-card .price .off{ display:none; }
  .product-card .badge-tag{ font-size:.62rem; padding:3px 8px; top:8px; left:8px; }
  .product-card .fav{ width:34px; height:34px; top:8px; right:8px; font-size:.9rem; }
  .product-card .btn-add{
    padding:.55rem .8rem; font-size:.82rem; margin-top:6px;
    box-shadow:none;
  }
  .product-card .btn-add .add-label{ display:none; }
  .product-card .btn-add::after{ content:"Add"; }
  .btn-lg{ padding:.75rem 1.2rem; font-size:.95rem; }
  .btn{ padding:.65rem 1.1rem; font-size:.9rem; }
  .sec-head{ margin-bottom:20px; }
  .sec-head h2{ font-size:1.5rem; }
}

/* --- HERO: fade + mobile arrows always visible --- */
.hero .slide{ transition:opacity .5s ease; }
@media (max-width:576px){
  .hero{ margin-top:14px; border-radius:18px; }
  .hero .slide{ min-height:340px; padding:26px 20px; }
  .hero h1{ font-size:clamp(1.6rem,7vw,2.4rem); margin:12px 0; }
  .hero p{ font-size:.95rem; }
  .hero-arrows button{ width:38px; height:38px; font-size:1rem; }
  .hero-arrows .prev{ left:8px; } .hero-arrows .next{ right:8px; }
  .hero .slide::before{ background:linear-gradient(180deg, rgba(11,18,32,.35) 0%, rgba(11,18,32,.85) 100%); }
}

/* --- CATEGORY grid tighter on mobile --- */
@media (max-width:576px){
  .cat-card{ aspect-ratio:1/1; }
  .cat-card .lbl{ padding:12px 14px; }
  .cat-card .lbl h5{ font-size:.95rem; }
  .cat-card .lbl small{ font-size:.7rem; }
}

/* --- DEAL BANNER mobile --- */
@media (max-width:576px){
  .deal-banner{ padding:28px 20px; }
  .countdown .box{ min-width:60px; padding:10px 8px; }
  .countdown .box b{ font-size:1.4rem; }
}

/* --- NEWSLETTER mobile stack --- */
@media (max-width:576px){
  .newsletter{ padding:32px 22px; }
  .newsletter form{ flex-direction:column; border-radius:18px; padding:10px; background:rgba(255,255,255,.95); }
  .newsletter input{ padding:12px 16px; }
  .newsletter button{ width:100%; padding:12px; }
}

/* --- SITE HEADER: opaque, better mobile density --- */
.site-header{ background:#fff !important; }
@media (max-width:991px){
  .site-header .py-3{ padding-top:.75rem !important; padding-bottom:.75rem !important; }
  .site-header .logo img{ height:36px; }
  .icon-btn{ width:40px; height:40px; font-size:1rem; }
  .icon-btn .count{ min-width:18px; height:18px; font-size:.62rem; }
  .header-actions{ gap:2px; }
}

/* --- CART page mobile: stacked card layout --- */
@media (max-width:576px){
  .cart-item{ grid-template-columns:80px 1fr; gap:12px; padding:12px; }
  .cart-item img{ width:80px; height:80px; }
  .summary{ padding:20px; position:static; }
}

/* --- CHECKOUT / FORMS mobile --- */
@media (max-width:576px){
  .form-card{ padding:20px; }
  .pay-method{ padding:12px; gap:10px; }
}

/* --- MOBILE STICKY ADD-TO-CART BAR (product detail) --- */
.mobile-buy-bar{
  display:none; position:fixed; left:0; right:0; bottom:0; z-index:1000;
  background:#fff; border-top:1px solid var(--line); padding:10px 14px;
  box-shadow:0 -8px 24px rgba(15,23,42,.1);
  align-items:center; gap:10px;
}
.mobile-buy-bar .p{ flex:1; }
.mobile-buy-bar .p b{ display:block; font-size:1.05rem; color:var(--brand); }
.mobile-buy-bar .p small{ color:var(--muted); font-size:.7rem; text-decoration:line-through; }
.mobile-buy-bar .btn{ padding:.7rem 1.2rem; font-size:.9rem; }
@media (max-width:768px){
  .mobile-buy-bar.show{ display:flex; }
  body:has(.mobile-buy-bar.show){ padding-bottom:70px; }
}

/* --- CHOICES.JS overrides to match brand --- */
.choices{ margin-bottom:0; }
.choices__inner{
  background:#fff !important;
  border:2px solid var(--line) !important;
  border-radius:12px !important;
  min-height:44px !important;
  padding:8px 12px 4px !important;
  font-size:.95rem;
}
.choices.is-focused .choices__inner,
.choices.is-open .choices__inner{
  border-color:var(--brand) !important;
  box-shadow:0 0 0 4px rgba(225,29,72,.12) !important;
}
.choices__list--single .choices__item{ color:var(--ink); font-weight:600; }
.choices[data-type*="select-one"]::after{
  border-color:var(--brand) transparent transparent !important;
  right:14px !important;
}
.choices[data-type*="select-one"].is-open::after{
  border-color:transparent transparent var(--brand) !important;
}
.choices__list--dropdown, .choices__list[aria-expanded]{
  border:0 !important; border-radius:14px !important;
  box-shadow:0 20px 50px rgba(15,23,42,.18) !important;
  margin-top:6px !important; overflow:hidden;
}
.choices__list--dropdown .choices__item--selectable{
  padding:11px 16px !important; font-weight:600; color:var(--ink);
}
.choices__list--dropdown .choices__item--selectable.is-highlighted{
  background:var(--brand-soft) !important;
  color:var(--brand) !important;
}

/* --- Focus visible everywhere --- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:2px solid var(--brand); outline-offset:2px; border-radius:6px;
}

/* --- Better price emphasis --- */
.product-card .price .now{ color:var(--brand); }
.pd-price{ color:var(--brand); }

/* ---------- NICESELECT CUSTOM ---------- */
.nice-select{
  height:36px; line-height:36px; padding:0 36px 0 14px; border-radius:8px;
  width:auto; min-width:170px; font-size:.85rem;
}
.nice-select .list{
  border-radius:10px; box-shadow:var(--shadow-lg);
  margin-top:4px; overflow:hidden; max-height:240px; overflow-y:auto;
}

/* ---------- FORM CHECK / RADIO BRAND COLOR ---------- */
.form-check-input:checked{
  background-color:var(--brand); border-color:var(--brand);
}
.form-check-input:focus{
  border-color:var(--brand); box-shadow:0 0 0 .2rem rgba(255,91,31,.25);
}
.form-check-input[type="checkbox"]:checked{
  background-color:var(--brand); border-color:var(--brand);
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
