/*
Theme Name: ScortBrasil
Theme URI: https://scortbrasil.com.br
Author: Allan
Author URI: https://scortbrasil.com.br
Description: Tema profissional para diretório de acompanhantes
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scortbrasil
*/

:root {
    --navy-bg: #1a2332;
    --dark-navy: #151d2b;
    --darker-navy: #0f1520;
    --card-bg: #222b3a;
    --pink: #e91e63;
    --pink-hover: #f73378;
    --white: #ffffff;
    --gray: #8b92a1;
    --light-gray: #a8adb8;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--navy-bg);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.site-header {
    background: var(--darker-navy);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--pink);
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--white);
}

/* TAXONOMY HEADER */
.taxonomy-header {
    background: var(--dark-navy);
    padding: 40px 0 32px;
}

.taxonomy-header h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

/* BREADCRUMBS */
.breadcrumbs {
    background: var(--dark-navy);
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs a {
    color: var(--gray);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--pink);
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: var(--gray);
}

/* FILTERS */
.filters-section {
    background: var(--darker-navy);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 57px;
    z-index: 999;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.filter-tab {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--light-gray);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-tab:hover {
    border-color: var(--pink);
    color: var(--white);
}

.filter-tab.active {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.filter-btn {
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--light-gray);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--pink);
}

.quick-filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--light-gray);
}

.quick-filter-item input {
    accent-color: var(--pink);
}

.sort-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.sort-select {
    padding: 9px 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--white);
    font-size: 13px;
}

/* LISTINGS */
.listings-section {
    padding: 32px 0 80px;
}

.listings-info {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 13px;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

/* CARD */
.listing-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.2s;
    position: relative;
}

.listing-card:hover {
    transform: translateY(-3px);
    border-color: var(--pink);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
}

/* === DESTAQUES SUTIS === */

/* Destaque - Glow rosa/roxo suave */
.listing-card.card-destaque {
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.15), 
                0 0 40px rgba(156, 39, 176, 0.1);
    border-color: rgba(233, 30, 99, 0.3);
}

.listing-card.card-destaque::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
    border-radius: 8px 8px 0 0;
    z-index: 5;
}

/* Boost - Glow azul/cyan suave */
.listing-card.card-boost {
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.15), 
                0 0 40px rgba(0, 188, 212, 0.1);
    border-color: rgba(33, 150, 243, 0.3);
}

.listing-card.card-boost::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2196f3, #00bcd4);
    border-radius: 8px 8px 0 0;
    z-index: 5;
}

/* Verificado - Apenas ícone discreto no título */
.listing-card.card-verificado {
    /* Sem glow, só o ícone no título */
}

/* Ícones de status ao lado do nome */
.name-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 9px;
    margin-left: 6px;
    vertical-align: middle;
}
.name-status-icon.icon-destaque {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #fff;
    box-shadow: 0 2px 6px rgba(233, 30, 99, 0.3);
}
.name-status-icon.icon-boost {
    background: linear-gradient(135deg, #2196f3, #00bcd4);
    color: #fff;
    box-shadow: 0 2px 6px rgba(33, 150, 243, 0.3);
}

.card-image-link {
    display: block;
}

.card-image {
    position: relative;
    width: 100%;
    padding-top: 133.33%;
    background: #2a3242;
    overflow: hidden;
}

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

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

.card-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 5;
}

.badge {
    padding: 4px 9px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.badge-verified {
    background: rgba(16, 185, 129, 0.9);
    color: var(--white);
}

.badge-online {
    background: rgba(239, 68, 68, 0.95);
    color: var(--white);
}

.badge-video {
    background: rgba(0, 0, 0, 0.85);
    color: var(--white);
}

.card-content {
    padding: 14px;
}

.card-title {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 700;
}

.card-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.card-title a:hover {
    color: var(--pink);
}

.card-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--gray);
}

.card-excerpt {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Category */
.card-category {
    display: inline-block;
    font-size: 11px;
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 6px;
}

/* Card Rating */
.card-rating {
    display: none;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.card-price strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--pink);
}

.price-label {
    font-size: 10px;
    color: var(--gray);
}

