.shopsh-store-info {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.65);
}
.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);
}
