/*
Theme Name: OTOTAMİR-360 Modern Directory
Theme URI: https://github.com/akkaya6611/ototamir-360-tema
Author: Serkan AKKAYA
Author URI: https://misteknoloji360.com.tr
Description: Modern Oto Tamirci ve Usta Bulma Rehberi Teması
Version: 1.4.22
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: ototamir-360
*/

/* ===================================================
   FONTAWESOME FONT-DISPLAY: SWAP (LIGHTHOUSE FCP)
=================================================== */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-regular-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-brands-400.woff2') format('woff2');
}

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

:root {
    --primary: #f97316;
    --primary-hover: #ea580c;
    --primary-dark: #c2410c;
    --primary-light: #fff7ed;
    --primary-glow: rgba(249, 115, 22, 0.35);
    --secondary: #ea580c;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --radius: 12px;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/*
Theme Name: OTOTAMİR-360 Modern Directory
Theme URI: https://ototamircibul.com.tr
Author: Serkan AKKAYA
Description: Modern, şık ve minimalist ilan/rehber teması.
Version: 2.0
Text Domain: ototamir
*/

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

/* Modern Header */
header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-logo img {
    height: 40px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

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

.header-nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
}

/* Modern Hero */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1530046339160-ce3e530c7d2f?q=80&w=2070&auto=format&fit=crop') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

/* Glassmorphism Search Bar */
.search-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0 16px;
    transition: border-color 0.2s;
}
.search-input-group:focus-within {
    border-color: var(--primary);
}

.search-input-group i {
    color: var(--text-muted);
    font-size: 18px;
}

.search-input-group input, .search-input-group select {
    border: none;
    background: transparent;
    padding: 16px 12px;
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-main);
    outline: none;
}

.search-wrapper button {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.search-wrapper button:hover { background: var(--primary-hover); }

/* Categories Grid */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 80px 0 30px;
}
.section-header h2 {
    font-size: 28px;
    margin: 0;
    color: var(--text-main);
    font-weight: 700;
}
.section-header a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.cat-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s;
}
.cat-box:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.08);
    transform: translateY(-2px);
}
.cat-box i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}
.cat-box span {
    font-size: 15px;
    font-weight: 600;
}

/* Listings Grid */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.listing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.listing-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    transform: translateY(-4px);
    border-color: transparent;
}

.listing-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.badge-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #10b981;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.listing-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.listing-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-main);
    text-decoration: none;
}
.listing-title a { color: inherit; text-decoration: none; }
.listing-title a:hover { color: var(--primary); }

