:root{
  --text:#0f172a;
  --muted:#4b5563;
  --line:#e5e7eb;

  --g1:#16a34a;
  --g2:#22c55e;
  --b1:#4fb9d6;   /* soft corporate blue */
  --b2:#2fa7c8;

  --soft:#f3fbf6;
  --softblue:#eef8fc;

  --shadow: 0 16px 40px rgba(15,23,42,.10);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Roboto",system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fff 0%, #fff 40%, var(--soft) 100%);
}

a{color:inherit}
.container{max-width:1480px;margin:0 auto;padding:0 18px}
.sr-only{position:absolute;left:-9999px}

/* Top slim bar */
.topline{
  background:linear-gradient(90deg, rgba(47,167,200,.18), rgba(34,197,94,.14));
  border-bottom:1px solid rgba(229,231,235,.75);
  font-size:13px;
}
.topline-inner{
  height:44px; display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.topline-left{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.top-badge{
  display:inline-flex; align-items:center; padding:6px 10px; border-radius:999px;
  background:rgba(34,197,94,.16); border:1px solid rgba(34,197,94,.24);
  font-weight:900;
}
.top-txt{color:rgba(15,23,42,.72); font-weight:600}
.topline-right{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.top-link{color:rgba(15,23,42,.78); text-decoration:none; font-weight:800}
.top-link:hover{color:var(--g1)}
.top-sep{color:rgba(15,23,42,.35)}

/* Sticky nav */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid rgba(229,231,235,.7);
}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;height:72px}

.logo{display:flex;align-items:baseline;text-decoration:none}
.logo-mark{
  display:inline-flex;align-items:center;justify-content:center;
  height:34px; padding:0 10px;border-radius:999px;
  background:linear-gradient(135deg,var(--g2),var(--g1));
  color:#fff;font-weight:900;letter-spacing:.3px;
  box-shadow:0 12px 26px rgba(34,197,94,.20);
}
.logo-main{font-size:22px;font-weight:950;margin-left:8px}
.logo-dot{font-size:22px;font-weight:950;color:var(--g1)}

.nav{display:flex;align-items:center;gap:16px}
.nav a{text-decoration:none;color:rgba(15,23,42,.78);font-weight:700}
.nav a:hover{color:var(--text)}
.nav-ghost{padding:10px 12px;border-radius:999px;border:1px solid var(--line);background:#fff}
.nav-cta{
  padding:10px 14px;border-radius:999px;
  background:linear-gradient(135deg,var(--g2),var(--g1));
  color:#fff !important;
  box-shadow:0 14px 30px rgba(34,197,94,.22);
}

.hamburger{display:none;width:44px;height:44px;border-radius:12px;border:1px solid var(--line);background:#fff}
.hamburger span{display:block;height:2px;background:#111827;margin:6px 10px;border-radius:99px}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px; padding:12px 16px; border-radius:999px;
  text-decoration:none; border:1px solid transparent;
  font-weight:900; cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn-primary{
  background:linear-gradient(135deg,var(--g2),var(--g1));
  color:#fff;
  box-shadow:0 14px 34px rgba(34,197,94,.22);
}
.btn-primary:hover{transform:translateY(-1px); box-shadow:0 20px 44px rgba(34,197,94,.24)}
.btn-soft{
  background:#fff;
  border-color:rgba(47,167,200,.22);
  box-shadow:0 10px 22px rgba(15,23,42,.06);
}
.btn-soft:hover{transform:translateY(-1px)}
.btn-white{
  background:#fff;
  border:1px solid rgba(255,255,255,.55);
  color:rgba(15,23,42,.90);
}
.btn-white:hover{transform:translateY(-1px)}
.w100{width:100%}

/* HERO v2 (like your reference) */
.hero-v2{
  position:relative;
  padding:64px 0 44px;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(238,248,252,1) 55%, rgba(208,242,255,1) 100%);
  overflow:hidden;
}
.hero-pattern{
  position:absolute; inset:-40px -40px -40px -40px;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(34,197,94,.18), transparent 38%),
    radial-gradient(circle at 70% 35%, rgba(47,167,200,.16), transparent 40%),
    url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity:.55;
  pointer-events:none;
}
.hero2-grid{
  position:relative;
  display:grid; grid-template-columns:1.05fr .95fr; gap:24px; align-items:center;
}
.kicker{
  display:inline-block;
  color:rgba(47,167,200,.95);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
}
.hero2-title{
  margin:12px 0 10px;
  font-size:44px;
  line-height:1.08;
  font-weight:950;
  color:rgba(10,35,55,.92);
}
.hero2-lead{
  margin:0;
  font-size:17px;
  line-height:1.7;
  color:rgba(15,23,42,.70);
  max-width:58ch;
}
.hero2-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.hero2-badges{display:grid;gap:10px;margin-top:18px;max-width:520px}
.pill2{
  display:flex;align-items:center;gap:10px;
  padding:10px 12px; border-radius:14px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(229,231,235,.85);
  box-shadow:0 10px 22px rgba(15,23,42,.05);
  font-weight:800;
  color:rgba(15,23,42,.78);
}
.pill2-dot{width:10px;height:10px;border-radius:999px;background:var(--g2);box-shadow:0 0 0 4px rgba(34,197,94,.14)}

.hero2-search{
  display:flex; gap:12px; align-items:center;
  margin-top:18px;
}
.searchseg{flex:1}
.input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(229,231,235,.95);
  background:#fff;
  padding:14px 14px;
  font-size:15px;
  outline:none;
}
.input:focus{border-color:rgba(34,197,94,.55); box-shadow:0 0 0 4px rgba(34,197,94,.12)}

.hero2-card{
  border-radius:24px;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(229,231,235,.85);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero2-card-top{padding:16px 16px 10px}
.mini-title{font-weight:950;color:rgba(15,23,42,.86)}
.chiprow{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.chip{
  display:inline-flex; align-items:center;
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(229,231,235,.92);
  background:rgba(243,244,246,.72);
  text-decoration:none;
  font-weight:800;
  font-size:12px;
  transition:transform .12s ease;
}
.chip:hover{transform:translateY(-1px); border-color:rgba(34,197,94,.30); background:rgba(34,197,94,.07)}

.hero2-media{height:280px; border-top:1px solid rgba(229,231,235,.85); border-bottom:1px solid rgba(229,231,235,.85)}
.hero2-media img{width:100%;height:100%;object-fit:cover;display:block}

.hero2-mini{
  display:grid; grid-template-columns:repeat(3,1fr);
  background:#fff;
}
.mini-kpi{padding:14px 12px;border-right:1px solid rgba(229,231,235,.85)}
.mini-kpi:last-child{border-right:0}
.mini-num{font-size:22px;font-weight:950;color:rgba(10,35,55,.92)}
.mini-lbl{margin-top:2px;color:rgba(15,23,42,.62);font-weight:800;font-size:12px}

/* Stats strip like reference */
.stats-strip{
  background:#fff;
  border-top:1px solid rgba(229,231,235,.85);
  border-bottom:1px solid rgba(229,231,235,.85);
}
.stats-grid{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:0;
  padding:18px 0;
}
.stat{
  text-align:center;
  padding:14px 10px;
}
.stat-ico{
  width:44px;height:44px;border-radius:14px;margin:0 auto 10px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(47,167,200,.20);
  background:linear-gradient(135deg, rgba(47,167,200,.14), rgba(34,197,94,.12));
}
.stat-ico svg{width:22px;height:22px;fill:rgba(15,23,42,.70)}
.stat-num{font-size:26px;font-weight:950;color:rgba(10,35,55,.92)}
.stat-lbl{margin-top:4px;color:rgba(15,23,42,.62);font-weight:850;font-size:13px}

/* Deliver section (hex + panel) */
.deliver{
  padding:56px 0;
  background:linear-gradient(180deg, #fff 0%, var(--softblue) 70%, #fff 100%);
}
.deliver-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:22px; align-items:center;
}
.hex-wall{
  display:grid;
  grid-template-columns:repeat(3, 160px);
  gap:14px;
  justify-content:center;
  padding:10px 0;
}
.hex{
  width:160px;height:140px;
  clip-path:polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(229,231,235,.85);
  box-shadow:0 14px 34px rgba(15,23,42,.08);
  background:#fff;
}
.hex img{width:100%;height:100%;object-fit:cover;display:block}
.hex.ghost{background:rgba(255,255,255,.55); border-style:dashed; box-shadow:none}

.deliver-panel{
  border-radius:26px;
  background: linear-gradient(135deg, rgb(34 197 94 / 23%), rgba(47, 167, 200, .08));
  color:#000;
  padding:26px;
  box-shadow:0 18px 46px rgba(47,167,200,.18);
  position:relative;
  overflow:hidden;
}
.deliver-panel:before{
  content:"";
  position:absolute; inset:-60px -60px auto auto;
  width:260px;height:260px;border-radius:50%;
  background:rgba(255,255,255,.12);
}
.deliver-kicker{
  font-weight:950; letter-spacing:.12em; text-transform:uppercase;
  font-size:12px; opacity:.95;
}
.h2{margin:10px 0 10px; font-size:34px; line-height:1.15; font-weight:950}
.muted{color:rgba(15,23,42,.68)}
.deliver-panel .muted{ color: rgb(0 0 0 / 86%);}
.deliver-list{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:16px}
.tick{display:flex;gap:10px;align-items:flex-start;font-weight:800;color:rgb(0 0 0 / 86%)}
.tick-ico{
  width:22px;height:22px;border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.24);
  font-weight:950;
}
.deliver-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

/* Section / Flip cards */
.section{padding:58px 0}
.section-head{margin-bottom:18px}
.h3{font-size:18px;margin:0 0 6px;font-weight:950}

.flip-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.flip{perspective:1100px}
.flip-inner{
  position:relative;
  width:100%;
  height:220px;
  transition:transform .65s cubic-bezier(.2,.7,.2,1);
  transform-style:preserve-3d;
}
.flip:hover .flip-inner{transform:rotateY(180deg)}
.flip-front, .flip-back{
  position:absolute; inset:0;
  border-radius:22px;
  backface-visibility:hidden;
  overflow:hidden;
  border:1px solid rgba(229,231,235,.85);
  box-shadow:0 14px 34px rgba(15,23,42,.07);
}
.flip-front{
  background:linear-gradient(135deg, rgba(34,197,94,.12), rgba(255,255,255,.92));
  padding:18px;
  display:flex; flex-direction:column; justify-content:center; gap:10px;
}
.flip-ico{
  width:52px;height:52px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(34,197,94,.22);
  background:linear-gradient(135deg, rgba(34,197,94,.16), rgba(47,167,200,.10));
}
.flip-ico svg{width:24px;height:24px;fill:rgba(15,23,42,.72)}
.flip-title{font-weight:950;font-size:18px}
.flip-sub{color:rgba(15,23,42,.62);font-weight:800}

.flip-back{
  transform:rotateY(180deg);
  background: linear-gradient(135deg, rgb(34 197 94 / 23%), rgba(47, 167, 200, .08));
  padding:18px;
  color:#000;
  display:flex; flex-direction:column; justify-content:center; gap:10px;
}
.flip-back-title{font-weight:950;font-size:18px}
.flip-back-sub{color:rgb(0 0 0 / 88%);;font-weight:700;line-height:1.5}

/* Strip carousel */
.strip{
  padding:18px 0 40px;
  background:#fff;
}
.strip-track{
  display:flex; gap:12px;
  width:max-content;
  animation: stripmove 22s linear infinite;
}
.strip-card{
  width:260px; height:150px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(229,231,235,.85);
  box-shadow:0 14px 34px rgba(15,23,42,.07);
  background:#fff;
}
.strip-card img{width:100%;height:100%;object-fit:cover;display:block}
@keyframes stripmove{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* CTA banner */
.cta-banner{padding:44px 0 10px;background:linear-gradient(180deg, var(--softblue), #fff)}
.cta-wrap{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(15,23,42,.12);
  border:1px solid rgba(229,231,235,.85);
  min-height:240px;
      background: linear-gradient(135deg, rgb(34 197 94 / 23%), rgba(47, 167, 200, .08));
}
.cta-img{
  position:absolute; inset:0;
  opacity:.35;
}
.cta-img img{width:100%;height:100%;object-fit:cover;display:block}
.cta-copy{
  position:relative;
  padding:30px;
  max-width:620px;
  color:#fff;
}
.cta-title{margin:8px 0 10px;font-size:34px;line-height:1.12;font-weight:950}
.cta-text{margin:0 0 14px;color:rgba(255,255,255,.90);font-weight:700;line-height:1.6}

/* Products list section */
.product-grid{
  display:grid; grid-template-columns:1fr 1.2fr; gap:18px; align-items:start;
}
.product-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.plist{
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(229,231,235,.85);
  box-shadow:0 16px 40px rgba(15,23,42,.06);
  padding:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.plist-item{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(229,231,235,.85);
  text-decoration:none;
  font-weight:900;
  color:rgba(15,23,42,.80);
  background:linear-gradient(135deg, rgba(34,197,94,.08), rgba(255,255,255,.92));
  transition:transform .12s ease, border-color .12s ease;
}
.plist-item:hover{
  transform:translateY(-1px);
  border-color:rgba(34,197,94,.30);
}

.final-cta{
  margin-top:26px;
  padding:18px 18px;
  border-radius:22px;
  border:1px solid rgba(229,231,235,.85);
  background:linear-gradient(135deg, rgba(34,197,94,.10), rgba(47,167,200,.08));
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.final-cta-actions{display:flex;gap:12px;flex-wrap:wrap}

/* Footer */
.footer{margin-top:20px;background:#fff;border-top:1px solid rgba(229,231,235,.9)}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1fr;gap:16px;padding:34px 18px}
.footer-title{font-weight:950;margin-bottom:10px}
.footer-link{display:block;text-decoration:none;color:rgba(15,23,42,.82);margin:8px 0}
.footer-link:hover{color:var(--g1)}
.footer-logo{margin-bottom:10px}
.footer-bottom{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;padding:14px 18px;border-top:1px solid rgba(229,231,235,.85)}

/* Offcanvas */
.offcanvas{
  position:fixed; inset:0 auto 0 0;
  width:340px; max-width:92vw;
  background:#fff;
  border-right:1px solid rgba(229,231,235,.9);
  transform:translateX(-102%);
  transition:transform .25s ease;
  z-index:80;
}
.offcanvas.open{transform:translateX(0)}
.offcanvas-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 14px;border-bottom:1px solid rgba(229,231,235,.85);
}
.xbtn{
  width:40px;height:40px;border-radius:12px;
  border:1px solid var(--line); background:#fff;
  font-size:24px; line-height:1; cursor:pointer;
}
.offcanvas-body{padding:12px 14px;overflow:auto;height:calc(100vh - 72px)}
.menu-item{
  display:block;text-decoration:none;font-weight:950;
  padding:12px 12px;border-radius:14px;
  border:1px solid rgba(229,231,235,.85);
  background:rgba(243,244,246,.6);
}
.menu-group{margin-top:14px}
.menu-title{font-weight:950;color:rgba(15,23,42,.72);margin:12px 6px 8px}
.menu-link{
  display:block;text-decoration:none;
  padding:10px 12px;border-radius:14px;
  border:1px solid rgba(229,231,235,.85);
  background:#fff;
  margin:8px 0;
}
.menu-link:hover{border-color:rgba(34,197,94,.28); background:rgba(34,197,94,.05)}
.offcanvas-footer{margin-top:16px;padding:10px 6px;border-top:1px dashed rgba(229,231,235,.95)}
.overlay{
  position:fixed; inset:0;
  background:rgba(2, 10, 6, .35);
  opacity:0; pointer-events:none;
  transition:opacity .2s ease;
  z-index:70;
}
.overlay.show{opacity:1; pointer-events:auto}

/* Reveal */
.reveal{opacity:0; transform:translateY(12px); transition:opacity .55s ease, transform .55s ease}
.reveal.in{opacity:1; transform:translateY(0)}

/* Responsive */
@media (max-width: 1100px){
  .flip-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 980px){
  .nav{display:none}
  .hamburger{display:block}
  .hero2-grid{grid-template-columns:1fr}
  .deliver-grid{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .product-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hero2-title{font-size:38px}
  .plist{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .footer-grid{grid-template-columns:1fr}
  .flip-grid{grid-template-columns:1fr}
  .hex-wall{grid-template-columns:repeat(2, 150px)}
  .hex{width:150px;height:130px}
}
/* =========================
   search.asp styles
========================= */
.page-hero{
  padding:44px 0 22px;
  /*background:linear-gradient(90deg, #ffffff 0%, #eef8fc 55%, #d0f2ff 100%);*/
  background: radial-gradient(900px 420px at 12% 10%, rgba(34, 197, 94, .12), transparent 60%), radial-gradient(900px 420px at 92% 20%, rgba(59, 130, 246, .10), transparent 55%), linear-gradient(180deg, rgba(248, 250, 252, 1), rgba(255, 255, 255, 1));
  border-bottom:1px solid rgba(229,231,235,.85);
}
.page-hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:center;
}
.page-title{
  margin:10px 0 8px;
  font-size:38px;
  line-height:1.12;
  font-weight:950;
  color:rgba(10,35,55,.92);
}
.page-sub{
  margin:0;
  color:rgba(15,23,42,.70);
  font-weight:400;
  line-height:1.65;
  max-width:64ch;
  font-size:18px;
}
.mode-tabs{
  display:flex;
  gap:10px;
  margin-top:14px;
}
.tab{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.9);
  background:rgba(255,255,255,.75);
  text-decoration:none;
  font-weight:900;
  color:rgba(15,23,42,.78);
  transition:transform .12s ease, border-color .12s ease;
}
.tab:hover{transform:translateY(-1px); border-color:rgba(34,197,94,.28)}
.tab.active{
  background:linear-gradient(135deg, rgba(34,197,94,.14), rgba(47,167,200,.10));
  border-color:rgba(34,197,94,.30);
}

.searchbar-card{
  border-radius:24px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(229,231,235,.85);
  box-shadow:0 16px 44px rgba(15,23,42,.10);
  padding:16px;
}
.searchbar{
  display:flex;
  gap:12px;
  align-items:center;
}
.input-lg{padding:16px 16px; font-size:15px}

.hint-row{
  margin-top:12px;
  display:grid;
  gap:10px;
}
.hint{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(229,231,235,.85);
  background:rgba(243,244,246,.55);
  color:rgba(15,23,42,.72);
  font-weight:800;
}
.hint-dot{
  width:10px;height:10px;border-radius:999px;
  background:var(--g2);
  box-shadow:0 0 0 4px rgba(34,197,94,.14);
  margin-top:3px;
}

.search-layout{padding:26px 0 60px}
.search-grid{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:16px;
  align-items:start;
}

/* Filters */
.filters{
  position:sticky;
  top:92px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(229,231,235,.88);
  box-shadow:0 16px 40px rgba(15,23,42,.06);
  padding:16px;
}
.filters-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(229,231,235,.85);
}
.filters-title{font-weight:950}
.filters-sub{margin-top:2px;color:rgba(15,23,42,.62);font-weight:800;font-size:12px}
.btn-xs{padding:8px 10px;font-size:12px}

.fblock{margin-top:14px}
.flabel{display:block;font-weight:900;color:rgba(15,23,42,.80);margin-bottom:8px;margin-top:8px;}
.fselect{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(229,231,235,.92);
  background:#fff;
  font-weight:800;
  outline:none;
}
.fselect:focus{border-color:rgba(34,197,94,.50); box-shadow:0 0 0 4px rgba(34,197,94,.10)}

.pills{display:flex;gap:10px;flex-wrap:wrap}
.pillbtn{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.92);
  background:rgba(243,244,246,.55);
  font-weight:900;
  cursor:pointer;
  color:rgba(15,23,42,.76);
  transition:transform .12s ease, border-color .12s ease;
}
.pillbtn:hover{transform:translateY(-1px); border-color:rgba(34,197,94,.26)}
.pillbtn.active{
  background:linear-gradient(135deg, rgba(34,197,94,.14), rgba(47,167,200,.10));
  border-color:rgba(34,197,94,.30);
}

.checks{display:grid;gap:8px}
.check{display:flex;gap:10px;align-items:center;font-weight:800;color:rgba(15,23,42,.72)}
.check input{width:16px;height:16px}

.frange{width:100%}
.range-meta{
  display:flex;justify-content:space-between;align-items:center;
  margin-top:8px;
  color:rgba(15,23,42,.62);
  font-weight:800;
  font-size:12px;
}
.range-val{color:rgba(15,23,42,.80);font-weight:950}

.filters-cta{margin-top:16px;padding-top:14px;border-top:1px solid rgba(229,231,235,.85)}
.filters-note{margin-top:8px;color:rgba(15,23,42,.62);font-weight:700;line-height:1.5}

/* Results */
.results-head{
  display:flex;align-items:flex-start;justify-content:space-between;gap:12px;
  padding:10px 6px 14px;
}
.results-title{font-weight:950;font-size:18px}
.results-sub{margin-top:4px;color:rgba(15,23,42,.66);font-weight:800}
.query{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.22);
  background:rgba(34,197,94,.08);
}
.results-actions{display:flex;gap:10px;flex-wrap:wrap}

.results-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.rcard{
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(229,231,235,.88);
  box-shadow:0 16px 40px rgba(15,23,42,.06);
  padding:16px;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.rcard:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 60px rgba(15,23,42,.08);
  border-color:rgba(34,197,94,.22);
}
.rcard-top{
  display:flex;align-items:flex-start;justify-content:space-between;gap:12px;
}
.rtitle{font-weight:950;font-size:18px}
.rsub{margin-top:4px;color:rgba(15,23,42,.64);font-weight:800;font-size:13px}

.rbadge{
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(229,231,235,.92);
  background:rgba(243,244,246,.60);
  font-weight:950;font-size:12px;color:rgba(15,23,42,.78)
}
.rbadge.green{
  border-color:rgba(34,197,94,.25);
  background:rgba(34,197,94,.10);
}
.rbadge.blue{
  border-color:rgba(47,167,200,.25);
  background:rgba(47,167,200,.10);
}

.rtags{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.tag{
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(229,231,235,.92);
  background:#fff;
  font-weight:900;
  font-size:12px;
  color:rgba(15,23,42,.74);
}

.rmeta{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:12px;
}
.meta{
  padding:10px 10px;
  border-radius:16px;
  border:1px solid rgba(229,231,235,.88);
  background:linear-gradient(135deg, rgba(34,197,94,.06), rgba(255,255,255,.92));
}
.meta-k{color:rgba(15,23,42,.60);font-weight:800;font-size:12px}
.meta-v{margin-top:3px;font-weight:950;color:rgba(15,23,42,.88)}

.raction{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

/* Pager */
.pager{
  display:flex;gap:10px;justify-content:center;align-items:center;
  margin-top:18px;
}
.pbtn{
  padding:10px 12px;border-radius:12px;
  border:1px solid rgba(229,231,235,.92);
  background:#fff;
  text-decoration:none;
  font-weight:950;
  color:rgba(15,23,42,.78);
}
.pbtn:hover{border-color:rgba(34,197,94,.25)}
.pbtn.active{
  background:linear-gradient(135deg, rgba(34,197,94,.14), rgba(47,167,200,.10));
  border-color:rgba(34,197,94,.30);
}
.pbtn.disabled{opacity:.55; pointer-events:none}

/* Responsive */
@media (max-width: 980px){
  .page-hero-grid{grid-template-columns:1fr}
  .search-grid{grid-template-columns:1fr}
  .filters{position:relative; top:auto}
  .results-grid{grid-template-columns:1fr}
}









/* Better row layout (less boxy) */
.rrow{
  display:grid;
  grid-template-columns: 1.35fr 0.95fr auto;
  gap:18px;
  align-items:center;
  padding:16px 16px;
}

.rrow-mid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  align-items:center;
}

/* New compact stat cell (not box cards) */
.rstat{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(229,231,235,.85);
  background:linear-gradient(135deg, rgba(34,197,94,.05), rgba(255,255,255,.95));
}

.rk{
  font-size:12px;
  color:rgba(15,23,42,.58);
  font-weight:800;
}

.rv{
  margin-top:4px;
  font-size:14px;
  font-weight:950;
  color:rgba(15,23,42,.90);
}

/* Make the title section breathe */
.rrow-title{ gap:12px; }
.rrow-sub{ line-height:1.5; }

/* Wide screens: nicer spacing */
@media (min-width: 1200px){
  .rrow{ padding:18px 18px; }
}

/* Responsive */
@media (max-width: 980px){
  .rrow{ grid-template-columns:1fr; gap:12px; }
  .rrow-mid{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width: 560px){
  .rrow-mid{ grid-template-columns:1fr; }
}





/* =========================
   categories.asp - zebra datatable
========================= */
.cat-table-wrap{ padding: 22px 0 70px; }
.cat-table-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  margin-bottom:12px;
}
.cat-table-title{ font-weight:950; font-size:20px; }
.cat-table-sub{ margin-top:4px; color:rgba(15,23,42,.66); font-weight:800; }
.cat-table-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

.table-shell{
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  box-shadow:0 18px 50px rgba(15,23,42,.06);
  overflow:hidden;
}

/* zebra table */
.zebra-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  font-size:14px;
}
.zebra-table thead th{
  text-align:left;
  padding:14px 14px;
  background:linear-gradient(135deg, rgba(34,197,94,.10), rgba(47,167,200,.06), rgba(255,255,255,.88));
  border-bottom:1px solid rgba(229,231,235,.9);
  font-weight:950;
  color:rgba(15,23,42,.82);
  position:sticky; /* nice */
  top:0;
  z-index:2;
}
.zebra-table tbody td{
  padding:14px 14px;
  vertical-align:top;
  border-bottom:1px solid rgba(229,231,235,.65);
}
.zebra-table tbody tr:nth-child(odd){
  background:rgba(15,23,42,.02);
}
.zebra-table tbody tr:nth-child(even){
  background:#fff;
}

/* clickable row */
.rowlink{ cursor:pointer; }
.rowlink:hover{
  background:rgba(34,197,94,.06) !important;
}
.rowlink:active{
  transform: translateY(0.5px);
}

/* cell styles */
.ct-name{ font-weight:950; font-size:15px; color:rgba(15,23,42,.90); }
.ct-sub{ margin-top:4px; color:rgba(15,23,42,.62); font-weight:800; font-size:12.5px; line-height:1.4; }
.ct-muted{ color:rgba(15,23,42,.68); font-weight:800; }
.ct-num{
  font-weight:950;
  text-align:right;
  white-space:nowrap;
}
.cat-table-note{
  margin-top:10px;
  color:rgba(15,23,42,.62);
  font-weight:800;
}

/* responsive */
@media (max-width: 860px){
  .zebra-table thead{ display:none; }
  .zebra-table, .zebra-table tbody, .zebra-table tr, .zebra-table td{ display:block; width:100%; }
  .zebra-table tbody td{ border-bottom:none; padding:10px 14px; }
  .zebra-table tbody tr{ border-bottom:1px solid rgba(229,231,235,.75); }
  .ct-num{ text-align:left; }
}





/* =========================
   suppliers.asp - directory table
========================= */
.dir-wrap{ padding: 20px 0 70px; }
.dir-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  margin-bottom:12px;
}
.dir-title{ font-weight:950; font-size:20px; }
.dir-sub{ margin-top:4px; color:rgba(15,23,42,.66); font-weight:800; }
.dir-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.dir-filters{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

.table-card{
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(229,231,235,.92);
  box-shadow:0 18px 55px rgba(15,23,42,.06);
  overflow:hidden;
}

.ztable{ width:100%; border-collapse:separate; border-spacing:0; font-size:14px; }
.ztable thead th{
  text-align:left;
  padding:14px 14px;
  background:linear-gradient(135deg, rgba(34,197,94,.12), rgba(47,167,200,.06), rgba(255,255,255,.92));
  border-bottom:1px solid rgba(229,231,235,.92);
  font-weight:950;
  color:rgba(15,23,42,.82);
  position:sticky;
  top:0;
  z-index:2;
}

.ztable tbody td{
  padding:14px 14px;
  border-bottom:1px solid rgba(229,231,235,.70);
  vertical-align:top;
}

.ztable tbody tr:nth-child(odd){ background:rgba(15,23,42,.02); }
.ztable tbody tr:nth-child(even){ background:#fff; }

.rowlink{ cursor:pointer; outline:none; position:relative; }
.rowlink:hover{ background:rgba(34,197,94,.06) !important; }
.rowlink:hover::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:4px;
  background:rgba(34,197,94,.55);
}
.rowlink:focus{ box-shadow: inset 0 0 0 2px rgba(34,197,94,.35); }

.t-name{ font-weight:950; font-size:15px; color:rgba(15,23,42,.92); }
.t-sub{ margin-top:4px; color:rgba(15,23,42,.62); font-weight:800; font-size:12.5px; line-height:1.4; }

.t-right{ text-align:right; }
.t-num{ font-weight:950; font-variant-numeric: tabular-nums; }

.pill{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.92);
  background:rgba(255,255,255,.80);
  font-weight:900;
  font-size:12px;
  color:rgba(15,23,42,.74);
}

.badge{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  font-weight:950;
  font-size:12px;
  border:1px solid rgba(229,231,235,.92);
}
.b-green{ background:rgba(34,197,94,.10); color:rgba(10,120,70,.95); border-color:rgba(34,197,94,.22); }
.b-gray{ background:rgba(148,163,184,.15); color:rgba(30,41,59,.90); }
.b-blue{ background:rgba(59,130,246,.10); color:rgba(30,64,175,.95); border-color:rgba(59,130,246,.22); }

.t-action{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:10px;
  border:1px solid rgba(229,231,235,.92);
  background:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:12px;
  color:rgba(15,23,42,.80);
  margin-right:6px;
}
.t-action:hover{
  border-color:rgba(34,197,94,.25);
  background:rgba(34,197,94,.06);
  color:rgba(10,120,70,.95);
}

.dir-note{
  margin-top:10px;
  color:rgba(15,23,42,.62);
  font-weight:800;
}

@media (max-width: 860px){
  .ztable thead{ display:none; }
  .ztable, .ztable tbody, .ztable tr, .ztable td{ display:block; width:100%; }
  .ztable tbody td{ border-bottom:none; padding:10px 14px; }
  .ztable tbody tr{ border-bottom:1px solid rgba(229,231,235,.75); }
  .t-right{ text-align:left; }
}



/* =========================
   pricing.asp
========================= */
.pricing-wrap{ padding: 18px 0 70px; }

.pricing-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  margin-bottom:14px;
}
.pricing-title{ font-weight:950; font-size:20px; }
.pricing-sub{ margin-top:4px; color:rgba(15,23,42,.66); font-weight:400; }

.billing-toggle{
  display:flex;
  gap:10px;
  padding:8px;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.92);
  background:rgba(255,255,255,.75);
}
.btbtn{
  border:none;
  cursor:pointer;
  padding:10px 14px;
  border-radius:999px;
  background:transparent;
  font-weight:950;
  color:rgba(15,23,42,.70);
}
.btbtn.active{
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.22);
  color:rgba(10,120,70,.98);
}

