/* ===========================================
   AlSouq Theme - Main CSS
   تصميم مستوحى من السوق الإلكتروني
   =========================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --color-indigo-50:  #eef2ff;
  --color-indigo-100: #e0e7ff;
  --color-indigo-200: #c7d2fe;
  --color-indigo-500: #6366f1;
  --color-indigo-600: #6366f1;
  --color-indigo-700: #4f46e5;
  --color-indigo-800: #3730a3;
  --color-slate-50:   #f8fafc;
  --color-slate-100:  #f1f5f9;
  --color-slate-200:  #e2e8f0;
  --color-slate-300:  #cbd5e1;
  --color-slate-400:  #94a3b8;
  --color-slate-500:  #64748b;
  --color-slate-600:  #475569;
  --color-slate-700:  #334155;
  --color-slate-800:  #1e293b;
  --color-slate-900:  #0f172a;
  --color-dark-title: #1e1b4b;
  --color-white:      #ffffff;
  --color-emerald:    #10b981;
  --color-rose-50:    #fff1f2;
  --color-rose-600:   #e11d48;
  --color-amber:      #FFB800;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-2xl:  24px;
  --radius-3xl:  32px;
  --radius-4xl:  40px;
  --shadow-sm:   0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md:   0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg:   0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl:   0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-indigo: 0 10px 15px -3px rgba(99,102,241,0.15);
  --font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --transition: all 0.2s ease;
  --transition-slow: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  margin-top: 0 !important; /* إجبار إزالة أي مسافة علوية من ووردبريس */
}

body {
  font-family: var(--font-family);
  background-color: var(--color-slate-50);
  color: var(--color-slate-900);
  line-height: 1.6;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 0 !important;
}

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

/* Scrollbar hidden */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ===========================================
   LAYOUT
   =========================================== */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* ===========================================
   DESKTOP HEADER / NAV
   =========================================== */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-200);
  position: sticky;
  top: 0;
  z-index: 30;
  display: none;
}

.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (min-width: 768px) {
  .site-header { display: block; }
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  flex: 1;
  text-decoration: none;
}

.site-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--color-indigo-600);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo-icon::after {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--color-white);
  border-radius: 50%;
  display: block;
}

.site-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-slate-900);
}

.header-search {
  flex: 0 1 600px;
  position: relative;
  margin: 0;
}

.header-search input {
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  background: var(--color-slate-100);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  text-align: right;
  outline: none;
  transition: var(--transition);
  color: var(--color-slate-900);
}

.header-search input:focus {
  background: var(--color-white);
  border-color: var(--color-indigo-200);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.header-search .search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-slate-400);
  pointer-events: none;
}

/* Search results dropdown */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 50;
  overflow: hidden;
  display: none;
}

.search-results-dropdown.active { display: block; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  text-align: right;
  transition: var(--transition);
  border-bottom: 1px solid var(--color-slate-50);
}

.search-result-item:hover { background: var(--color-slate-50); }
.search-result-item:last-child { border-bottom: none; }

.search-result-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.search-result-info h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-900);
}

.search-result-info p {
  font-size: 0.625rem;
  color: var(--color-indigo-600);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
}

.header-btn {
  padding: 0.5rem;
  border-radius: 50%;
  color: var(--color-slate-600);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-btn:hover { background: var(--color-slate-50); }
.header-btn.active { color: var(--color-indigo-600); background: var(--color-indigo-50); }

.header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  background: var(--color-slate-200);
}

.header-avatar:hover,
.header-avatar.active { border-color: var(--color-indigo-600); }

.header-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Profile Dropdown */
.profile-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 192px;
  background: var(--color-white);
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: 50;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.profile-dropdown.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.profile-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-slate-700);
  width: 100%;
  text-align: right;
  transition: var(--transition);
}

.profile-dropdown-item:hover {
  background: var(--color-slate-50);
  color: var(--color-indigo-600);
}

.profile-dropdown-item.danger { color: var(--color-rose-600); }
.profile-dropdown-item.danger:hover { background: var(--color-rose-50); }

.profile-dropdown hr {
  border: none;
  border-top: 1px solid var(--color-slate-50);
  margin: 0.25rem 0;
}

/* ===========================================
   MOBILE HEADER
   =========================================== */
.mobile-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-100);
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-header { display: none; }
}

.mobile-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-search-toggle {
  padding: 0.625rem;
  border-radius: var(--radius-md);
  background: var(--color-slate-50);
  color: var(--color-slate-600);
  transition: var(--transition);
}

.mobile-search-toggle.active {
  background: var(--color-indigo-600);
  color: var(--color-white);
  box-shadow: var(--shadow-indigo);
}

