/* Impula Emlak Frontend CSS */
/* Consultant Account (light, modern) */
.impula-account{ display:grid; grid-template-columns:260px 1fr; gap:20px; margin:20px 0; }
.impula-account-sidebar{ background:#fff; border:1px solid #e5e7eb; border-radius:10px; padding:16px; height:max-content; position:sticky; top:20px; }
.impula-account-user{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.impula-account-user .name{ font-weight:600; }
.impula-account-user .status{ font-size:12px; opacity:.75; }
.impula-account-sidebar nav{ display:flex; flex-direction:column; gap:6px; }
.impula-account-sidebar nav a{ padding:10px 12px; border-radius:8px; color:#111827; text-decoration:none; border:1px solid #e5e7eb; background:#f9fafb; }
.impula-account-sidebar nav a.is-active{ background:#ffffff; border-color:#cbd5e1; font-weight:600; }
.impula-account-content{ background:#fff; border:1px solid #e5e7eb; border-radius:10px; padding:16px; }
.impula-tab-panels{ padding-top:8px; }
.impula-tab-panel{ display:none; }
.impula-tab-panel.is-active{ display:block; }

@media (max-width: 960px){
  .impula-account{ grid-template-columns:1fr; }
  .impula-account-sidebar{ position:relative; top:auto; }
}

/* Genel Stiller */
.impula-emlak {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Arama Formu */
.impula-property-search {
    background: transparent !important;
    background-image: none !important;
    padding: 40px 20px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: none;
}

.search-title {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.property-search-form {
    background: var(--e-global-color-primary, #ffffff);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.search-field label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    height: 44px;
    box-sizing: border-box;
}
.search-field select { line-height: 44px; }

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--e-global-color-accent, #f0b90b);
    box-shadow: 0 0 0 4px rgba(240,185,11,0.12);
    transform: translateY(-2px);
}

.search-field input::placeholder {
    color: #a0a0a0;
}

/* Anahtar Kelime Arama Alanı */
.keyword-search-field {
    grid-column: 1 / -1 !important; /* Tam genişlik */
    margin-bottom: 20px;
    width: 100% !important;
    max-width: none !important;
}

.keyword-search-field input,
.keyword-search-field .search-input,
#search_keyword {
    width: 100% !important;
    font-size: 16px;
    padding: 15px 60px 15px 20px; /* Sol padding artırıldı, sağ padding mikrofon için */
    border-radius: 12px;
    border: 2px solid #e1e5e9;
    background: white;
    height: 54px; /* Daha büyük height */
    box-sizing: border-box !important;
    max-width: none !important;
    min-width: 100% !important;
}

.keyword-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100% !important;
    max-width: none !important;
}

/* Elementor'un genişlik kısıtlamalarını ezeriz */
.property-search-form .keyword-search-field,
.property-search-form .keyword-input-wrapper,
.property-search-form .keyword-search-field input {
    width: 100% !important;
    max-width: none !important;
    flex: 1 1 100% !important;
}

.keyword-input-wrapper .search-input {
    flex: 1;
    padding-right: 60px !important; /* Mikrofon butonu için yer bırak - artırıldı */
}

.voice-search-container {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Voice Search Button Styling */
.voice-search-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #007cba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0, 124, 186, 0.2);
}

/* SVG icon'unu beyaz yap - Elementor uyumlu */
.voice-search-btn svg,
.voice-search-btn .elementor-icon svg {
    fill: white;
    width: 18px;
    height: 18px;
    display: block;
}

.voice-search-btn .elementor-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.voice-search-btn:hover {
    background: #005a87;
    color: white;
    transform: scale(1.1);
}

.voice-search-btn:hover svg,
.voice-search-btn:hover .elementor-icon svg {
    fill: white;
}

.voice-search-btn.recording {
    background: #dc3545;
    color: white;
    animation: pulse 1s infinite;
}

.voice-search-btn.recording svg,
.voice-search-btn.recording .elementor-icon svg {
    fill: white;
}

.voice-search-btn.focused {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

/* Arama Sonuçları Sayfası */
.impula-search-results {
    padding: 40px 0;
}

.impula-search-results .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.property-item {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.property-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.property-item h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.property-item h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.property-item h3 a:hover {
    color: var(--e-global-color-accent, #f0b90b);
}

.property-excerpt {
    color: #6c757d;
    margin-bottom: 10px;
}

.property-meta {
    border-top: 1px solid #f1f1f1;
    padding-top: 10px;
    margin-top: 10px;
}

.property-meta small {
    color: #9ca3af;
}

/* Fiyat ve Alan Aralıkları */
.price-range,
.area-range {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-range input,
.area-range input {
    flex: 1;
}

.separator { color: var(--e-global-color-accent, #f0b90b); font-weight: 600; font-size: 18px; height: 44px; line-height: 44px; }

/* Gelişmiş Arama */
.advanced-search {
    border-top: 2px solid #e1e5e9;
    padding-top: 25px;
    margin-top: 25px;
}

.toggle-advanced {
    text-align: center;
    margin: 25px 0;
}

.toggle-btn { background:none; border:1px solid #cbd5e1; color:#111; padding:10px 20px; border-radius:8px; cursor:pointer; transition:all .2s ease; font-weight:600; font-size:14px; }
.toggle-btn:hover { background:#e2e8f0; color:#111; transform:translateY(-1px); box-shadow:none; }

/* Arama Butonları */
.search-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.search-btn,
.reset-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    justify-content: center;
}

.search-btn { background:#1e293b; color:#fff; box-shadow:none; }

.search-btn:hover { filter:brightness(.95); transform:translateY(-2px); box-shadow:none; }

.reset-btn {
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #dee2e6;
}

.reset-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-2px);
}

/* İlan Listesi */
.impula-property-list {
    margin: 40px 0;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--e-global-color-accent, #f0b90b);
    color: #111;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.property-content {
    padding: 25px;
}

.property-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.property-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.property-title a:hover { color: var(--e-global-color-accent, #f0b90b); }

.property-location {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-location i { color: var(--e-global-color-accent, #f0b90b); }

.property-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item {
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature-value {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    display: block;
}

.feature-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
}

.property-price { font-size: 24px; font-weight: 700; color: var(--e-global-color-accent, #f0b90b); text-align: center; margin-bottom: 20px; }

.property-actions {
    display: flex;
    gap: 10px;
}

.view-btn,
.contact-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
}

.view-btn { background:#1e293b; color:#fff; box-shadow:none; }
.view-btn:hover { filter:brightness(.95); transform:translateY(-2px); }

.contact-btn {
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #dee2e6;
}

.contact-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-2px);
}

/* Filtreleme */
.property-filters {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e1e5e9;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f4;
}

.filters-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.clear-filters { background:none; border:none; color:#1e293b; cursor:pointer; font-weight:500; text-decoration:underline; }

.clear-filters:hover { filter: brightness(0.9); }

.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.filter-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.filter-input:focus { outline: none; border-color: var(--e-global-color-accent, #f0b90b); }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    background: white;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-link:hover,
.page-link.active {
    background: var(--e-global-color-accent, #f0b90b);
    color: #111;
    border-color: var(--e-global-color-accent, #f0b90b);
    transform: translateY(-2px);
}

/* Loading States */
.impula-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--e-global-color-accent, #f0b90b);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-state i {
    font-size: 48px;
    color: #dee2e6;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #495057;
}

.empty-state p {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .impula-property-search {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .search-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .property-search-form {
        padding: 20px;
    }
    
    .search-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .search-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .search-btn,
    .reset-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .property-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .property-actions {
        flex-direction: column;
    }
    
    .price-range,
    .area-range {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .search-title {
        font-size: 20px;
    }
    
    .property-search-form {
        padding: 15px;
    }
    
    .property-content {
        padding: 20px;
    }
    
    .property-features {
        grid-template-columns: 1fr;
    }
    
    .filters-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* Mobile usability improvements for the search form */
@media (max-width: 640px){
  .impula-property-search .search-field label{font-size:13px;margin-bottom:6px}
  .impula-property-search .search-field input,
  .impula-property-search .search-field select{height:50px;font-size:16px;border-radius:12px}
  .impula-property-search .price-range,
  .impula-property-search .area-range{gap:8px}
  /* Alt yapışma kaldırıldı */
  .impula-property-search .search-actions{position:static;background:transparent;padding:0;margin-top:12px;border-top:0}
  .impula-property-search .search-actions .search-btn{width:100%}
  .impula-property-search .search-actions .reset-btn{width:100%;opacity:.9}
  /* Tür sekmeleri taşmayacak şekilde yatay kaydırılabilir */
  .impula-property-search .impula-type-tabs{display:flex;flex-wrap:nowrap;gap:6px;overflow-x:auto;-webkit-overflow-scrolling:touch;padding-bottom:2px}
  .impula-property-search .impula-type-tabs .type-tab{white-space:nowrap;min-width:max-content;padding:8px 12px}
  
  /* Mobilde anahtar kelime arama alanı ayarları */
  .keyword-search-field input,
  .keyword-search-field .search-input,
  #search_keyword {
    height: 54px !important;
    font-size: 16px !important;
    padding: 15px 55px 15px 20px !important;
  }
  
  /* Mobilde voice search butonu daha büyük ve görünür */
  .voice-search-container {
    right: 8px;
  }
  
  .voice-search-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 18px !important;
    background: #007cba !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.3);
  }
  
  .voice-search-btn svg,
  .voice-search-btn .elementor-icon svg {
    fill: white !important;
    width: 20px !important;
    height: 20px !important;
  }
  
  .voice-search-btn .elementor-icon {
    width: 20px !important;
    height: 20px !important;
  }
  
  .voice-search-btn:hover {
    background: #005a87 !important;
    color: white !important;
    transform: scale(1.05);
  }
  
  .voice-search-btn.recording {
    background: #dc3545 !important;
    color: white !important;
  }
  
  .voice-search-btn.recording svg,
  .voice-search-btn.recording .elementor-icon svg {
    fill: white !important;
  }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-card {
    animation: fadeInUp 0.6s ease;
}

.property-card:nth-child(1) { animation-delay: 0.1s; }
.property-card:nth-child(2) { animation-delay: 0.2s; }
.property-card:nth-child(3) { animation-delay: 0.3s; }
.property-card:nth-child(4) { animation-delay: 0.4s; }

/* Hover Efektleri */
.property-card:hover .property-badge {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.search-field input:hover,
.search-field select:hover {
    border-color: #adb5bd;
}

/* Focus States */
.search-field input:focus,
.search-field select:focus {
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(240,185,11,0.12);
}

/* Custom Scrollbar */
.impula-emlak ::-webkit-scrollbar {
    width: 8px;
}

.impula-emlak ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.impula-emlak ::-webkit-scrollbar-thumb {
    background: var(--e-global-color-accent, #f0b90b);
    border-radius: 4px;
}

.impula-emlak ::-webkit-scrollbar-thumb:hover {
    filter: brightness(0.95);
}

/* Print Styles */
@media print {
    .impula-property-search,
    .property-actions,
    .pagination {
        display: none;
    }
    
    .property-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* --- Impula Emlak – Yeni Kart Düzeni (Screenshot uyumlu) --- */
.impula-property-list{margin:32px 0}
.property-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:24px}
.property-card{background:#fff;border:1px solid #e5e7eb;border-radius:12px;overflow:hidden;box-shadow:0 8px 24px rgba(149,157,165,.12);transition:.25s ease;}
.property-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(149,157,165,.18)}
.property-image{position:relative;height:240px;overflow:hidden}
.property-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.property-card:hover .property-image img{transform:scale(1.03)}
.property-badge{position:absolute;left:12px;top:12px;background:var(--e-global-color-accent,#16a34a);color:#111;background:#16a34a;color:#fff;padding:6px 10px;border-radius:8px;font-weight:600;font-size:12px;letter-spacing:.2px}
.property-content{padding:16px 16px 0}
.property-title{margin:0 0 6px;font-weight:700;font-size:18px;line-height:1.35}
.property-title a{text-decoration:none;color:#111}
.property-title a:hover{opacity:.85}
.property-location{color:#667085;font-size:13px;margin-bottom:12px}
.property-price{color:var(--e-global-color-accent,#16a34a);font-weight:800;font-size:22px;padding:6px 16px 12px}
.property-features{list-style:none;margin:0;padding:12px 16px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px;border-top:1px solid #e5e7eb;background:#fbfcfd}
.property-features .feature-item{display:flex;flex-direction:column;gap:2px}
.property-features .feature-value{font-weight:700;color:#111}
.property-features .feature-label{font-size:12px;color:#667085}

/* Actions – küçük, kompakt buton; temadaki geniş mavi butonların üzerine yaz */
.property-actions{padding:8px 16px 16px; display:flex; justify-content:flex-end}
.impula-property-list .view-btn{background:var(--e-global-color-accent,#16a34a)!important; color:#fff!important; border:none!important; box-shadow:none!important; text-decoration:none!important; padding:10px 14px!important; border-radius:8px!important; font-weight:600; display:inline-flex; align-items:center; gap:8px; width:auto!important; min-width:unset!important}
.impula-property-list .view-btn:hover{filter:brightness(.95)}

/* --- İlan galerisi – grid düzeni --- */
.impula-property-gallery{margin:24px 0}
.impula-property-gallery{display:grid;grid-template-columns:repeat(var(--gallery-cols,4),minmax(0,1fr));gap:12px}
.impula-property-gallery .gallery-item{position:relative;aspect-ratio:1/1;overflow:hidden;border-radius:8px;background:#f8f9fa}
.impula-property-gallery .gallery-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s ease}
.impula-property-gallery .gallery-item:hover img{transform:scale(1.05)}
.impula-property-gallery .gallery-lightbox{display:block;text-decoration:none;color:inherit}
.impula-property-gallery .gallery-caption{position:absolute;bottom:0;left:0;right:0;background:rgba(0,0,0,.7);color:#fff;padding:8px 12px;font-size:12px;text-align:center}
@media(max-width:768px){.impula-property-gallery{grid-template-columns:repeat(3,1fr);gap:8px}}
@media(max-width:480px){.impula-property-gallery{grid-template-columns:repeat(2,1fr);gap:6px}}

/* --- İlan galerisi – ürün galerisi stili --- */
.impula-property-gallery-slider{margin:24px 0}
.impula-property-gallery-slider .gallery-main{position:relative;margin-bottom:16px;overflow:hidden;background:#f8f9fa}
.impula-property-gallery-slider .gallery-main-image{position:relative;aspect-ratio:4/3;overflow:hidden}
.impula-property-gallery-slider .gallery-main-image img{width:100%;height:100%;object-fit:cover;display:block}
.impula-property-gallery-slider .gallery-lightbox{display:block;text-decoration:none;color:inherit;cursor:zoom-in}

/* Navigasyon okları */
.impula-property-gallery-slider .gallery-nav{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border:none;background:rgba(0,0,0,.7);color:#ffffff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s ease;z-index:2}
.impula-property-gallery-slider .gallery-nav:hover{background:rgba(0,0,0,.9);color:#ffffff;transform:translateY(-50%) scale(1.1)}
.impula-property-gallery-slider .gallery-nav:active{transform:translateY(-50%) scale(.95)}
.impula-property-gallery-slider .gallery-prev{left:16px}
.impula-property-gallery-slider .gallery-next{right:16px}
.impula-property-gallery-slider .gallery-nav svg{width:20px;height:20px}

/* Thumbnail navigasyonu */
.impula-property-gallery-slider .gallery-thumbnails{position:relative;margin-top:16px}
.impula-property-gallery-slider .gallery-thumbnails-container{display:flex;gap:12px;transition:transform .3s ease;overflow:hidden}
.impula-property-gallery-slider .gallery-thumb{flex:0 0 80px;aspect-ratio:1/1;overflow:hidden;cursor:pointer;transition:all .2s ease;background:#f8f9fa}
.impula-property-gallery-slider .gallery-thumb.active{box-shadow:0 0 0 2px rgba(22,163,74,.2)}
.impula-property-gallery-slider .gallery-thumb img{width:100%;height:100%;object-fit:cover;display:block}

/* Responsive */
@media(max-width:768px){
    .impula-property-gallery-slider .gallery-main-image{aspect-ratio:3/2}
    .impula-property-gallery-slider .gallery-nav{width:40px;height:40px}
    .impula-property-gallery-slider .gallery-nav svg{width:18px;height:18px}
    .impula-property-gallery-slider .gallery-thumb{flex:0 0 70px}
    .impula-property-gallery-slider .gallery-thumb-nav{width:28px;height:28px}
    .impula-property-gallery-slider .gallery-thumb-nav svg{width:12px;height:12px}
}
@media(max-width:480px){
    .impula-property-gallery-slider .gallery-main-image{aspect-ratio:1/1}
    .impula-property-gallery-slider .gallery-nav{width:36px;height:36px;left:8px;right:8px}
    .impula-property-gallery-slider .gallery-nav svg{width:16px;height:16px}
    .impula-property-gallery-slider .gallery-thumb{flex:0 0 60px}
    .impula-property-gallery-slider .gallery-thumbnails-container{gap:8px}
}

  @media(max-width:480px){
      .impula-property-gallery-slider .gallery-thumbnails-container{gap:8px}
  }
  
  /* --- Popüler Şehirler --- */
  .impula-popular-cities{
    display:grid;
    gap:16px;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  }
  
  .impula-city-card{
    display:block;
    position:relative;
    aspect-ratio:1/1;
    background-size:cover;
    background-position:center;
    text-decoration:none;
    transition:transform .2s ease;
  }
  
  .impula-city-card:hover{transform:scale(1.02)}
  
  .impula-city-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(0deg,rgba(0,0,0,.45),rgba(0,0,0,.15));
  }
  
  .impula-city-title{
    position:absolute;
    left:16px;
    bottom:16px;
    color:#fff;
    text-shadow:0 1px 2px rgba(0,0,0,.35);
  }
  
  .impula-city-title .name{
    font-size:18px;
    font-weight:600;
    display:block;
  }
  
  .impula-city-title .count{
    font-size:14px;
    opacity:.9;
  }
  
  /* Mobilde Slider */
  @media (max-width: 768px) {
    .impula-popular-cities {
      display: flex !important;
      gap: 12px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE/Edge */
      padding-bottom: 10px;
      position: relative;
    }
    
    /* Sağda fade effect - daha fazla içerik olduğunu göster */
    .impula-popular-cities::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 30px;
      height: 100%;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.8));
      pointer-events: none;
      z-index: 1;
      transition: opacity 0.3s ease;
    }
    
    /* Scroll sonunda fade'i gizle */
    .impula-popular-cities.no-fade::after {
      opacity: 0;
    }
    
    /* Webkit scrollbar gizle */
    .impula-popular-cities::-webkit-scrollbar {
      display: none;
    }
    
    .impula-city-card {
      flex: 0 0 calc(50% - 6px); /* 2 kart yan yana */
      scroll-snap-align: start;
      min-width: 150px;
      max-width: 180px;
    }
    
    .impula-city-title .name {
      font-size: 16px;
    }
    
    .impula-city-title .count {
      font-size: 12px;
    }
  }
  
  /* Çok küçük ekranlar için */
  @media (max-width: 480px) {
    .impula-city-card {
      min-width: 140px;
      max-width: 160px;
    }
    
    .impula-city-title {
      left: 12px;
      bottom: 12px;
    }
    
    .impula-city-title .name {
      font-size: 14px;
    }
    
    .impula-city-title .count {
      font-size: 11px;
    }
  }
  
  /* --- İlan Detayları Tablosu --- */
  .impula-details-table{
    display:grid;
    gap:16px;
    --details-cols:2;
    font-family:var(--e-global-typography-text-font-family, inherit);
  }
  .impula-details-table.cols-2{grid-template-columns:repeat(2,1fr)}
  .impula-details-table.cols-3{grid-template-columns:repeat(3,1fr)}
  .impula-details-table .details-col{display:flex;flex-direction:column;gap:8px}
  .impula-details-table .detail-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid var(--e-global-color-e1e5e8, #f1f3f4);
    transition:border-color 0.2s ease;
  }
  .impula-details-table .detail-row:last-child{
    border-bottom:none;
  }
  .impula-details-table .detail-row:hover{
    border-bottom-color:var(--e-global-color-accent, #2563eb);
  }
  .impula-details-table .detail-label{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:var(--e-global-typography-text-font-weight, 400);
    color:var(--e-global-color-text, #6b7280);
    font-size:var(--e-global-typography-text-font-size, 14px);
  }
  .impula-details-table .detail-value{
    color:var(--e-global-color-primary, #1f2937);
    font-weight:var(--e-global-typography-accent-font-weight, 600);
    font-size:var(--e-global-typography-text-font-size, 14px);
  }
  .impula-details-table .detail-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:18px;
    height:18px;
    color:var(--e-global-color-accent, #2563eb);
    font-size:14px;
  }
  
  @media(max-width:768px){
    .impula-details-table{
      grid-template-columns:1fr;
      gap:12px;
    }
    .impula-details-table .detail-row{
      padding:10px 0;
    }
    .impula-details-table .detail-label,
    .impula-details-table .detail-value{
      font-size:13px;
    }
    .impula-details-table .detail-icon{
      width:16px;
      height:16px;
      font-size:12px;
    }
  }
  
  /* --- Özellikler Tablosu --- */
  .impula-features-table{--features-cols:3}
  .impula-features-table .features-group-title{margin:24px 0 16px;padding:12px 16px;background:#f8fafc;border-left:4px solid var(--e-global-color-accent);font-weight:600;color:#1e293b;font-size:16px}
  .impula-features-table .features-group-title:first-child{margin-top:0}
  .impula-features-table .features-grid{display:grid;gap:24px;grid-template-columns:repeat(var(--features-cols),1fr)}
  .impula-features-table .features-col{display:flex;flex-direction:column;gap:12px}
  .impula-features-table .feature-row{display:flex;align-items:center;gap:12px;padding:8px 0}
  .impula-features-table .feature-checkbox{display:flex;align-items:center;justify-content:center;width:20px;height:20px;color:#10b981}
  .impula-features-table .feature-row.unavailable .feature-checkbox{color:#d1d5db}
  .impula-features-table .feature-name{font-size:14px;color:#374151}
  .impula-features-table .feature-row.unavailable .feature-name{color:#9ca3af}
  
  /* --- Danışman Bilgileri --- */
  .impula-consultant-info{margin:24px 0;padding:20px;background:#f8f9fa;border:1px solid #e5e7eb}
  .impula-consultant-info .consultant-header{display:flex;align-items:center;gap:16px;margin-bottom:16px}
  .impula-consultant-info .consultant-avatar{flex-shrink:0}
  .impula-consultant-info .consultant-avatar img{width:80px;height:80px;object-fit:cover;clip-path:circle(50% at 50% 50%)}
  .impula-consultant-info .consultant-details{flex:1}
  .impula-consultant-info .consultant-name{margin:0 0 4px;font-size:18px;font-weight:600;color:#1e293b}
  .impula-consultant-info .consultant-company{margin:0 0 2px;font-size:14px;color:#6b7280}
  .impula-consultant-info .consultant-position{margin:0;font-size:14px;color:#6b7280}
  .impula-consultant-info .consultant-contact{margin-bottom:16px}
  .impula-consultant-info .contact-item{display:flex;align-items:center;gap:8px;margin-bottom:8px}
  .impula-consultant-info .contact-icon{font-size:16px}
  .impula-consultant-info .contact-phone{color:#2563eb;text-decoration:none;font-weight:500}
  .impula-consultant-info .contact-phone:hover{text-decoration:underline}
  .impula-consultant-info .consultant-whatsapp{margin-top:16px}
  .impula-consultant-info .whatsapp-button{display:inline-flex;align-items:center;gap:8px;padding:12px 20px;background:#25d366;color:#ffffff;text-decoration:none;font-weight:500;transition:background .2s ease}
  .impula-consultant-info .whatsapp-button:hover{background:#128c7e;color:#ffffff}
  .impula-consultant-info .whatsapp-icon{font-size:18px}
  .impula-consultant-info .whatsapp-text{font-size:14px}
  
  /* Responsive */
  @media(max-width:480px){
      .impula-consultant-info .consultant-header{flex-direction:column;text-align:center;gap:12px}
      .impula-consultant-info .consultant-avatar img{width:60px;height:60px}
      .impula-consultant-info .whatsapp-button{width:100%;justify-content:center}
  }

  /* --- Yazar İletişim Kutusu --- */
  .impula-author-contact{display:flex;flex-direction:column;align-items:center;gap:8px;padding:16px;background:#ffffff;border:1px solid #e5e7eb;box-shadow:none}
  .impula-author-contact .iac-avatar{width:88px;height:88px;overflow:hidden;display:block}
  .impula-author-contact .iac-avatar img{width:88px;height:88px;object-fit:cover;clip-path:circle(50% at 50% 50%)}
  .impula-author-contact .iac-name{font-weight:600;color:#1e293b}
  .impula-author-contact .iac-phone a{color:var(--e-global-color-accent, #2563eb);text-decoration:none}
  .impula-author-contact .iac-phone a:hover{text-decoration:underline}
  .impula-author-contact .iac-actions{margin-top:8px}
  .impula-author-contact .iac-wa{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;background:#25d366;color:#ffffff;text-decoration:none;font-weight:500}
  .impula-author-contact .iac-wa:hover{background:#128c7e;color:#ffffff}