.plan-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
}

.plan-card{
  position:relative;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(229,231,235,.92);
  box-shadow:0 18px 55px rgba(15,23,42,.06);
  padding:18px;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.plan-card:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 70px rgba(15,23,42,.08);
  border-color:rgba(34,197,94,.22);
}
.plan-card.emph{
  border-color:rgba(34,197,94,.28);
  box-shadow:0 26px 80px rgba(34,197,94,.12);
}

.featured{
  background:linear-gradient(135deg, rgba(34,197,94,.08), rgba(47,167,200,.05), rgba(255,255,255,.92));
}
.plan-ribbon{
  position:absolute;
  top:14px;
  right:14px;
  padding:8px 10px;
  border-radius:999px;
  font-weight:950;
  font-size:12px;
  color:rgba(10,120,70,.98);
  background:rgba(34,197,94,.14);
  border:1px solid rgba(34,197,94,.22);
}

.plan-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}
.plan-name{ font-weight:950; font-size:18px; }
.plan-desc{ margin-top:4px; color:rgba(15,23,42,.62); font-weight:400; }
.plan-tag{
  padding:8px 10px;
  border-radius:999px;
  font-weight:950;
  font-size:12px;
  border:1px solid rgba(229,231,235,.92);
  background:rgba(255,255,255,.75);
  color:rgba(15,23,42,.75);
}
.plan-tag.green{
  border-color:rgba(34,197,94,.22);
  background:rgba(34,197,94,.12);
  color:rgba(10,120,70,.98);
}

