/*
Theme Name: BIG Theme
Theme URI: https://big.co.ke
Author: BIG
Author URI: https://big.co.ke
Description: A fast, professional classified marketplace theme for big.co.ke, inspired by clean listing-style sites. WooCommerce compatible, Elementor compatible.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: big-theme
Tags: e-commerce, classified, marketplace, woocommerce, elementor, listings, grid, custom-colors, custom-header, custom-footer, fast
*/

/* =============================================
   CSS CUSTOM PROPERTIES (EDITABLE VIA THEME)
   ============================================= */
:root {
  --big-primary: #00B53F;
  --big-primary-dark: #008f31;
  --big-primary-light: #e6f9ee;
  --big-secondary: #FEA03C;
  --big-secondary-dark: #d4821e;
  --big-tertiary: #EBF2F7;
  --big-dark: #1a1a1a;
  --big-dark-2: #333333;
  --big-gray: #666666;
  --big-gray-light: #999999;
  --big-border: #e0e0e0;
  --big-white: #ffffff;
  --big-card-shadow: 0 2px 8px rgba(0,0,0,0.08);
  --big-card-hover-shadow: 0 4px 16px rgba(0,0,0,0.14);
  --big-radius: 6px;
  --big-font: 'Inter', 'Segoe UI', Arial, sans-serif;
  --big-header-height: 60px;
  --big-topbar-height: 36px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 15px; }

body {
  font-family: var(--big-font);
  color: var(--big-dark-2);
  background: var(--big-tertiary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--big-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--big-primary-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: var(--big-font); }

input, select, textarea {
  font-family: var(--big-font);
  border: 1px solid var(--big-border);
  border-radius: var(--big-radius);
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--big-primary); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.screen-reader-text {
  position: absolute;
  left: -9999em;
  top: -9999em;
}

/* =============================================
   TOP BAR
   ============================================= */
#big-topbar {
  background: var(--big-dark);
  color: #ccc;
  height: var(--big-topbar-height);
  display: flex;
  align-items: center;
  font-size: 12px;
}

#big-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topbar-left span { margin-right: 16px; }
.topbar-left a { color: #ccc; }
.topbar-left a:hover { color: var(--big-secondary); }

.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-right a { color: #ccc; font-size: 12px; }
.topbar-right a:hover { color: var(--big-white); }

/* =============================================
   HEADER
   ============================================= */
#masthead {
  background: var(--big-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--big-border);
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--big-header-height);
  gap: 16px;
}

/* Logo */
.site-branding {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo-text {
  font-size: 26px;
  font-weight: 900;
  color: var(--big-primary);
  letter-spacing: -1px;
  line-height: 1;
  padding: 4px 10px;
  border-radius: var(--big-radius);
  border: 3px solid var(--big-primary);
  background: var(--big-white);
  transition: all 0.2s;
  display: flex;
  align-items: center;
}

.site-logo-text:hover {
  background: var(--big-primary);
  color: var(--big-white);
}

.site-logo-text span.dot {
  color: var(--big-secondary);
  font-weight: 900;
}

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 580px;
}

.header-search-form {
  display: flex;
  align-items: center;
  border: 2px solid var(--big-primary);
  border-radius: 30px;
  overflow: hidden;
  background: var(--big-white);
}

.header-search-form input[type="search"] {
  flex: 1;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  outline: none;
  border-radius: 0;
  min-width: 0;
}

.header-search-form .search-category-select {
  border: none;
  border-left: 1px solid var(--big-border);
  border-radius: 0;
  padding: 8px 8px;
  font-size: 13px;
  background: var(--big-tertiary);
  color: var(--big-dark-2);
  min-width: 110px;
}

.header-search-form button[type="submit"] {
  background: var(--big-primary);
  color: var(--big-white);
  padding: 0 20px;
  height: 40px;
  font-size: 15px;
  border-radius: 0 30px 30px 0;
  transition: background 0.2s;
}

.header-search-form button[type="submit"]:hover { background: var(--big-primary-dark); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-sell {
  background: var(--big-secondary);
  color: var(--big-white) !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-sell:hover { background: var(--big-secondary-dark); color: var(--big-white) !important; }
.btn-sell svg { width: 16px; height: 16px; }

.btn-account {
  color: var(--big-dark-2);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  border-radius: 30px;
  border: 1px solid var(--big-border);
  transition: all 0.2s;
}
.btn-account:hover { border-color: var(--big-primary); color: var(--big-primary); }

/* WooCommerce cart icon */
.header-cart-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--big-dark-2);
  font-size: 22px;
  padding: 6px;
}
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--big-secondary);
  color: var(--big-white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--big-dark-2);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   CATEGORY NAV BAR
   ============================================= */