.mobile-search-bar {
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(-10px);
}

.mobile-search-bar.active {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
  padding: 0.25rem 0 0.5rem;
}

.mobile-search-bar .search-input-wrap {
  position: relative;
  margin-top: 0.25rem;
}

.mobile-search-bar input {
  width: 100%;
  padding: 0.625rem 2.25rem 0.625rem 1rem;
  background: var(--color-slate-100);
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  text-align: right;
  outline: none;
  transition: var(--transition);
}

.mobile-search-bar input:focus {
  background: var(--color-white);
  border-color: var(--color-indigo-200);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.mobile-search-bar .search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-slate-400);
  pointer-events: none;
}

/* ===========================================
   BANNER SLIDER
   =========================================== */
.banner-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 2rem;
}

.slider-boxed {
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-slate-100);
}

@media (min-width: 768px) {
  .banner-slider { height: 380px; aspect-ratio: unset; }
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.banner-slide.active { opacity: 1; }

.banner-slide-bg {
  position: absolute;
  inset: 0;
}

.banner-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .banner-slide-bg img { object-fit: cover; opacity: 0.6; }
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3), transparent);
}

.banner-bottom-gradient-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, #f8fafc, transparent);
  opacity: 0.6;
}

.banner-bottom-gradient-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(to top, #f8fafc, transparent);
}

.banner-content {
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
  max-width: 640px;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .banner-content { padding: 0 4rem; }
}

.banner-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  animation: slideUp 0.6s ease;
}

@media (min-width: 768px) {
  .banner-title { font-size: 3rem; }
}

.banner-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

@media (min-width: 768px) {
  .banner-subtitle { font-size: 1.125rem; max-width: 36rem; }
}

.banner-btn {
  padding: 0.625rem 1.5rem;
  background: var(--color-white);
  color: var(--color-slate-900);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  display: inline-block;
}

.banner-btn:hover { background: var(--color-indigo-50); }

.banner-dots {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.banner-dot.active {
  background: var(--color-white);
  height: 16px;
  border-radius: 3px;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   SECTION HEADERS
   =========================================== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-slate-900);
}

.section-link {
  color: var(--color-indigo-600);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition);
}

.section-link:hover { color: var(--color-indigo-700); }

/* ===========================================
   CATEGORIES ROW
   =========================================== */
.categories-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  cursor: pointer;
  text-align: center;
}

.category-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .category-icon-wrap { width: 80px; height: 80px; }
}

.category-btn:hover .category-icon-wrap { transform: scale(1.1); }

.category-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-600);
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .category-label { font-size: 0.875rem; }
}

.category-btn:hover .category-label { color: var(--color-indigo-600); }

/* ===========================================
   PRODUCT CARDS
   =========================================== */
.products-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin: 0 -1rem;
  padding: 0 1rem 1rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .products-scroll {
    margin: 0;
    padding: 0 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    overflow-x: unset;
  }
}

@media (min-width: 1024px) {
  .products-scroll { grid-template-columns: repeat(5, 1fr); }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
  .products-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Product Card */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-slate-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
}

.products-scroll .product-card {
  width: 140px;
}

@media (min-width: 768px) {
  .products-scroll .product-card { width: auto; }
  .product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
  }
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-fav {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate-400);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 2;
  border: none;
}

.product-card-fav:hover,
.product-card-fav.active { color: #ef4444; }
.product-card-fav.active { background: rgba(255,255,255,0.95); }

.product-card-fav svg { width: 14px; height: 14px; }
.product-card-fav.active svg { fill: #ef4444; }

.trending-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-amber);
  color: #000;
  padding: 0.125rem 0.5rem;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0 0.5rem 0 0;
}

.trending-badge svg { width: 10px; height: 10px; fill: #000; }

.product-card-body {
  padding: 0.625rem;
}

.product-card-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-slate-900);
}

.product-card-name {
  color: var(--color-slate-600);
  font-size: 0.625rem;
  margin-top: 0.125rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-slate-400);
  margin-top: 0.25rem;
}

.product-card-location svg { width: 10px; height: 10px; }
.product-card-location span { font-size: 9px; }