.plan-price{
  margin-top:14px;
  display:flex;
  align-items:baseline;
  gap:6px;
}
.plan-currency{ font-weight:950; font-size:18px; color:rgba(15,23,42,.85); }
.plan-amount{ font-weight:950; font-size:44px; letter-spacing:-.02em; color:rgba(15,23,42,.92); }
.plan-period{ font-weight:900; color:rgba(15,23,42,.62); }

.plan-cta{ margin-top:12px; }

.plan-list{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.plan-list li{
  position:relative;
  padding-left:22px;
  color:rgba(15,23,42,.76);
  font-weight:400;
}
.plan-list li::before{
  content:"";
  position:absolute;
  left:0; top:7px;
  width:10px; height:10px;
  border-radius:50%;
  background:rgba(34,197,94,.55);
  box-shadow:0 0 0 3px rgba(34,197,94,.14);
}

.plan-foot{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(229,231,235,.85);
  color:rgba(15,23,42,.62);
  font-weight:400;
}

.pricing-side{
  border-radius:22px;
  background:linear-gradient(135deg, rgba(34,197,94,.10), rgba(47,167,200,.06), rgba(255,255,255,.90));
  border:1px solid rgba(229,231,235,.92);
  box-shadow:0 18px 55px rgba(15,23,42,.06);
  padding:18px;
}
.pricing-side-badge{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  font-weight:950;
  font-size:12px;
  color:rgba(10,120,70,.98);
  background:rgba(34,197,94,.14);
  border:1px solid rgba(34,197,94,.22);
}
.pricing-side-title{
  margin-top:10px;
  font-weight:950;
  font-size:36px;
  color:rgba(15,23,42,.92);
}
.pricing-side-sub{
  margin-top:4px;
  color:rgba(15,23,42,.66);
  font-weight:850;
}
.pricing-side-cta{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.pricing-side-note{
  margin-top:12px;
  color:rgba(15,23,42,.62);
  font-weight:800;
}

.hero-bullets{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
.hb{ display:flex; gap:10px; align-items:flex-start; color:rgba(15,23,42,.76); font-weight:400; }
.hb-dot{
  width:10px; height:10px; border-radius:50%;
  margin-top:6px;
  background:rgba(34,197,94,.55);
  box-shadow:0 0 0 3px rgba(34,197,94,.14);
}

.who-for{ margin-top:16px; }
.who-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:14px; }
.who-card{
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(229,231,235,.92);
  box-shadow:0 18px 55px rgba(15,23,42,.06);
  padding:18px;
}
.who-kicker{ color:rgba(10,120,70,.95); font-weight:950; font-size:12px; letter-spacing:.08em; text-transform:uppercase; }
.who-title{ margin-top:6px; font-weight:400; font-size:18px; }
.who-sub{ margin-top:6px; color:rgba(15,23,42,.66); font-weight:400; line-height:1.6; }
.who-list{ margin:12px 0 12px; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px; }
.who-list li{ position:relative; padding-left:22px; color:rgba(15,23,42,.76); font-weight:400; }
.who-list li::before{
  content:"";
  position:absolute;
  left:0; top:7px;
  width:10px; height:10px;
  border-radius:50%;
  background:rgba(34,197,94,.55);
  box-shadow:0 0 0 3px rgba(34,197,94,.14);
}

.faq{ margin-top:16px; }
.faq-head{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:10px; }
.faq-title{ font-weight:950; font-size:20px; }
.faq-sub{ margin-top:4px; color:rgba(15,23,42,.66); font-weight:400; }
.faq-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.faq-item{
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(229,231,235,.92);
  box-shadow:0 14px 45px rgba(15,23,42,.05);
  padding:12px 14px;
}
.faq-item summary{
  cursor:pointer;
  font-weight:950;
  color:rgba(15,23,42,.88);
}
.faq-body{
  margin-top:8px;
  color



/* =========================
   Auth pages + Toast
========================= */
.auth-card{
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(229,231,235,.92);
  box-shadow:0 18px 55px rgba(15,23,42,.06);
  padding:18px;
}
.auth-head{ margin-bottom:12px; }
.auth-title{ font-weight:950; font-size:20px; }
.auth-sub{ margin-top:4px; color:rgba(15,23,42,.66); font-weight:850; }

.auth-form{ display:flex; flex-direction:column; gap:12px; }
.frow{ display:flex; flex-direction:column; gap:6px; }
.fgrid{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }

.flabel{ font-weight:900; font-size:12px; color:rgba(15,23,42,.72); }

.auth-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.auth-alt{ margin-top:10px; color:rgba(15,23,42,.70); font-weight:850; }
.auth-note{ margin-top:12px; color:rgba(15,23,42,.62); font-weight:850; }

.btn-lg{ padding:12px 14px; }

.role-pills{ display:flex; gap:10px; flex-wrap:wrap; }
.pillbtn{
  cursor:pointer;
  border-radius:999px;
  padding:10px 12px;
  border:1px solid rgba(229,231,235,.92);
  background:rgba(255,255,255,.80);
  font-weight:950;
  font-size:12px;
  color:rgba(15,23,42,.75);
}
.pillbtn.active{
  border-color:rgba(34,197,94,.28);
  background:rgba(34,197,94,.12);
  color:rgba(10,120,70,.98);
}

.pricing-side{ /* if not already present on pricing page */
  border-radius:22px;
  background:linear-gradient(135deg, rgba(34,197,94,.10), rgba(47,167,200,.06), rgba(255,255,255,.90));
  border:1px solid rgba(229,231,235,.92);
  box-shadow:0 18px 55px rgba(15,23,42,.06);
  padding:18px;
}

/* Toast */
.toast-wrap{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:9999;
}
.toast{
  width:min(360px, calc(100vw - 36px));
  border-radius:16px;
  border:1px solid rgba(229,231,235,.92);
  background:#fff;
  box-shadow:0 18px 60px rgba(15,23,42,.14);
  padding:12px 12px;
  position:relative;
  animation:toastIn .18s ease;
}
@keyframes toastIn{ from{ transform:translateY(8px); opacity:0; } to{ transform:none; opacity:1; } }

.toast-title{ font-weight:950; color:rgba(15,23,42,.90); }
.toast-msg{ margin-top:4px; color:rgba(15,23,42,.70); font-weight:850; line-height:1.45; }

.toast-x{
  position:absolute;
  top:8px;
  right:10px;
  width:28px;
  height:28px;
  border-radius:10px;
  border:1px solid rgba(229,231,235,.92);
  background:rgba(255,255,255,.85);
  cursor:pointer;
  font-size:18px;
  line-height:24px;
  font-weight:950;
  color:rgba(15,23,42,.70);
}
.toast-x:hover{ background:rgba(15,23,42,.03); }

.toast.out{ opacity:0; transform:translateY(8px); transition:all .18s ease; }

.t-success{ border-left:5px solid rgba(34,197,94,.85); }
.t-error{ border-left:5px solid rgba(239,68,68,.85); }
.t-info{ border-left:5px solid rgba(59,130,246,.85); }

@media (max-width: 760px){
  .fgrid{ grid-template-columns:1fr; }
  .toast-wrap{ left:18px; right:18px; }
}



/* =========================
   Desktop Drawer + Header Search
========================= */
.header-inner{
  display:flex;
  align-items:center;
  gap:14px;
}

.header-search{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  max-width:760px; /* make it wide */
  margin:0 auto;   /* center-ish */
}

.hs-input{
  width:100%;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.92);
  background:rgba(255,255,255,.86);
  padding:12px 16px;
  font-weight:850;
  outline:none;
}
.hs-input:focus{
  border-color:rgba(34,197,94,.28);
  box-shadow:0 0 0 4px rgba(34,197,94,.12);
}

.hs-btn{
  border:none;
  cursor:pointer;
  border-radius:999px;
  padding:12px 16px;
  font-weight:950;
  background:rgba(34,197,94,.92);
  color:#fff;
}
.hs-btn:hover{ filter:brightness(.98); }

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.iconbtn{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(229,231,235,.92);
  background:rgba(255,255,255,.85);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.hamburger{
  width:18px;
  height:2px;
  background:rgba(15,23,42,.72);
  position:relative;
  border-radius:99px;
}
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:rgba(15,23,42,.72);
  border-radius:99px;
}
.hamburger::before{ top:-6px; }
.hamburger::after{ top:6px; }

/* Overlay */
.drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,.45);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:9998;
}

