/* acompanhantes24.com - Matching Next.js Design */

:root {
    --bg: #0a0a0a;
    --bg-card: #161616;
    --bg-hover: #1e1e1e;
    --border: #2a2a2a;
    --accent: #9333ea;
    --accent-hover: #a855f7;
    --text: #e5e5e5;
    --text-muted: #888888;
    --green: #25d366;
    --emerald: #10b981;
    --radius: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --glow: 0 0 20px rgba(147,51,234,0.3);
}

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

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

a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

/* ============================================ */
/* BUTTONS */
/* ============================================ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius); font-weight: 700;
    font-size: 14px; cursor: pointer; border: none; transition: all 0.3s;
    text-decoration: none; position: relative; overflow: hidden;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; box-shadow: var(--glow); }
.btn-outline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-outline:hover { border-color: rgba(147,51,234,0.5); color: var(--accent); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-success { background: var(--emerald); color: #fff; }
.btn-danger { background: #ef4444; color: #fff; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ============================================ */
/* HEADER */
/* ============================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    height: 64px; display: flex; align-items: center;
    background: rgba(10,10,10,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42,42,42,0.5);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 16px;
}
.logo {
    display: flex; align-items: center; gap: 6px;
    font-size: 18px; font-weight: 800; color: #fff;
}
.logo:hover { color: #fff; }
.logo-accent { color: var(--accent); }
.logo-text span { color: #fff; }
.main-nav { display: flex; gap: 4px; }
.nav-link {
    color: var(--text-muted); padding: 8px 14px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; transition: all 0.3s;
}
.nav-link:hover { color: #fff; background: var(--bg-hover); }
.nav-link.active { color: var(--accent); }
.menu-toggle {
    display: none; background: none; border: none; color: var(--text);
    font-size: 22px; cursor: pointer; padding: 8px;
}

/* Push content below fixed header */
body { padding-top: 64px; }

/* ============================================ */
/* HERO */
/* ============================================ */
.page-hero {
    background: linear-gradient(to bottom, rgba(147,51,234,0.15), rgba(147,51,234,0.05), var(--bg));
    padding: 64px 0 48px; text-align: center;
}
.page-hero h1 {
    font-size: 36px; font-weight: 800; color: #fff;
    margin-bottom: 12px; letter-spacing: -0.5px;
}
.page-hero h1 .accent { color: var(--accent); }
.page-hero p { color: var(--text-muted); font-size: 18px; }
.page-hero .count { color: var(--accent); font-weight: 700; }

.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 48px; margin-top: 40px;
}
.hero-stat { text-align: center; }
.hero-stat-number { font-size: 28px; font-weight: 800; color: var(--accent); }
.hero-stat-label {
    font-size: 11px; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 2px; margin-top: 4px;
}
.hero-divider { width: 1px; height: 32px; background: var(--border); }

/* ============================================ */
/* CATEGORY TABS */
/* ============================================ */
.category-tabs {
    display: flex; gap: 12px; margin-bottom: 32px;
}
.category-tab {
    flex: 1; text-align: center; padding: 16px 24px;
    border-radius: var(--radius); border: 1px solid var(--border);
    background: var(--bg-card); transition: all 0.3s; text-decoration: none;
}
.category-tab:hover { border-color: rgba(147,51,234,0.5); }
.category-tab.active {
    background: rgba(147,51,234,0.1); border-color: rgba(147,51,234,0.3);
}
.category-tab .tab-title {
    display: block; font-weight: 700; font-size: 18px; color: #fff;
}
.category-tab.active .tab-title { color: var(--accent); }
.category-tab .tab-count { color: var(--text-muted); font-size: 14px; }

/* ============================================ */
/* LISTING GRID */
/* ============================================ */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px; margin: 24px 0;
}

/* ============================================ */
/* LISTING CARD - Matching Next.js design */
/* ============================================ */
.listing-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    background: var(--bg-card); transition: all 0.3s;
}
.listing-card:hover { transform: translateY(-2px); }

.card-image {
    position: relative; display: block;
    aspect-ratio: 2/3; overflow: hidden;
}
.card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: all 0.3s;
}
.listing-card:hover .card-image img { transform: scale(1.03); }

/* Gradient overlay on image */
.card-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.1) 100%);
    pointer-events: none; transition: all 0.3s;
}
.listing-card:hover .card-image::after {
    background: linear-gradient(to top, rgba(147,51,234,0.6) 0%, rgba(147,51,234,0.1) 40%, transparent 100%);
}