.listing-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.listing-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.listing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.listing-tags span {
    background: var(--bg-color);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.listing-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.listing-footer-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.listing-footer-link:hover { color: var(--primary-hover); }

/* Responsive */
@media (max-width: 992px) {
    .search-wrapper { flex-direction: column; }
    .search-wrapper button { padding: 16px; }
}
@media (max-width: 992px) {
    .header-nav {
        gap: 15px;
    }
    .header-nav a {
        font-size: 14px;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 8px;
}

.mobile-nav-actions {
    display: none;
}

@media (max-width: 768px) {
    .header-inner {
        height: 64px;
    }
    .site-logo img {
        height: 32px;
    }
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .header-actions {
        display: none !important;
    }
    
    .header-nav { 
        display: none; 
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 24px 28px;
        box-shadow: 0 16px 30px rgba(0,0,0,0.12);
        border-top: 1px solid var(--border-color);
        gap: 14px;
        align-items: stretch;
        z-index: 1000;
    }
    
    .header-nav.active {
        display: flex;
    }

    .header-nav a {
        font-size: 16px;
        font-weight: 600;
        color: #1e293b;
        padding: 6px 0;
        text-decoration: none;
    }
    
    .mobile-nav-actions {
        display: block;
        margin-top: 10px;
        padding-top: 16px;
        border-top: 1px solid #e2e8f0;
    }
    .mobile-nav-auth {
        display: flex;
        gap: 14px;
        margin-bottom: 14px;
    }
    .mobile-nav-login {
        flex: 1;
        text-align: center;
        padding: 10px;
        background: #f1f5f9;
        border-radius: 8px;
        color: #0f172a !important;
        font-size: 14px !important;
    }
    .mobile-nav-register {
        flex: 1;
        text-align: center;
        padding: 10px;
        background: #fff7ed;
        border: 1px solid #ffedd5;
        border-radius: 8px;
        color: #ea580c !important;
        font-weight: 700;
        font-size: 14px !important;
    }
    .mobile-nav-user {
        display: block;
        text-align: center;
        padding: 10px;
        background: #fff7ed;
        border: 1px solid #ffedd5;
        border-radius: 8px;
        color: #f97316 !important;
        font-weight: 700;
        margin-bottom: 12px;
    }
    .mobile-nav-cta {
        width: 100%;
        text-align: center;
        display: block;
        padding: 13px;
        border-radius: 10px;
        box-sizing: border-box;
    }
    
    .hero h1 { font-size: 30px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Single Mechanic Page Styles */
.single-hero {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4)), url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 80px 20px;
    color: white;
}
.single-hero h1 {
    font-size: 36px;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.single-hero h1 i { color: #10b981; font-size: 24px; }
.single-meta {
    display: flex;
    gap: 24px;
    font-size: 15px;
    color: #cbd5e1;
    align-items: center;
    flex-wrap: wrap;
}
.single-meta span { display: flex; align-items: center; gap: 8px; }

.single-container {
    display: flex;
    gap: 40px;
    margin-top: 45px;
    position: relative;
    z-index: 10;
    align-items: flex-start;
    padding-bottom: 80px;
}

.single-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.single-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.single-box h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.single-box h3 i { color: var(--primary); }

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.tag-list li {
    background: var(--bg-color);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.single-sidebar {
    width: 350px;
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}
.sidebar-widget h4 { margin: 0 0 20px 0; font-size: 18px; }

.contact-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    margin-bottom: 12px;
    transition: 0.2s;
    box-sizing: border-box;
}
.btn-call { background: var(--primary); }
.btn-call:hover { background: var(--primary-hover); }
.btn-whatsapp { background: #25D366; }
.btn-whatsapp:hover { background: #128C7E; }

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}
.contact-info-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}
.contact-info-list li i { color: var(--primary); font-size: 18px; margin-top: 2px; }

.feature-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    font-weight: 500;
}
.feature-check:last-child { border-bottom: none; }
.feature-check i.yes { color: #10b981; }
.feature-check i.no { color: #ef4444; }

@media (max-width: 992px) {
    .single-container { flex-direction: column; }
    .single-sidebar { width: 100%; position: static; }
}

/* Filter & Archive Page Styles */
.page-header-small {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1530046339160-ce3e530c7d2f?auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 60px 20px;
    color: white;
}
.page-header-small h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
}
.filter-page-container {
    display: flex;
    gap: 30px;
    margin: 40px auto 80px;
    align-items: flex-start;
}
.filter-sidebar {
    width: 320px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.filter-sidebar h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.filter-sidebar h3 i { color: var(--primary); }

.filter-results {
    flex: 1;
}
.filter-widget {
    margin-bottom: 20px;
}
.filter-widget label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-main);
}
.filter-widget select, .filter-widget input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-color);
    font-family: inherit;
    font-size: 14px;
    color: var(--text-main);
    box-sizing: border-box;
}
.filter-widget select:focus, .filter-widget input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.results-header span { font-weight: 500; color: var(--text-muted); }

@media (max-width: 992px) {
    .filter-page-container { flex-direction: column; }
    .filter-sidebar { width: 100%; position: static; margin-bottom: 30px; }
}

/* Mechanic Profile Avatar */
.mechanic-profile-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 20px;
    flex-wrap: wrap;
}
.mechanic-profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}
.mechanic-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 992px) {
    .header-nav {
        gap: 15px;
    }
    .header-nav a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .single-hero h1 { font-size: 28px; }
    .single-meta { justify-content: center; }
}

/* --- YENI LISTING CARD TASARIMI (Görsel Odaklı) --- */
.listing-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    height: 280px; 
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.listing-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.listing-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.95) 100%);
    z-index: 2;
}

