/* ══════════════════════════════════════════════
   WebSolutions Theme v1.0 — theme.css
   Author: bizcare.com.vn
   Font: Inter (400/500/600/700/800)
   ══════════════════════════════════════════════ */

/* Font Awesome — @import fallback */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --wsc-primary:      #2563eb;
  --wsc-primary-dark: #1d4ed8;
  --wsc-accent:       #06b6d4;
  --wsc-green:        #10b981;
  --wsc-orange:       #f59e0b;
  --wsc-purple:       #7c3aed;
  --wsc-bg:           #f8fafc;
  --wsc-text:         #1e293b;
  --wsc-muted:        #64748b;
  --wsc-border:       #e2e8f0;
  --wsc-radius:       14px;
  --wsc-shadow:       0 4px 24px rgba(37,99,235,.08);
  --wsc-font:         'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--wsc-font);
  background: var(--wsc-bg);
  color: var(--wsc-text);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}
a { color: var(--wsc-primary); text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; }
::selection { background: #dbeafe; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--wsc-primary); border-radius: 3px; }

/* ── Container ── */
.wst-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════════
   TOPBAR (disabled in header markup)
   ══════════════════════════════════════════════ */
.wst-topbar {
  background: linear-gradient(90deg,var(--wsc-primary),var(--wsc-accent));
  padding: 6px 0;
}
.wst-topbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .78rem;
  color: rgba(255,255,255,.8);
}
.wst-topbar-spacer { flex: 1; }
.wst-topbar-phone { color: #fff; font-weight: 700; }
.wst-topbar-social { color: rgba(255,255,255,.8); margin-left: 4px; transition: color .2s; }
.wst-topbar-social:hover { color: #fff; }

/* ══════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════ */
.wst-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wsc-border);
  box-shadow: 0 2px 16px rgba(37,99,235,.06);
}
.wst-nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 8px;
}
/* Logo */
.wst-logo { display: flex; align-items: center; gap: 10px; margin-right: 16px; text-decoration: none; flex-shrink: 0; }
.wst-logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg,var(--wsc-primary),var(--wsc-accent)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .9rem; flex-shrink: 0; }
.wst-logo-text { display: flex; flex-direction: column; }
.wst-logo-name { font-size: 1.05rem; font-weight: 800; color: var(--wsc-text); letter-spacing: -.5px; }
.wst-logo-sub  { font-size: .58rem; color: var(--wsc-muted); text-transform: uppercase; letter-spacing: 1px; }
.wst-logo img  { height: 40px; width: auto; }

/* Menu */
.wst-nav-links { flex: 1; }
.wst-menu { list-style: none; display: flex; align-items: center; gap: 0; }
.wst-menu > li { position: relative; }
.wst-menu > li > a {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--wsc-muted);
  border-bottom: 2.5px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.wst-menu > li > a:hover,