/* Badges */
.card-badges {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    display: flex; flex-direction: column; gap: 4px;
}
.card-badge {
    padding: 3px 8px; border-radius: 6px; font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.card-badge.new { background: var(--emerald); color: #fff; }
.card-badge.verified { background: var(--accent); color: #fff; }
.card-badge.service {
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
    color: #fff; font-weight: 500;
}

.card-images-count {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
    color: #fff; padding: 3px 6px; border-radius: 6px;
    font-size: 10px; font-weight: 500;
    display: flex; align-items: center; gap: 4px;
}

/* Card bottom content - overlaid on image */
.card-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px; z-index: 2;
}
.card-online {
    display: flex; align-items: center; gap: 4px;
    margin-bottom: 4px;
}
.card-online-dot {
    width: 6px; height: 6px; background: #22c55e;
    border-radius: 50%; animation: pulse 2s infinite;
}
.card-online-text {
    font-size: 9px; color: #4ade80; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.card-name {
    font-size: 14px; font-weight: 700; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.card-name a { color: inherit; }
.card-name .card-age { color: rgba(255,255,255,0.7); font-size: 12px; margin-left: 4px; }

.card-location {
    font-size: 11px; color: rgba(255,255,255,0.5);
    display: flex; align-items: center; gap: 4px; margin-top: 2px;
}
.card-location i { font-size: 9px; }

.card-desc {
    font-size: 10px; color: rgba(255,255,255,0.4);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-top: 2px;
}

/* Card bottom action bar */
.card-action {
    display: flex; align-items: center; gap: 4px;
    padding: 8px; background: var(--bg-card);
    border-top: 1px solid rgba(42,42,42,0.3);
}
.card-action a {
    flex: 1; text-align: center; padding: 12px 16px;
    background: rgba(147,51,234,0.1); color: var(--accent);
    border-radius: var(--radius); font-size: 13px; font-weight: 600;
    transition: all 0.3s;
}
.card-action a:hover {
    background: rgba(147,51,234,0.2); box-shadow: var(--glow);
}

/* ============================================ */
/* SECTION HEADERS */
/* ============================================ */
.section-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
}
.section-header h2 { color: #fff; font-size: 22px; font-weight: 700; }

/* ============================================ */
/* FILTERS */
/* ============================================ */
.filters-bar {
    display: flex; align-items: stretch; margin-bottom: 20px;
    background: var(--bg-card); border-radius: var(--radius);
    border: 1px solid var(--border); overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.filter-group {
    flex: 1; display: flex; align-items: center; gap: 8px;
    padding: 12px 16px; border-right: 1px solid rgba(42,42,42,0.5);
}
.filter-group:last-child { border-right: none; }
.filter-group i { color: var(--text-muted); font-size: 14px; }
.filter-select, .filter-input {
    background: transparent; color: var(--text); border: none;
    font-size: 14px; width: 100%; cursor: pointer;
}
.filter-select:focus, .filter-input:focus { outline: none; }
.filter-select option { background: var(--bg-card); color: var(--text); }

/* ============================================ */
/* SIDEBAR */
/* ============================================ */
.layout-with-sidebar {
    display: grid; grid-template-columns: 1fr 280px; gap: 24px;
}
.sidebar { position: sticky; top: 80px; align-self: start; }
.sidebar-box {
    background: var(--bg-card); border-radius: var(--radius);
    border: 1px solid var(--border); padding: 16px; margin-bottom: 16px;
}
.sidebar-box h3 {
    font-size: 14px; font-weight: 600; color: #fff;
    margin-bottom: 12px; padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.sidebar-list { list-style: none; }
.sidebar-list li { margin-bottom: 2px; }
.sidebar-list a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 10px; color: var(--text-muted); border-radius: var(--radius-sm);
    font-size: 13px; transition: all 0.3s;
}
.sidebar-list a:hover { background: rgba(147,51,234,0.1); color: var(--accent); }
.count-badge {
    background: var(--bg); padding: 2px 8px; border-radius: 10px;
    font-size: 11px; color: var(--text-muted);
}

/* ============================================ */
/* PROFILE / DETAIL PAGE */
/* ============================================ */
.profile-header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 30px 0;
}

/* Gallery */
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 6px; border-radius: var(--radius); overflow: hidden;
}
.gallery-main {
    grid-column: span 2; grid-row: span 2;
    aspect-ratio: 3/4; cursor: pointer; overflow: hidden;
}
.gallery-main img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.3s;
}
.gallery-main:hover img { transform: scale(1.02); }
.gallery-thumb {
    aspect-ratio: 1; cursor: pointer; overflow: hidden; position: relative;
}
.gallery-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: all 0.3s; opacity: 0.7;
}
.gallery-thumb:hover img { opacity: 1; }
.gallery-thumb.active img { opacity: 1; }
.gallery-more {
    position: absolute; inset: 0; background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 14px; font-weight: 600;
}

