/* Airbnb-style Property Listings CSS */

/* Variables - inherit from base.css, define additional ones here */
:root {
  --border-radius: 12px;
}

/* Dark mode additional overrides for listings */

/* Reset & Base */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  color: var(--text-primary);
  background-color: var(--background-body);
  line-height: 1.5;
}

/* Main Layout */
.listings-page {
  max-width: 1760px;
  margin: 0 auto;
  padding: 24px;
}

/* Header / Search Bar */
.listings-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background-body);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Filter Pills */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill:hover {
  border-color: var(--text-primary);
}

.filter-pill.active {
  background: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
}

.filter-pill svg {
  width: 16px;
  height: 16px;
}

/* Filter Sidebar */
.filter-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 24px;
  background: var(--background-card);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

/* Custom scrollbar for filter sidebar */
.filter-sidebar::-webkit-scrollbar {
  width: 6px;
}

.filter-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.filter-sidebar::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

.filter-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

/* Form Controls - Bootstrap-like styling */
.form-select-airbnb,
.form-input-airbnb {
  display: block;
  width: 100%;
  padding: 10px 36px 10px 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--input-bg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 10px;
  border: 1px solid var(--input-border);
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-input-airbnb {
  background-image: none;
  padding: 10px 14px;
}

.form-select-airbnb:focus,
.form-input-airbnb:focus {
  outline: 0;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-select-airbnb:hover,
.form-input-airbnb:hover {
  border-color: #adb5bd;
}

.form-select-airbnb::placeholder,
.form-input-airbnb::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-select-airbnb option {
  padding: 10px;
  font-size: 15px;
}

.form-select-airbnb:disabled {
  background-color: var(--background-light);
  cursor: not-allowed;
  opacity: 0.7;
}

/* Price Range */
.price-range {
  display: flex;
  gap: 12px;
  align-items: center;
}

.price-range input {
  flex: 1;
}

.price-range span {
  color: var(--text-secondary);
}

/* Buttons */
.btn-airbnb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary-airbnb {
  background: var(--primary-color);
  color: #FFFFFF;
}

.btn-primary-airbnb:hover {
  background: var(--primary-hover);
}

.btn-secondary-airbnb {
  background: var(--background-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary-airbnb:hover {
  background: var(--background-light);
}

.btn-text-airbnb {
  background: transparent;
  color: var(--text-primary);
  padding: 8px;
  text-decoration: underline;
}

.btn-text-airbnb:hover {
  color: var(--text-secondary);
}

/* Property Grid */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  contain: content;
}

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

@media (min-width: 992px) and (max-width: 1199px) {
  .property-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Property Card */
.property-card {
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  contain: layout style;
  overflow: hidden;
}

/* Card entrance animation */
.property-card.new {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
}

.property-card.animate-in {
  animation: cardFadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.property-card:hover .property-image img {
  transform: scale(1.02);
}

/* Property Image */
.property-image {
  position: relative;
  width: 100%;
  padding-bottom: 95%; /* Aspect ratio 1:0.95 */
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--background-light);
}

.property-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Ensure images never exceed their container */
@media (max-width: 991px) {
  .property-card {
    max-width: 100%;
  }

  .property-image {
    max-width: 100%;
  }

  .property-image img {
    max-width: 100%;
    max-height: 100%;
  }
}

.property-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  color: #FFFFFF;
  font-size: 48px;
}

/* Image Carousel */
.image-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.carousel-dot.active {
  background: #FFFFFF;
  transform: scale(1.2);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.property-card:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

/* Favorite Button */
.favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.favorite-btn svg {
  width: 24px;
  height: 24px;
  stroke: #FFFFFF;
  fill: rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: var(--transition);
}

.favorite-btn:hover svg,
.favorite-btn.active svg {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}

/* Badge */
.property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  background: var(--background-card);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.property-badge.featured {
  background: var(--primary-color);
  color: #FFFFFF;
}

.property-badge.auction {
  background: #FF9500;
  color: #FFFFFF;
}

/* Property Info */
.property-info {
  padding: 12px 0;
}

.property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.property-location {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-province {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.property-canton {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  display: block;
  margin-top: 2px;
}

.property-header {
  margin-bottom: 4px;
}

.property-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}

.property-rating svg {
  width: 14px;
  height: 14px;
  fill: var(--text-primary);
}

.property-type {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.property-sector {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.property-price {
  font-size: 15px;
}

.property-price strong {
  font-weight: 600;
}

.property-price span {
  color: var(--text-secondary);
  font-weight: 400;
}

/* Listing Type Tags */
.listing-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 8px;
}

.listing-tag.sale {
  background: #E8F5E9;
  color: #2E7D32;
}

.listing-tag.rent {
  background: #E3F2FD;
  color: #1565C0;
}

.listing-tag.auction {
  background: #FFF3E0;
  color: #E65100;
}

/* Loading States */
.skeleton {
  background: linear-gradient(90deg, var(--skeleton-base) 25%, var(--skeleton-shine) 50%, var(--skeleton-base) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  animation: skeletonFadeIn 0.3s ease;
}

.skeleton-card.fade-out {
  animation: skeletonFadeOut 0.3s ease forwards;
}

@keyframes skeletonFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes skeletonFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

.skeleton-image {
  position: relative;
  width: 100%;
  padding-bottom: 95%; /* Match real image aspect ratio */
  border-radius: var(--border-radius);
}

.skeleton-text {
  height: 16px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-text.medium {
  width: 80%;
}

/* Infinite Scroll Loader */
.infinite-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 16px;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.loader-text {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

.empty-state svg {
  width: 80px;
  height: 80px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.empty-state p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto 24px;
}

/* Results Count */
.results-count {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.results-count strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Responsive Layout */
.listings-container {
  display: flex;
  gap: 24px;
}

.listings-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.listings-main {
  flex: 1;
  min-width: 0;
}

@media (max-width: 991px) {
  .listings-container {
    flex-direction: column;
  }

  .listings-sidebar {
    width: 100%;
  }

  .filter-sidebar {
    position: static;
  }
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 12px 24px;
  background: var(--primary-color);
  color: #FFFFFF;
  border-radius: 24px;
  font-weight: 600;
  box-shadow: var(--card-shadow);
  border: none;
}

/* Mobile Filter Close Button */
.mobile-filter-close {
  display: none;
}

@media (max-width: 991px) {
  .mobile-filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .listings-sidebar {
    display: none;
  }

  .listings-sidebar.open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    background: var(--background-body);
    padding: 24px;
    padding-top: 60px;
    overflow-y: auto;
  }

  .listings-sidebar.open .mobile-filter-close {
    display: flex;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #374151;
    transition: all 0.2s ease;
  }

  .listings-sidebar.open .mobile-filter-close:hover {
    background: #E5E7EB;
    color: #1F2937;
  }
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  color: var(--text-primary);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--background-light);
}

/* Preload indicator */
.preload-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 9999;
  overflow: hidden;
}

.preload-indicator.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: var(--primary-color);
  animation: preload-progress 1s ease-in-out infinite;
}

@keyframes preload-progress {
  0% {
    left: -30%;
  }
  100% {
    left: 100%;
  }
}

/* Scroll End Suggestion */
.scroll-end-suggestion {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
  border-radius: 16px;
  margin-top: 24px;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.suggestion-content {
  max-width: 400px;
  margin: 0 auto;
}

.suggestion-content svg {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.suggestion-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.suggestion-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.suggestion-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn-suggestion {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  min-width: 200px;
}

.btn-suggestion-primary {
  background: var(--primary-color);
  color: #FFFFFF;
}

.btn-suggestion-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-suggestion-secondary {
  background: var(--background-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-suggestion-secondary:hover {
  background: var(--background-light);
  border-color: var(--text-primary);
}

/* =====================================================
   Promotional Banners (Every 12 items)
   ===================================================== */
.promo-banner {
  grid-column: 1 / -1;
  border-radius: 16px;
  overflow: hidden;
  margin: 16px 0;
  animation: bannerFadeIn 0.5s ease;
}

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

.promo-banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
}

/* Subscribe Banner - Red/Primary gradient */
.promo-banner-subscribe {
  background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
  color: #FFFFFF;
}

.promo-banner-subscribe .promo-banner-icon {
  background: rgba(255, 255, 255, 0.2);
}

.promo-banner-subscribe .promo-banner-btn {
  background: #FFFFFF;
  color: #DC2626;
}

.promo-banner-subscribe .promo-banner-btn:hover {
  background: #FEF2F2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Publish Banner - Dark Gray gradient */
.promo-banner-publish {
  background: linear-gradient(135deg, #374151 0%, #1F2937 100%);
  color: #FFFFFF;
}

.promo-banner-publish .promo-banner-icon {
  background: rgba(255, 255, 255, 0.15);
}

.promo-banner-publish .promo-banner-btn {
  background: #FFFFFF;
  color: #1F2937;
}

.promo-banner-publish .promo-banner-btn:hover {
  background: #F3F4F6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-banner-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-banner-icon svg {
  width: 32px;
  height: 32px;
}

.promo-banner-logo-icon {
  width: 36px;
  height: 36px;
  color: #FFFFFF;
}

.promo-banner-text {
  flex: 1;
  min-width: 0;
}

.promo-banner-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.promo-banner-text p {
  font-size: 14px;
  margin: 0;
  opacity: 0.95;
  line-height: 1.5;
}

.promo-banner-text strong {
  font-weight: 600;
}

.promo-banner-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.promo-banner-btn svg {
  width: 18px;
  height: 18px;
}

/* Responsive Banners */
@media (max-width: 991px) {
  .promo-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 16px;
  }

  .promo-banner-text h3 {
    font-size: 18px;
  }

  .promo-banner-text p {
    font-size: 13px;
  }

  .promo-banner-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .promo-banner-content {
    padding: 20px 16px;
  }

  .promo-banner-icon {
    width: 56px;
    height: 56px;
  }

  .promo-banner-icon svg {
    width: 28px;
    height: 28px;
  }

  .promo-banner-text h3 {
    font-size: 16px;
  }
}

/* Promo Banner Logo */
.promo-banner-logo {
  width: auto;
  height: 32px;
}

.promo-banner-logo-light {
  display: block;
}

.promo-banner-logo-dark {
  display: none;
}

[data-theme="dark"] .promo-banner-logo-light {
  display: none;
}

[data-theme="dark"] .promo-banner-logo-dark {
  display: block;
}

/* =====================================================
   Dark Mode Specific Overrides for Listings
   ===================================================== */

/* Dark mode form select arrow icon */
[data-theme="dark"] .form-select-airbnb {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394A3B8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* Dark mode listing type tags */
[data-theme="dark"] .listing-tag.sale {
  background: rgba(46, 125, 50, 0.2);
  color: #4ADE80;
}

[data-theme="dark"] .listing-tag.rent {
  background: rgba(21, 101, 192, 0.2);
  color: #60A5FA;
}

[data-theme="dark"] .listing-tag.auction {
  background: rgba(230, 81, 0, 0.2);
  color: #FB923C;
}

/* Dark mode mobile close button */
[data-theme="dark"] .listings-sidebar.open .mobile-filter-close {
  background: var(--background-light);
  color: var(--text-secondary);
}

[data-theme="dark"] .listings-sidebar.open .mobile-filter-close:hover {
  background: var(--border-color);
  color: var(--text-primary);
}