/* Drawer (RIGHT slide) */
.drawer{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(380px, 92vw);
  background:#fff;
  border-left:1px solid rgba(229,231,235,.92);
  box-shadow:-22px 0 70px rgba(15,23,42,.14);
  transform:translateX(100%);
  transition:transform .22s ease;
  z-index:9999;
  display:flex;
  flex-direction:column;
}

.drawer.open{ transform:translateX(0); }
.drawer-overlay.open{ opacity:1; pointer-events:auto; }

.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px;
  border-bottom:1px solid rgba(229,231,235,.86);
  background:linear-gradient(135deg, rgba(34,197,94,.10), rgba(47,167,200,.06), rgba(255,255,255,.95));
}

.drawer-brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.logo-badge.sm{ width:42px; height:28px; border-radius:999px; font-size:12px; }

.drawer-title{ font-weight:950; font-size:18px; }

.drawer-body{
  padding:14px;
  overflow:auto;
}

.drawer-section{ margin-bottom:14px; }
.drawer-label{
  font-weight:950;
  font-size:12px;
  color:rgba(15,23,42,.55);
  text-transform:uppercase;
  letter-spacing:.08em;
  margin:12px 6px 8px;
}

.drawer-link{
  display:block;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(229,231,235,.92);
  background:rgba(255,255,255,.85);
  margin-bottom:10px;
  font-weight:900;
  color:rgba(15,23,42,.82);
  text-decoration:none;
  transition:transform .12s ease, border-color .12s ease;
}
.drawer-link:hover{
  transform:translateY(-1px);
  border-color:rgba(34,197,94,.22);
}

