.elementor-13234 .elementor-element.elementor-element-394d361{--display:flex;--min-height:350px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:-50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-13234 .elementor-element.elementor-element-9e8a5bb .elementor-heading-title{font-family:var( --e-global-typography-text-font-family ), IRANYekanX;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );}@media(max-width:1024px){.elementor-13234 .elementor-element.elementor-element-9e8a5bb .elementor-heading-title{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}@media(max-width:767px){.elementor-13234 .elementor-element.elementor-element-9e8a5bb .elementor-heading-title{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}/* Start custom CSS for html, class: .elementor-element-35a7d4a *//* Container Base */
.modern-ajax-widget {
    position: relative;
    max-width: 400px;
}

/* Input Container (Floating Label Style) */
.cla-textbox-container {
    position: relative;
    padding-top: 20px; 
}

.input-container {
    position: relative;
}

.ajax-search-input {
    width: 100%;
    padding: 12px 10px 4px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.ajax-search-input:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

/* Floating Label */
.textbox-label {
    position: absolute;
    top: 50%;
    right: 10px; 
    transform: translateY(-50%);
    color: #999;
    pointer-events: none; 
    transition: all 0.2s ease;
    font-size: 16px;
    background: white; 
    padding: 0 5px;
    z-index: 10;
}

/* Floating effect */
.ajax-search-input:focus + .textbox-label,
.ajax-search-input.has-value + .textbox-label {
    top: 0; 
    transform: translateY(-50%);
    font-size: 12px;
    color: #0073aa;
    z-index: 11; 
}

/* Results Dropdown */
.ajax-results-container {
    position: absolute;
    width: 100%;
    top: 100%; 
    left: 0;
    z-index: 999; 
}

#search-results {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
    border-top: none;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
}

/* Styling the List (from PHP output) */
.ajax-search-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ajax-search-results-list li a {
    display: flex; /* برای قرارگیری تصویر و متن کنار هم */
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.ajax-search-results-list li a:hover {
    background: #f5f5f5;
}

/* Style for Product Image */
.ajax-search-results-list li img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-left: 10px; /* فاصله از متن */
    border-radius: 4px;
}

/* Style for Title */
.result-title {
    flex-grow: 1;
    font-weight: 500;
}

/* Loading Indicator Style */
.loading-indicator, .no-results-msg, .error-msg {
    padding: 10px 15px;
    text-align: center;
    color: #666;
    border-top: 1px solid #eee;
    background: #fff;
}

/* Simple Loader Animation */
.loading-indicator .loader {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ======================================= */
/* 2. RESULTS DROPDOWN (Image Right, Title Left) */
/* ======================================= */

/* 🚩 راست چین شدن لیست نتایج */
.ajax-results-container {
    position: absolute;
    width: 100%;
    top: 100%; 
    left: 0;
    z-index: 999; 
    direction: rtl; /* تضمین راست چین بودن لیست */
}

/* Styling the List (تغییرات اصلی چیدمان در اینجا اعمال می‌شود) */
.ajax-search-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ajax-search-results-list li {
    padding: 0;
}

/* 🔄 چیدمان فلکس برای قرارگیری تصویر و متن کنار هم */
.ajax-search-results-list li a {
    display: flex; 
    align-items: center;
    justify-content: space-between; /* توزیع فضا */
    direction: rtl; /* تضمین RTL */
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.ajax-search-results-list li a:hover {
    background: #f5f5f5;
}

/* 🖼️ تصویر محصول (کوچک و سمت راست) */
.ajax-search-results-list li img {
    width: 50px; 
    height: 50px;
    object-fit: cover;
    
    order: 1; /* موقعیت اول (راست) */
    
    margin-right: 0;
    margin-left: 10px; /* فاصله از عنوان */
    
    border-radius: 4px;
    flex-shrink: 0; 
}

/* 🏷️ عنوان محصول (سمت چپ) */
.result-title {
    order: 2; /* موقعیت دوم (چپ) */
    
    flex-grow: 1;
    font-weight: 500;
    text-align: right; 
}

/* حل مشکل پدینگ در لیست‌های محتوا (کد شما) */
.entry-content ul, .ajax-search-results-list {
    padding-right: 0px !important;
}
#search-results {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    
    /* 👇 تنظیم ارتفاع برای اسکرول شدن */
    max-height: 200px; /* این عدد را کم کردم تا سریع‌تر اسکرول بخورد */
    overflow-y: auto;  /* دستور اجباری برای نمایش اسکرول */
    
    /* اختیاری: نرم کردن اسکرول */
    scroll-behavior: smooth;
}

/* 👇 (اختیاری) زیباتر کردن نوار اسکرول برای کروم و مرورگرهای جدید */
#search-results::-webkit-scrollbar {
    width: 6px;
}

#search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

#search-results::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 6px;
}

#search-results::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}/* End custom CSS */