#ebay-ticker{
    background:#ffffff;
    color:#111;
    padding:18px 10px;
    overflow:hidden;
    white-space:nowrap;
    min-height:180px;
    width:100%;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
    border-top:1px solid #eaeaea;
    border-bottom:1px solid #eaeaea;
}

/* scrolling track */
#ebay-ticker .track{
    display:inline-flex;
    align-items:stretch;
    gap:18px;
    animation:ebayTickerScroll 280s linear infinite;
}

/* CARD STYLE */
#ebay-ticker .item{
    display:inline-block;
    width:160px;
    min-width:160px;
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
    text-align:center;
    padding:10px;
    transition:transform 0.2s ease, box-shadow 0.2s ease;
}

/* hover effect */
#ebay-ticker .item:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 14px rgba(0,0,0,0.12);
}

/* image */
#ebay-ticker .item img{
    width:100%;
    height:110px;
    object-fit:contain;
    background:#fafafa;
    border-radius:6px;
    margin-bottom:8px;
}

/* title */
#ebay-ticker .item a{
    display:block;
    font-size:12px;
    font-weight:500;
    color:#111;
    text-decoration:none;
    line-height:1.3em;
    max-height:2.6em;
    overflow:hidden;
}

/* price line (if included in text) */
#ebay-ticker .price{
    margin-top:6px;
    font-size:13px;
    font-weight:bold;
    color:#1a7f37;
}

/* animation */
@keyframes ebayTickerScroll{
    from { transform:translateX(0%); }
    to   { transform:translateX(-100%); }
}

/* loading state */
#ebay-ticker.loading{
    opacity:0.8;
}