.shopsh-store-info {
    margin-top: 12px;
    display: flex;
    justify-content: space-between; /* 左：保证金；右：头像+店铺名 */
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.65);
    width: 100%;
}
.dark-theme .shopsh-store-info {
    color: rgba(255, 255, 255, 0.75);
}
.shopsh-store-info .store-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(22, 32, 72, 0.12);
}
.dark-theme .shopsh-store-info .store-avatar {
    border-color: rgba(255, 255, 255, 0.2);
}
.shopsh-store-info .store-name {
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.shopsh-store-info .store-name:hover {
    color: var(--focus-color, #3f51b5);
}

/* 店铺保证金徽标（显示在店铺名左侧） */
.shopsh-store-info .store-deposit{
    display:inline-flex;
    align-items:center;
    line-height:1;
    padding:2px 6px;
    border-radius:10px;
    font-weight:600;
    color: var(--focus-color, #3f51b5);
    background: rgba(63,81,181,0.08);
}
.dark-theme .shopsh-store-info .store-deposit{
    color: #9cb3ff;
    background: rgba(156,179,255,0.12);
}
.shopsh-store-info .store-right{
    display:inline-flex;
    align-items:center;
    gap:8px;
}
