/* ==============================================
   KHO HẢI SẢN MARKETPLACE - MAIN CSS
   Dựa trên thiết kế HTML preview
   ============================================== */

:root {
  --navy:   #06233f;
  --deep:   #04182d;
  --blue:   #0c75b8;
  --aqua:   #19c6d1;
  --orange: #ff8a00;
  --gold:   #ffc247;
  --green:  #14b86a;
  --red:    #e53e3e;
  --text:   #102033;
  --muted:  #60758a;
  --soft:   #f2f8fb;
  --white:  #ffffff;
  --line:   #dbe8f0;
  --shadow: 0 24px 70px rgba(6,35,63,.14);
  --radius: 24px;
  --font:   'Be Vietnam Pro', sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(180deg,#effaff 0%,#fff 35%,#f6fbfd 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,h5,h6 { margin: 0; }
p { margin: 0; }
button { font-family: var(--font); cursor: pointer; }

/* CONTAINER */
.container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}

/* ========================
   TOPBAR
   ======================== */
.topbar {
  background: var(--deep);
  color: #cce7f8;
  font-size: 13px;
}
.topbar .inner {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__left { display: flex; flex-wrap: wrap; }
.topbar__left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 18px;
}
.topbar__right b { color: #fff; }
.topbar__right a { color: #cce7f8; }
.topbar__right a:hover { color: var(--aqua); }

/* ========================
   HEADER
   ======================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219,232,240,.8);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
}
.actions {
  margin-left: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo {
  width: auto;
  height: 56px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  overflow: visible;
  flex-shrink: 0;
}
.logo img {
  width: auto;
  height: 56px;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: #29445e;
  font-size: 15px;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu a { transition: color .2s; }
.menu a:hover, .menu a.current_page_item { color: var(--blue); }
.menu ul { display: flex; gap: 22px; }
.menu li { position: relative; }
.menu li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
}
.menu li:hover ul { display: flex; }
.menu li ul li { width: 100%; }
.menu li ul a {
  display: block;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
}
.menu li ul a:hover { background: var(--soft); color: var(--blue); }

.actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Contextual header theming */
.khs-theme-dry .menu { color: #5f3a1f; }
.khs-theme-dry .menu a { color: #5f3a1f; }
.khs-theme-dry .menu a:hover,
.khs-theme-dry .menu a.current-menu-item { color: #c47a1e; }
.khs-theme-dry .site-header { border-bottom-color: rgba(245,166,35,.3); }
.khs-theme-dry .logo { background: linear-gradient(135deg, #7a3f16, #f5a623); box-shadow: 0 14px 34px rgba(154,87,31,.28); }

.khs-theme-fresh .menu { color: #254b66; }
.khs-theme-fresh .menu a { color: #254b66; }
.khs-theme-fresh .menu a:hover,
.khs-theme-fresh .menu a.current-menu-item { color: var(--blue); }
.khs-theme-fresh .site-header { border-bottom-color: rgba(22,211,226,.25); }
.khs-theme-fresh .logo { background: linear-gradient(135deg, var(--blue), var(--aqua)); }

/* BUTTONS */
.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #351b00;
  box-shadow: 0 14px 28px rgba(255,138,0,.26);
}
.btn-primary:hover { box-shadow: 0 18px 36px rgba(255,138,0,.34); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: white;
  box-shadow: 0 14px 28px rgba(12,117,184,.22);
}
.btn-blue:hover { box-shadow: 0 18px 36px rgba(12,117,184,.3); }
.btn-ghost {
  background: #edf7fb;
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--soft); }
.btn-green {
  background: linear-gradient(135deg, var(--green), #0ea65a);
  color: white;
}
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--full { width: 100%; margin-top: 8px; }
.btn--cart { background: linear-gradient(135deg,#e06f00,var(--orange)); color: white; }
.btn--wholesale { background: var(--navy); color: white; }
.btn--zalo { background: #0068ff; color: white; }

.btn-cart-icon {
  position: relative;
  background: #edf7fb;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-count {
  background: var(--orange);
  color: white;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  padding: 0 4px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
}

/* Mobile Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  padding: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.mobile-menu-close {
  background: #f5f7fa;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.mobile-menu-close:hover { background: #e5e8ec; }
.mobile-menu-inner nav { padding: 12px 16px; flex: 1; }
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav-list li a,
.mobile-nav-list > a {
  display: block;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: background .15s;
}
.mobile-nav-list li a:hover,
.mobile-nav-list > a:hover { background: var(--soft); }
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px 28px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 54px;
  background:
    radial-gradient(circle at 18% 15%, rgba(25,198,209,.22), transparent 32%),
    radial-gradient(circle at 84% 0%, rgba(255,138,0,.16), transparent 30%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 38px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e6f8fb;
  color: #087d93;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 18px;
}
h1 {
  font-size: 52px;
  line-height: 1.06;
  margin: 0 0 18px;
  color: var(--navy);
  letter-spacing: -2px;
}
.lead {
  font-size: 17px;
  line-height: 1.75;
  color: #486176;
  margin: 0 0 26px;
  max-width: 680px;
}

/* HERO SEARCH */
.hero-search {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  display: grid;
  grid-template-columns: 1.2fr .85fr auto;
  gap: 10px;
  box-shadow: var(--shadow);
  margin: 26px 0 18px;
}
.field {
  background: #f4f9fc;
  border-radius: 18px;
  padding: 12px 15px;
  border: 1px solid transparent;
  transition: border-color .2s;
  position: relative;
}
.field:focus-within { border-color: var(--blue); }
.field small {
  display: block;
  color: #7690a5;
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.field strong, .field input, .field select {
  color: #12304d;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
}
.field input, .field select {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
}

/* Search Suggestions */
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 50;
  overflow: hidden;
}
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background .15s;
}
.suggestion-item:hover { background: var(--soft); }
.suggestion-item img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.suggestion-item .s-label { font-weight: 700; font-size: 14px; }
.suggestion-item .s-price { font-size: 12px; color: var(--orange); font-weight: 700; }
.suggestion-item .s-type {
  font-size: 11px;
  color: var(--muted);
  background: var(--soft);
  padding: 2px 8px;
  border-radius: 999px;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.stat {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
}
.stat b { font-size: 24px; color: var(--navy); display: block; }
.stat p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }

/* HERO VISUAL */
.visual { position: relative; min-height: 520px; }
.hero-card {
  position: absolute;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  border: 8px solid white;
}
.hero-card.main {
  right: 0;
  top: 8px;
  width: 82%;
  height: 350px;
  background: linear-gradient(135deg,#083050,#0c75b8 55%,#19c6d1);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: white;
}
.hero-card.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 28%, rgba(255,255,255,.35), transparent 22%),
    linear-gradient(180deg, transparent, rgba(0,0,0,.38));
}
.plate {
  position: absolute;
  right: 50px;
  top: 48px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 43%, #d9f2fb 44% 57%, #fff 58%);
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
}
.shrimp {
  position: absolute;
  width: 82px;
  height: 42px;
  border-radius: 60px 60px 18px 18px;
  background: linear-gradient(135deg, #ff8a00, #ffcf67);
  transform: rotate(-24deg);
  right: 128px;
  top: 118px;
}
.shrimp::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 7px solid #ffba4e;
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
  right: -18px;
  top: -1px;
}
.fish {
  position: absolute;
  width: 110px;
  height: 58px;
  border-radius: 60% 45% 45% 60%;
  background: linear-gradient(135deg, #19c6d1, #dffbff);
  right: 88px;
  top: 178px;
}
.fish::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 12px;
  border-left: 34px solid #bdf4fb;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy b { font-size: 26px; display: block; }
.hero-copy p { margin: 6px 0 0; color: #d9f7ff; font-size: 14px; }
.hero-card.small {
  left: 0;
  bottom: 55px;
  width: 56%;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.mini-img {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff3d8, #ffc247);
  display: grid;
  place-items: center;
  font-size: 36px;
  flex-shrink: 0;
  overflow: hidden;
}
.mini-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-card.small b { color: var(--navy); font-size: 14px; display: block; }
.hero-card.small p { color: var(--muted); font-size: 12px; margin: 5px 0 0; }
.floating {
  position: absolute;
  right: 34px;
  bottom: 30px;
  background: #06324f;
  color: white;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.floating b { display: block; font-size: 20px; }
.floating span { color: #aeeef5; font-size: 13px; }

/* ========================
   SECTIONS
   ======================== */
.khs-main .kh-section { padding: 72px 0; }
.khs-main section { padding: 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 32px;
}
.section-head h2 {
  font-size: 36px;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -1px;
  position: relative;
  padding-left: 16px;
}
.section-head h2::before {
  content: '';
  position: absolute;
  left: 0; top: 8%; bottom: 8%;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--aqua));
  border-radius: 999px;
}
.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  font-size: 15px;
}

/* ========================
   CATEGORIES
   ======================== */
.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(6,35,63,.06);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.cat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat .ico {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #eaf8fb;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  font-size: 30px;
  overflow: hidden;
}
.cat .ico img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.cat b { color: var(--navy); font-size: 14px; display: block; }
.cat span { display: block; color: var(--muted); font-size: 12px; margin-top: 5px; }

/* ========================
   MARKET LAYOUT
   ======================== */
.market-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

/* ── Filter Sidebar ────────────────────────────────────── */
.filter {
  background: #fff;
  border: 1px solid #dce8f2;
  border-radius: 20px;
  padding: 0;
  align-self: start;
  position: sticky;
  top: 96px;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(6,35,63,.07);
}

/* Filter header */
.filter h3 {
  margin: 0;
  padding: 18px 20px 16px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.2px;
  border-bottom: 1px solid #eef3f8;
  background: linear-gradient(135deg, #f8fbfe 0%, #fff 100%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--blue);
  border-radius: 3px;
}

/* Each filter section */
.filter-group {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f5fa;
}
.filter-group:last-child { border-bottom: 0; }

.filter-group h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 10px;
}

/* Checkbox rows */
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  color: #435b70;
  font-weight: 500;
  font-size: 13.5px;
  transition: color .15s;
}

.filter-check:hover { color: var(--navy); }

.filter-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-count {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  margin-left: auto;
  background: #e8f3fc;
  border-radius: 20px;
  padding: 1px 7px;
}

/* Price range — stacked layout */
.price-range {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.price-range-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-range input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid #dce8f2;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  font-family: var(--font);
  outline: none;
  color: var(--navy);
  font-weight: 600;
  background: #f8fbfe;
  transition: border-color .2s, box-shadow .2s;
  -moz-appearance: textfield;
}

.price-range input::-webkit-inner-spin-button,
.price-range input::-webkit-outer-spin-button { -webkit-appearance: none; }

.price-range input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(12,117,184,.1);
}

.price-range-sep {
  color: var(--muted);
  font-size: 14px;
  flex-shrink: 0;
}

/* Filter action buttons */
.filter-actions {
  padding: 4px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-actions .btn { width: 100%; }

/* Related category links */
.filter-related-link {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  transition: color .15s, padding-left .15s;
}

.filter-related-link:hover {
  color: var(--navy);
  padding-left: 4px;
}

/* Chip filter (homepage filter sidebar) */
.chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #d8e8ef;
  color: #435b70;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: color .2s;
  text-decoration: none;
}
.chip:last-child { border-bottom: 0; }
.chip:hover { color: var(--blue); }
.chip span {
  color: var(--blue);
  font-size: 13px;
  background: var(--soft);
  border-radius: 999px;
  padding: 2px 10px;
}
.chip.active { color: var(--blue); }
.chip.active span { background: var(--blue); color: #fff; }

/* App CTA section */
.app-cta {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
  margin: 48px 0;
}
.app-cta h2 { margin: 0 0 8px; color: var(--navy); font-size: 32px; letter-spacing: -.5px; }
.app-cta p { margin: 0; color: var(--muted); line-height: 1.65; }
.app-cta .actions { flex-direction: column; align-items: flex-start; gap: 10px; }

/* Products Toolbar */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}
#products-count { color: var(--muted); font-size: 14px; }
#products-orderby {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  outline: none;
  cursor: pointer;
  background: white;
}

/* ========================
   PRODUCT CARDS
   ======================== */
.khs-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.khs-products-grid--4 { grid-template-columns: repeat(4, 1fr); }
.khs-products-grid--2 { grid-template-columns: repeat(2, 1fr); }

.khs-product-card, .product {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(6,35,63,.07);
  transition: transform .25s, box-shadow .25s;
}
.khs-product-card:hover, .product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pcard__img-wrap, .pimg {
  height: 200px;
  display: block;
  position: relative;
  overflow: hidden;
}
.pcard__img-wrap img, .pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.khs-product-card:hover .pcard__img-wrap img { transform: scale(1.05); }
.pcard__no-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  background: linear-gradient(135deg, var(--soft), #e0f3ff);
}

/* Badges */
.badge, .khs-badge, [class*="badge--"] {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  z-index: 2;
}
.badge { background: var(--green); color: white; }
.badge.orange { background: var(--orange); }
.badge--fresh { background: var(--green); color: white; }
.badge--sale { background: var(--red); color: white; }
.badge--hot { background: var(--orange); color: white; }
.badge--wholesale { background: var(--navy); color: white; }
.badge--fast { background: var(--blue); color: white; }

/* Multiple badges */
.khs-product-card .pcard__img-wrap [class*="badge"] + [class*="badge"] { top: 46px; }
.khs-product-card .pcard__img-wrap [class*="badge"] + [class*="badge"] + [class*="badge"] { top: 78px; }

.pcard__body, .pbody { padding: 18px; }
.pcard__shop { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.pcard__shop-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: color .2s;
}
.pcard__shop-link:hover { color: var(--blue); }
.pcard__shop-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}
.pcard__shop-avatar--text {
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: white;
  font-size: 12px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pcard__name, .product h3 {
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--navy);
  font-weight: 700;
}
.pcard__name a, .product h3 a { color: inherit; }
.pcard__name a:hover, .product h3 a:hover { color: var(--blue); }
.pcard__meta { margin-bottom: 8px; }
.pcard__origin { font-size: 12px; color: var(--muted); }
.pcard__price-row, .price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.pcard__price strong, .price b {
  color: #e06f00;
  font-size: 20px;
  font-weight: 900;
}
.pcard__unit { font-size: 12px; color: var(--muted); }
.pcard__sold, .price span { font-size: 12px; color: var(--muted); }
.pcard__actions { display: flex; gap: 8px; }
.pcard__actions .btn { flex: 1; }

/* Wishlist button */
.khs-wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background .2s;
}
.khs-wishlist-btn:hover, .khs-wishlist-btn.active { background: #fff0f0; border-color: var(--red); }

/* ========================
   SELLER CTA ZONE
   ======================== */
.seller-zone {
  background: linear-gradient(135deg,#06233f,#0b5d91 58%,#19c6d1);
  border-radius: 38px;
  padding: 52px;
  color: white;
  position: relative;
  overflow: hidden;
}
.seller-zone::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -130px;
  top: -130px;
  background: rgba(255,255,255,.12);
  pointer-events: none;
}
.seller-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  align-items: center;
}
.seller-zone h2 { font-size: 38px; line-height: 1.15; margin: 0 0 14px; }
.seller-zone p { color: #d6f5ff; line-height: 1.75; margin-bottom: 0; font-size: 15px; }
.seller-zone .actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.step {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(10px);
}
.step b { display: block; font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 13px; color: rgba(255,255,255,.8); }
.num {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: var(--gold);
  color: #3b2400;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 12px;
  font-size: 16px;
}

/* ========================
   SHOPS GRID
   ======================== */
.shops {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.shop {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(6,35,63,.07);
  transition: transform .25s, box-shadow .25s;
}
.shop:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.shop-cover {
  height: 86px;
  background: linear-gradient(135deg,#dff8ff,#c4f2f6,#fff0c7);
}
.shop-logo {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: white;
  border: 4px solid white;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin: -28px 0 0 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.shop-logo img { width: 100%; height: 100%; object-fit: cover; }
.shop-logo span {
  font-weight: 900;
  font-size: 24px;
  color: var(--navy);
}
.shop-body { padding: 10px 18px 20px; }
.shop-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  display: inline-block;
  margin-bottom: 6px;
}
.shop h3 { margin: 6px 0 6px; color: var(--navy); font-size: 16px; }
.shop h3 a:hover { color: var(--blue); }
.shop p { color: var(--muted); font-size: 13px; line-height: 1.55; margin: 4px 0 0; }
.rating { color: #f59f00; font-size: 13px; font-weight: 900; }
.khs-stars .star--full { color: #f59f00; }
.khs-stars .star--half { color: #f59f00; opacity: .6; }
.khs-stars .star--empty { color: #d4d4d4; }

/* ========================
   TRUST CARDS
   ======================== */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(6,35,63,.06);
}
.trust-card .ico { font-size: 36px; margin-bottom: 14px; display: block; }
.trust-card b { color: var(--navy); font-size: 16px; display: block; margin-bottom: 8px; }
.trust-card p { color: var(--muted); line-height: 1.6; font-size: 14px; }

/* ========================
   HOW TO BUY
   ======================== */
.how-to-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.how-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  box-shadow: 0 14px 40px rgba(6,35,63,.06);
}
.how-step__num {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: white;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.how-step b { font-size: 17px; color: var(--navy); display: block; margin-bottom: 10px; }
.how-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.how-step__arrow {
  font-size: 32px;
  color: var(--line);
  padding: 0 12px;
  flex-shrink: 0;
}

/* ========================
   BLOG GRID
   ======================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-grid--main { grid-template-columns: repeat(2, 1fr); }
.blog-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(6,35,63,.07);
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card__img { display: block; overflow: hidden; }
.blog-card__img img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 20px; }
.blog-card__meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; font-size: 12px; color: var(--muted); }
.blog-card__cat a { color: var(--blue); font-weight: 700; }
.blog-card h3, .blog-card h2 { font-size: 17px; line-height: 1.4; color: var(--navy); margin-bottom: 10px; }
.blog-card h3 a:hover, .blog-card h2 a:hover { color: var(--blue); }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }

/* ========================
   WHOLESALE CTA
   ======================== */
.wholesale-cta {
  text-align: center;
  padding: 40px;
  background: white;
  border: 2px dashed var(--line);
  border-radius: 28px;
}
.wholesale-cta p { font-size: 17px; color: var(--muted); margin-bottom: 16px; }

/* ========================
   FOOTER — Premium
   ======================== */

.site-footer {
  position: relative;
  margin-top: 72px;
  font-family: var(--font);
}

/* ── Accent bar ── */
.footer-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--aqua) 0%, var(--blue) 45%, var(--orange) 100%);
}

/* ── Dark body ── */
.footer-body {
  background: linear-gradient(158deg, #041c33 0%, #061e38 55%, #040f1f 100%);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}

/* Giant watermark behind content */
.footer-watermark {
  position: absolute;
  bottom: -24px;
  right: -24px;
  font-size: 148px;
  font-weight: 900;
  letter-spacing: -4px;
  color: rgba(255,255,255,.022);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

/* ── Grid ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1fr;
  gap: 0 52px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

/* Vertical separator between nav cols */
.footer-nav-col {
  border-left: 1px solid rgba(255,255,255,.06);
  padding-left: 36px;
}

/* ── Brand column ── */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-logo-img { height: 40px; width: auto; }
.footer-brand-icon { font-size: 30px; line-height: 1; }
.footer-brand-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.4px;
  background: linear-gradient(125deg, #ffffff 20%, var(--aqua) 70%, #70e8ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-size: 13.5px;
  line-height: 1.85;
  color: #7da8be;
  margin-bottom: 28px;
  max-width: 290px;
}

/* Contact rows — single line */
.footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity .2s;
}
.footer-contact-card:hover { opacity: .75; }
.fcc-icon {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  opacity: .65;
}
.fcc-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
}
.fcc-label {
  font-size: 13px;
  color: #7aa4bc;
  font-weight: 500;
}
.fcc-label::after { content: ':'; }
.fcc-value {
  font-size: 13px;
  font-weight: 700;
  color: #daeaf6;
}

/* Social buttons */
.footer-social { display: flex; gap: 8px; }
.footer-social-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  color: #4d7a96;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background .22s, border-color .22s, color .22s, transform .22s;
}
.footer-social-btn:hover {
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

/* ── Nav column titles ── */
.footer-nav-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255,255,255,.9);
  margin: 0 0 22px;
}
.footer-nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dot-clr, var(--blue));
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--dot-clr, var(--blue));
}

/* Nav links — fallback & WP menu */
.footer-nav-col a,
.footer-nav-link {
  display: flex;
  align-items: center;
  gap: 0;
  color: #8ab4c8;
  font-size: 13.5px;
  line-height: 1;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  text-decoration: none;
  transition: color .2s, gap .2s, padding-left .2s;
}
.footer-nav-col li { list-style: none; }
.footer-nav-col li:last-child a,
.footer-nav-link:last-child {
  border-bottom: none;
}
.footer-nav-col a:hover,
.footer-nav-link:hover {
  color: rgba(255,255,255,.9);
  gap: 8px;
  padding-left: 4px;
}
/* Animated arrow — only in fallback mode */
.fla {
  font-size: 11px;
  color: var(--aqua);
  opacity: 0;
  transition: opacity .2s;
  flex-shrink: 0;
  margin-right: 0;
}
.footer-nav-link:hover .fla { opacity: 1; }

/* ── Stats bar ── */
.footer-stats-bar {
  background: #030e1c;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 28px 0;
}
.footer-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 4px 20px;
}
.fstat-num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(130deg, #ffffff 25%, var(--aqua) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fstat-num sup {
  font-size: 14px;
  font-weight: 900;
  vertical-align: super;
}
.fstat-label {
  font-size: 11.5px;
  color: #5f8fa6;
  font-weight: 500;
  letter-spacing: .3px;
  text-align: center;
}
.footer-stat-sep {
  width: 1px;
  height: 38px;
  flex-shrink: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.12) 50%, transparent 100%);
}

/* ── Bottom bar ── */
.footer-bottom {
  background: #020b16;
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copyright {
  font-size: 12px;
  color: #4e6f80;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-legal-links a {
  font-size: 12px;
  color: #5f8fa6;
  text-decoration: none;
  transition: color .2s;
}
.footer-legal-links a:hover { color: var(--aqua); }
.footer-top-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  color: #5f8fa6;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-top-btn:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: white;
}

/* Zalo Float — hidden */
.khs-zalo-float { display: none !important; }

/* ========================
   BREADCRUMB
   ======================== */
.khs-breadcrumb {
  margin: 18px 0 24px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 600;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  width: fit-content;
  max-width: 100%;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
}
.breadcrumb__item::after {
  content: "›";
  font-size: 15px;
  font-weight: 400;
  color: var(--line);
  margin-left: 4px;
}
.breadcrumb__item:last-child::after { display: none; }
.breadcrumb__item a {
  color: var(--blue);
  transition: color .2s;
}
.breadcrumb__item a:hover { color: var(--navy); }
.breadcrumb__item--active {
  color: var(--navy);
  font-weight: 700;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========================
   WOO PRODUCT SINGLE
   ======================== */
.khs-woo-main { padding: 30px 0 60px; }
.khs-fresh-notice {
  background: #fff8e6;
  border: 1px solid #ffc247;
  border-radius: 14px;
  padding: 14px;
  margin: 14px 0;
  font-size: 14px;
}
.khs-don-vi { color: var(--muted); font-size: 14px; margin-left: 4px; }
.khs-wholesale-block {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
}
.khs-wholesale-title { font-weight: 800; font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.khs-wholesale-price { font-size: 24px; font-weight: 900; color: #e06f00; margin-bottom: 8px; }
.khs-wholesale-block p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.khs-zalo-contact { margin-top: 10px; }
.khs-tab-content { padding: 16px 0; font-size: 15px; line-height: 1.7; }
.khs-cam-ket-list { list-style: none; padding: 0; }
.khs-cam-ket-list li { padding: 6px 0; font-size: 14px; }

/* ========================
   SHOP PAGE
   ======================== */
.khs-shop-header {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 14px 40px rgba(6,35,63,.07);
}
.khs-shop-banner {
  height: 220px;
  background: linear-gradient(135deg,#dff8ff,#c4f2f6,#fff0c7);
  background-size: cover;
  background-position: center;
}
.khs-shop-info { padding: 0 28px 28px; }
.khs-shop-logo {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  border: 5px solid white;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  margin-top: -50px;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 900;
}
.khs-shop-logo img { width: 100%; height: 100%; object-fit: cover; }
.khs-shop-meta { display: flex; flex-wrap: wrap; gap: 14px; margin: 16px 0; }
.khs-shop-meta-item { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.khs-shop-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ========================
   MỞ SHOP PAGE
   ======================== */
.khs-mo-shop-page { padding: 60px 0; }
.khs-form-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}
.khs-form-group { margin-bottom: 20px; }
.khs-form-group label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 14px;
}
.khs-form-group input,
.khs-form-group select,
.khs-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.khs-form-group input:focus,
.khs-form-group select:focus,
.khs-form-group textarea:focus { border-color: var(--blue); }
.khs-form-group textarea { resize: vertical; min-height: 100px; }
.khs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.khs-form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.khs-form-check input { margin-top: 3px; accent-color: var(--blue); }
.khs-form-check label { font-size: 14px; color: var(--muted); line-height: 1.6; }
.khs-honeypot { display: none !important; }
.khs-form-success {
  background: #f0fff4;
  border: 1px solid var(--green);
  border-radius: 14px;
  padding: 20px;
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
  margin-top: 20px;
}
.khs-form-error {
  background: #fff5f5;
  border: 1px solid var(--red);
  border-radius: 14px;
  padding: 14px;
  color: var(--red);
  font-size: 14px;
  margin-top: 12px;
}

/* ========================
   GÓI GIAN HÀNG
   ======================== */
.khs-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.khs-package {
  background: white;
  border: 2px solid var(--line);
  border-radius: 28px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.khs-package:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.khs-package--featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, #f0f9ff, white);
}
.khs-package--featured::before {
  content: "Phổ biến";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: white;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}
.khs-package h3 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.khs-package-price { font-size: 38px; font-weight: 900; color: var(--orange); margin: 16px 0; }
.khs-package-price span { font-size: 15px; color: var(--muted); font-weight: 600; }
.khs-package ul { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.khs-package ul li { padding: 8px 0; font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 10px; border-bottom: 1px dashed var(--line); }
.khs-package ul li:last-child { border-bottom: 0; }
.khs-package ul li::before { content: "✓"; color: var(--green); font-weight: 900; flex-shrink: 0; }

/* ========================
   LOADING & STATES
   ======================== */
.khs-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
}
.khs-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--line);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.khs-no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  grid-column: 1 / -1;
}
.khs-no-results h2 { font-size: 20px; color: var(--navy); margin-bottom: 12px; }

/* Toast notification */
.khs-toast {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 1000;
  background: var(--navy);
  color: white;
  padding: 14px 24px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .3s, opacity .3s;
}
.khs-toast.show { transform: translateY(0); opacity: 1; }
.khs-toast.success { background: var(--green); }
.khs-toast.error { background: var(--red); }

/* ========================
   PAGINATION
   ======================== */
.pagination,
.woocommerce-pagination {
  margin: 48px 0 0;
  display: flex;
  justify-content: center;
}

.pagination .nav-links,
.woocommerce-pagination ul {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  border: 1px solid #dce8f2;
  border-radius: 18px;
  padding: 8px 12px;
  box-shadow: 0 4px 20px rgba(6,35,63,.07);
}

.pagination .page-numbers,
.woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}

.pagination .page-numbers:hover,
.woocommerce-pagination .page-numbers:hover {
  background: #f0f6fc;
  border-color: #dce8f2;
  color: var(--blue);
}

.pagination .page-numbers.current,
.woocommerce-pagination .page-numbers.current {
  background: linear-gradient(135deg, #0c75b8, #0a62a0);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(12,117,184,.35);
}

.pagination .page-numbers.dots,
.woocommerce-pagination .page-numbers.dots {
  color: var(--muted);
  cursor: default;
  min-width: 24px;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next,
.woocommerce-pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers.next {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  padding: 0 14px;
  gap: 4px;
}

.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover,
.woocommerce-pagination .page-numbers.prev:hover,
.woocommerce-pagination .page-numbers.next:hover {
  background: #e8f3fc;
  border-color: #b8d8f0;
}

/* Separator dot between prev/next and numbers */
.pagination .nav-links > .page-numbers.prev,
.woocommerce-pagination ul > li:has(.prev) {
  margin-right: 4px;
}
.pagination .nav-links > .page-numbers.next,
.woocommerce-pagination ul > li:has(.next) {
  margin-left: 4px;
}

/* ========================
   ARCHIVE / CATEGORY
   ======================== */
.khs-archive-header {
  background: linear-gradient(135deg, var(--soft) 0%, #fff 60%, #f0f9ff 100%);
  border-radius: 32px;
  padding: 40px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(6,35,63,.05);
  position: relative;
  overflow: hidden;
}
.khs-archive-header::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12,117,184,.06) 0%, transparent 70%);
  pointer-events: none;
}
.khs-archive-header h1 {
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -.7px;
  line-height: 1.2;
}
.khs-cat-seo-desc { margin-top: 16px; font-size: 15px; line-height: 1.75; color: var(--muted); }
.khs-cat-seo-desc p { margin-bottom: 10px; }

/* FAQ */
.khs-faq { margin-top: 48px; }
.khs-faq h2 { font-size: 26px; color: var(--navy); margin-bottom: 20px; }
.khs-faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
}
.khs-faq-question {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.khs-faq-question::after { content: "+"; font-size: 22px; color: var(--blue); flex-shrink: 0; }
.khs-faq-item.open .khs-faq-question::after { content: "−"; }
.khs-faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}
.khs-faq-item.open .khs-faq-answer { max-height: 400px; padding: 0 22px 18px; }

/* ========================
   VENDOR PRODUCTS SECTION
   ======================== */
.khs-vendor-products { margin-top: 48px; }
.khs-vendor-products h3 { font-size: 22px; color: var(--navy); margin-bottom: 20px; }
.khs-vendor-products h3 a { color: var(--blue); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1100px) {
  .khs-products-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .shops { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .menu { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-grid, .seller-grid, .market-layout, .app-cta { grid-template-columns: 1fr; }
  .hero-grid { overflow: hidden; }
  .visual { order: -1; min-height: 340px; }
  .filter { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-nav-col { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px; }
  .footer-watermark { font-size: 100px; }
  .how-to-steps { flex-direction: column; }
  .how-step__arrow { transform: rotate(90deg); }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .khs-products-grid, .khs-products-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .shops, .trust { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 42px; }
  .hero-search { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .khs-packages-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .topbar { display: none; }
  .nav { height: 70px; }
  .actions .btn-ghost { display: none; }
  .nav { height: 62px; }
  .logo { height: 44px; }
  .logo img { height: 44px; }
  .hero { padding: 42px 0; }
  h1 { font-size: 32px; letter-spacing: -1px; }
  .lead { font-size: 15px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat b { font-size: 18px; }
  .categories { grid-template-columns: repeat(2, 1fr); }
  .khs-products-grid, .khs-products-grid--4, .khs-products-grid--2 { grid-template-columns: 1fr; }
  .shops, .trust { grid-template-columns: 1fr; }
  .visual { min-height: 360px; }
  .hero-card.main { width: 100%; height: 270px; }
  .hero-card.small { width: 84%; bottom: 20px; }
  .floating { display: none; }
  .section-head h2, .seller-zone h2 { font-size: 26px; }
  .seller-zone { padding: 28px; border-radius: 28px; }
  .steps { grid-template-columns: 1fr; }
  .btn { justify-content: center; }
  .khs-form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-nav-col { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; }
  .footer-watermark { font-size: 72px; }
  .footer-stats-row { flex-wrap: wrap; justify-content: flex-start; gap: 0; }
  .footer-stat { flex: 0 0 50%; align-items: flex-start; padding: 12px 16px; }
  .footer-stat-sep { display: none; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-legal-links { justify-content: center; }
  .blog-grid, .blog-grid--main { grid-template-columns: 1fr; }
  .khs-main .kh-section { padding: 36px 0; }
}

@media (max-width: 400px) {
  .stats { grid-template-columns: 1fr; }
  h1 { font-size: 28px; }
}

/* ─── Vendor payment & shipping — product page ─────────────── */
.khs-product-shop-info {
  margin: 12px 0;
  padding: 12px 14px;
  background: var(--soft);
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.khs-pm-summary__label {
  font-weight: 700;
  margin-right: 4px;
}

/* ─── Checkout: vendor payment info ────────────────────────── */
.khs-checkout-payment-info {
  margin: 16px 0;
  padding: 14px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.khs-checkout-payment-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.khs-checkout-payment-info p {
  font-size: 13px;
  margin: 4px 0;
  color: #444;
}

/* ─── Thank-you page payment section ───────────────────────── */
.khs-thankyou-payment {
  margin: 28px 0;
}
.khs-thankyou-payment h2 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 16px;
}
.khs-vendor-payment-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.khs-vpb__shop {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.khs-vpb__method {
  padding: 8px 0;
  font-size: 14px;
  color: #333;
  border-bottom: 1px dashed var(--line);
  line-height: 1.6;
}
.khs-vpb__method:last-child { border-bottom: none; }
.khs-payment-qr {
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
}

/* ── Single post layout ─────────────────────────────────── */
.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
.single-post-sidebar {
  padding-top: 70px;
}
@media (max-width: 900px) {
  .single-post-layout {
    grid-template-columns: 1fr;
  }
  .single-post-sidebar {
    padding-top: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CERTIFICATION BADGES (ATTP / VietGAP / HACCP / Organic)
   ═══════════════════════════════════════════════════════════════ */

.khs-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  white-space: nowrap;
  border: 1.5px solid currentColor;
  vertical-align: middle;
}

/* Sizes */
.khs-cert-badge--md { font-size: 12px; padding: 4px 12px; }

/* Color themes per cert type */
.khs-cert-badge--attp      { color: #16a34a; background: #f0fdf4; border-color: #bbf7d0; }
.khs-cert-badge--vietgap   { color: #15803d; background: #dcfce7; border-color: #86efac; }
.khs-cert-badge--haccp     { color: #0369a1; background: #e0f2fe; border-color: #7dd3fc; }
.khs-cert-badge--organic   { color: #166534; background: #f0fdf4; border-color: #86efac; }
.khs-cert-badge--globalgap { color: #1d4ed8; background: #eff6ff; border-color: #bfdbfe; }

/* Container on product detail page */
.sp-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 14px;
}

/* Stat card extra icon colour */
.stat-card__icon { display:flex; align-items:center; justify-content:center; width:48px; height:48px; border-radius:14px; flex-shrink:0; }

/* ========================
   PAGE: DANH SÁCH SHOP
   ======================== */
.khs-shop-list-page { min-height: 70vh; background: #f7fbfd; }

.khs-shop-list-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0c75b8 60%, #19c6d1 100%);
  padding: 52px 0 44px;
  text-align: center;
  color: #fff;
}
.khs-shop-list-hero h1 {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
}
.khs-shop-list-hero p {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  margin: 0 auto 16px;
  max-width: 540px;
  line-height: 1.6;
}
.khs-shl-count {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
}

.khs-shl-wrap {
  padding: 40px 0 60px;
}
.khs-shl-grid {
  grid-template-columns: repeat(4, 1fr);
}

.khs-shl-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.khs-shl-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--deep);
  text-decoration: none;
  transition: all .2s;
}
.khs-shl-pagination .page-numbers:hover,
.khs-shl-pagination .page-numbers.current {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.khs-shl-empty {
  text-align: center;
  padding: 80px 20px;
}
.khs-shl-empty span { font-size: 60px; display: block; margin-bottom: 16px; }
.khs-shl-empty p { color: var(--muted); font-size: 16px; margin-bottom: 24px; }

@media (max-width: 900px) {
  .khs-shl-grid { grid-template-columns: repeat(2, 1fr); }
  .khs-shop-list-hero h1 { font-size: 28px; }
}
@media (max-width: 560px) {
  .khs-shl-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */

/* ── Overlay backdrop (for settings modal) ── */
.khs-cookie-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4,24,45,.55);
  z-index: 9998;
  backdrop-filter: blur(3px);
}
.khs-cookie-overlay.active { display: block; }

/* ── Main banner ── */
#khs-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 3px solid var(--blue);
  box-shadow: 0 -8px 40px rgba(6,35,63,.18);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22,.68,0,1.2);
}
#khs-cookie-banner.khs-cookie--visible {
  transform: translateY(0);
}
#khs-cookie-banner.khs-cookie--hiding {
  transform: translateY(110%);
  transition: transform .35s ease-in;
}

.khs-cookie-inner {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.khs-cookie-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.khs-cookie-text {
  flex: 1;
  min-width: 240px;
}
.khs-cookie-text strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}
.khs-cookie-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.khs-cookie-text a {
  color: var(--blue);
  text-decoration: underline;
}

.khs-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

.khs-cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.khs-cookie-btn--accept {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.khs-cookie-btn--accept:hover {
  background: #0a5e96;
  border-color: #0a5e96;
}
.khs-cookie-btn--essential {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.khs-cookie-btn--essential:hover {
  border-color: var(--navy);
  background: var(--soft);
}
.khs-cookie-btn--settings {
  background: transparent;
  color: var(--muted);
  border: none;
  padding: 10px 12px;
  font-size: 13px;
  text-decoration: underline;
}
.khs-cookie-btn--settings:hover { color: var(--navy); }

/* ── Cookie Settings Modal ── */
.khs-cookie-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.92);
  z-index: 9999;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(4,24,45,.28);
  width: min(560px, calc(100vw - 32px));
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  opacity: 0;
  transition: opacity .25s, transform .25s;
}
.khs-cookie-modal.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.khs-cm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.khs-cm-header h3 {
  font-size: 18px;
  color: var(--navy);
}
.khs-cm-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
}
.khs-cm-close:hover { background: var(--soft); color: var(--navy); }

.khs-cm-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.khs-cm-category:last-of-type { border-bottom: none; }

.khs-cm-cat-info { flex: 1; }
.khs-cm-cat-info strong {
  font-size: 14px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.khs-cm-cat-info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* Toggle switch */
.khs-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.khs-toggle input { opacity: 0; width: 0; height: 0; }
.khs-toggle-slider {
  position: absolute;
  inset: 0;
  background: #cdd8e3;
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s;
}
.khs-toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: transform .2s;
}
.khs-toggle input:checked + .khs-toggle-slider { background: var(--blue); }
.khs-toggle input:checked + .khs-toggle-slider::before { transform: translateX(22px); }
.khs-toggle input:disabled + .khs-toggle-slider { opacity: .55; cursor: not-allowed; }

.khs-cm-footer {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.khs-cm-footer .khs-cookie-btn { flex: 1; justify-content: center; text-align: center; }

/* ── Cookie accepted indicator (small badge, bottom-right) ── */
.khs-cookie-pill {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9000;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(6,35,63,.10);
  transition: all .2s;
}
.khs-cookie-pill:hover { border-color: var(--blue); color: var(--blue); }
.khs-cookie-pill.visible { display: flex; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .khs-cookie-inner { gap: 16px; }
  .khs-cookie-icon { font-size: 28px; }
  .khs-cookie-actions { width: 100%; }
  .khs-cookie-btn { flex: 1; text-align: center; }
  .khs-cookie-btn--settings { width: 100%; }
}

/* =====================================================
   COOKIE POLICY PAGE — extra components
   (base layout uses static-pages.css .policy-*)
   ===================================================== */

.policy-intro-box {
  background: linear-gradient(135deg,#eff8ff,#e3f5f8);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--navy);
  margin: 20px 0 24px;
}

.cookie-table-wrap { overflow-x: auto; margin: 16px 0; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.cookie-table th {
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.cookie-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cookie-table tr:hover td { background: var(--soft); }
.cookie-table code {
  font-size: 12px;
  background: #eef4fa;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--navy);
}

.cookie-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
}
.cookie-badge--essential  { background: #e1f5fe; color: #0277bd; }
.cookie-badge--functional { background: #e8f5e9; color: #2e7d32; }
.cookie-badge--analytics  { background: #fff3e0; color: #e65100; }
.cookie-badge--marketing  { background: #fce4ec; color: #c62828; }

.policy-highlight-box {
  background: #fff8e1;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.55;
}

.cookie-reset-wrap {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-reset-wrap p { color: var(--muted); font-size: 14px; }

.browser-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.browser-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  transition: all .2s;
  background: #fff;
}
.browser-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(12,117,184,.12);
  transform: translateY(-2px);
}
.browser-icon { font-size: 28px; }
.browser-card strong { font-size: 13px; color: var(--navy); }
.browser-card span { font-size: 12px; color: var(--blue); }
}
