/* ======================================================================
   모원렌탈 — 정수기 렌탈 플랫폼  /  Design System
   ====================================================================== */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
  /* Color system */
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --secondary: #3B82F6;
  --light-blue: #EFF6FF;
  --bg: #FFFFFF;
  --section-bg: #F8FAFC;
  --border: #E5E7EB;
  --text: #111827;
  --sub: #6B7280;
  --sub-light: #9CA3AF;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --kakao: #FEE500;
  --kakao-text: #3C1E1E;

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(17, 24, 39, .05);
  --sh-sm: 0 2px 8px rgba(17, 24, 39, .06);
  --sh-md: 0 6px 20px rgba(17, 24, 39, .08);
  --sh-lg: 0 16px 40px rgba(17, 24, 39, .12);
  --sh-blue: 0 10px 26px rgba(37, 99, 235, .28);

  /* Layout */
  --max: 1280px;
  --gutter: 20px;
  --header-h: 76px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 16px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 80px 0; }
.section--tint { background: var(--section-bg); }
.section--blue { background: var(--light-blue); }

.eyebrow {
  display: inline-block;
  font-size: 14px; font-weight: 700; color: var(--primary);
  background: var(--light-blue);
  padding: 6px 14px; border-radius: var(--r-pill);
  margin-bottom: 16px; letter-spacing: 0;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head.left { text-align: left; margin-left: 0; }
.section-title { font-size: 34px; font-weight: 800; line-height: 1.28; letter-spacing: -0.025em; }
.section-sub { margin-top: 14px; color: var(--sub); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 16px; line-height: 1;
  padding: 15px 26px; border-radius: var(--r-md);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s;
  white-space: nowrap; cursor: pointer;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--sh-blue); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,99,235,.34); }
.btn-outline { background: #fff; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--light-blue); transform: translateY(-2px); }
.btn-ghost { background: var(--section-bg); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: #fff; border-color: var(--sub-light); }
.btn-kakao { background: var(--kakao); color: var(--kakao-text); }
.btn-kakao:hover { filter: brightness(.97); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 18px; border-radius: var(--r-md); }
.btn-sm { padding: 11px 16px; font-size: 14px; border-radius: var(--r-sm); }
.btn-block { width: 100%; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); overflow: hidden;
}

/* ---------- Product image placeholder ---------- */
.product-thumb {
  position: relative; aspect-ratio: 1/1; background: var(--light-blue);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-thumb svg { width: 52%; height: 52%; }
.product-thumb .badge-rank {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff; font-size: 13px; font-weight: 700;
  padding: 5px 11px; border-radius: var(--r-pill); box-shadow: var(--sh-sm);
}
.thumb-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.92); color: var(--primary); font-size: 12px; font-weight: 700;
  padding: 5px 10px; border-radius: var(--r-pill); border: 1px solid var(--border);
}

/* ---------- Product card ---------- */
.product-card { display: flex; flex-direction: column; transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: #dbe3f0; }
.product-card .pc-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.pc-brand { font-size: 13px; color: var(--sub); font-weight: 600; }
.pc-name { font-size: 17px; font-weight: 700; margin-top: 4px; line-height: 1.4; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.chip { font-size: 12px; font-weight: 600; color: var(--sub); background: var(--section-bg); border: 1px solid var(--border); padding: 4px 10px; border-radius: var(--r-pill); }
.chip-success { color: var(--success); background: #ECFDF5; border-color: #A7F3D0; }
.pc-price { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--border); }
.pc-price .label { font-size: 13px; color: var(--sub); }
.pc-price .amount { font-size: 24px; font-weight: 800; color: var(--text); }
.pc-price .amount small { font-size: 15px; font-weight: 600; color: var(--sub); }
.pc-discount { margin-top: 6px; font-size: 13.5px; color: var(--primary); font-weight: 600; }
.pc-discount b { color: var(--success); }
.pc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }

/* ---------- Star rating ---------- */
.stars { display: inline-flex; gap: 2px; color: var(--warning); font-size: 15px; }
.stars .off { color: var(--border); }

/* ---------- Forms ---------- */
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 8px; }
.field label .req { color: var(--danger); margin-left: 3px; }
.input, .select, .textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r-md); background: #fff; color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }

/* ---------- Skeleton ---------- */
.skeleton { background: linear-gradient(100deg, #eef1f6 30%, #f6f8fb 50%, #eef1f6 70%); background-size: 200% 100%; animation: sk 1.3s infinite; border-radius: var(--r-md); }
@keyframes sk { to { background-position: -200% 0; } }

/* ---------- Scroll reveal ----------
   Hidden state applies ONLY after JS adds .js-reveal AND only while the
   element lacks .in. In-view elements get .in synchronously on load, so
   above-the-fold content shows immediately. If JS never runs, everything
   is visible (no sticky opacity:0). Adding .in stops the hide rule from
   matching — no specificity battle. */
[data-reveal] { transition: opacity .6s var(--ease), transform .6s var(--ease); }
html.js-reveal [data-reveal]:not(.in) { opacity: 0; transform: translateY(26px); }
html.js-reveal [data-reveal-delay="1"] { transition-delay: .08s; }
html.js-reveal [data-reveal-delay="2"] { transition-delay: .16s; }
html.js-reveal [data-reveal-delay="3"] { transition-delay: .24s; }
html.js-reveal [data-reveal-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  html.js-reveal [data-reveal]:not(.in) { opacity: 1; transform: none; }
  [data-reveal] { transition: none; }
}

/* ======================================================================
   HEADER
   ====================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 18px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 21px; letter-spacing: -0.03em; white-space: nowrap; flex-shrink: 0; }
.logo .logo-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--primary); display: grid; place-items: center; box-shadow: var(--sh-blue); }
.logo .logo-mark svg { width: 20px; height: 20px; }
.logo b { color: var(--primary); }
.nav { display: flex; align-items: center; gap: 2px; margin-left: 2px; }
.nav a { padding: 9px 12px; border-radius: var(--r-sm); font-size: 15px; font-weight: 600; color: #374151; white-space: nowrap; transition: background .15s, color .15s; }
.nav a:hover { background: var(--section-bg); color: var(--primary); }
.nav a.active { color: var(--primary); background: var(--light-blue); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.header-cta { flex-shrink: 0; }
.header-tel { display: flex; align-items: center; gap: 7px; font-weight: 700; color: var(--text); font-size: 15px; white-space: nowrap; }
.header-tel svg { width: 18px; height: 18px; flex-shrink: 0; }
.header-tel .num { color: var(--primary); font-size: 18px; letter-spacing: -0.01em; }
.hamburger { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: var(--r-sm); align-items: center; justify-content: center; }
.hamburger svg { width: 26px; height: 26px; }

/* Mobile slide menu */
.mobile-menu { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.mobile-menu.open { visibility: visible; }
.mm-overlay { position: absolute; inset: 0; background: rgba(17,24,39,.45); opacity: 0; transition: opacity .3s; }
.mobile-menu.open .mm-overlay { opacity: 1; }
.mm-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86%, 360px);
  background: #fff; transform: translateX(100%); transition: transform .32s var(--ease);
  display: flex; flex-direction: column; box-shadow: var(--sh-lg);
}
.mobile-menu.open .mm-panel { transform: none; }
.mm-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); }
.mm-close { width: 42px; height: 42px; border-radius: var(--r-sm); display: grid; place-items: center; }
.mm-close svg { width: 24px; height: 24px; }
.mm-nav { padding: 12px 14px; overflow-y: auto; flex: 1; }
.mm-nav a { display: flex; align-items: center; justify-content: space-between; padding: 15px 14px; border-radius: var(--r-md); font-size: 17px; font-weight: 600; color: var(--text); }
.mm-nav a:hover, .mm-nav a.active { background: var(--light-blue); color: var(--primary); }
.mm-nav a svg { width: 18px; height: 18px; opacity: .4; }
.mm-foot { padding: 16px 18px 22px; border-top: 1px solid var(--border); display: grid; gap: 10px; }

/* ======================================================================
   FOOTER
   ====================================================================== */