.listing-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    padding-right: 40px; /* Kalp ikonu ile çakışmasın */
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.listing-badge-top {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.listing-badge-top i { color: #f59e0b; }

.listing-rating-pill {
    background: #22c55e;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 8px;
    width: fit-content;
}

.listing-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}
.listing-title i {
    color: #22c55e;
    font-size: 16px;
}

.listing-address {
    font-size: 13px;
    color: #e2e8f0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-heart {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    font-size: 18px;
    z-index: 3;
    transition: transform 0.2s;
}
.listing-heart:hover {
    transform: scale(1.2);
    color: #ef4444;
}

.admin-bar header { top: 32px; }
.admin-bar .home-hero { padding-top: 80px; }
.admin-bar .about-hero { padding-top: 80px; }
.admin-bar .services-hero { padding-top: 80px; }
.admin-bar .blog-hero,
.admin-bar .single-post-hero,
.admin-bar .contact-hero { padding-top: 80px; }

/* Global Swiper Nav Buttons */
.swiper-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}
.swiper-nav-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

/* Global Mech Card */
.mech-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 330px;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    background: #0f172a;
}
.mech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}
.mech-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}
.mech-card:hover img {
    transform: scale(1.06);
}
.mech-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.95) 100%);
    z-index: 2;
}
.mech-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.3px;
}
.mech-card-badge i { color: #fcd34d; }
.mech-card-badge.popular {
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}
.mech-card-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(239, 68, 68, 0.85);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.2px;
}
.mech-card-views i { color: #fef08a; font-size: 11px; }
.mech-card-heart {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
}
.mech-card-heart:hover { transform: scale(1.25); color: #ef4444; }
.mech-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 3;
    color: white;
}
.mech-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}
.mech-card-rating i { color: #fcd34d; font-size: 11px; }
.mech-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
}
.mech-card h3 i { color: #22c55e; font-size: 14px; }
.mech-card-loc {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Global Pagination */
.pagination, .profile-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 40px 0;
    width: 100%;
}
.pagination ul, .profile-pagination ul,
ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination ul li, .profile-pagination ul li,
ul.page-numbers li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
}
.pagination .page-numbers, .profile-pagination .page-numbers,
ul.page-numbers .page-numbers,
.pagination a.page-numbers, .pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
.pagination a.page-numbers:hover, .profile-pagination a.page-numbers:hover,
ul.page-numbers a.page-numbers:hover {
    border-color: #ea580c;
    color: #ea580c;
    background: #fff7ed;
    transform: translateY(-1px);
}
.pagination .page-numbers.current, .profile-pagination .page-numbers.current,
ul.page-numbers .page-numbers.current {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff !important;
    border-color: #ea580c;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.35);
}
.pagination .page-numbers.dots, .profile-pagination .page-numbers.dots,
ul.page-numbers .page-numbers.dots {
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: default;
}
.pagination .page-numbers.dots:hover, .profile-pagination .page-numbers.dots:hover,
ul.page-numbers .page-numbers.dots:hover {
    transform: none;
    color: #94a3b8;
    background: transparent;
}

/* Horizontal City Filter Bar */
.city-filter-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.city-filter-form {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.city-filter-group {
    flex: 1;
    min-width: 200px;
}
.city-filter-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.city-filter-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s;
}
.city-filter-select:focus {
    border-color: var(--primary);
}
.city-filter-btn {
    padding: 11px 24px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    align-self: flex-end;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}
.city-filter-btn:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.45);
    transform: translateY(-1px);
}

/* ===================================================
   VIP & ÖNE ÇIKAN USTA / VİTRİN STİLLERİ
=================================================== */
.listing-card.listing-card-vip,
.mech-card.mech-card-vip {
    border: 2px solid #f59e0b !important;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.24) !important;
}
.listing-card.listing-card-vip:hover,
.mech-card.mech-card-vip:hover {
    border-color: #d97706 !important;
    box-shadow: 0 14px 32px rgba(245, 158, 11, 0.38) !important;
}
.listing-badge-vip,
.mech-card-badge.mech-card-badge-vip {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.45) !important;
}
.listing-badge-vip i,
.mech-card-badge.mech-card-badge-vip i {
    color: #fef08a !important;
}
.badge-featured-vip {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    vertical-align: middle;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}



