/* Wrapper کلی */
.ani-real-wrap{
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    z-index: 99999;
}

/* Input جستجو */
#ani-real-input{
    width: 100%;
    padding: 10px 14px;
    padding-left: 40px; /* فاصله از لودینگ سمت چپ */
    border-radius: 8px;
    border:1px solid #ddd;
    font-size:14px;
    outline:none;
    box-sizing: border-box;
    transition:0.2s;
}
#ani-real-input:focus{
    border-color:#4caf50;
}

/* لودینگ سمت چپ */
.ani-real-loader{
    position: absolute;
    left: 12px; /* سمت چپ input */
    top: 50%;
    width: 18px;
    height: 18px;
    border: 3px solid #eee;
    border-top: 3px solid #4caf50;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    transform: translateY(-50%);
    pointer-events: none;
    display: none;
    z-index: 10;
}
@keyframes spin{
    0%{ transform: translateY(-50%) rotate(0deg); }
    100%{ transform: translateY(-50%) rotate(360deg); }
}

/* باکس نتایج */
.ani-real-results{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-height: 400px; /* ارتفاع دسکتاپ */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* scroll نرم موبایل */
    display: none;
    margin-top: 6px;
}

/* gradient هشدار اسکرول */
.ani-real-results::after{
    content:'';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}

/* محصولات */
.ani-real-item{
    border-bottom: 1px solid #eee; /* خط جداکننده */
}
.ani-real-item:last-child{
    border-bottom: none;
}

/* لینک محصول */
.ani-real-link{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: #333;
}
.ani-real-link:hover{
    background: #f5f5f5;
}

/* تصویر محصول */
.ani-real-thumb img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

/* متن محصول */
.ani-real-title{
    font-size: 14px;
    font-weight: 500;
}
.ani-real-price{
    font-size: 13px;
    color: #2e7d32;
    font-weight: bold;
}
.ani-real-stock{
    font-size: 12px;
    color: #888;
}

/* پیام بدون نتیجه / در حال جستجو */
.ani-real-no{
    text-align: center;
    padding: 10px;
    font-size: 13px;
    color: #555;
}

/* موبایل */
@media(max-width:768px){
    .ani-real-wrap{
        max-width: 100%;
        padding: 0 10px;
    }
    .ani-real-thumb img{
        width: 45px;
        height: 45px;
    }
    .ani-real-results{
        max-height: 300px; /* ارتفاع بیشتر موبایل */
    }
}