/* Dealers (Satış Noktaları) CSS */

/* Dealers Sidebar Search Box */
.sidebar-accordion #searchDealerInput {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 10px;
    background-color: #f5f5f5;
}

.sidebar-accordion #searchDealerInput:focus {
    outline: none;
    border-color: #667eea;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(102, 126, 234, 0.2);
}

/* Dealers List Items */
.dealers-item {
    padding: 10px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.dealers-item:hover {
    background: linear-gradient(135deg, #e8ecf1 0%, #b5d8eb 100%);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.dealers-item-name {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    flex: 1;
}

.dealers-item-address {
    font-size: 11px;
    color: #666;
    margin-top: 3px;
}

.dealers-item-actions {
    display: flex;
    gap: 5px;
}

.dealers-item-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dealers-item-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.dealers-item-btn.directions {
    background-color: #667eea;
    color: white;
}

.dealers-item-btn.directions:hover {
    background-color: #764ba2;
}

.dealers-item-btn.info {
    background-color: #f0ad4e;
    color: white;
}

.dealers-item-btn.info:hover {
    background-color: #ec971f;
}

/* Dealers Empty State */
.dealers-empty-state {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 12px;
}

.dealers-empty-state span {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

/* Dealer Popup/Balloon */
.dealer-popup {
    min-width: 200px;
    font-size: 12px;
}

.dealer-popup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.dealer-popup-header .shop-icon {
    font-size: 18px;
}

.dealer-popup-header h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.dealer-popup-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dealer-popup-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 11px;
}

.dealer-popup-item strong {
    color: #667eea;
    min-width: 50px;
}

.dealer-popup-item span {
    color: #666;
    word-break: break-word;
    flex: 1;
}

.dealer-popup-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.dealer-direction-btn {
    flex: 1;
    padding: 6px 8px;
    background-color: #667eea;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.dealer-direction-btn:hover {
    background-color: #764ba2;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.dealer-direction-btn.apple {
    background-color: #555;
}

.dealer-direction-btn.apple:hover {
    background-color: #333;
}

/* Dealers Marker */
.dealer-marker-icon {
    width: 38px;
    height: 38px;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: none;
    cursor: pointer;
    color: #667eea;
}

.dealer-marker-icon:hover {
    background-color: rgba(102, 126, 234, 0.1);
    color: #764ba2;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Loading Spinner */
.dealers-loading {
    text-align: center;
    padding: 15px;
    color: #667eea;
}

.dealers-loading::after {
    content: '';
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Z-index Düzeltmeleri */
.hamburger-menu-btn {
    z-index: 1000 !important;
}

.map-search-btn {
    z-index: 999 !important;
}

.map-search-panel {
    z-index: 998 !important;
}

.sidebar {
    z-index: 997 !important;
}

.sidebar-overlay {
    z-index: 996 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dealers-item {
        padding: 8px;
        margin-bottom: 6px;
    }

    .dealers-item-name {
        font-size: 12px;
    }

    .dealers-item-address {
        font-size: 10px;
    }

    .dealers-item-btn {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .dealer-popup {
        min-width: 160px;
        font-size: 11px;
    }

    .dealer-popup-header h4 {
        font-size: 12px;
    }

    .dealer-direction-btn {
        padding: 5px 6px;
        font-size: 10px;
    }
}
