/* =========================
   基本變數
========================= */
:root{
  --bg:#eef5ff;
  --card:#fff;
  --text:#1f2937;
  --muted:#6b7280;
  --border:rgba(45,143,45,.22);
  --primary:#2D8F2D;
  --primary-dark:#235C23;
  --shadow:0 10px 28px rgba(0,0,0,.08);
  --radius:18px;
  --radius-sm:12px;

  /* 字級層級（全站統一） */
  --fs-xxs:12px;
  --fs-xs:13px;
  --fs-sm:14px;
  --fs-md:16px;
  --fs-lg:18px;
  --fs-xl:20px;
}

/* ✅上方那組分頁不需要：整段隱藏 */
.toolbar .pager--unified{
  display:none !important;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:"Noto Sans TC",system-ui,-apple-system;
  background:var(--bg);
  color:var(--text);

  font-size: var(--fs-md);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;

  font-weight: 400; /* ✅回到正常字重，整體立刻變精緻 */
}

/* =========================
   Header（右上角排版修正）- 舊版保留，不動（避免其他頁面用到）
========================= */
.site-header{
  background:linear-gradient(135deg,#2D8F2D 0%, #3AA13A 100%);
  color:#fff;
  padding:22px 26px;
}

.site-header-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.site-header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

/* ✅ 右上角：登出 + 倒數垂直、整齊靠右 */
.header-auth{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}

.idle-timer{
  font-size:12px;
  font-weight:800;
  color:rgba(255,255,255,.92);
  background:rgba(0,0,0,.12);
  border:1px solid rgba(255,255,255,.25);
  padding:6px 10px;
  border-radius:999px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

/* ✅ 登出按鈕 ghost */
.pill-ghost{
  background: rgba(255,255,255,.18);
  color:#fff;
  border: 1px solid rgba(255,255,255,.35);
}
.pill-ghost:hover{
  background: rgba(255,255,255,.26);
}

/* ✅ 小螢幕：右上角不要擠爆，改成自動換行 */
@media (max-width: 640px){
  .site-header-inner{ align-items:flex-start; }
  .site-header-actions{ flex-wrap:wrap; justify-content:flex-end; }
  .header-auth{ width:100%; align-items:flex-end; }
}

/* =========================
   Header（對應 index.html 的 app-header）
========================= */
/* ✅ Header：更有質感（高光 + 漸層 + 陰影） */
.app-header{
  position: relative;
  color:#fff;
  padding:22px 26px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;

  background:
    radial-gradient(1200px 240px at 20% 0%, rgba(255,255,255,.18), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, #2D8F2D 0%, #3AA13A 100%);

  box-shadow: 0 16px 34px rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.header-left .app-title{
  margin:0;
  font-size:42px;
  font-weight:800;
  letter-spacing:1px;
}

.header-left .app-subtitle{
  margin-top:18px;
  font-size:18px;
  opacity:.95;
  font-weight:700;
}

.header-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
  margin-top:4px;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.pill{
  font-size:12px;
  font-weight:800;
  color:rgba(255,255,255,.96);
  background:rgba(31,81,31,.22);
  border:1px solid rgba(255,255,255,.22);
  padding:6px 10px;
  border-radius:999px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

/* =========================
   ✅ Header 手機版：最終最佳化（不跑版、最像 App）
========================= */
@media (max-width: 640px){

  .app-header{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 16px 14px;

    background:
      radial-gradient(900px 220px at 15% 0%, rgba(255,255,255,.16), rgba(255,255,255,0) 60%),
      linear-gradient(135deg, #2D8F2D 0%, #3AA13A 100%);

    box-shadow: 0 14px 28px rgba(0,0,0,.12);
  }

  .header-left,
  .header-right{
    width: 100%;
  }

  .header-left .app-title{
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: .4px;
    margin: 0;
    text-wrap: balance;
  }

  .header-left .app-subtitle{
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    opacity: .95;
  }

  .header-right{
    margin-top: 2px;
    align-items: flex-end;
    gap: 10px;
  }

  /* 兩顆按鈕同列、不擠爆 */
  .header-actions{
    width: 100%;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .header-actions .btn{
    padding: 10px 14px;
    font-size: 15px;
    line-height: 1;
    min-height: 40px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .pill{
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* 超小手機微調 */
@media (max-width: 380px){
  .header-left .app-title{ font-size: 30px; }
  .header-actions .btn{
    padding: 9px 12px;
    font-size: 14px;
    min-height: 38px;
  }
}

/* =========================
   Layout
========================= */
.container{
  max-width:1200px;
  margin:22px auto 90px;
  padding:0 18px;
}

/* =========================
   搜尋 / 控制列
========================= */
.panel{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

/* ✅搜尋提示文字位置 */
.panel-row-bottom{
  display:flex;
  flex-direction:column;
}
.hint{
  order:-1;
  margin-top:10px;
  margin-bottom:12px;
  font-weight:600;
}
.hint-main{
  font-size: var(--fs-sm);
  color:#374151;
  font-weight:700;
}
.hint-price{
  margin-top:6px;
  font-size: var(--fs-sm);
  color:#d97706;
  font-weight:700;
  line-height:1.55;
}

.search-box{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

#searchInput{
  flex:1;
  min-width:260px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  font-size: var(--fs-md);
}

/* =========================
   Buttons
========================= */
.btn{
  border-radius:999px;
  padding:10px 18px;
  font-weight:800;
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
}

/* 清除按鈕 */
.btn-secondary{
  background:#fff;
  border:2px solid rgba(45,143,45,.35);
  color:#235C23;
}
.btn-secondary:hover{
  background:#f7fcf7;
  border-color:#2D8F2D;
}
.btn-secondary:disabled{
  opacity:.45;
  cursor:not-allowed;
}

/* ✅ Header 右上按鈕：全部統一品牌色（不使用綠色） */
.btn--primary,
.btn--ghost{
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  background: linear-gradient(135deg, #235C23 0%, #2D8F2D 100%);
  box-shadow: 0 10px 22px rgba(31,81,31,.22);
}

.btn--primary:hover,
.btn--ghost:hover{
  box-shadow: 0 14px 28px rgba(31,81,31,.26);
  filter: brightness(1.03);
}

.btn--primary:active,
.btn--ghost:active{
  transform: translateY(1px);
  box-shadow: 0 7px 16px rgba(31,81,31,.18);
}

.btn:active{
  transform:translateY(1px);
}

/* ✅ select 比例 */
.select{
  min-width:160px;
  max-width:200px;
  padding:8px 36px 8px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  font-size: var(--fs-sm);
  appearance:none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232D8F2D' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    no-repeat right 12px center;
}

/* =========================
   Toolbar / 分頁
========================= */
.toolbar{
  margin:16px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.pager{
  display:flex;
  gap:10px;
  align-items:center;
}
.page-indicator{
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  font-weight:600;
  color:#4b5563;
}

/* =========================
   商品 Grid
========================= */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
@media(max-width:980px){
  .grid{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:640px){
  .grid{ grid-template-columns:1fr; }
}

/* =========================
   商品卡片
========================= */
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  height:100%;
}

/* 圖片 */
.card-img{
  height:200px;
  background:rgba(45,143,45,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}
.card-img img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

/* 內容 */
.card-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

/* 商品名 + 次資訊 */
.card-head{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding-bottom:8px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.card-title{
  font-size: var(--fs-lg);
  font-weight: 800;
  line-height: 1.35;
  margin:0;
  color:#111827;
  letter-spacing: .2px;
}
.card-sub{
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:var(--muted);
}

/* =========================
   Price
========================= */
.price{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size: var(--fs-md);
}
.price-line{
  display:flex;
  justify-content:flex-start;
  align-items:baseline;
  gap:10px;
  padding:2px 0;
}
.price-label{
  font-size: var(--fs-sm);
  font-weight:800;
  color:#374151;
  white-space:nowrap;
}
.price-value{
  font-size: var(--fs-md);
  font-weight:900;
  font-variant-numeric: tabular-nums;
  white-space:nowrap;
  color:#111827;
}

/* =========================
   Description（精準鎖 2 行）
========================= */
.desc{
  background:rgba(45,143,45,.05);
  border:1px solid rgba(45,143,45,.15);
  border-radius:var(--radius-sm);
  padding:10px;
  font-size: var(--fs-sm);
  line-height:1.6;
  white-space:pre-line;
  overflow:hidden;
}
.desc.clamp{
  display:block;
  max-height:calc(1.6em * 2 + 8px);
  overflow:hidden;
}
.desc-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:6px;
}
.desc:empty + .desc-actions{
  display:none;
}
.link-btn{
  background:none;
  border:0;
  color:#235C23;
  font-weight:900;
  cursor:pointer;
}

/* =========================
   Footer
========================= */
.card-footer{
  margin-top:auto;
  padding:12px 14px;
  font-size:12px;
  color:#8a94a6;
  border-top:1px dashed rgba(0,0,0,.08);
  text-align:center;
  letter-spacing:.3px;
  font-weight:600;
}

/* =========================
   Filters（電商感排列）
========================= */
.filters{
  display:flex;
  gap:20px;
  align-items:flex-end;
  flex-wrap:wrap;
}
.panel .filters{
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px dashed rgba(0,0,0,.08);
}
.filter-item{
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:flex-start;
}
.filter-label{
  font-size:13px;
  font-weight:600;
  color:var(--muted);
  letter-spacing:.5px;
}
.filter-item .select{
  min-width:160px;
  max-width:200px;
}

/* =========================
   Meta Hierarchy（分類 > 單位/規格）
========================= */
.card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 8px;
  align-items:center;
}

/* ✅ 分類 Tag（主層級 + 高光） */
.tag{
  background: rgba(45,143,45,.14);
  border: 1px solid rgba(45,143,45,.28);
  color: #235C23;

  font-weight: 900;
  font-size: var(--fs-sm);
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: .4px;

  box-shadow: 0 6px 14px rgba(45,143,45,.12);

  position: relative;
  overflow: hidden;
  z-index: 0;
}

.tag::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:55%;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.55),
    rgba(255,255,255,0)
  );
  pointer-events:none;
}

.tag > *{
  position: relative;
  z-index: 1;
}

/* ✅ 次層級：單位/規格 pills */
.meta-item{
  display:inline-flex;
  align-items:center;
  gap:6px;

  background: rgba(17,24,39,.04);
  border: 1px solid rgba(17,24,39,.08);
  color: #111827;

  font-weight: 700;
  font-size: var(--fs-xs);
  padding: 6px 10px;
  border-radius: 999px;
}

.meta-label{
  color:#6b7280;
  font-weight:700;
}

.card-meta .tag{ order: -10; }
.card-meta .meta-item{ order: 0; }

/* 防呆：避免 tag 被包進 meta-item */
.card-meta .meta-item > .tag{
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: 0 !important;

  position: static !important;
  overflow: visible !important;
}
.card-meta .meta-item > .tag::before{
  display: none !important;
}

.meta-icon{ display:none; }

/* =========================
   手機：整體放大 & 更好點（保留原設定）
========================= */
@media (max-width: 640px){
  :root{
    --fs-xxs:13px;
    --fs-xs:14px;
    --fs-sm:15px;
    --fs-md:17px;
    --fs-lg:19px;
    --fs-xl:22px;
  }

  .site-title{ font-size: 26px; }
  .site-subtitle{ font-size: var(--fs-sm); }

  #searchInput{
    font-size: var(--fs-md);
    padding:14px 16px;
  }

  .btn, .pill-primary{
    padding:12px 18px;
    font-size: var(--fs-md);
  }

  .filters{
    display:grid;
    grid-template-columns: 1fr;
    gap:14px;
  }

  .select{
    width:100%;
    max-width:100%;
    min-width:0;
    font-size: var(--fs-md);
    padding:12px 42px 12px 16px;
  }

  .card-body{ padding:16px; }
  .card-img{ height:170px; }

  .page-indicator{ font-size: var(--fs-md); }
}

/* =========================
   Bottom Floating Pager（桌機+手機一致美觀）
========================= */
.mobile-pager{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;

  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;

  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 10px 12px;

  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;

  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  z-index: 9999;

  transition: transform .22s ease, opacity .22s ease;
  flex-wrap: nowrap;
}
.mobile-pager.is-hidden{
  transform: translateX(-50%) translateY(140%);
  opacity: 0;
  pointer-events: none;
}

.mobile-pager-btn{
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  cursor: pointer;

  background: linear-gradient(135deg, #235C23 0%, #2D8F2D 100%);
  color: #fff;

  box-shadow: 0 6px 14px rgba(31,81,31,.24);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  white-space: nowrap;
  min-width: 64px;
}
.mobile-pager-btn:active{
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(31,81,31,.20);
}
.mobile-pager-btn:disabled{
  opacity: .45;
  cursor: not-allowed;
}

.mobile-pager-indicator{
  font-weight: 600;
  font-size: var(--fs-md);
  color: #111827;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(45,143,45,.06);
  border: 1px solid rgba(45,143,45,.10);
  white-space: nowrap;
}

.mobile-pager-top{
  border: 0;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-weight: 900;
  cursor: pointer;

  background: linear-gradient(135deg, #235C23 0%, #2D8F2D 100%);
  color: #fff;

  box-shadow: 0 6px 14px rgba(31,81,31,.24);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.mobile-pager-top:active{
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(31,81,31,.20);
}

@media (max-width: 640px){
  .mobile-pager{
    bottom: calc(12px + env(safe-area-inset-bottom));
    bottom: calc(12px + constant(safe-area-inset-bottom));
  }

  body{
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
    padding-bottom: calc(60px + constant(safe-area-inset-bottom));
  }
}

@media (min-width: 641px){
  .mobile-pager.is-hidden{
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 380px){
  .mobile-pager-btn{
    min-width: 52px;
    padding: 9px 12px;
    letter-spacing: .5px;
  }
}

/* =========================
   ✅ Category Tone System — Rainbow Safe Palette
========================= */
.tag.tone-0{
  background: rgba(14,165,233,.16);
  border: 1px solid rgba(14,165,233,.32);
  color: #075985;
}
.tag.tone-1{
  background: rgba(16,185,129,.18);
  border: 1px solid rgba(16,185,129,.34);
  color: #065f46;
}
.tag.tone-2{
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.34);
  color: #92400e;
}
.tag.tone-3{
  background: rgba(139,92,246,.18);
  border: 1px solid rgba(139,92,246,.34);
  color: #5b21b6;
}
.tag.tone-4{
  background: rgba(236,72,153,.18);
  border: 1px solid rgba(236,72,153,.34);
  color: #9d174d;
}
.tag.tone-5{
  background: rgba(239,68,68,.18);
  border: 1px solid rgba(239,68,68,.34);
  color: #991b1b;
}
.tag.tone-6{
  background: rgba(250,204,21,.22);
  border: 1px solid rgba(250,204,21,.36);
  color: #854d0e;
}
.tag.tone-7{
  background: rgba(6,182,212,.18);
  border: 1px solid rgba(6,182,212,.34);
  color: #155e75;
}
.tag.tone-8{
  background: rgba(132,204,22,.20);
  border: 1px solid rgba(132,204,22,.36);
  color: #3f6212;
}
.tag.tone-9{
  background: rgba(34,197,94,.18);
  border: 1px solid rgba(34,197,94,.34);
  color: #166534;
}
.tag.tone-10{
  background: rgba(17,24,39,.10);
  border: 1px solid rgba(17,24,39,.18);
  color: #111827;
}
.tag.tone-11{
  background: rgba(100,116,139,.18);
  border: 1px solid rgba(100,116,139,.34);
  color: #334155;
}

/* =========================
   ✅ SelectX (custom select) — Final clean version
========================= */
.selectx{
  position: relative;
  min-width: 160px;
  max-width: 200px;
}

.selectx > select{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.selectx .selectx-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;

  font-size: var(--fs-sm);
  font-weight: 500;
  color: #1f3a5f;
  letter-spacing: 0.2px;

  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
}

.selectx .selectx-btn:hover{
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  border-color: rgba(45,143,45,.45);
  background: linear-gradient(to bottom, #ffffff, #f9fcff);
}

.selectx .selectx-btn:active{
  transform: translateY(1px);
}

.selectx.is-open .selectx-btn{
  border-color: rgba(45,143,45,.55);
  box-shadow:
    0 0 0 3px rgba(45,143,45,.12),
    0 10px 22px rgba(0,0,0,.08);
}

.selectx .selectx-text{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 10px;
}

.selectx .selectx-caret{
  font-size: 12px;
  color: var(--primary);
  flex: 0 0 auto;
  font-weight: 400;
  opacity: 0.7;
}

.selectx .selectx-menu{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);

  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;

  box-shadow: 0 16px 34px rgba(0,0,0,.14);
  padding: 6px;

  max-height: 280px;
  overflow: auto;
  z-index: 9999;

  opacity: 0;
  transform: translateY(-6px) scale(.98);
  pointer-events: none;
  visibility: hidden;

  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  transform-origin: top;

  -webkit-overflow-scrolling: touch;
}

.selectx.is-open .selectx-menu{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

.selectx .selectx-item{
  position: relative;
  padding: 11px 14px;
  line-height: 1.4;

  border-radius: 12px;
  font-size: var(--fs-sm);
  font-weight: 400;
  color: #243447;

  cursor: pointer;
  user-select: none;

  transition: background .12s ease, transform .08s ease;
}

.selectx .selectx-item:hover{
  background: rgba(45,143,45,.12);
}

.selectx .selectx-item.is-active{
  background: rgba(45,143,45,.06);
}

.selectx .selectx-item.is-active::before{
  content:"";
  position:absolute;
  left:6px;
  top:8px;
  bottom:8px;
  width: 2px;
  border-radius: 3px;
  background: rgba(45,143,45,.35);
}

.selectx .selectx-item.is-active:hover{
  background: rgba(45,143,45,.14);
}

.selectx .selectx-item:active{
  transform: translateY(1px);
}

.selectx .selectx-menu::-webkit-scrollbar{
  width: 10px;
}
.selectx .selectx-menu::-webkit-scrollbar-track{
  background: transparent;
}
.selectx .selectx-menu::-webkit-scrollbar-thumb{
  background: rgba(17,24,39,.14);
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.9);
}
.selectx .selectx-menu::-webkit-scrollbar-thumb:hover{
  background: rgba(17,24,39,.22);
}

.selectx .selectx-menu{
  scrollbar-width: thin;
  scrollbar-color: rgba(17,24,39,.22) transparent;
}

@media (max-width: 640px){
  .selectx{
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .selectx .selectx-btn{
    padding: 12px 16px;
    font-size: var(--fs-md);
  }
}

/* =========================
   Login Page Brand Green
========================= */
.login-btn,
button[type="submit"],
.login-card button,
.login-form button{
  background: #235C23 !important;
  border: 1px solid #235C23 !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(31,81,31,.20);
}

.login-btn:hover,
button[type="submit"]:hover,
.login-card button:hover,
.login-form button:hover{
  background: #1F511F !important;
  border-color: #1F511F !important;
}