.site-footer { background: #0F172A; color: #cbd5e1; padding: 60px 0 40px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; }
.site-footer .logo { color: #fff; margin-bottom: 16px; }
.site-footer .logo b { color: #93b4fb; }
.footer-desc { font-size: 14px; color: #94a3b8; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: #94a3b8; padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-contact .tel-big { font-size: 26px; font-weight: 800; color: #fff; }
.footer-contact .hours { font-size: 13.5px; color: #94a3b8; margin-top: 6px; }
.footer-bottom { border-top: 1px solid #1e293b; margin-top: 40px; padding-top: 24px; font-size: 13px; color: #64748b; line-height: 1.8; }

/* ======================================================================
   MOBILE BOTTOM CTA BAR
   ====================================================================== */
.bottom-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(17,24,39,.08);
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); gap: 8px;
}
.bottom-cta a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-size: 12px; font-weight: 700; padding: 8px 4px; border-radius: var(--r-md); }
.bottom-cta a svg { width: 22px; height: 22px; }
.bottom-cta .bc-tel { color: var(--text); background: var(--section-bg); }
.bottom-cta .bc-kakao { color: var(--kakao-text); background: var(--kakao); }
.bottom-cta .bc-consult { color: #fff; background: var(--primary); flex: 1.4; }

/* ======================================================================
   PAGE HERO (sub pages)
   ====================================================================== */
.page-hero { background: var(--light-blue); padding: 52px 0; border-bottom: 1px solid var(--border); }
.page-hero .breadcrumb { font-size: 13.5px; color: var(--sub); margin-bottom: 12px; }
.page-hero .breadcrumb a:hover { color: var(--primary); }
.page-hero h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; }
.page-hero p { margin-top: 12px; color: var(--sub); font-size: 17px; }

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header-tel { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .section-title { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  body { font-size: 15.5px; }
  :root { --header-h: 64px; --gutter: 16px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 34px; }
  .section-title { font-size: 25px; }
  .section-sub { font-size: 15.5px; }
  .page-hero { padding: 36px 0; }
  .page-hero h1 { font-size: 27px; }
  .bottom-cta { display: flex; }
  body { padding-bottom: 76px; }
  .site-footer { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .btn-lg { padding: 16px 26px; font-size: 16px; }
}

/* ======================================================================
   SHARED SUB-PAGE COMPONENTS
   ====================================================================== */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.brand-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }

/* Filter / toolbar */
.toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 28px; }
.toolbar .search-box { position: relative; flex: 1; min-width: 220px; }
.toolbar .search-box svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--sub); }
.toolbar .search-box input { width: 100%; padding: 13px 16px 13px 42px; border: 1.5px solid var(--border); border-radius: var(--r-md); }
.toolbar .search-box input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.toolbar select { padding: 13px 36px 13px 16px; border: 1.5px solid var(--border); border-radius: var(--r-md); background: #fff;
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; cursor: pointer; }

.filter-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; }
.filter-chip { padding: 9px 16px; border-radius: var(--r-pill); border: 1.5px solid var(--border); background: #fff; font-size: 14.5px; font-weight: 600; color: var(--sub); transition: all .15s; cursor: pointer; }
.filter-chip:hover { border-color: var(--primary); color: var(--primary); }
.filter-chip.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: var(--sh-blue); }

.result-count { font-size: 15px; color: var(--sub); margin-bottom: 20px; }
.result-count b { color: var(--text); font-weight: 700; }
.empty-state { text-align: center; padding: 80px 20px; color: var(--sub); }
.empty-state svg { width: 48px; height: 48px; color: var(--sub-light); margin: 0 auto 16px; }

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .brand-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .brand-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .toolbar .search-box { min-width: 100%; flex: none; }
  .toolbar select { flex: 1; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card .pc-body { padding: 16px; }
  .pc-name { font-size: 16px; }
  .pc-tags { gap: 5px; }
  .chip { font-size: 11.5px; padding: 4px 8px; }
  .pc-price { margin-top: 14px; padding-top: 14px; }
  .pc-price .amount { font-size: 22px; }
  .pc-actions { grid-template-columns: 1fr; }
  .pc-actions .btn { width: 100%; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 23px; }
  .btn { padding-left: 18px; padding-right: 18px; }
  .btn-lg { padding-left: 20px; padding-right: 20px; }
}

