/* ==========================================================================
   ExtrAcre 品牌配色覆盖 — FINAL（针对 AuctionWorx 实测类名）
   追加到 CMS header 引用的 custom.css
   品牌色:soil #2C1A0E · wheat #C8A96E · wheat-dk #A8893E · cream #F7F2E8
   ========================================================================== */

/* ---- 1. 主按钮:蓝色 View 等 → 深棕填充 ---- */
.btn-primary, a.btn-primary, .btn-primary:link, .btn-primary:visited {
  background-color: #2C1A0E !important;
  border-color: #2C1A0E !important;
  color: #F7F2E8 !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #1A1208 !important;
  border-color: #1A1208 !important;
  color: #F7F2E8 !important;
}
.btn-default, .btn-secondary { border-color: #A8893E !important; color: #4A2E1A !important; }
.btn-default:hover, .btn-secondary:hover { background-color: #C8A96E !important; color: #2C1A0E !important; }

/* ---- 2. 商品标题 .galleryTitle（实测类名）→ 深棕清晰,悬停变金棕 ---- */
.galleryTitle,
.galleryTitle a,
.galleryTitle a:link,
.galleryTitle a:visited {
  color: #2C1A0E !important;
  font-weight: 600;
}
.galleryTitle a:hover,
.galleryTitle a:focus {
  color: #A8893E !important;
}

/* ---- 3. 分类/导航/面包屑等次要链接:金棕(次于标题) ---- */
.category-list a, .categoryList a,
.sidebar a, .breadcrumb a,
.refine a {
  color: #A8893E;
}
.category-list a:hover, .categoryList a:hover,
.sidebar a:hover, .breadcrumb a:hover {
  color: #2C1A0E;
}

/* ---- 4. 兜底:其余普通链接 金棕/悬停加深（不影响上面带!important的标题）---- */
a { color: #A8893E; }
a:hover { color: #2C1A0E; }

/* ---- 5. 分页:深棕当前页 ---- */
.pagination > .active > a, .pagination > .active > span,
.pagination > li > a:hover, .pagination > .active > a:hover {
  background-color: #2C1A0E !important;
  border-color: #2C1A0E !important;
  color: #F7F2E8 !important;
}
.pagination > li > a { color: #A8893E; }

/* ---- 6. 顶部工具条 Active/网格 选中态:深棕 ---- */
.btn-group .active, .view-toggle .active {
  background-color: #2C1A0E !important;
  color: #F7F2E8 !important;
}

/* ---- 7. 表单聚焦色 ---- */
input:focus, textarea:focus, select:focus {
  border-color: #A8893E !important;
  box-shadow: 0 0 0 2px rgba(200,169,110,.2) !important;
}