/* Large product cards for category/archive pages */
.product-card-lg {
  background: var(--color-white);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid var(--color-slate-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

@media (min-width: 768px) {
  .product-card-lg:hover {
    box-shadow: 0 20px 25px -5px rgba(99,102,241,0.1), 0 8px 10px -6px rgba(99,102,241,0.1);
    border-color: var(--color-indigo-100);
  }
}

.product-card-lg .product-card-image {
  aspect-ratio: 4/3;
}

.product-card-lg .product-card-image img {
  transition: transform 0.5s ease;
}

.product-card-lg:hover .product-card-image img { transform: scale(1.08); }

.product-card-lg .product-card-body {
  padding: 1rem 1.5rem;
  text-align: right;
}

.product-card-lg .product-card-price-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  color: var(--color-indigo-600);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.product-card-lg .product-card-price-wrap .currency {
  font-size: 0.875rem;
}

.product-card-lg .product-card-name {
  color: var(--color-slate-900);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.product-card-lg:hover .product-card-name { color: var(--color-indigo-600); }

.product-card-lg .product-card-location {
  justify-content: flex-end;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--color-slate-400);
}

.product-card-lg .trending-badge {
  left: auto;
  bottom: auto;
  top: 0.75rem;
  right: 0.75rem;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  background: var(--color-indigo-600);
  color: var(--color-white);
  font-size: 10px;
}

.product-card-lg .trending-badge svg { fill: white; }

/* ===========================================
   CATEGORIES GRID PAGE
   =========================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 1280px) {
  .categories-grid { grid-template-columns: repeat(6, 1fr); }
}

.category-card-lg {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  border: 1px solid var(--color-slate-100);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 768px) {
  .category-card-lg {
    border-radius: var(--radius-3xl);
    padding: 2rem;
    gap: 1.5rem;
  }

  .category-card-lg:hover {
    box-shadow: 0 20px 25px -5px rgba(99,102,241,0.1);
    border-color: var(--color-indigo-100);
  }
}

.category-card-lg .cat-icon {
  transition: transform 0.3s ease;
}

.category-card-lg:hover .cat-icon { transform: scale(1.1); }

.category-card-lg .cat-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-slate-600);
  transition: color 0.2s ease;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .category-card-lg .cat-label { font-size: 0.875rem; }
}

.category-card-lg:hover .cat-label { color: var(--color-indigo-600); }

/* ===========================================
   FILTER SECTION (Category/Archive page)
   =========================================== */
.archive-layout {
  display: flex;
  gap: 3rem;
}

.filter-sidebar {
  display: none;
  width: 288px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .filter-sidebar { display: block; }
}

.filter-chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  padding-bottom: 0.25rem;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: var(--color-indigo-50);
  color: var(--color-indigo-600);
  border: 1px solid var(--color-indigo-100);
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

.filter-chip:hover { background: var(--color-indigo-100); }
.filter-chip svg { width: 12px; height: 12px; }

.filter-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.filter-categories-nav {
  width: 120px;
  background: var(--color-slate-50);
  overflow-y: auto;
  border-left: 1px solid var(--color-slate-100);
  flex-shrink: 0;
}

.filter-nav-btn {
  width: 100%;
  padding: 1.25rem 1rem;
  text-align: right;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-slate-600);
  border-bottom: 1px solid rgba(241,245,249,0.5);
  transition: var(--transition);
  position: relative;
}

.filter-nav-btn.active {
  background: var(--color-indigo-50);
  color: var(--color-indigo-600);
  border-right: 3px solid var(--color-indigo-600);
}

.filter-nav-btn:hover:not(.active) { background: var(--color-slate-100); }

.filter-content-area {
  flex: 1;
  background: var(--color-white);
  overflow-y: auto;
  padding: 1rem;
  text-align: right;
}

.filter-brand-search {
  position: relative;
  margin-bottom: 1rem;
}

.filter-brand-search input {
  width: 100%;
  padding: 0.625rem 0.75rem 0.625rem 2.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  text-align: right;
  outline: none;
}

.filter-brand-search input:focus {
  border-color: var(--color-indigo-200);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.filter-brand-search .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-slate-400);
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  cursor: pointer;
}

.filter-checkbox-item label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-slate-600);
  cursor: pointer;
  transition: color 0.2s ease;
}

.filter-checkbox-item:hover label { color: var(--color-slate-900); }

.filter-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-slate-300);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.filter-checkbox-item input[type="checkbox"] { display: none; }
.filter-checkbox-item input:checked + .filter-checkbox {
  background: var(--color-indigo-600);
  border-color: var(--color-indigo-600);
}

.filter-footer {
  display: flex;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-slate-100);
  margin-top: auto;
  flex-shrink: 0;
}

.filter-clear-btn {
  flex: 1;
  padding: 0.875rem;
  border: 2px solid var(--color-slate-200);
  color: var(--color-slate-600);
  font-weight: 700;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  transition: var(--transition);
}

.filter-clear-btn:hover { background: var(--color-slate-50); }

.filter-apply-btn {
  flex: 1;
  padding: 0.875rem;
  background: var(--color-indigo-600);
  color: var(--color-white);
  font-weight: 700;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  box-shadow: var(--shadow-indigo);
  transition: var(--transition);
}