.profile-info { padding: 10px 0; }
.profile-name {
    font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 12px;
}
.profile-meta {
    display: flex; flex-wrap: wrap; gap: 16px; color: var(--text-muted);
    font-size: 14px; margin-bottom: 20px;
}
.profile-meta span { display: flex; align-items: center; gap: 6px; }
.profile-meta i { color: var(--accent); font-size: 13px; }

/* Contact buttons - matching Next.js */
.profile-contact { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.contact-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%; padding: 16px; border-radius: var(--radius);
    font-weight: 700; font-size: 16px; cursor: pointer; border: none;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.contact-btn.phone { background: var(--accent); color: #fff; }
.contact-btn.phone:hover { box-shadow: 0 0 30px rgba(147,51,234,0.3); }
.contact-btn.whatsapp { background: #25d366; color: #fff; }
.contact-btn.whatsapp:hover { box-shadow: 0 0 30px rgba(37,211,102,0.3); }
.contact-blurred { filter: blur(5px); user-select: none; }

.profile-description {
    color: var(--text); font-size: 15px; line-height: 1.7;
    margin-bottom: 20px; max-height: 200px; overflow: hidden;
    position: relative;
}
.profile-description.expanded { max-height: none; }
.profile-description .read-more {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 0 0;
    background: linear-gradient(transparent, var(--bg));
    text-align: center;
}

/* Profile tabs */
.profile-tabs {
    border-bottom: 1px solid rgba(42,42,42,0.5); margin-bottom: 24px;
    display: flex; gap: 0;
}
.profile-tab {
    position: relative; padding: 12px 20px; font-size: 14px;
    font-weight: 500; color: var(--text-muted); cursor: pointer;
    background: none; border: none; transition: color 0.3s;
}
.profile-tab:hover { color: #fff; }
.profile-tab.active { color: var(--accent); }
.profile-tab.active::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--accent); border-radius: 2px;
}

/* Services */
.services-grid { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.service-badge {
    background: rgba(147,51,234,0.12); color: var(--accent);
    padding: 6px 14px; border-radius: var(--radius); font-size: 13px; font-weight: 500;
}

/* Details grid */
.details-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 8px; margin: 16px 0;
}
.detail-item {
    display: flex; justify-content: space-between;
    padding: 10px 14px; background: var(--bg-card);
    border-radius: var(--radius-sm); border: 1px solid var(--border);
    font-size: 14px;
}
.detail-label { color: var(--text-muted); }
.detail-value { color: #fff; font-weight: 500; }

/* Reactions */
.reactions { display: flex; gap: 8px; margin: 20px 0; }
.reaction-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 20px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    color: var(--text-muted); cursor: pointer; transition: all 0.3s;
    font-size: 14px;
}
.reaction-btn:hover { border-color: rgba(147,51,234,0.5); }
.reaction-btn.active-like { border-color: var(--emerald); color: var(--emerald); background: rgba(16,185,129,0.1); }
.reaction-btn.active-dislike { border-color: #ef4444; color: #ef4444; background: rgba(239,68,68,0.1); }

/* ============================================ */
/* PAGINATION */
/* ============================================ */
.pagination { display: flex; justify-content: center; gap: 6px; margin: 32px 0; }
.pagination a, .pagination span {
    display: flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px;
    border-radius: var(--radius-sm); font-size: 14px;
    color: var(--text-muted); background: var(--bg-card);
    border: 1px solid var(--border); transition: all 0.3s;
}
.pagination a:hover { border-color: rgba(147,51,234,0.5); color: var(--accent); }
.pagination .active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================ */
/* DISTRICTS */
/* ============================================ */
.districts-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; margin: 24px 0;
}
.district-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px; text-align: center;
    transition: all 0.3s; text-decoration: none;
}
.district-card:hover { border-color: rgba(147,51,234,0.5); transform: translateY(-2px); }
.district-card h3 { font-size: 16px; color: #fff; margin-bottom: 4px; font-weight: 600; }
.district-card .district-count { color: var(--accent); font-weight: 600; font-size: 13px; }

/* ============================================ */
/* SEARCH */
/* ============================================ */
.search-form {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px; margin-bottom: 24px;
}
.form-row {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px; margin-bottom: 12px;
}
.form-group { margin-bottom: 12px; }
.form-group label {
    display: block; font-size: 11px; font-weight: 600;
    color: var(--text-muted); margin-bottom: 4px;
    text-transform: uppercase; letter-spacing: 1px;
}
.form-control {
    width: 100%; background: var(--bg); color: var(--text);
    border: 1px solid var(--border); padding: 12px 14px;
    border-radius: var(--radius-md); font-size: 14px; transition: border-color 0.3s;
}
.form-control:focus { outline: none; border-color: var(--accent); }
.form-control option { background: var(--bg-card); }

/* ============================================ */
/* AGE GATE */
/* ============================================ */
#age-gate {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
}
.age-gate-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.9);
    display: flex; align-items: center; justify-content: center; padding: 16px;
}
.age-gate-box {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 32px; text-align: center;
    max-width: 400px; width: 100%;
}
.age-gate-box h2 { font-size: 24px; color: #fff; font-weight: 700; margin-bottom: 16px; }
.age-gate-box p { color: var(--text-muted); margin-bottom: 24px; }
.age-gate-buttons { display: flex; gap: 12px; }
.age-gate-buttons .btn { flex: 1; justify-content: center; padding: 12px; }

/* ============================================ */
/* FOOTER */
/* ============================================ */
.site-footer {
    background: var(--bg-card); border-top: 1px solid var(--border);
    margin-top: 48px;
}
.footer-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; padding: 40px 0;
}
.footer-col h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: 14px; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-seo {
    border-top: 1px solid rgba(42,42,42,0.5); padding: 24px 0;
}
.footer-seo h3 { font-size: 16px; color: #fff; margin-bottom: 8px; font-weight: 600; }
.footer-seo p { color: var(--text-muted); font-size: 13px; line-height: 1.8; margin-bottom: 16px; }
.footer-bottom {
    border-top: 1px solid rgba(42,42,42,0.5); padding: 20px 0;
    text-align: center; color: var(--text-muted); font-size: 12px;
}

/* Back to top */
.back-to-top {
    position: fixed; bottom: 20px; right: 20px;
    width: 44px; height: 44px; background: var(--accent); color: #fff;
    border: none; border-radius: 50%; cursor: pointer;
    opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 99;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent-hover); box-shadow: var(--glow); }

