/* Jewellary Hisab live metal rates ticker */
.jh-ticker {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
    color: #efc94b;
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
    border-bottom: 1px solid #c5a028;
    padding: 6px 0;
}
.jh-ticker-scroll {
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    animation: jh-ticker-scroll 40s linear infinite;
}
.jh-ticker:hover .jh-ticker-scroll { animation-play-state: paused; }
.jh-ticker-item {
    display: inline-block;
    padding: 0 18px;
}
.jh-ticker-item strong { color: #fff; margin-right: 4px; }
.jh-ticker-item .jh-ticker-sep { color: #c5a028; margin: 0 6px; }
.jh-ticker-placeholder { opacity: 0.7; padding-left: 18px; }

@keyframes jh-ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}