.filter-apply-btn:hover { background: var(--color-indigo-700); }

/* Mobile Filter Bottom Sheet */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(4px);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.filter-overlay.active { opacity: 1; pointer-events: all; }

.filter-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
  padding: 1.5rem;
  z-index: 51;
  height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.filter-bottom-sheet.active { transform: translateY(0); }

.filter-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.filter-sheet-header h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-dark-title);
}

.filter-sheet-close {
  padding: 0.5rem;
  border-radius: 50%;
  color: var(--color-slate-900);
  transition: var(--transition);
}

.filter-sheet-close:hover { background: var(--color-slate-100); }

.filter-sheet-body {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-slate-100);
  margin: 0 -1.5rem;
}

.filter-sheet-inner {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Archive Toolbar */
.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem 1rem;
}

@media (min-width: 768px) {
  .archive-toolbar { padding: 0 0 1rem; }
}

.toolbar-left { display: flex; gap: 0.5rem; }

.toolbar-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-600);
  transition: var(--transition);
}

.toolbar-btn:hover { background: var(--color-slate-50); }

.toolbar-right { display: flex; gap: 0.5rem; }

.view-btn {
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.view-btn.active { background: var(--color-indigo-50); color: var(--color-indigo-600); }
.view-btn:not(.active) { color: var(--color-slate-400); }
.view-btn:not(.active):hover { color: var(--color-slate-600); }

/* ===========================================
   SINGLE LISTING PAGE
   =========================================== */
.single-listing-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .single-listing-layout {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.listing-gallery {
  width: 100%;
}

@media (min-width: 1024px) {
  .listing-gallery { width: 58%; }
}

.gallery-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-main { flex-direction: row; }
}

.gallery-thumbnails {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  width: 80px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .gallery-thumbnails { display: flex; width: 96px; }
}

.gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--color-slate-100);
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.gallery-thumb.active {
  border-color: var(--color-indigo-600);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.gallery-main-image {
  flex: 1;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-slate-100);
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--color-slate-100);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .gallery-main-image { border-radius: var(--radius-3xl); aspect-ratio: 16/9; }
}

@media (min-width: 1024px) {
  .gallery-main-image { aspect-ratio: 4/3; }
}

.gallery-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  user-select: none;
}

.gallery-overlay-btns {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.gallery-overlay-btns-left {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.gallery-overlay-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate-900);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.gallery-overlay-btn:hover { background: var(--color-white); }
.gallery-overlay-btn.fav-active { background: #ef4444; color: white; }

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate-900);
  box-shadow: var(--shadow-lg);
  z-index: 10;
  transition: all 0.2s ease;
  cursor: pointer;
  opacity: 0;
  border: none;
}

.gallery-main-image:hover .gallery-nav-btn { opacity: 1; }

.gallery-nav-prev { left: 1rem; }
.gallery-nav-next { right: 1rem; }

.gallery-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

@media (min-width: 768px) {
  .gallery-indicators { display: none; }
}

.gallery-dot {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 6px;
  border: none;
}

.gallery-dot.active { width: 24px; background: white; }

.gallery-mobile-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  margin-top: 1rem;
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .gallery-mobile-thumbs { display: none; }
}

.gallery-mobile-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--color-slate-100);
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-mobile-thumb.active {
  border-color: var(--color-indigo-600);
  box-shadow: 0 0 0 2px rgba(99,102,241,0.2);
}

.gallery-mobile-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: color 0.2s ease;
  background: none;
  border: none;
}

.lightbox-close:hover { color: white; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
  border: none;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

/* Listing Info */
.listing-info { flex: 1; }

.listing-info-sticky { 
  position: sticky;
  top: 6rem;
}

.listing-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: #ecfdf5;
  color: var(--color-emerald);
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.listing-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-slate-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .listing-title { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .listing-title { font-size: 2.5rem; }
}

.listing-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-slate-100);
  border-bottom: 1px solid var(--color-slate-100);
  margin-bottom: 1.5rem;
}

.listing-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-slate-500);
}

.listing-meta-icon {
  padding: 0.375rem;
  background: var(--color-slate-50);
  border-radius: var(--radius-sm);
  color: var(--color-slate-400);
}

.listing-meta-icon svg { width: 14px; height: 14px; }

.listing-meta-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--color-slate-400);
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.listing-meta-value {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-700);
  line-height: 1;
}

.listing-meta-divider {
  width: 1px;
  height: 24px;
  background: var(--color-slate-100);
}

.listing-price-box {
  background: var(--color-slate-900);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  color: white;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.listing-price-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: rgba(99,102,241,0.1);
  border-radius: 50%;
  filter: blur(30px);
  margin-right: -64px;
  margin-top: -64px;
}

