/* Hide Scrollbar */
html,
body{
    overflow-x: hidden;
    scrollbar-width: none;      
    -ms-overflow-style: none;
    padding-top: 0.5rem;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar{
    display: none;              
}


#compareList::-webkit-scrollbar{
    width:8px;
}

#compareList::-webkit-scrollbar-track{
    background:#f3f4f6;
}

#compareList::-webkit-scrollbar-thumb{
    background:#cbd5e1;
    border-radius:999px;
}

#compareList::-webkit-scrollbar-thumb:hover{
    background:#94a3b8;
}

.compare-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 18px;
    cursor:pointer;
    transition:.2s;
    border-bottom:1px solid #f1f5f9;
}

.compare-item:hover{
    background:#fdf2f8;
}

.compare-item img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.compare-item h4{
    font-size:15px;
    font-weight:600;
    color:#111827;
}

.compare-item p{
    font-size:13px;
    color:#6b7280;
}