#category-nav {
  background: var(--big-white);
  border-bottom: 2px solid var(--big-primary);
  position: sticky;
  top: var(--big-header-height);
  z-index: 990;
}

.cat-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }

.cat-nav-inner a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  color: var(--big-dark-2);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  margin-bottom: -2px;
}
.cat-nav-inner a:hover,
.cat-nav-inner a.active {
  color: var(--big-primary);
  border-bottom-color: var(--big-primary);
  background: var(--big-primary-light);
}

/* =============================================
   HERO BANNER / SLIDER AREA
   ============================================= */
.hero-section {
  background: var(--big-white);
  padding: 16px 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  gap: 12px;
  align-items: start;
}

/* Sidebar categories left */
.hero-categories {
  background: var(--big-white);
  border: 1px solid var(--big-border);
  border-radius: var(--big-radius);
  overflow: hidden;
}

.hero-categories a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--big-dark-2);
  border-bottom: 1px solid var(--big-border);
  transition: all 0.15s;
}
.hero-categories a:last-child { border-bottom: none; }
.hero-categories a:hover { background: var(--big-primary-light); color: var(--big-primary); }
.hero-categories a .cat-icon { width: 18px; text-align: center; opacity: 0.7; }

/* Hero slider */
.hero-slider {
  border-radius: var(--big-radius);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  background: var(--big-tertiary);
}

.hero-slide {
  display: none;
  position: absolute;
  inset: 0;
}
.hero-slide.active { display: block; }
.hero-slide img { width: 100%; height: 280px; object-fit: cover; }

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--big-white);
}
.slide-content h2 { font-size: 22px; font-weight: 800; }
.slide-content p { font-size: 14px; opacity: 0.9; }

.slider-dots {
  position: absolute;
  bottom: 10px;
  right: 14px;
  display: flex;
  gap: 6px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active { background: var(--big-white); }

/* Hero right promo */
.hero-promo { display: flex; flex-direction: column; gap: 10px; }
.hero-promo-card {
  border-radius: var(--big-radius);
  overflow: hidden;
  position: relative;
  height: 132px;
  background: var(--big-secondary);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: var(--big-white);
}
.hero-promo-card h3 { font-size: 16px; font-weight: 800; }
.hero-promo-card p { font-size: 12px; opacity: 0.9; }
.hero-promo-card.green { background: linear-gradient(135deg, var(--big-primary), var(--big-primary-dark)); }

/* =============================================
   MAIN CONTENT AREA
   ============================================= */
#main-content {
  padding: 20px 0 30px;
}

.content-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 20px;
  align-items: start;
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar-widget {
  background: var(--big-white);
  border: 1px solid var(--big-border);
  border-radius: var(--big-radius);
  padding: 16px;
  margin-bottom: 16px;
}

.sidebar-widget-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--big-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--big-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 13px;
  color: var(--big-dark-2);
  cursor: pointer;
}
.filter-option input[type="checkbox"],
.filter-option input[type="radio"] { accent-color: var(--big-primary); }

.filter-option-count {
  margin-left: auto;
  color: var(--big-gray-light);
  font-size: 11px;
}

.price-range-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
.price-range-inputs input {
  flex: 1;
  padding: 6px 10px;
  font-size: 12px;
  border: 1px solid var(--big-border);
}

.btn-apply-filter {
  width: 100%;
  padding: 9px;
  background: var(--big-primary);
  color: var(--big-white);
  border-radius: var(--big-radius);
  font-weight: 600;
  font-size: 13px;
  margin-top: 10px;
  transition: background 0.2s;
}
.btn-apply-filter:hover { background: var(--big-primary-dark); }

/* =============================================
   LISTINGS AREA
   ============================================= */
.listings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.listings-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--big-dark);
}
.listings-count { color: var(--big-gray); font-size: 13px; font-weight: 400; }

.sort-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-controls select {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: var(--big-radius);
}

.view-toggle { display: flex; gap: 4px; }
.view-btn {
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--big-gray);
  border: 1px solid var(--big-border);
  background: var(--big-white);
  transition: all 0.2s;
}
.view-btn.active { background: var(--big-primary); color: var(--big-white); border-color: var(--big-primary); }