.listing-price-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.25rem;
}

.listing-price-value {
  font-size: 2.5rem;
  font-weight: 900;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .listing-price-value { font-size: 3rem; }
}

.listing-price-currency {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-slate-400);
}

.listing-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.listing-actions-grid > *:last-child:nth-child(odd) {
  grid-column: span 2;
}

.listing-action-btn {
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.mobile-only { display: none !important; }
.desktop-only { display: block !important; }

@media (max-width: 767px) {
  .mobile-only { display: block !important; }
  .desktop-only { display: none !important; }
}

.listing-action-chat {
  background: var(--color-white);
  color: var(--color-slate-900);
}

.listing-action-chat:hover { background: var(--color-slate-100); }
.listing-action-chat svg { fill: var(--color-slate-900); width: 16px; height: 16px; }

.listing-action-offer {
  background: transparent;
  border: 1px solid #475569;
  color: white;
}

.listing-action-offer:hover { background: rgba(255,255,255,0.05); }

.listing-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.spec-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  background: var(--color-white);
  border: 1px solid var(--color-slate-100);
  text-align: right;
}

.spec-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--color-indigo-50);
  color: var(--color-indigo-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-icon svg { width: 16px; height: 16px; }

.spec-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--color-slate-400);
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.spec-value {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-900);
  line-height: 1;
}

.listing-description {
  margin-bottom: 1.5rem;
}

.listing-description h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 1rem;
}

.listing-description p {
  color: var(--color-slate-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.seller-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--color-slate-900);
  color: white;
}

.seller-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.seller-avatar img { width: 100%; height: 100%; object-fit: cover; }

.seller-info p:first-child { font-size: 0.75rem; color: var(--color-slate-400); }
.seller-info p:last-child  { font-weight: 700; }

.seller-view-btn {
  margin-right: auto;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: white;
  transition: var(--transition);
}

.seller-view-btn:hover { background: rgba(255,255,255,0.2); }

/* ===========================================
   CHAT PAGE
   =========================================== */
.chat-layout {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 160px);
  background: var(--color-white);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-slate-200);
}

@media (max-width: 767px) {
  .chat-layout {
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
    min-height: 60vh;
  }
}

.chat-inner {
  display: flex;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.chat-sidebar {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-left: 1px solid var(--color-slate-200);
  background: var(--color-white);
}

@media (min-width: 768px) {
  .chat-sidebar { width: 380px; }
}

.chat-search {
  padding: 0 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.chat-search input {
  width: 100%;
  background: var(--color-slate-50);
  border: none;
  border-radius: var(--radius-xl);
  padding: 0.625rem 0.75rem 0.625rem 2.25rem;
  font-size: 0.875rem;
  outline: none;
  text-align: right;
}

.chat-search input:focus {
  box-shadow: 0 0 0 2px rgba(99,102,241,0.2);
}

.chat-search .search-icon {
  position: absolute;
  left: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-slate-400);
}

.chat-list { flex: 1; overflow-y: auto; padding: 0 1rem; }

.chat-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border: 1px solid transparent;
  margin-bottom: 0.5rem;
}

.chat-item:hover { background: var(--color-slate-50); border-color: var(--color-slate-100); }
.chat-item.active { background: rgba(238,242,255,0.5); border-color: var(--color-indigo-100); }

.chat-item-images {
  position: relative;
  flex-shrink: 0;
}

.chat-product-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.chat-avatar {
  position: absolute;
  bottom: -4px;
  left: -4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.chat-item-content {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
  text-align: right;
}

.chat-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2px;
}

.chat-sender-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-dark-title);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-time {
  font-size: 0.625rem;
  color: var(--color-slate-400);
  font-weight: 500;
  flex-shrink: 0;
}

.chat-product-title {
  font-size: 0.625rem;
  color: var(--color-slate-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
  font-weight: 500;
}

.chat-last-msg {
  font-size: 0.75rem;
  color: var(--color-slate-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.chat-unread-badge {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--color-indigo-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-indigo);
}

.chat-unread-badge span {
  font-size: 0.625rem;
  color: white;
  font-weight: 700;
}

/* Chat Conversation */
.chat-conversation {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--color-slate-50);
  min-height: 0;
}

.chat-conv-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-100);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.chat-conv-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-conv-avatar { position: relative; }

.chat-conv-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.online-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--color-emerald);
  border: 2px solid white;
  border-radius: 50%;
}

.chat-conv-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-dark-title);
}

.chat-online-text {
  font-size: 0.625rem;
  color: var(--color-emerald);
  font-weight: 700;
}