.wst-menu > li.current-menu-item > a,
.wst-menu > li.current-menu-ancestor > a {
  color: var(--wsc-primary);
  border-bottom-color: var(--wsc-primary);
}
/* Dropdown */
.wst-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #fff;
  border: 1.5px solid var(--wsc-border);
  border-radius: var(--wsc-radius);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  min-width: 220px;
  z-index: 200;
  list-style: none;
  overflow: hidden;
}
.wst-menu .menu-item-has-children:hover .sub-menu { display: block; }
.wst-menu .sub-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: .85rem;
  color: var(--wsc-text);
  border-bottom: 1px solid var(--wsc-border);
  transition: all .15s;
}
.wst-menu .sub-menu li:last-child a { border-bottom: none; }
.wst-menu .sub-menu li a:hover { background: #eff6ff; color: var(--wsc-primary); }

/* Nav right */
.wst-nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.wst-nav-search {
  position: relative;
  display: flex; align-items: center;
  background: var(--wsc-bg);
  border: 1.5px solid var(--wsc-border);
  border-radius: 8px;
  padding: 7px 12px; gap: 7px;
  width: 200px;
  transition: all .2s;
}
.wst-nav-search:focus-within { border-color: var(--wsc-primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); background: #fff; }
.wst-nav-search i { color: var(--wsc-muted); font-size: .85rem; }
.wst-nav-search input { background: none; border: none; outline: none; font-size: .85rem; font-family: var(--wsc-font); color: var(--wsc-text); flex: 1; min-width: 0; }
.wst-nav-icon, .wst-nav-phone {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--wsc-primary); color: #fff;
  border-radius: 10px; font-size: .95rem;
  white-space: nowrap; text-decoration: none; transition: all .2s;
}
.wst-nav-icon:hover, .wst-nav-phone:hover { background: var(--wsc-primary-dark); color: #fff; transform: translateY(-1px); }

/* Hamburger */
.wst-hamburger {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.wst-hamburger span {
  display: block;
  width: 100%; height: 2.5px;
  background: var(--wsc-text); border-radius: 2px;
  transition: all .3s;
}
.wst-hamburger.open span:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
.wst-hamburger.open span:nth-child(2) { opacity: 0; }
.wst-hamburger.open span:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

/* Fullpage overlay nav */
.wst-mobile-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: radial-gradient(circle at 80% 12%, rgba(37,99,235,.10), transparent 30%), #fff;
  z-index: 1200;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .32s ease, opacity .24s ease;
  overflow-y: auto;
  padding: max(24px, env(safe-area-inset-top)) 28px 32px;
}
.wst-mobile-overlay.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.wst-mobile-overlay-head { display:flex; align-items:center; justify-content:space-between; gap:16px; min-height:54px; }
.wst-mobile-brand { display:flex; align-items:center; color:var(--wsc-text); font-weight:800; font-size:1.15rem; }
.wst-mobile-brand img { max-height:46px; width:auto; }
.wst-mobile-close { width:46px; height:46px; border:1px solid var(--wsc-border); border-radius:14px; background:#fff; color:var(--wsc-text); font-size:2rem; line-height:1; cursor:pointer; }
.wst-mobile-nav { margin-top: 44px; }
.wst-mobile-menu { list-style: none; padding: 0; display:grid; gap: 4px; }
.wst-mobile-menu li a {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  font-size: clamp(1.45rem, 7vw, 3rem); font-weight: 800; line-height:1.1;
  color: var(--wsc-text);
  border-bottom: 1px solid var(--wsc-border);
  transition: all .2s;
}
.wst-mobile-menu li a:hover { color: var(--wsc-primary); padding-left: 8px; }
.wst-mobile-menu li a i { width: 30px; text-align: center; color: var(--wsc-primary); font-size:.8em; }
.wst-mobile-menu .sub-menu { list-style:none; padding: 6px 0 10px 42px; }
.wst-mobile-menu .sub-menu a { font-size: 1.05rem; font-weight: 600; padding: 10px 0; color: var(--wsc-muted); }
.wst-mobile-overlay-actions { display:flex; gap:12px; margin-top:34px; }
.wst-mobile-overlay-actions a { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; color:#fff; background:var(--wsc-primary); }

/* Mobile bottom nav */
.wst-mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--wsc-border);
  z-index: 700;
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  justify-content: space-around;
}
.wst-mobile-nav-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  padding: 4px 10px;
  font-size: .62rem; font-weight: 600;
  color: var(--wsc-muted);
  text-decoration: none;
  transition: color .2s;
  flex: 1;
}
.wst-mobile-nav-item i { font-size: 1.1rem; }
.wst-mobile-nav-item:hover, .wst-mobile-nav-item.active { color: var(--wsc-primary); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.wst-hero {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 45%, #06b6d4 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.wst-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.wst-hs { position: absolute; border-radius: 50%; }
.wst-hs1 { width: 500px; height: 500px; background: radial-gradient(circle,rgba(255,255,255,.06) 0%,transparent 70%); top: -150px; right: -100px; }
.wst-hs2 { width: 350px; height: 350px; background: radial-gradient(circle,rgba(255,255,255,.04) 0%,transparent 70%); bottom: -80px; left: -60px; }
.wst-dots { position: absolute; inset: 0; background-image: radial-gradient(circle,rgba(255,255,255,.07) 1px,transparent 1px); background-size: 36px 36px; }

.wst-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }

/* Eyebrow */
.wst-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 20px; font-size: .78rem; font-weight: 600; color: #fff; margin-bottom: 16px; }
.wst-eyebrow-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: wst-blink 2s infinite; }
@keyframes wst-blink { 0%,100%{opacity:1;}50%{opacity:.3;} }

.wst-hero-title { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 14px; letter-spacing: -1.5px; }
.wst-hero-highlight { color: #bfdbfe; }
.wst-hero-sub { font-size: 1rem; color: rgba(255,255,255,.85); line-height: 1.75; max-width: 480px; margin-bottom: 28px; }

/* Hero search */
.wst-hero-search-wrap { max-width: 560px; }
.wst-hero-tabs { display: flex; gap: 4px; margin-bottom: -1px; }
.wst-hero-search-box {
  position: relative;
  display: flex; align-items: center;
  background: #fff; border-radius: 0 var(--wsc-radius) var(--wsc-radius) var(--wsc-radius);
  padding: 6px 6px 6px 16px; gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  margin-bottom: 14px;
}
.wst-hero-search-box i { color: var(--wsc-muted); }
.wst-hero-search-box input { flex: 1; border: none; outline: none; font-size: .95rem; font-family: var(--wsc-font); color: var(--wsc-text); }
.wst-search-btn { background: var(--wsc-primary); color: #fff; border: none; padding: 11px 20px; border-radius: 8px; font-weight: 600; font-size: .87rem; cursor: pointer; font-family: var(--wsc-font); transition: background .2s; white-space: nowrap; }
.wst-search-btn:hover { background: var(--wsc-primary-dark); }
.wst-popular-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.wst-popular-tags span { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6); }

/* Stats */
.wst-hero-stats { display: flex; gap: 0; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: var(--wsc-radius); overflow: hidden; margin-top: 24px; }
.wst-stat { flex: 1; padding: 14px 20px; border-right: 1px solid rgba(255,255,255,.15); text-align: center; }
.wst-stat:last-child { border-right: none; }
.wst-stat-num   { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.wst-stat-label { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; }

/* Hero visual */
.wst-hero-visual { position: relative; min-height: 360px; }
.wst-hero-card-main {
  background: #fff; border-radius: 20px; padding: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
  position: relative; z-index: 2;
}
.wst-hc-icon { font-size: 2rem; margin-bottom: 8px; }
.wst-hc-title { font-size: 1rem; font-weight: 700; margin-bottom: 3px; color: var(--wsc-text); }
.wst-hc-sub   { font-size: .78rem; color: var(--wsc-muted); margin-bottom: 16px; }
.wst-hc-item  { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--wsc-border); }
.wst-hc-item-av { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: .8rem; flex-shrink: 0; }
.wst-hc-item-info { flex: 1; font-size: .82rem; font-weight: 500; color: var(--wsc-text); }
.wst-hc-item-price { font-size: .85rem; font-weight: 700; color: var(--wsc-primary); }

/* Floating badges */
.wst-float-badge {
  position: absolute; background: #fff; border-radius: 30px;
  padding: 8px 14px; font-size: .78rem; font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border: 1px solid var(--wsc-border);
  animation: wst-float 4s ease-in-out infinite;
  z-index: 3; white-space: nowrap;
}
@keyframes wst-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.wst-fb1 { top: -20px; right: 0px; animation-delay: 0s; }
.wst-fb2 { bottom: 80px; right: -10px; animation-delay: 1.3s; }
.wst-fb3 { top: 50%; left: -10px; animation-delay: 2.6s; }

/* ══════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════ */
.wst-section { padding: 60px 0; }
.wst-bg-light { background: #f0f6ff; }
.wst-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.wst-section-title { font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; gap: 10px; margin: 0; }

/* Filter tabs for homepage sections */
.wst-filter-tabs, .wst-ftabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.wst-ftab {
  padding: 7px 18px; border-radius: 20px;
  font-size: .82rem; font-weight: 600;
  border: 1.5px solid var(--wsc-border); background: #fff;
  color: var(--wsc-muted); cursor: pointer; transition: all .2s;
}
.wst-ftab:hover, .wst-ftab.on { background: var(--wsc-primary); color: #fff; border-color: var(--wsc-primary); }

/* ══════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════ */
.wst-cta-banner {
  background: linear-gradient(135deg, var(--wsc-primary), var(--wsc-accent));
  padding: 56px 0;
}
.wst-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.wst-cta-inner h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin: 0 0 8px; }
.wst-cta-inner p  { color: rgba(255,255,255,.8); font-size: .95rem; margin: 0; }
.wst-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.wsc-btn-white { background: #fff; color: var(--wsc-primary); box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.wsc-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }

/* ══════════════════════════════════════════════
   WHY GRID
   ══════════════════════════════════════════════ */
.wst-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wst-why-item {
  background: #fff; border-radius: var(--wsc-radius); padding: 28px 24px;
  border: 1.5px solid var(--wsc-border); box-shadow: var(--wsc-shadow);
  text-align: center; transition: all .25s;
}
.wst-why-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(37,99,235,.1); }
.wst-why-icon { width: 56px; height: 56px; background: linear-gradient(135deg,#eff6ff,#dbeafe); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--wsc-primary); font-size: 1.4rem; margin: 0 auto 16px; }
.wst-why-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.wst-why-item p  { font-size: .85rem; color: var(--wsc-muted); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════ */
.wst-contact-section { background: #f8fafc; }
.wst-contact-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.wst-contact-home-info { padding: 28px; background: #fff; border-radius: var(--wsc-radius); border: 1.5px solid var(--wsc-border); box-shadow: var(--wsc-shadow); }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.wst-footer { background: #0f172a; color: #94a3b8; margin-top: 0; }
.wst-footer-main { padding: 60px 0 40px; }
.wst-footer-col {}
.wst-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.wst-footer-logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg,var(--wsc-primary),var(--wsc-accent)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .9rem; }
.wst-footer-logo-name { font-size: 1.05rem; font-weight: 800; color: #fff; }
.wst-footer-logo img  { height: 36px; }
.wst-footer-desc { font-size: .85rem; line-height: 1.65; margin-bottom: 16px; max-width: 260px; }
.wst-footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; margin-bottom: 8px; text-decoration: none; color: #94a3b8; }
.wst-footer-contact-item i { color: var(--wsc-primary); margin-top: 2px; width: 14px; flex-shrink: 0; }
.wst-footer-contact-item:hover { color: #fff; }
.wst-footer-social { display: flex; gap: 8px; margin-top: 16px; }

.wst-footer-heading { font-size: .85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; display: flex; align-items: center; gap: 7px; }
.wst-footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.wst-footer-links li a { display: flex; align-items: center; gap: 7px; font-size: .85rem; color: #94a3b8; text-decoration: none; transition: color .2s; }
.wst-footer-links li a:hover { color: #fff; }
.wst-footer-links li a i { font-size: .7rem; color: var(--wsc-primary); }

.wst-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; }
.wst-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; }
.wst-footer-bottom a { color: #94a3b8; }
.wst-footer-bottom a:hover { color: #fff; }
.wst-footer-bottom-links { display: flex; gap: 16px; }

/* Widget title in footer */
.footer-widget-title { font-size: .85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; }
.widget { color: #94a3b8; font-size: .85rem; }
.widget a { color: #94a3b8; }
.widget a:hover { color: #fff; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .wst-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .wst-hero-visual { display: none; }
  .wst-why-grid { grid-template-columns: repeat(2, 1fr); }
  .wst-contact-home-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .wst-container { padding: 0 16px; }
  .wst-topbar { display: none; }
  /* Nav */
  .wst-nav-links  { display: none; }
  .wst-nav-icon, .wst-nav-phone { width: 38px; height: 38px; }
  .wst-hamburger  { display: flex; }
  .wst-nav-search { display: none; }
  /* Hero */
  .wst-hero { padding: 48px 0 40px; }
  .wst-hero-title { font-size: 1.8rem; }
  .wst-hero-stats { flex-wrap: wrap; }
  .wst-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  /* Sections */
  .wst-section { padding: 40px 0; }
  .wst-why-grid { grid-template-columns: 1fr; }
  .wst-cta-inner { flex-direction: column; text-align: center; }
  /* Footer */
  body { padding-bottom: 64px; } /* space for mobile nav */
  .wst-mobile-bottom-nav { display: flex; }
  .wsc-floating-btns { bottom: 80px; }
}
@media (max-width: 480px) {
  .wst-nav-search { display: none; }
  .wst-hero-title { font-size: 1.5rem; }
  .wst-cta-btns { flex-direction: column; }
  .wst-cta-btns .wsc-btn { width: 100%; }
}

/* ══════════════════════════════════════════════
   EYEBROW BADGES (section labels)
   ══════════════════════════════════════════════ */
.wst-ey {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.wst-ey-blue   { background: #dbeafe; color: #1d4ed8; }
.wst-ey-green  { background: #d1fae5; color: #065f46; }
.wst-ey-orange { background: #fef3c7; color: #92400e; }
.wst-ey-purple { background: #ede9fe; color: #5b21b6; }

/* ══════════════════════════════════════════════
   HERO SEARCH TYPE TABS
   ══════════════════════════════════════════════ */
.wst-type-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wst-type-tab i { font-size: .8rem; }

/* ══════════════════════════════════════════════
   SECTION FILTER TABS — per-section
   ══════════════════════════════════════════════ */
.wst-filter-tabs[data-section] .wst-ftab {
  font-size: .8rem;
}

/* ══════════════════════════════════════════════
   SECTION DIVIDERS
   ══════════════════════════════════════════════ */
#sec-giao-dien,
#sec-moi,
#sec-dich-vu { background: #fff; }

#sec-plugin,
#sec-noi-bat { background: var(--wsc-bg, #f8fafc); }