/* LISTINGS GRID */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.listings-grid.list-view {
  grid-template-columns: 1fr;
}

/* LISTING CARD */
.listing-card {
  background: var(--big-white);
  border-radius: var(--big-radius);
  border: 1px solid var(--big-border);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.listing-card:hover {
  box-shadow: var(--big-card-hover-shadow);
  transform: translateY(-2px);
}

.listing-card-image {
  position: relative;
  width: 100%;
  padding-top: 72%; /* forced aspect ratio */
  overflow: hidden;
  background: var(--big-tertiary);
  flex-shrink: 0;
}

.listing-card-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.listing-card:hover .listing-card-image img { transform: scale(1.04); }

.listing-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--big-secondary);
  color: var(--big-white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}
.listing-card-badge.top { background: var(--big-primary); }
.listing-card-badge.new { background: #3b82f6; }

.listing-card-wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  color: var(--big-gray-light);
}
.listing-card-wishlist:hover { color: #e44; background: var(--big-white); }
.listing-card-wishlist.active { color: #e44; }

.listing-card-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.listing-card-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--big-primary);
  margin-bottom: 4px;
}
.listing-card-price .negotiable {
  font-size: 11px;
  font-weight: 400;
  color: var(--big-gray-light);
  margin-left: 4px;
}

.listing-card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--big-dark-2);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-size: 11px;
  color: var(--big-gray-light);
}

.listing-card-location { display: flex; align-items: center; gap: 3px; }

/* LIST VIEW CARD */
.listings-grid.list-view .listing-card {
  flex-direction: row;
}
.listings-grid.list-view .listing-card-image {
  width: 180px;
  min-width: 180px;
  padding-top: 0;
  height: 140px;
}
.listings-grid.list-view .listing-card-body {
  padding: 14px;
}

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  margin-top: 24px;
}
.section-heading h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--big-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-heading h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 18px;
  background: var(--big-primary);
  border-radius: 2px;
}
.section-heading a {
  font-size: 13px;
  color: var(--big-primary);
  font-weight: 600;
}

/* =============================================
   CATEGORY CARDS STRIP
   ============================================= */
.category-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.category-card {
  background: var(--big-white);
  border: 1px solid var(--big-border);
  border-radius: var(--big-radius);
  padding: 16px 10px 12px;
  text-align: center;
  transition: all 0.2s;
  color: var(--big-dark-2);
}
.category-card:hover {
  border-color: var(--big-primary);
  color: var(--big-primary);
  box-shadow: var(--big-card-shadow);
}
.category-card .cat-icon-big { font-size: 26px; margin-bottom: 6px; }
.category-card span { font-size: 12px; font-weight: 600; display: block; line-height: 1.3; }
.category-card .cat-count { font-size: 11px; color: var(--big-gray-light); font-weight: 400; }

/* =============================================
   PAGINATION
   ============================================= */
.big-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
}

.page-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--big-radius);
  border: 1px solid var(--big-border);
  background: var(--big-white);
  color: var(--big-dark-2);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.page-btn:hover, .page-btn.current {
  background: var(--big-primary);
  color: var(--big-white);
  border-color: var(--big-primary);
}

/* =============================================
   SINGLE LISTING PAGE
   ============================================= */
.single-listing-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: start;
}

.listing-gallery {
  border-radius: var(--big-radius);
  overflow: hidden;
  background: var(--big-white);
  border: 1px solid var(--big-border);
}

.listing-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.listing-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
}
.listing-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.listing-thumb.active { border-color: var(--big-primary); }

.listing-detail-box {
  background: var(--big-white);
  border: 1px solid var(--big-border);
  border-radius: var(--big-radius);
  padding: 20px;
  margin-bottom: 16px;
}

.listing-price-big {
  font-size: 26px;
  font-weight: 900;
  color: var(--big-primary);
  margin-bottom: 8px;
}

.listing-title-big {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.listing-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
}
.listing-meta-item { font-size: 13px; }
.listing-meta-item strong { color: var(--big-dark); display: block; }
.listing-meta-item span { color: var(--big-gray); }

.listing-description { font-size: 14px; color: var(--big-dark-2); line-height: 1.7; }

.seller-card {
  background: var(--big-white);
  border: 1px solid var(--big-border);
  border-radius: var(--big-radius);
  padding: 16px;
  margin-bottom: 16px;
}