.btn-view-profile {
    padding: 7px 14px;
    background: var(--pink);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-view-profile:hover {
    background: var(--pink-hover);
    transform: scale(1.03);
}

/* NO RESULTS */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.no-results i {
    font-size: 56px;
    color: var(--border);
    margin-bottom: 20px;
}

/* PAGINATION */
.pagination-nav {
    margin: 50px 0 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    list-style: none;
}

.pagination li a,
.pagination li span {
    padding: 9px 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--light-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.pagination li a:hover,
.pagination li .current {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

/* NEARBY CITIES */
.nearby-cities {
    background: var(--dark-navy);
    padding: 50px 0;
    border-top: 1px solid var(--border);
}

.nearby-cities h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.city-card {
    padding: 14px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: all 0.2s;
}

.city-card:hover {
    border-color: var(--pink);
    transform: translateX(3px);
}

.city-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.city-count {
    font-size: 11px;
    color: var(--gray);
}

/* SEO CONTENT */
.seo-content {
    padding: 50px 0;
}

.seo-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.seo-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 14px;
}

/* FAQ */
.faq-section {
    margin-top: 50px;
}

.faq-section h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 18px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 18px 16px;
    margin: 0;
    font-size: 13px;
    color: var(--gray);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .listings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .listings-grid {
        grid-template-columns: 1fr;
    }
}

.text-success { color: #10b981 !important; }
.text-danger { color: #ef4444 !important; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--border-color);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--light-text);
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: var(--gray-text);
  transition: var(--transition);
}

.footer-menu a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--gray-text);
  font-size: 14px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .split-view-container {
    flex-direction: column;
    height: auto;
  }
  
  .map-section {
    position: relative;
    height: 400px;
    top: 0;
  }
  
  .listings-section {
    overflow-y: visible;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-search-form {
    flex-direction: column;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-navigation {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--darker-bg);
    flex-direction: column;
    padding: 20px;
    transition: var(--transition);
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    overflow-y: auto;
  }
  
  .main-navigation.active {
    left: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-menu > li {
    width: 100%;
  }
  
  .nav-menu > li > a {
    width: 100%;
  }
  
  .listings-grid {
    grid-template-columns: 1fr;
  }
  
  .filters-grid {
    grid-template-columns: 1fr;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.hidden {
  display: none !important;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Loading Spinner */
.spinner {
  border: 3px solid var(--border-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 40px auto;
}

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

/* ===== LISTINGS LAYOUT COM SIDEBAR ===== */
.listings-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 24px;
}

/* ===== SIDEBAR DE FILTROS ===== */
.filters-sidebar {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 80px;
    border: 1px solid var(--border);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.sidebar-header h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.btn-clear-text {
    background: none;
    border: none;
    color: var(--pink);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-clear-text:hover {
    opacity: 0.7;
}

/* FILTER SECTIONS */
.filter-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

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

.filter-section h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

/* NAV PILLS */
.nav-pills-filters {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.nav-pills-filters li a {
    display: block;
    padding: 10px 14px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--light-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-pills-filters li a:hover {
    border-color: var(--pink);
    color: var(--white);
}

.nav-pills-filters li a.active {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

/* FILTER SELECT */
.filter-select {
    width: 100%;
    padding: 10px 12px;
    background: var(--darker-navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-size: 13px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--pink);
}

/* RANGE INPUTS */
.range-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.range-input {
    flex: 1;
    padding: 10px 12px;
    background: var(--darker-navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-size: 13px;
    text-align: center;
}

.range-input:focus {
    outline: none;
    border-color: var(--pink);
}

.range-separator {
    color: var(--gray);
    font-weight: 600;
}

/* FILTER CHECKBOXES */
.filter-scroll {
    max-height: 200px;
    overflow-y: auto;
    margin: 0 -4px;
    padding: 0 4px;
}

.filter-scroll::-webkit-scrollbar {
    width: 6px;
}

.filter-scroll::-webkit-scrollbar-track {
    background: var(--darker-navy);
    border-radius: 3px;
}

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

.filter-check {
    margin-bottom: 10px;
}

.filter-check input[type="checkbox"] {
    display: none;
}

.filter-check label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 13px;
    color: var(--light-gray);
}

.filter-check label:hover {
    background: rgba(255, 255, 255, 0.03);
}

.filter-check input[type="checkbox"]:checked + label {
    background: rgba(233, 30, 99, 0.1);
    color: var(--white);
}

.filter-check input[type="checkbox"]:checked + label::before {
    content: '✓ ';
    color: var(--pink);
    font-weight: 700;
    margin-right: 4px;
}

.count-badge {
    background: var(--darker-navy);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
}

/* APPLY BUTTON */
.btn-apply-filters {
    width: 100%;
    padding: 12px;
    background: var(--pink);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 20px;
}

.btn-apply-filters:hover {
    background: var(--pink-hover);
    transform: translateY(-1px);
}

/* ===== CONTENT AREA ===== */
.listings-content {
    min-width: 0;
}

.page-header {
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

/* ACTIVE FILTERS BAR */
.active-filters-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.results-count {
    font-size: 14px;
    color: var(--gray);
    white-space: nowrap;
}

.results-count span {
    font-weight: 700;
    color: var(--white);
}

.active-filters-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: var(--pink);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.filter-tag-remove {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-tag-remove:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* TOOLBAR */
.listings-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

.view-toggle {
    display: flex;
    gap: 6px;
}

.view-btn {
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--light-gray);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.view-btn:hover {
    border-color: var(--pink);
    color: var(--white);
}

.view-btn.active {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

/* LOADING SPINNER */
.loading-spinner {
    text-align: center;
    padding: 40px;
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-top-color: var(--pink);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* LIST VIEW */
.list-view .listing-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}

.list-view .card-image {
    padding-top: 0;
    height: 100%;
}

.list-view .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .listings-layout {
        grid-template-columns: 260px 1fr;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .listings-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: relative;
        top: 0;
    }
    
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .active-filters-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .listings-toolbar {
        flex-direction: column;
        gap: 12px;
    }
    
    /* ===== CARD GRID MOBILE - 2 COLUNAS ===== */
    .listing-card {
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        background: var(--card-bg);
    }
    
    .listing-card .card-image-link {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    
    .listing-card .card-image {
        padding-top: 120%;
        height: auto;
        min-height: auto;
        border-radius: 8px 8px 0 0;
    }
    
    .listing-card .card-image img {
        border-radius: 8px 8px 0 0;
    }
    
    /* Badges compactos */
    .listing-card .card-badges {
        display: flex;
        top: 6px;
        left: 6px;
        gap: 4px;
    }
    
    .listing-card .badge {
        padding: 3px 6px;
        font-size: 8px;
        border-radius: 6px;
    }
    
    /* Badge destaque */
    .listing-card.card-destaque::after {
        top: 6px;
        right: 6px;
        padding: 3px 6px;
        font-size: 8px;
    }
    
    /* Conteúdo compacto */
    .listing-card .card-content {
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .listing-card .card-title {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 0;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .listing-card .card-title a {
        color: var(--white);
    }
    
    /* Esconder descrição no mobile grid */
    .listing-card .card-excerpt {
        display: none;
    }
    
    /* Meta compacto */
    .listing-card .card-meta {
        flex-direction: column;
        gap: 2px;
        margin-bottom: 0;
    }
    
    .listing-card .card-meta .meta-item {
        font-size: 11px;
        color: var(--gray);
    }
    
    .listing-card .card-meta .meta-item i {
        width: 12px;
        font-size: 10px;
    }
    
    /* Footer compacto */
    .listing-card .card-footer {
        display: flex;
        padding-top: 8px;
        border-top: 1px solid var(--border);
        margin-top: 6px;
    }
    
    .listing-card .card-price strong {
        font-size: 14px;
    }
    
    .listing-card .price-label {
        font-size: 9px;
    }
    
    .listing-card .btn-view-profile {
        display: none;
    }
    
    /* Rating no canto da imagem */
    .listing-card .card-rating {
        display: flex;
        position: absolute;
        bottom: 6px;
        left: 6px;
        background: rgba(0, 0, 0, 0.75);
        color: var(--white);
        padding: 3px 6px;
        border-radius: 4px;
        font-size: 10px;
        font-weight: 600;
        align-items: center;
        gap: 2px;
        z-index: 5;
    }
    
    .listing-card .card-rating::before {
        content: '★';
        color: #fbbf24;
        font-size: 9px;
    }
    
    /* Coração favorito */
    .listing-card .card-image::after {
        content: '♡';
        position: absolute;
        top: 6px;
        right: 6px;
        width: 24px;
        height: 24px;
        background: var(--pink);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 12px;
        z-index: 5;
    }
    
    /* Categoria */
    .listing-card .card-category {
        display: none;
    }
}