/* ============================================
   LIVE SEARCH DROPDOWN STYLES
   ============================================ */

/* Arama kutusu container - relative yapılmalı */
.header-desktop-search1 {
    position: relative;
}

/* Live Search Dropdown Container */
.live-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-height: 450px;
    overflow-y: auto;
    display: none;
}

.live-search-dropdown.active {
    display: block;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Yükleniyor durumu */
.live-search-loading {
    padding: 20px;
    text-align: center;
    color: #666;
}

.live-search-loading i {
    font-size: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sonuç bulunamadı */
.live-search-no-results {
    padding: 30px 20px;
    text-align: center;
    color: #999;
}

.live-search-no-results i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

/* Ürün listesi */
.live-search-results {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Tek ürün item */
.live-search-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.live-search-item:last-child {
    border-bottom: none;
}

.live-search-item:hover,
.live-search-item.active {
    background-color: #f8f9fa;
}

.live-search-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

/* Ürün görseli */
.live-search-item-img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 12px;
    background: #f5f5f5;
}

.live-search-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ürün bilgileri */
.live-search-item-info {
    flex: 1;
    min-width: 0;
}

.live-search-item-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-search-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #e74c3c;
}

.live-search-item-old-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.live-search-item-stock {
    font-size: 11px;
    color: #e74c3c;
    margin-top: 2px;
}

/* Tümünü Gör butonu */
.live-search-view-all {
    display: block;
    padding: 15px;
    text-align: center;
    background: #f8f9fa;
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    border-top: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.live-search-view-all:hover {
    background: #e9ecef;
    color: #0056b3;
    text-decoration: none;
}

.live-search-view-all span {
    background: #007bff;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 5px;
}

/* Arama highlight */
.live-search-highlight {
    background-color: #fff3cd;
    padding: 0 2px;
    border-radius: 2px;
}

/* Mobile uyumluluk */
@media (max-width: 768px) {
    /* Ana header'daki arama kutusu */
    .mobile-header-main-search {
        position: relative;
        z-index: 9998;
    }
    
    .mobile-header-main-search .header-desktop-search1 {
        position: relative;
    }
    
    .mobile-header-main-search .live-search-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-radius: 0 0 8px 8px;
        max-height: 60vh;
        margin-top: 0;
    }
    
    /* Slide menü içindeki arama kutusu */
    .mobile_side_wrap_in_search {
        position: relative !important;
    }
    
    .mobile_side_content {
        overflow: visible !important;
    }
    
    .mobile_side_wrap_in_search .live-search-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-radius: 0 0 8px 8px;
        max-height: 50vh;
        z-index: 99999;
    }
    
    /* Genel mobil dropdown ayarları */
    .live-search-dropdown {
        border-radius: 0 0 8px 8px;
    }
    
    .live-search-item {
        padding: 10px 12px;
    }
    
    .live-search-item-img {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .live-search-item-title {
        font-size: 13px;
    }
    
    .live-search-view-all {
        padding: 12px;
        font-size: 14px;
    }
}

/* Scrollbar stilleri */
.live-search-dropdown::-webkit-scrollbar {
    width: 6px;
}

.live-search-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 0 8px 0;
}

.live-search-dropdown::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.live-search-dropdown::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}
