/* ==============================
   SEARCH INPUT (Premium Style)
   ============================== */

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    background: #0c0f13;
    border: 2px solid white;
    border-radius: 40px;
    padding: 6px 45px 6px 15px;
    height: 38px;
    transition: 0.3s ease;
}

.header-search:hover,
.header-search:focus-within {
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Search Icon */
.search-icon {
    position: absolute;
    left: 5px;
    color: white;
    font-size: 18px;
    pointer-events: none;
}

/* Search Text Input */
.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    width: 170px;
    font-family: 'Cairo', sans-serif;
}

.search-input::placeholder {
    color: #a8a8a8;
    font-size: 13px;
}

/* ==============================
   SEARCH RESULTS DROPDOWN
   ============================== */
.search-results {
    position: absolute;
    top: 48px;
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 10px;
    display: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    max-height: 360px;
    overflow-y: auto;
    z-index: 999;
}

.search-results.active {
    display: block;
}

/* Result Item */
.search-result-item {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: 0.2s ease;
}

.search-result-item:hover {
    background: #f7f7f7;
}

.result-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.result-name {
    font-size: 14px;
    color: #111;
    font-weight: 600;
}

.result-riwaya {
    font-size: 12px;
    color: #777;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #888;
}

.search-loading {
    padding: 15px;
    text-align: center;
    color: #111;
}

.search-result-item {
    transition: 0.2s;
}

.search-result-item:hover {
    background: #dfffe9 !important;
    transform: translateX(-3px);
}

/* صندوق نتائج البحث قابل للتمرير */
.search-results {
    max-height: 380px;
    /* ارتفاع مناسب */
    overflow-y: auto;
    /* Scroll عمودي عند زيادة النتائج */
    overflow-x: hidden;
    scrollbar-width: thin;
    /* للمتصفحات الحديثة */
    scrollbar-color: #161b1f #f1f1f1;
}

/* Scroll جمالـي للـ Chrome */
.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #161b1f;
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #0d1114;
}



/* إخفاء صندوق البحث في الموبايل فقط */
@media (max-width: 768px) {
    .header-search {
        display: none !important;
    }
}