/* ======================================================================
   TOP PROMO BAR
   ====================================================================== */
.promo-bar { background: linear-gradient(90deg, #1D4ED8 0%, #2563EB 55%, #3B82F6 100%); color: #fff; position: relative; }
.promo-inner { max-width: var(--max); margin: 0 auto; padding: 11px 52px; display: flex; align-items: center; justify-content: center; gap: 10px; color: #fff; flex-wrap: nowrap; overflow: hidden; }
.promo-pill { background: rgba(255,255,255,.22); font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: var(--r-pill); letter-spacing: .02em; flex-shrink: 0; white-space: nowrap; }
.promo-text { font-size: 14.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.promo-text b { font-weight: 800; color: #FDE047; }
.promo-go { display: inline-flex; align-items: center; gap: 2px; font-size: 13.5px; font-weight: 700; opacity: .92; flex-shrink: 0; white-space: nowrap; }
.promo-go svg { width: 15px; height: 15px; }
.promo-inner:hover .promo-go { opacity: 1; }
.promo-close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #fff; opacity: .8; }
.promo-close:hover { opacity: 1; background: rgba(255,255,255,.15); }
.promo-close svg { width: 18px; height: 18px; stroke: #fff; }
@media (max-width: 680px) {
  .promo-pill, .promo-go { display: none; }
  .promo-inner { padding: 10px 44px 10px 16px; justify-content: flex-start; }
  .promo-text { font-size: 13px; }
}

/* ======================================================================
   FLOATING CONSULT PANEL (desktop only)
   ====================================================================== */
.consult-fab { display: none; }
@media (min-width: 1600px) {
  .consult-fab {
    display: flex; flex-direction: column; gap: 9px;
    position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 80;
    width: 200px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
    box-shadow: var(--sh-lg); padding: 18px 16px;
  }
  .cf-title { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 4px; padding-left: 2px; }
  .cf-btn { display: flex; align-items: center; gap: 9px; width: 100%; padding: 12px 14px; border-radius: var(--r-md); font-weight: 700; font-size: 14px; transition: transform .15s var(--ease), box-shadow .15s, filter .15s, background .15s; }
  .cf-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .cf-btn:hover { transform: translateY(-1px); }
  .cf-kakao { background: var(--kakao); color: var(--kakao-text); }
  .cf-kakao:hover { filter: brightness(.97); }
  .cf-ghost { background: var(--section-bg); color: var(--text); border: 1px solid var(--border); }
  .cf-ghost:hover { background: #fff; border-color: var(--sub-light); }
  .cf-primary { background: var(--primary); color: #fff; box-shadow: var(--sh-blue); }
  .cf-primary:hover { background: var(--primary-dark); }
  .cf-phone { margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--border); text-align: center; }
  .cf-phone-lab { font-size: 12px; color: var(--sub); }
  .cf-phone-num { display: block; font-size: 23px; font-weight: 800; color: var(--primary); letter-spacing: -0.01em; margin-top: 2px; }
  .cf-phone-sub { font-size: 11.5px; color: var(--sub-light); margin-top: 2px; }
}

/* ======================================================================
   CATEGORY ICON ROW (AJD-style quick links)
   ====================================================================== */
.cat-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.cat-tile { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 18px 8px; border-radius: var(--r-lg); transition: background .15s, transform .18s var(--ease); text-align: center; }
.cat-tile:hover { background: var(--section-bg); transform: translateY(-3px); }
.cat-ic { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; box-shadow: var(--sh-xs); }
.cat-ic svg { width: 30px; height: 30px; }
.cat-label { font-size: 14px; font-weight: 600; color: var(--text); }
@media (max-width: 1024px) {
  .cat-row { grid-template-columns: repeat(4, 1fr); gap: 6px; }
}
@media (max-width: 768px) {
  .cat-row { grid-template-columns: repeat(4, 1fr); }
  .cat-tile { padding: 14px 4px; gap: 8px; }
  .cat-ic { width: 52px; height: 52px; border-radius: 15px; }
  .cat-ic svg { width: 26px; height: 26px; }
  .cat-label { font-size: 12.5px; }
}