.seller-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--big-primary);
  color: var(--big-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.seller-info { margin-top: 10px; }
.seller-name { font-weight: 700; font-size: 15px; }
.seller-joined { font-size: 12px; color: var(--big-gray-light); }

.btn-add-to-cart, .btn-contact-seller {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
  transition: all 0.2s;
}
.btn-add-to-cart {
  background: var(--big-primary);
  color: var(--big-white);
}
.btn-add-to-cart:hover { background: var(--big-primary-dark); color: var(--big-white); }
.btn-contact-seller {
  background: var(--big-white);
  border: 2px solid var(--big-primary);
  color: var(--big-primary);
}
.btn-contact-seller:hover { background: var(--big-primary-light); }

/* =============================================
   FOOTER
   ============================================= */
#colophon {
  background: var(--big-dark);
  color: #aaa;
  margin-top: 30px;
}

.footer-top {
  padding: 30px 0 20px;
  border-bottom: 1px solid #2a2a2a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-col h4 {
  color: var(--big-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-col p { font-size: 13px; line-height: 1.7; }

.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: #aaa; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--big-primary); }

.footer-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--big-white);
  letter-spacing: -1px;
  display: inline-block;
  margin-bottom: 10px;
}
.footer-logo span { color: var(--big-secondary); }

.footer-socials { display: flex; gap: 10px; margin-top: 14px; }
.footer-social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}
.footer-social-btn:hover { background: var(--big-primary); color: var(--big-white); }

.footer-bottom {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: #888; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--big-primary); }

/* =============================================
   WOOCOMMERCE OVERRIDES
   ============================================= */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
}

.woocommerce ul.products li.product {
  background: var(--big-white);
  border: 1px solid var(--big-border);
  border-radius: var(--big-radius);
  overflow: hidden;
  margin: 0 !important;
  width: auto !important;
  float: none !important;
  padding: 0 !important;
  transition: box-shadow 0.2s, transform 0.2s;
}
.woocommerce ul.products li.product:hover {
  box-shadow: var(--big-card-hover-shadow);
  transform: translateY(-2px);
}

.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 13px !important;
  padding: 8px 12px 4px !important;
  font-weight: 500 !important;
}

.woocommerce ul.products li.product .price {
  color: var(--big-primary) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  padding: 0 12px 8px !important;
}

.woocommerce ul.products li.product .button {
  margin: 0 12px 12px !important;
  background: var(--big-primary) !important;
  border-radius: 30px !important;
  color: var(--big-white) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  padding: 6px 14px !important;
  border: none !important;
  transition: background 0.2s !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--big-primary-dark) !important; }

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--big-primary) !important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--big-primary) !important;
  color: var(--big-white) !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
}
.woocommerce a.button:hover { background: var(--big-primary-dark) !important; }

/* =============================================
   NOTICES / ALERTS
   ============================================= */
.big-notice {
  padding: 10px 16px;
  border-radius: var(--big-radius);
  font-size: 13px;
  margin-bottom: 16px;
}
.big-notice.success { background: var(--big-primary-light); color: var(--big-primary-dark); border-left: 3px solid var(--big-primary); }
.big-notice.warning { background: #fff8e6; color: #a07000; border-left: 3px solid var(--big-secondary); }

/* =============================================
   BREADCRUMB
   ============================================= */
.big-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--big-gray-light);
  padding: 10px 0;
  flex-wrap: wrap;
}
.big-breadcrumb a { color: var(--big-gray); }
.big-breadcrumb a:hover { color: var(--big-primary); }
.big-breadcrumb .sep { color: var(--big-border); }
.big-breadcrumb .current { color: var(--big-dark-2); }

/* =============================================
   LOADING SKELETON
   ============================================= */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 190px 1fr 170px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .sidebar.open { display: block; }
  .hero-inner { grid-template-columns: 1fr 170px; }
  .hero-categories { display: none; }
  .single-listing-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --big-header-height: 56px; }
  .header-search { display: none; }
  .header-search.open { display: flex; position: fixed; top: 56px; left: 0; right: 0; z-index: 999; padding: 8px; background: var(--big-white); border-bottom: 1px solid var(--big-border); max-width: 100%; }
  .menu-toggle { display: flex; }
  .topbar-left .location-info { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-promo { flex-direction: row; }
  .hero-promo-card { flex: 1; height: 100px; }
  .listings-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #big-topbar { display: none; }
}

@media (max-width: 480px) {
  .listings-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .listing-card-price { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
}