.chat-conv-actions { display: flex; gap: 0.5rem; }
.chat-conv-btn {
  padding: 0.5rem;
  border-radius: 50%;
  color: var(--color-slate-400);
  transition: var(--transition);
}
.chat-conv-btn:hover { background: var(--color-slate-50); }

.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; min-height: 0; }

.chat-date-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.chat-date-divider span {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-slate-400);
  background: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
}

/* Product context card in chat */
.chat-product-context {
  background: var(--color-white);
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  display: flex;
  gap: 0.75rem;
  max-width: 24rem;
  margin: 0 auto 1.5rem;
  text-align: right;
  direction: rtl;
}

.chat-product-context img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.chat-product-context-info { flex: 1; min-width: 0; }

.chat-product-context-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-product-context-price {
  font-size: 0.625rem;
  color: var(--color-indigo-600);
  font-weight: 700;
}

.chat-product-view-btn {
  padding: 0.25rem 0.75rem;
  background: var(--color-indigo-50);
  color: var(--color-indigo-600);
  border-radius: var(--radius-sm);
  font-size: 0.625rem;
  font-weight: 700;
  align-self: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.chat-product-view-btn:hover { background: var(--color-indigo-100); }

/* Messages */
.msg-row {
  display: flex;
  gap: 0.5rem;
  max-width: 80%;
  margin-bottom: 1rem;
}

.msg-row.sent { align-self: flex-end; margin-right: auto; }
.msg-row.received { margin-left: auto; flex-direction: row-reverse; }

.msg-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; align-self: flex-end; flex-shrink: 0; }

.msg-bubble {
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  text-align: right;
}

.msg-bubble.received {
  background: var(--color-white);
  border: 1px solid var(--color-slate-100);
  border-bottom-right-radius: 0;
  color: var(--color-slate-700);
  box-shadow: var(--shadow-sm);
}

.msg-bubble.sent {
  background: var(--color-indigo-600);
  color: white;
  border-bottom-left-radius: 0;
  box-shadow: var(--shadow-indigo);
}

.msg-time {
  font-size: 9px;
  color: var(--color-slate-400);
  margin-top: 0.25rem;
  display: block;
  text-align: left;
}

.msg-bubble.sent .msg-time { color: rgba(224,231,255,0.8); }

.chat-input-area {
  padding: 1rem;
  background: var(--color-white);
  border-top: 1px solid var(--color-slate-100);
  flex-shrink: 0;
}

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  direction: ltr;
}

.chat-attach-btn { padding: 0.5rem; color: var(--color-slate-400); transition: var(--transition); }
.chat-attach-btn:hover { color: var(--color-indigo-600); }

.chat-input-wrap { flex: 1; position: relative; }

.chat-input-wrap input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  background: var(--color-slate-50);
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  text-align: right;
  direction: rtl;
  outline: none;
  transition: var(--transition);
}

.chat-input-wrap input:focus {
  background: var(--color-white);
  box-shadow: 0 0 0 2px rgba(99,102,241,0.2);
}

.chat-send-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  color: var(--color-indigo-600);
}

/* Empty chat state */
.chat-empty {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3rem;
  text-align: center;
  direction: rtl;
}

@media (min-width: 768px) {
  .chat-empty { display: flex; }
}

.chat-empty-icon {
  width: 80px;
  height: 80px;
  background: var(--color-white);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.chat-empty h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark-title);
  margin-bottom: 0.5rem;
}

.chat-empty p { color: var(--color-slate-400); max-width: 20rem; }

/* ===========================================
   PROFILE PAGE
   =========================================== */
.profile-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .profile-layout { flex-direction: row; }
}

.profile-sidebar { width: 100%; }

@media (min-width: 1024px) {
  .profile-sidebar { width: 380px; flex-shrink: 0; }
}

.profile-card {
  background: var(--color-white);
  border-radius: var(--radius-4xl);
  border: 1px solid var(--color-slate-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.profile-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(135deg, var(--color-indigo-600), #3730a3);
}

.profile-avatar-wrap {
  position: relative;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-avatar {
  position: relative;
  margin-bottom: 1.5rem;
}

.profile-avatar img {
  width: 128px;
  height: 128px;
  border-radius: 40px;
  border: 8px solid white;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.profile-edit-btn {
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 40px;
  height: 40px;
  background: var(--color-indigo-600);
  color: white;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}

.profile-edit-btn:hover { transform: scale(1.1); }

.profile-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-dark-title);
  margin-bottom: 0.25rem;
}

.profile-email {
  color: var(--color-slate-400);
  font-weight: 500;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.profile-details {
  width: 100%;
  border-top: 1px solid var(--color-slate-100);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: right;
}

.profile-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-slate-600);
}

.profile-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xl);
  background: var(--color-slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-indigo-600);
  flex-shrink: 0;
}