.drawer-footer{
  margin-top:6px;
  padding-top:10px;
  border-top:1px solid rgba(229,231,235,.86);
}
.drawer-footline{
  color:rgba(15,23,42,.62);
  font-weight:850;
  padding:8px 6px;
}

/* Make header search shrink on very small screens */
@media (max-width: 860px){
  .header-search{ max-width:none; }
  .header-actions .btn{ display:none; } /* optional: keep header clean */
}



/* Burger morph animation */
.burger{
  position:relative;
}
.burger-lines{
  width:18px;
  height:2px;
  background:rgba(15,23,42,.78);
  border-radius:99px;
  position:relative;
  display:block;
  transition:transform .18s ease, background .18s ease;
}
.burger-lines::before,
.burger-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:rgba(15,23,42,.78);
  border-radius:99px;
  transition:transform .18s ease, top .18s ease, opacity .18s ease;
}
.burger-lines::before{ top:-6px; }
.burger-lines::after{ top:6px; }

/* When drawer open */
.burger.is-open .burger-lines{ background:transparent; }
.burger.is-open .burger-lines::before{ top:0; transform:rotate(45deg); }
.burger.is-open .burger-lines::after{ top:0; transform:rotate(-45deg); }



/* Header search suggestions */
.hs-wrap{ position:relative; flex:1; }
.hs-suggest{
  position:absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background:#fff;
  border:1px solid rgba(229,231,235,.92);
  border-radius:16px;
  box-shadow:0 18px 60px rgba(15,23,42,.12);
  overflow:hidden;
  display:none;
  z-index:2000;
}
.hs-suggest.open{ display:block; }

.hs-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:11px 12px;
  cursor:pointer;
  font-weight:900;
  color:rgba(15,23,42,.82);
  border-bottom:1px solid rgba(229,231,235,.60);
}
.hs-item:last-child{ border-bottom:none; }
.hs-item:hover{ background:rgba(34,197,94,.08); }

.hs-left{ display:flex; flex-direction:column; gap:2px; }
.hs-name{ font-weight:950; }
.hs-sub{ font-size:12px; font-weight:850; color:rgba(15,23,42,.55); }
.hs-pill{
  font-size:12px;
  font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.22);
  background:rgba(34,197,94,.10);
  color:rgba(10,120,70,.96);
}


/* Sticky shrink */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  transition:box-shadow .18s ease, transform .18s ease;
}
.site-header.is-shrink .topstrip{ display:none; }
.site-header.is-shrink .header-main{ padding:8px 0; }
.site-header.is-shrink{
  box-shadow:0 12px 40px rgba(15,23,42,.10);
}
