:root {
    --primary: #1b5e20;
    --primary-light: #2e7d32;
    --primary-dark: #003300;
    --primary-ultra: #e8f5e9;
    --accent: #25D366;
    --accent-dark: #128c7e;
    --amber: #f59e0b;
    --red: #ef4444;
    --blue: #3b82f6;
    --text: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg: #f3f4f6;
    --white: #ffffff;
    --border: #e5e7eb;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }

/* ========== HEADER / NAV ========== */
header {
    background: var(--white);
    padding: 0.85rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 2px solid var(--primary-ultra);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i { color: var(--primary); }
.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-nav {
    padding: 9px 18px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-nav-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
}

.btn-nav-outline:hover { background: var(--bg); }

.btn-nav-primary {
    background: var(--primary);
    color: white;
}

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

.btn-nav-wa {
    background: var(--accent);
    color: white;
}

.btn-nav-wa:hover { background: var(--accent-dark); }

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, #003300 0%, #1b5e20 50%, #2e7d32 100%);
    color: white;
    padding: 4rem 5% 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #d1fae5;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero h1 span { color: #86efac; }

.hero p {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-wa {
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-hero-wa:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ========== SEARCH BAR ========== */
.search-container {
    max-width: 900px;
    margin: 0 auto;
}

.search-bar {
    display: flex;
    background: white;
    border-radius: var(--radius-xl);
    padding: 8px;
    box-shadow: var(--shadow-xl);
    gap: 8px;
    flex-wrap: wrap;
}

.search-bar select {
    flex: 1;
    min-width: 150px;
    padding: 14px 16px;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    background: var(--bg);
    color: var(--text);
    outline: none;
    cursor: pointer;
    font-weight: 500;
}

.search-bar select:disabled {
    color: var(--text-light);
    cursor: not-allowed;
}

.search-bar .btn-search {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-bar .btn-search:hover { background: var(--primary-dark); }

/* ========== STATS BAR ========== */
.stats-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 5%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-item strong {
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
}

.stat-item i { color: var(--primary-light); }

/* ========== QUICK POST BANNER ========== */
.quick-post-section {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1.5px solid #fde68a;
    border-radius: var(--radius-xl);
    padding: 1.75rem 2rem;
    margin: 1.5rem 5%;
    box-shadow: var(--shadow-sm);
}

.quick-post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.quick-post-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400e;
}

.quick-post-header i { color: var(--amber); font-size: 1.2rem; }

.quick-post-textarea {
    width: 100%;
    padding: 14px;
    border: 1.5px solid #fde68a;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    background: white;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.quick-post-textarea:focus { border-color: var(--amber); }

.quick-post-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-parse {
    background: var(--amber);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-parse:hover { background: #d97706; }

.parsed-fields {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.parsed-fields.visible { display: grid; }

.parsed-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 4px;
}

.parsed-field input, .parsed-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #fde68a;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: white;
    color: var(--text);
    outline: none;
}

.btn-publish-quick {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
}

.btn-publish-quick:hover { background: var(--primary-light); }

/* ========== FILTERS ========== */
.filters {
    display: flex;
    gap: 0.6rem;
    padding: 1.25rem 5%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: center;
}

.filters::-webkit-scrollbar { display: none; }

.filters-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    margin-right: 4px;
}

.filter-btn {
    background: var(--white);
    border: 1.5px solid var(--border);
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* ========== LISTINGS GRID ========== */
.container {
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto 5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 10px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.section-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-top: 2px; }

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* ========== LISTING CARD ========== */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1.5px solid var(--border);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: #d1fae5;
}

.card-img-container {
    height: 230px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
}

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

.card:hover .card-img { transform: scale(1.06); }

/* Card Top Badges */
.card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge-urgent {
    background: var(--red);
    color: white;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-bulk {
    background: var(--blue);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-market {
    background: var(--amber);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Weight Badge (top right) */
.badge-weight {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 800;
    z-index: 2;
}

.card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.5rem;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-seller {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-seller .verified {
    color: #10b981;
    font-size: 0.8rem;
}

.card-seller strong { color: var(--text); font-weight: 600; }

.card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-location i { color: var(--red); font-size: 0.8rem; }

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-meta i { color: var(--primary-light); }

.card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.card-price small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
}

.btn-whatsapp {
    background: var(--accent);
    color: white;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    margin-top: 0.75rem;
}

.btn-whatsapp:hover {
    background: var(--accent-dark);
    transform: scale(1.01);
}

/* ========== TRUST SECTION ========== */
.trust-section {
    background: linear-gradient(135deg, var(--primary-ultra), #d1fae5);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin: 0 5% 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    border: 1.5px solid #a7f3d0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    color: var(--primary);
}

.trust-text h4 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.trust-text p {
    font-size: 0.82rem;
    color: #065f46;
}

/* ========== EMPTY STATE ========== */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.empty-state i { font-size: 3rem; color: var(--border); margin-bottom: 1rem; }
.empty-state p { font-size: 1.1rem; }

/* ========== FLOATING WHATSAPP ========== */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

.floating-wa:hover {
    transform: scale(1.1);
    color: white;
    animation: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ========== FOOTER ========== */
footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 5% 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.footer-logo i { color: var(--accent); }

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links li a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

/* ========== AUTH PAGES ========== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 1.5rem;
}

.auth-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-xl);
}

.auth-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.auth-logo i { color: var(--primary); }

.auth-title {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--bg);
    transition: all 0.2s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.social-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.25rem 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.social-divider::before, .social-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.btn-google {
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    transition: background 0.2s;
    font-size: 0.95rem;
}

.btn-google:hover { background: var(--bg); }

.btn-facebook {
    width: 100%;
    padding: 12px;
    border: none;
    background: #1877f2;
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    transition: background 0.2s;
    font-size: 0.95rem;
}

.btn-facebook:hover { background: #166fe5; }

.btn-wa-auth {
    width: 100%;
    padding: 12px;
    border: none;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
    font-size: 0.95rem;
}

.btn-wa-auth:hover { background: var(--accent-dark); }  

.bottom-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.bottom-link a { color: var(--primary); font-weight: 700; }
.bottom-link a:hover { text-decoration: underline; }

/* ========== btn-post (legacy compat) ========== */
.btn-post {
    background: var(--primary);
    color: white;
    padding: 11px 22px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

/* ========== MOBILE ========== */
@media (max-width: 768px) {
    .hero { padding: 2.5rem 4% 2rem; }
    .hero h1 { font-size: 1.9rem; }
    .hero p { font-size: 1rem; }

    .btn-hero-primary, .btn-hero-wa {
        padding: 14px 22px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero-cta { flex-direction: column; }

    .search-bar {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .search-bar select, .search-bar .btn-search {
        width: 100%;
        border-radius: var(--radius-md);
    }

    .stats-bar { gap: 1.25rem; padding: 0.75rem 4%; }
    .stat-item { font-size: 0.82rem; }

    .nav-links .btn-nav { padding: 8px 12px; font-size: 0.82rem; }

    .listings-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }

    .floating-wa { width: 55px; height: 55px; font-size: 1.7rem; bottom: 20px; right: 16px; }

    .card-img-container { height: 200px; }

    .quick-post-section { margin: 1rem 4%; padding: 1.25rem; }

    .trust-section { margin: 0 4% 1.5rem; padding: 1.25rem; }

    .container { padding: 0 4%; }

    .filters { padding: 1rem 4%; }

    footer { padding: 2rem 4% 1rem; }

    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .listings-grid { grid-template-columns: 1fr; }
    .stats-bar { flex-direction: column; gap: 0.6rem; padding: 1rem 4%; }
}