/* ============================================ */
/* LIGHTBOX */
/* ============================================ */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: #000; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5); border: none; cursor: pointer;
    font-size: 20px; width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.2); color: #fff;
}
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ============================================ */
/* ADMIN */
/* ============================================ */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--bg-card); border-right: 1px solid var(--border); padding: 20px; }
.admin-sidebar h3 { color: var(--accent); margin-bottom: 20px; font-size: 18px; }
.admin-sidebar a {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; color: var(--text-muted); border-radius: var(--radius-sm);
    margin-bottom: 4px; font-size: 14px; transition: all 0.3s;
}
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(147,51,234,0.1); color: var(--accent); }
.admin-content { padding: 30px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
    padding: 12px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px;
}
.admin-table th { color: var(--text-muted); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.admin-table tr:hover { background: var(--bg-hover); }
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px; text-align: center;
}
.stat-number { font-size: 36px; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 1024px) {
    .listing-grid { grid-template-columns: repeat(3, 1fr); }
    .districts-grid { grid-template-columns: repeat(3, 1fr); }
    .layout-with-sidebar { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .profile-header { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .listing-grid { grid-template-columns: repeat(2, 1fr); }
    .districts-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .main-nav {
        display: none; position: fixed; top: 64px; right: 0;
        width: 280px; height: calc(100vh - 64px);
        background: var(--bg-card); border-left: 1px solid rgba(42,42,42,0.5);
        flex-direction: column; padding: 16px; box-shadow: -4px 0 20px rgba(0,0,0,0.3);
        z-index: 49;
    }
    .main-nav.open { display: flex; }
    .nav-link { padding: 12px; border-radius: var(--radius-md); }
    .menu-toggle { display: block; }
    .page-hero h1 { font-size: 24px; }
    .page-hero { padding: 40px 0 30px; }
    .hero-stats { gap: 24px; }
    .hero-stat-number { font-size: 22px; }
    .profile-name { font-size: 22px; }
    .details-grid { grid-template-columns: 1fr; }
    .filters-bar { flex-direction: column; }
    .filter-group { border-right: none; border-bottom: 1px solid rgba(42,42,42,0.5); }
    .filter-group:last-child { border-bottom: none; }
    .category-tabs { flex-direction: column; gap: 8px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-main { grid-column: span 3; grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
    .listing-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .districts-grid { grid-template-columns: repeat(2, 1fr); }
    .age-gate-buttons { flex-direction: column; }
    body { padding-top: 64px; }
}