.profile-detail-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-slate-400);
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.profile-detail-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-slate-700);
}

.profile-pro-card {
  background: var(--color-slate-900);
  border-radius: var(--radius-4xl);
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.profile-pro-card::after {
  content: '';
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  filter: blur(30px);
}

.profile-pro-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  background: var(--color-indigo-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 15px -3px rgba(99,102,241,0.3);
}

.profile-pro-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.profile-pro-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.profile-pro-btn {
  width: 100%;
  padding: 1rem;
  background: var(--color-white);
  color: var(--color-slate-900);
  border-radius: var(--radius-xl);
  font-weight: 900;
  font-size: 0.875rem;
  transition: var(--transition);
}

.profile-pro-btn:hover { background: var(--color-slate-50); }

/* ===========================================
   SETTINGS PAGE
   =========================================== */
.settings-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .settings-layout { grid-template-columns: 1fr 2fr; }
}

.settings-nav { display: flex; flex-direction: column; gap: 0.5rem; }

.settings-nav-btn {
  width: 100%;
  text-align: right;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition);
  color: var(--color-slate-500);
}

.settings-nav-btn:hover { background: var(--color-slate-100); }
.settings-nav-btn.active {
  background: var(--color-indigo-600);
  color: white;
  box-shadow: var(--shadow-indigo);
}

.settings-panel {
  background: var(--color-white);
  border-radius: var(--radius-3xl);
  padding: 2rem;
  border: 1px solid var(--color-slate-100);
  box-shadow: var(--shadow-sm);
  text-align: right;
}

.settings-panel h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark-title);
  margin-bottom: 1.5rem;
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-slate-400);
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-slate-50);
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  color: var(--color-slate-900);
  font-size: 0.875rem;
  text-align: right;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-family);
}

.form-input:focus {
  background: var(--color-white);
  border-color: var(--color-indigo-200);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.btn-primary {
  padding: 0.75rem 2rem;
  background: var(--color-indigo-600);
  color: white;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition);
  box-shadow: var(--shadow-indigo);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover { background: var(--color-indigo-700); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98); }

/* ===========================================
   POST AD FORM
   =========================================== */
.post-ad-layout {
  max-width: 42rem;
  margin: 0 auto;
}

.post-ad-card {
  background: var(--color-white);
  border-radius: var(--radius-4xl);
  border: 1px solid var(--color-slate-100);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem;
}

.location-banner {
  background: var(--color-indigo-50);
  border: 1px solid rgba(199,210,254,0.5);
  border-radius: var(--radius-3xl);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location-banner p {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark-title);
  line-height: 1.5;
}

.location-banner-icon {
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-indigo-600);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.location-option {
  width: 100%;
  padding: 1.5rem;
  background: var(--color-white);
  border: 2px solid var(--color-slate-100);
  border-radius: var(--radius-3xl);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: right;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.location-option:hover {
  border-color: var(--color-indigo-600);
  background: var(--color-indigo-50);
}

.location-option-icon {
  width: 48px;
  height: 48px;
  background: var(--color-slate-100);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate-600);
  transition: var(--transition);
  flex-shrink: 0;
}

.location-option:hover .location-option-icon {
  background: var(--color-indigo-100);
  color: var(--color-indigo-600);
}

.location-option-title {
  display: block;
  font-weight: 900;
  color: var(--color-slate-900);
  transition: color 0.2s ease;
}

.location-option:hover .location-option-title { color: var(--color-indigo-600); }

.location-option-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-400);
}

/* Progress steps */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-slate-200);
  transition: all 0.3s ease;
}

.step-dot.active { background: var(--color-indigo-600); width: 24px; border-radius: 4px; }
.step-dot.done { background: var(--color-emerald); }

/* Transmission Toggle */
.toggle-group { display: flex; gap: 0.75rem; }

.toggle-btn {
  flex: 1;
  padding: 1rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  border: 2px solid var(--color-slate-200);
  background: var(--color-white);
  color: var(--color-slate-600);
  transition: var(--transition);
}

.toggle-btn.active {
  background: var(--color-indigo-50);
  border-color: var(--color-indigo-600);
  color: var(--color-indigo-600);
}

/* ===========================================
   FAVORITES PAGE
   =========================================== */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-bottom: 5rem;
  padding: 0 1rem 5rem;
}

@media (min-width: 768px) {
  .favorites-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 0 0;
  }
}

@media (min-width: 1024px) {
  .favorites-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===========================================
   PAGE HEADERS
   =========================================== */
.page-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 20;
}

