
/*------------------  افزودن به سبد خرید سفارش از چین غیرفعال */


/* باکس اصلی */
.china-notify-box{
    margin-top:15px;
}

/* دکمه اطلاع رسانی */
.china-notify-btn{
    display:inline-block;
    background:#ff6a00;
    color:#fff;
    border:none;
    padding:12px 22px;
    font-size:14px;
    font-weight:600;
    border-radius:6px;
    cursor:pointer;
    transition:all .25s ease;
    width: 100%;
}

.china-notify-btn:hover{
    background:#e85f00;
    color:#fff;
    transform:translateY(-1px);
}

/* فرم شماره موبایل */
.china-notify-form{
    margin-top:12px;
    display:flex;
    gap:8px;
    align-items:center;
}

/* input موبایل */
.china-mobile{
    border:1px solid #ddd;
    padding:10px 12px;
    border-radius:6px;
    font-size:14px;
    width:200px;
    transition:border .2s;
}

.china-mobile:focus{
    outline:none;
    border-color:#ff6a00;
}

/* دکمه ثبت شماره */
.china-send{
    background:#2e7d32;
    color:#fff;
    border:none;
    padding:5px 10px;
    border-radius:6px;
    cursor:pointer;
    font-size:13px;
    font-weight:600;
    transition:background .25s;
}

.china-send:hover{
    background:#256628;
}

/* حالت موبایل */
@media (max-width:480px){

.china-notify-form{
    flex-direction:column;
    align-items:stretch;
}

.china-mobile{
    width:100%!important;
}

.china-send{
    width:100%;
}

}