/* شريط الأسعار */

#asg-gold-wrapper{
background:#faf9f6;
border-bottom:1px solid #e7dfcc;
position:sticky;
top:0;
z-index:9999;
}

#asg-gold-bar{
display:flex;
align-items:center;
justify-content:center;
gap:8px;
padding:6px 10px;
overflow-x:auto;
direction:rtl;
scrollbar-width:none;
}

#asg-gold-bar::-webkit-scrollbar{
display:none;
}

/* البطاقة */

.asg-card{
min-width:175px;
height:58px;
padding:8px 14px;
background:#fffdfa;
border:1px solid #d4af37;
border-radius:12px;
display:flex;
flex-direction:column;
justify-content:center;
transition:.25s ease;
}

.asg-card:hover{
transform:translateY(-1px);
box-shadow:0 4px 12px rgba(212,175,55,.12);
}

/* العنوان */

.asg-header{
display:flex;
justify-content:center;
align-items:center;
gap:5px;
margin-bottom:3px;
}

.asg-title{
font-size:13px;
font-weight:600;
color:#5a4c28;
line-height:1;
}

.asg-arrow{
font-size:13px;
font-weight:700;
}

.asg-arrow.up{
color:#19a84f;
}

.asg-arrow.down{
color:#d63b3b;
}

/* السعر */

.asg-price{
font-size:16px;
font-weight:800;
line-height:1;
color:#c28e12;
text-align:center;
}

/* الجوال */

@media (max-width:768px){

#asg-gold-bar{
justify-content:flex-start;
padding:6px;
gap:6px;
}

.asg-card{
min-width:130px;
height:54px;
padding:6px 10px;
}

.asg-title{
font-size:11px;
}

.asg-price{
font-size:14px;
}

}