@media (min-width: 768px) {
  .page-header {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    position: static;
  }
}

.page-header-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-dark-title);
}

@media (min-width: 768px) {
  .page-header-title { font-size: 2.5rem; }
}

.back-btn {
  padding: 0.5rem;
  border-radius: 50%;
  color: var(--color-slate-900);
  transition: var(--transition);
  margin-left: 0.5rem;
}

.back-btn:hover { background: var(--color-slate-50); }

.filter-mobile-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-slate-600);
}

@media (min-width: 768px) {
  .filter-mobile-btn { display: none; }
}

/* ===========================================
   MOBILE BOTTOM NAV
   =========================================== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-slate-100);
  padding: 0.5rem 1.5rem;
  z-index: 40;
  display: block;
}

@media (min-width: 768px) {
  .mobile-bottom-nav { display: none; }
}

.bottom-nav-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.25rem;
  color: var(--color-slate-400);
  transition: var(--transition);
  cursor: pointer;
}

.nav-item.active { color: var(--color-indigo-600); }

.nav-item svg { width: 20px; height: 20px; }

.nav-item span {
  font-size: 0.625rem;
  font-weight: 700;
}

.nav-avatar-wrap {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--color-slate-200);
  transition: var(--transition);
}

.nav-item.active .nav-avatar-wrap {
  border-color: var(--color-indigo-600);
  box-shadow: var(--shadow-sm);
}

.nav-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Post Ad FAB */
.post-fab {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-indigo-600);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 35;
  transition: var(--transition);
}

.post-fab:hover { background: var(--color-indigo-700); transform: translateX(-50%) translateY(-2px); }

@media (min-width: 768px) { .post-fab { display: none; } }

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-slate-100);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    text-align: right;
  }
}

.footer-desc {
  color: var(--color-slate-500);
  font-size: 0.75rem;
  line-height: 1.6;
  max-width: 24rem;
}

.footer-copy {
  color: var(--color-slate-400);
  font-size: 0.625rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* ===========================================
   EMPTY / NOT FOUND STATES
   =========================================== */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  text-align: center;
}

.empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--color-slate-100);
  color: var(--color-slate-300);
}

.empty-icon svg { width: 40px; height: 40px; }

.empty-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.5rem;
}

.empty-desc { color: var(--color-slate-500); max-width: 20rem; font-size: 0.875rem; }

/* ===========================================
   SUCCESS STATES
   =========================================== */
.success-banner {
  position: fixed;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  background: var(--color-slate-900);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-xl);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-xl);
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-banner.show { transform: translateY(0); opacity: 1; }

@media (min-width: 768px) {
  .success-banner { left: auto; max-width: 360px; }
}

/* ===========================================
   UTILITIES
   =========================================== */
.text-right { text-align: right; }
.text-left  { text-align: left; }
.hidden     { display: none !important; }
.flex       { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.px-4 { padding: 0 1rem; }
.py-4 { padding: 1rem 0; }
.w-full { width: 100%; }

/* Truncate text */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-1 { -webkit-line-clamp: 1; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; }
.line-clamp-2 { -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; }

/* Main content area padding for mobile nav */
.main-content {
  flex: 1;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .main-content { padding-bottom: 0; }
}

/* Full content section */
.content-section {
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .content-section { padding: 0 2rem; }
}

/* Disabled state */
.disabled { opacity: 0.5; pointer-events: none; }

/* Loading spinner */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--color-slate-200);
  border-top-color: var(--color-indigo-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Fade in animation */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-in { animation: fadeIn 0.4s ease; }

/* Scale in animation */
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.scale-in { animation: scaleIn 0.3s ease; }

/* ===========================
   WP PAGINATION
   =========================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition);
  color: var(--color-slate-600);
  border: 1px solid var(--color-slate-200);
  background: var(--color-white);
}

.pagination .page-numbers:hover { border-color: var(--color-indigo-200); color: var(--color-indigo-600); background: var(--color-indigo-50); }
.pagination .page-numbers.current { background: var(--color-indigo-600); color: white; border-color: var(--color-indigo-600); }
.pagination .page-numbers.dots { border: none; background: transparent; width: auto; }

/* ===========================
   WP FORMS & COMMENTS
   =========================== */
.wp-form-wrap { max-width: 640px; margin: 0 auto; }

/* ===========================
   RESPONSIVE ADMIN BAR FIX
   =========================== */
.admin-bar .site-header { top: 32px; }
.admin-bar .mobile-header { top: 32px; }

@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .mobile-header { top: 46px; }
}
@media screen and (max-width: 600px) {
  .admin-bar .site-header { top: 0; }
  .admin-bar .mobile-header { top: 0; }
}
