/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background:#0a0a0f;
    color:#c8c8d0;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
}
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
img { max-width:100%; display:block; }
.container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* ===== HEADER ===== */
header {
    position:sticky; top:0; z-index:100;
    background:rgba(10,10,15,0.95);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.06);
}
.header-inner {
    display:flex; align-items:center; justify-content:space-between;
    height:64px;
}
.logo { display:flex; align-items:center; gap:8px; font-size:1.3rem; }
.logo-icon { color:#e84393; font-size:1.5rem; }
.logo-text { color:#e0e0e8; letter-spacing:-0.5px; }
.logo-text strong { color:#fff; }

nav { display:flex; align-items:center; gap:28px; }
nav a { font-size:0.9rem; color:#888; transition:color .2s; font-weight:500; }
nav a:hover { color:#e0e0e8; }

/* Mobile nav overlay */
nav.mobile-open {
    display:flex !important;
    position:fixed; top:64px; left:0; right:0; bottom:0;
    background:rgba(10,10,15,0.98);
    flex-direction:column;
    padding:24px 20px;
    gap:16px;
    z-index:99;
    animation:fadeSlide .2s ease;
}
nav.mobile-open a { font-size:1.05rem; padding:8px 0; }
nav.mobile-open .btn-post { text-align:center; padding:12px 20px; }

.btn-post {
    background:linear-gradient(135deg, #e84393, #d63384);
    color:#fff !important;
    padding:8px 20px;
    border-radius:8px;
    font-weight:600;
    font-size:0.85rem;
    transition:transform .15s, box-shadow .2s;
}
.btn-post:hover {
    transform:translateY(-1px);
    box-shadow:0 4px 20px rgba(232,67,147,0.35);
}

.mobile-menu {
    display:none; background:none; border:none; color:#fff;
    font-size:1.5rem; cursor:pointer;
}

/* ===== HERO ===== */
.hero {
    padding:60px 0 50px;
    text-align:center;
    background:linear-gradient(180deg, rgba(232,67,147,0.08) 0%, transparent 100%);
}
.hero h1 {
    font-size:2.8rem; font-weight:700; color:#fff;
    letter-spacing:-1px; margin-bottom:10px;
}
.hero p { color:#777; font-size:1.05rem; margin-bottom:32px; }

.search-bar {
    display:flex; gap:10px; max-width:640px; margin:0 auto;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px;
    padding:6px;
}
.search-bar select {
    flex:1; padding:12px 16px;
    background:#13131a; color:#c8c8d0;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:8px; font-size:0.9rem;
    font-family:inherit; cursor:pointer;
    appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 12px center;
}
.search-bar select:focus { outline:none; border-color:rgba(232,67,147,0.4); }

.btn-search {
    background:linear-gradient(135deg, #e84393, #d63384);
    color:#fff; border:none;
    padding:12px 28px; border-radius:8px;
    font-weight:600; font-size:0.9rem;
    cursor:pointer; font-family:inherit;
    transition:opacity .2s;
}
.btn-search:hover { opacity:0.9; }

/* Advanced filters */
.advanced-toggle {
    text-align:center; margin-top:14px;
    font-size:0.82rem; color:#e84393; cursor:pointer;
    transition:opacity .2s;
}
.advanced-toggle:hover { opacity:0.8; }

.advanced-filters {
    max-width:740px; margin:16px auto 0;
    animation:fadeSlide .3s ease;
}
@keyframes fadeSlide { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

.filter-row {
    display:flex; gap:8px; margin-bottom:8px;
}
.filter-row select {
    flex:1; padding:10px 12px;
    background:#13131a; color:#c8c8d0;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:8px; font-size:0.82rem;
    font-family:inherit; cursor:pointer;
    appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 10px center;
}
.filter-row select:focus { outline:none; border-color:rgba(232,67,147,0.4); }

.filter-range {
    flex:1; display:flex; align-items:center; gap:6px;
    background:#13131a; border:1px solid rgba(255,255,255,0.08);
    border-radius:8px; padding:0 10px;
}
.filter-range label {
    font-size:0.72rem; color:#555; white-space:nowrap;
    text-transform:uppercase; letter-spacing:0.3px;
}
.filter-range input {
    width:50px; padding:10px 4px;
    background:transparent; border:none;
    color:#c8c8d0; font-size:0.82rem;
    font-family:inherit; text-align:center;
}
.filter-range input:focus { outline:none; }
.filter-range input::placeholder { color:#444; }
.filter-range span { color:#333; font-size:0.8rem; }

/* ===== CITIES STRIP ===== */
.cities-strip { padding:40px 0 20px; }
.cities-grid {
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:14px;
}
.city-card {
    position:relative; border-radius:12px; overflow:hidden;
    background:#16161e;
    transition:transform .2s, box-shadow .2s;
}
.city-card:hover {
    transform:translateY(-3px);
    box-shadow:0 8px 30px rgba(0,0,0,0.4);
}
.city-img {
    height:120px;
    background-size:cover; background-position:center;
    background-color:#1e1e2a;
}
.city-info {
    padding:12px 14px;
    display:flex; justify-content:space-between; align-items:center;
}
.city-info h3 { font-size:0.9rem; color:#e0e0e8; font-weight:600; }
.city-info .count {
    font-size:0.75rem; color:#e84393; font-weight:500;
    background:rgba(232,67,147,0.12);
    padding:3px 8px; border-radius:20px;
}

/* ===== LISTINGS ===== */
.listings { padding:40px 0 60px; }
.section-header {
    display:flex; justify-content:space-between; align-items:center;
    margin-bottom:24px;
}
.section-header h2 { font-size:1.5rem; color:#fff; font-weight:700; }

.view-toggle { display:flex; gap:4px; }
.view-toggle button {
    background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08);
    color:#666; padding:6px 10px; border-radius:6px;
    cursor:pointer; font-size:0.85rem; transition:all .2s;
}
.view-toggle button.active,
.view-toggle button:hover { color:#e84393; border-color:rgba(232,67,147,0.3); }

.ads-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
}

.ad-card {
    background:#13131a;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:14px;
    overflow:hidden;
    transition:transform .2s, border-color .2s;
    position:relative;
}
.ad-card:hover {
    transform:translateY(-2px);
    border-color:rgba(255,255,255,0.12);
}
.ad-card.featured { border-color:rgba(232,67,147,0.25); }
.ad-card.featured::before {
    content:'';
    position:absolute; top:0; left:0; right:0; height:2px;
    background:linear-gradient(90deg, #e84393, #fd79a8);
}

/* List view */
.ads-grid.list-view { grid-template-columns:1fr; }
.ads-grid.list-view .ad-card {
    display:flex; flex-direction:row;
}
.ads-grid.list-view .ad-img {
    width:180px; min-width:180px; height:auto; min-height:160px;
    border-radius:14px 0 0 14px;
}
.ads-grid.list-view .ad-body {
    flex:1; display:flex; flex-direction:column; justify-content:center;
}

.badge {
    position:absolute; top:12px; left:12px; z-index:2;
    padding:4px 10px; border-radius:6px;
    font-size:0.7rem; font-weight:700; text-transform:uppercase;
    letter-spacing:0.5px;
}
.badge.vip {
    background:linear-gradient(135deg, #e84393, #d63384);
    color:#fff;
}

.ad-img {
    height:220px;
    background-size:cover; background-position:center top;
    background-color:#1a1a24;
    position:relative;
}
.img-count {
    position:absolute; bottom:8px; right:8px;
    background:rgba(0,0,0,0.7); color:#aaa;
    padding:3px 8px; border-radius:4px;
    font-size:0.7rem;
}

.ad-body { padding:16px; }
.ad-body h3 { font-size:1rem; color:#e0e0e8; margin-bottom:8px; font-weight:600; }
.ad-body h3 a { transition:color .2s; }
.ad-body h3 a:hover { color:#e84393; }

.ad-meta {
    display:flex; gap:14px; margin-bottom:10px;
    font-size:0.82rem; color:#666;
}
.ad-tags { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:12px; }
.ad-tags span {
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.06);
    padding:3px 10px; border-radius:20px;
    font-size:0.73rem; color:#888;
}

.ad-footer {
    display:flex; justify-content:space-between; align-items:center;
    padding-top:12px;
    border-top:1px solid rgba(255,255,255,0.05);
}
.ad-footer .price { color:#e84393; font-weight:700; font-size:1rem; }
.ad-footer .posted { color:#555; font-size:0.78rem; }
.ad-footer .views { color:#555; font-size:0.78rem; }

/* Nationality */
.ad-meta .nationality { color:#888; }

/* Sort bar */
.sort-bar {
    display:flex; align-items:center; gap:12px;
    margin-bottom:20px; flex-wrap:wrap;
}
.sort-bar label { font-size:0.82rem; color:#666; white-space:nowrap; }
.sort-bar select {
    padding:8px 32px 8px 12px;
    background:#13131a; color:#c8c8d0;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:8px; font-size:0.82rem;
    font-family:inherit; cursor:pointer;
    appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 10px center;
}
.sort-bar select:focus { outline:none; border-color:rgba(232,67,147,0.4); }
.sort-bar .result-count { font-size:0.82rem; color:#555; margin-left:auto; }

/* Theme toggle */
.theme-toggle {
    background:none; border:1px solid rgba(255,255,255,0.08);
    color:#666; width:36px; height:36px;
    border-radius:8px; cursor:pointer;
    font-size:1.1rem; display:flex;
    align-items:center; justify-content:center;
    transition:all .2s; margin-left:8px;
}
.theme-toggle:hover { border-color:rgba(232,67,147,0.3); color:#e84393; }

/* ===== LIGHT THEME ===== */
body.light {
    background:#f5f5f7; color:#333;
}
body.light header {
    background:rgba(255,255,255,0.95);
    border-bottom-color:rgba(0,0,0,0.06);
}
body.light nav a { color:#666; }
body.light nav a:hover { color:#333; }
body.light .logo-text { color:#333; }
body.light .logo-text strong { color:#111; }
body.light .hero { background:linear-gradient(180deg, rgba(232,67,147,0.06) 0%, transparent 100%); }
body.light .hero h1 { color:#111; }
body.light .hero p { color:#888; }
body.light .search-bar { background:rgba(0,0,0,0.02); border-color:rgba(0,0,0,0.08); }
body.light .search-bar select { background:#fff; color:#333; border-color:rgba(0,0,0,0.1); }
body.light .ad-card { background:#fff; border-color:rgba(0,0,0,0.06); }
body.light .ad-card:hover { border-color:rgba(0,0,0,0.12); }
body.light .ad-body h3 a { color:#222; }
body.light .ad-meta span { color:#888; }
body.light .ad-tags span { background:rgba(0,0,0,0.04); border-color:rgba(0,0,0,0.06); color:#666; }
body.light .city-card { background:#fff; }
body.light .city-info h3 { color:#222; }
body.light .cat-item { background:#fff; border-color:rgba(0,0,0,0.06); }
body.light .cat-name { color:#222; }
body.light .section-header h2 { color:#111; }
body.light .categories h2 { color:#111; }
body.light .seo-text h2 { color:#555; }
body.light .seo-text p { color:#888; }
body.light footer { background:#fafafa; border-top-color:rgba(0,0,0,0.06); }
body.light .footer-col h4 { color:#222; }
body.light .footer-col p, body.light .footer-col li a { color:#888; }
body.light .footer-bottom { border-top-color:rgba(0,0,0,0.06); }
body.light .footer-bottom p { color:#aaa; }
body.light .btn-more { background:rgba(0,0,0,0.03); border-color:rgba(0,0,0,0.1); color:#666; }
body.light .sort-bar select { background:#fff; color:#333; border-color:rgba(0,0,0,0.1); }
body.light .sort-bar label { color:#888; }
body.light .filter-row select { background:#fff; color:#333; border-color:rgba(0,0,0,0.1); }
body.light .filter-range { background:#fff; border-color:rgba(0,0,0,0.1); }
body.light .filter-range input { color:#333; }
body.light .view-toggle button { background:rgba(0,0,0,0.03); border-color:rgba(0,0,0,0.08); color:#888; }
body.light nav.mobile-open { background:rgba(255,255,255,0.98); }
body.light .theme-toggle { border-color:rgba(0,0,0,0.1); color:#888; }

.load-more { text-align:center; margin-top:36px; }
.btn-more {
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    color:#aaa; padding:14px 40px;
    border-radius:10px; font-size:0.9rem;
    cursor:pointer; font-family:inherit;
    font-weight:500;
    transition:all .2s;
}
.btn-more:hover {
    border-color:rgba(232,67,147,0.3);
    color:#e84393;
    background:rgba(232,67,147,0.05);
}

/* ===== CATEGORIES ===== */
.categories { padding:40px 0 60px; }
.categories h2 {
    font-size:1.5rem; color:#fff; font-weight:700;
    margin-bottom:24px;
}
.cat-grid {
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:14px;
}
.cat-item {
    background:#13131a;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:12px;
    padding:24px 16px;
    text-align:center;
    transition:all .2s;
}
.cat-item:hover {
    border-color:rgba(232,67,147,0.25);
    transform:translateY(-2px);
}
.cat-icon { display:block; font-size:1.8rem; margin-bottom:10px; }
.cat-name {
    display:block; font-size:0.9rem; color:#e0e0e8;
    font-weight:600; margin-bottom:4px;
}
.cat-count {
    font-size:0.78rem; color:#666;
}

/* ===== SEO TEXT ===== */
.seo-text {
    padding:40px 0;
    border-top:1px solid rgba(255,255,255,0.04);
}
.seo-text h2 {
    font-size:1.2rem; color:#999; font-weight:600;
    margin-bottom:14px;
}
.seo-text p {
    font-size:0.88rem; color:#555; line-height:1.8;
    margin-bottom:12px;
}

/* ===== FOOTER ===== */
footer {
    background:#08080d;
    border-top:1px solid rgba(255,255,255,0.04);
    padding:50px 0 30px;
}
.footer-grid {
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:40px;
}
.footer-col h4 {
    color:#e0e0e8; font-size:0.95rem; font-weight:600;
    margin-bottom:14px;
}
.footer-col p { font-size:0.85rem; color:#555; line-height:1.7; }
.footer-col ul { display:flex; flex-direction:column; gap:8px; }
.footer-col li a {
    font-size:0.85rem; color:#555;
    transition:color .2s;
}
.footer-col li a:hover { color:#e84393; }

.footer-bottom {
    border-top:1px solid rgba(255,255,255,0.04);
    padding-top:20px; text-align:center;
}
.footer-bottom p { font-size:0.8rem; color:#444; }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
    .ads-grid { grid-template-columns:repeat(2, 1fr); }
    .cities-grid { grid-template-columns:repeat(3, 1fr); }
    .cat-grid { grid-template-columns:repeat(3, 1fr); }
    .footer-grid { grid-template-columns:repeat(2, 1fr); gap:30px; }
}

@media (max-width:768px) {
    .hero h1 { font-size:2rem; }
    .search-bar { flex-direction:column; }
    .cities-grid { grid-template-columns:repeat(2, 1fr); }
    .cat-grid { grid-template-columns:repeat(2, 1fr); }
    .ads-grid { grid-template-columns:1fr; }
    .ad-img { height:260px; }
    nav { display:none; }
    .mobile-menu { display:block; }
    .footer-grid { grid-template-columns:1fr; gap:24px; }
}

@media (max-width:480px) {
    .hero { padding:40px 0 30px; }
    .hero h1 { font-size:1.6rem; }
    .cities-grid { grid-template-columns:1fr 1fr; gap:10px; }
    .city-img { height:90px; }
    .cat-grid { grid-template-columns:1fr 1fr; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width:8px; }
::-webkit-scrollbar-track { background:#0a0a0f; }
::-webkit-scrollbar-thumb { background:#222; border-radius:4px; }
::-webkit-scrollbar-thumb:hover { background:#333; }

/* ===== SELECTION ===== */
::selection { background:rgba(232,67,147,0.3); color:#fff; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,0.04);
    font-size:0.82rem; color:#444;
}
.breadcrumb a { color:#666; transition:color .2s; }
.breadcrumb a:hover { color:#e84393; }
.breadcrumb span { margin:0 6px; color:#333; }
.breadcrumb .current { color:#888; }

/* ===== PAGE HERO ===== */
.page-hero {
    padding:36px 0 28px;
    border-bottom:1px solid rgba(255,255,255,0.04);
}
.page-hero h1 { font-size:2rem; color:#fff; font-weight:700; margin-bottom:6px; }
.page-hero p { color:#666; font-size:0.95rem; margin-bottom:20px; }

/* Filter Chips */
.filter-chips { display:flex; flex-wrap:wrap; gap:8px; }
.chip {
    padding:7px 16px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.07);
    border-radius:20px;
    font-size:0.8rem; color:#888;
    transition:all .2s;
}
.chip:hover { border-color:rgba(232,67,147,0.3); color:#e0e0e8; }
.chip.active {
    background:rgba(232,67,147,0.1);
    border-color:rgba(232,67,147,0.3);
    color:#e84393;
}

/* ===== PAGINATION ===== */
.pagination-bar {
    display:flex; align-items:center; justify-content:center;
    gap:12px; margin-top:40px; padding-top:24px;
    border-top:1px solid rgba(255,255,255,0.04);
}
.pg-nums { display:flex; gap:4px; }
.pg-nums a, .pg-prev, .pg-next {
    padding:8px 14px;
    background:#13131a;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:6px;
    font-size:0.82rem; color:#888;
    transition:all .2s;
}
.pg-nums a:hover, .pg-prev:hover, .pg-next:hover { border-color:rgba(232,67,147,0.3); color:#e84393; }
.pg-nums a.active {
    background:linear-gradient(135deg, #e84393, #d63384);
    color:#fff; border-color:transparent;
}

/* ===== NO RESULTS ===== */
.no-results {
    grid-column:1/-1;
    text-align:center;
    padding:60px 20px;
}
.no-results p { color:#555; font-size:1rem; margin-bottom:20px; }
.no-results .btn-post { display:inline-block; }

/* ===== SUCCESS MSG ===== */
.success-msg {
    background:rgba(74,222,128,0.08);
    border:1px solid rgba(74,222,128,0.2);
    border-radius:12px;
    padding:24px;
    text-align:center;
}
.success-msg p { color:#4ade80; font-size:0.95rem; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position:fixed; bottom:24px; right:24px;
    width:44px; height:44px;
    background:rgba(232,67,147,0.9);
    color:#fff; border:none; border-radius:50%;
    font-size:1.2rem; cursor:pointer;
    opacity:0; visibility:hidden;
    transition:opacity .3s, visibility .3s, transform .2s;
    z-index:90;
    box-shadow:0 4px 16px rgba(0,0,0,0.3);
}
.back-to-top.visible { opacity:1; visibility:visible; }
.back-to-top:hover { transform:translateY(-2px); }

/* ===== RESPONSIVE ADVANCED FILTERS ===== */
@media (max-width:768px) {
    .filter-row { flex-wrap:wrap; }
    .filter-row select, .filter-range { flex:1 1 calc(50% - 4px); min-width:calc(50% - 4px); }
}
@media (max-width:480px) {
    .filter-row select, .filter-range { flex:1 1 100%; }
}

/* ===== VIEW PROFILE BUTTON ===== */
.ad-card {
    display:flex;
    flex-direction:column;
}
.ad-body {
    flex:1;
    display:flex;
    flex-direction:column;
}
.ad-footer {
    margin-top:auto;
}
.btn-view {
    display:block;
    text-align:center;
    padding:12px 16px;
    font-size:0.85rem;
    font-weight:600;
    color:#e84393;
    border-top:1px solid rgba(255,255,255,0.06);
    transition:all .2s;
}
.btn-view:hover {
    background:rgba(232,67,147,0.06);
    color:#fd79a8;
}

/* ===== HERO STATS ===== */
.hero-stats {
    display:flex; justify-content:center; gap:32px;
    margin:28px 0 24px;
}
.hero-stat {
    text-align:center;
}
.hero-stat .stat-num {
    display:block; font-size:1.5rem; font-weight:700; color:#e84393;
}
.hero-stat .stat-lbl {
    font-size:0.75rem; color:#666; text-transform:uppercase; letter-spacing:0.5px;
}

/* ===== HERO FEATURED ===== */
.hero-featured {
    margin:20px auto 0; max-width:640px;
}
.hero-featured-label {
    display:block; text-align:center;
    font-size:0.82rem; color:#888; margin-bottom:12px; font-weight:500;
}
.hero-featured-grid {
    display:grid; grid-template-columns:repeat(4, 1fr); gap:10px;
}
.hero-card {
    background:#13131a; border:1px solid rgba(255,255,255,0.06);
    border-radius:10px; overflow:hidden; transition:all .2s;
}
.hero-card:hover {
    border-color:rgba(232,67,147,0.3); transform:translateY(-2px);
}
.hero-card-img {
    height:100px; background-size:cover; background-position:center top;
    background-color:#1a1a24;
}
.hero-card-info {
    padding:8px 10px;
    display:flex; justify-content:space-between; align-items:center;
}
.hero-card-name {
    font-size:0.75rem; color:#e0e0e8; font-weight:600;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:70%;
}
.hero-card-price {
    font-size:0.72rem; color:#e84393; font-weight:600;
}

/* ===== HERO TAGS ===== */
.hero-tags {
    display:flex; flex-wrap:wrap; justify-content:center; gap:8px;
    margin-top:20px; padding-bottom:4px;
}
.hero-tag {
    padding:6px 14px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.07);
    border-radius:20px;
    font-size:0.78rem; color:#888;
    transition:all .2s;
}
.hero-tag:hover {
    border-color:rgba(232,67,147,0.3); color:#e84393;
    background:rgba(232,67,147,0.05);
}

/* ===== SEO TEXT FULL WIDTH ===== */
.seo-text { column-count:2; column-gap:40px; }
.seo-text h2, .seo-text h3 { column-span:all; }
.seo-text details { column-span:all; }
@media (max-width:768px) {
    .seo-text { column-count:1; }
    .hero-stats { gap:16px; flex-wrap:wrap; }
    .hero-featured-grid { grid-template-columns:repeat(2, 1fr); }
}

/* ===== INFINITE SCROLL LOADER ===== */
.loader {
    text-align:center; padding:30px 0;
}
.loader .spinner {
    display:inline-block; width:32px; height:32px;
    border:3px solid rgba(232,67,147,0.2);
    border-top-color:#e84393;
    border-radius:50%;
    animation:spin .6s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

/* ===== CLICKABLE CARD ===== */
.ad-card {
    position:relative;
    cursor:pointer;
}
.ad-card .card-overlay {
    position:absolute; inset:0; z-index:1;
}
.ad-card .ad-body h3 a { position:relative; z-index:2; }
.ad-card .btn-view { position:relative; z-index:2; }

/* ===== LIGHT THEME - PROFILE PAGE ===== */
body.light .ad-detail h1 { color:#111; }
body.light .ad-detail h2 { color:#333; }
body.light .ad-detail .ad-status { color:#22c55e; }
body.light .ad-detail .ad-price { color:#e84393; }
body.light .ad-detail .ad-posted { color:#888; }
body.light .ad-detail .info-label { color:#888; }
body.light .ad-detail .info-value { color:#222; }
body.light .ad-detail .ad-quick-info { background:#f8f8fa; border-color:rgba(0,0,0,0.06); }
body.light .ad-detail .ad-description { color:#333; }
body.light .ad-detail .ad-description p { color:#444; }
body.light .ad-detail .ad-details-table table { color:#333; }
body.light .ad-detail .ad-details-table td { color:#444; border-color:rgba(0,0,0,0.06); }
body.light .ad-detail .ad-details-table tr td:first-child { color:#666; }
body.light .ad-detail .services-tags span { background:rgba(0,0,0,0.04); border-color:rgba(0,0,0,0.08); color:#444; }
body.light .ad-detail .rate-item { background:#f8f8fa; border-color:rgba(0,0,0,0.06); }
body.light .ad-detail .rate-duration { color:#666; }
body.light .ad-detail .rate-price { color:#e84393; }
body.light .ad-detail .report-link { color:#999; }
body.light .breadcrumb { background:#fafafa; border-color:rgba(0,0,0,0.06); }
body.light .breadcrumb a { color:#888; }
body.light .breadcrumb .current { color:#333; }
body.light .gallery-thumbs .thumb { border-color:rgba(0,0,0,0.1); }
body.light .gallery-thumbs .thumb.active { border-color:#e84393; }
body.light .related-ads h2 { color:#111; }
body.light .hero-stat .stat-num { color:#e84393; }
body.light .hero-stat .stat-lbl { color:#888; }
body.light .hero-featured-label { color:#666; }
body.light .hero-card { background:#fff; border-color:rgba(0,0,0,0.08); }
body.light .hero-card-name { color:#222; }
body.light .hero-tag { background:rgba(0,0,0,0.03); border-color:rgba(0,0,0,0.08); color:#666; }
body.light .hero-tag:hover { border-color:rgba(232,67,147,0.3); color:#e84393; }
body.light .seo-text h3 { color:#444; }
body.light .seo-text details { border-color:rgba(0,0,0,0.06); }
body.light .seo-text summary { color:#333; }
body.light .seo-text details p { color:#555; }
body.light .btn-view { border-top-color:rgba(0,0,0,0.06); color:#e84393; }
body.light .btn-view:hover { background:rgba(232,67,147,0.04); }
body.light .loader .spinner { border-color:rgba(232,67,147,0.15); border-top-color:#e84393; }

/* Fix story clicks */
.story-item * { pointer-events:none; }
.story-item { pointer-events:auto; }
