/* تخصيص البحث في الهيدر - Custom Header Search */

/* إخفاء أيقونة البحث الافتراضية */
.search-toggle-open {
    display: none !important;
}

/* حاوية البحث */
.custom-header-search {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    margin: 0 20px;
}

/* نموذج البحث */
.custom-header-search form {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}
span.search-icon:lang(ar) {
    position: relative;
    left: -33px;
}
span.search-icon:lang(en) {
    position: relative;
    right: -33px;
    top: 3px;
}
/* حقل البحث */
.custom-header-search input[type="search"]:lang(ar),
.custom-header-search input[type="text"]:lang(ar) {
    width: 100%;
    padding: 12px 20px;
    padding-left: 60px !important;
    padding-right: 45px !important;
    border: 1px solid #E2EBF2;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    direction: rtl;
    text-align: right;
    transition: all 0.3s ease;
    background: #FDFDFF;
}
.custom-header-search input[type="search"]:lang(en),
.custom-header-search input[type="text"]:lang(en) {
    width: 100%;
    padding: 12px 20px;
    padding-left: 60px !important;
    padding-right: 45px !important;
    border: 1px solid #E2EBF2;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    direction: ltr;
    text-align: left;
    transition: all 0.3s ease;
    background: #FDFDFF;
}
.custom-header-search input[type="search"]:focus,
.custom-header-search input[type="text"]:focus {
    outline: none;
    border-color: #0F206C;
    box-shadow: 0 0 0 3px rgba(15, 32, 108, 0.1);
}

.custom-header-search input[type="search"]::placeholder,
.custom-header-search input[type="text"]::placeholder {
    color: #6C7186;
    text-align: right;
}
.search-form .search-submit[type=submit]:lang(en)
 {
    height: 100%;
    margin-left: -5px;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
        border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    width: 18% !important;
    background: linear-gradient(to right, #58AFFA, #348FDD) !important;
 }
.search-form .search-submit[type=submit]:lang(ar)
 {
    height: 100%;
    margin-left: -5px;
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
        border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    width: 18% !important;
    background: linear-gradient(to right, #58AFFA, #348FDD) !important;
 }
/* زر البحث */
.custom-header-search button[type="submit"]:lang(ar),
.custom-header-search .search-submit:lang(ar) {
    position: absolute !important;
    left: 5px !important;
    top: 50% !important;
    right: auto !important;
    transform: translateY(-50%);
    background: #0F206C;
    color: #fff !important;
    border: none;
    border-radius: 40px;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    z-index: 2;
}
.custom-header-search button[type="submit"]:lang(en),
.custom-header-search .search-submit:lang(en) {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    left: auto !important;
    transform: translateY(-50%);
    background: #0F206C;
    color: #fff !important;
    border: none;
    border-radius: 40px;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    z-index: 2;
}
.custom-header-search button[type="submit]:hover,
.custom-header-search .search-submit:hover {
    background: #081447;
    transform: translateY(-50%) scale(1.05);
}

/* أيقونة البحث داخل الحقل */
.custom-header-search .search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6C7186;
    pointer-events: none;
    z-index: 1;
}

.custom-header-search .search-icon svg {
    width: 20px;
    height: 20px;
}

/* تعديل موقع البحث في الهيدر */
.site-header-item.site-header-focus-item[data-section="kadence_customizer_header_search"] {
    width: 100%;
    max-width: 600px;
    margin: 0 20px;
}

/* للهيدر الشفاف */
.transparent-header .custom-header-search input[type="search"],
.transparent-header .custom-header-search input[type="text"] {
    background: rgba(255, 255, 255, 0.95);
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 1024px) {
    .custom-header-search {
        max-width: 400px;
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .custom-header-search {
        max-width: 100%;
        margin: 10px 0;
    }
    
    .custom-header-search input[type="search"],
    .custom-header-search input[type="text"] {
        padding: 10px 15px;
        padding-left: 100px;
        font-size: 13px;
    }
    
    .custom-header-search button[type="submit"],
    .custom-header-search .search-submit {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* تخصيص البحث في Navigation */
.header-navigation .custom-header-search {
    flex: 1;
    max-width: 600px;
}

/* تنسيق البحث مع عناصر الهيدر الأخرى */
.site-header-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-header-row .custom-header-search {
    flex: 1;
}

/* البحث في وضع Mobile */
.mobile-header-search {
    width: 100%;
    padding: 10px 15px;
}

.mobile-header-search .custom-header-search {
    max-width: 100%;
    margin: 0;
}

/* تحسين التباين */
.custom-header-search input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

/* تأثير Hover على الحقل */
.custom-header-search input[type="search"]:hover,
.custom-header-search input[type="text"]:hover {
    border-color: #0F206C;
}

/* Loading state */
.custom-header-search.loading button[type="submit"]::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* تخصيص نتائج البحث المباشر */
.custom-header-search .search-results {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    border: 1px solid #E2EBF2;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.custom-header-search .search-results.active {
    display: block;
}

.custom-header-search .search-result-item {
    padding: 12px 20px;
    border-bottom: 1px solid #E2EBF24D;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-header-search .search-result-item:hover {
    background: #E2EBF24D;
}

.custom-header-search .search-result-item:last-child {
    border-bottom: none;
}

